:root {
  --pcp-bg: #f7f2eb;
  --pcp-bg-deep: #ede3d7;
  --pcp-surface: #ffffff;
  --pcp-surface-soft: #f3ece3;
  --pcp-surface-dark: #241f1a;

  --pcp-text: #2d2722;
  --pcp-text-soft: #655d54;
  --pcp-text-light: rgba(45, 39, 34, 0.68);
  --pcp-text-inverse: #f8f3ed;

  --pcp-accent: #765742;
  --pcp-accent-soft: #9b7c63;
  --pcp-accent-dark: #4f392c;

  --pcp-line: rgba(45, 39, 34, 0.10);
  --pcp-line-strong: rgba(45, 39, 34, 0.18);

  --pcp-radius-sm: 14px;
  --pcp-radius-md: 22px;
  --pcp-radius-lg: 34px;
  --pcp-radius-xl: 44px;

  --pcp-shadow-sm: 0 12px 32px rgba(24, 18, 12, 0.07);
  --pcp-shadow-md: 0 22px 62px rgba(24, 18, 12, 0.10);
  --pcp-shadow-lg: 0 34px 90px rgba(24, 18, 12, 0.16);

  --pcp-container: min(100% - 48px, 1320px);
  --pcp-wide: min(100% - 48px, 1440px);
  --pcp-content: min(100% - 48px, 860px);

  --pcp-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* RESET */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 4%, rgba(155, 124, 99, 0.13), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(118, 87, 66, 0.10), transparent 32%),
    linear-gradient(180deg, var(--pcp-bg) 0%, var(--pcp-bg-deep) 100%);
  color: var(--pcp-text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

p,
ul,
ol {
  margin-top: 0;
  margin-bottom: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 18px;
  color: var(--pcp-text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
}

h1 {
  font-size: clamp(38px, 5.5vw, 76px);
}

h2 {
  font-size: clamp(32px, 3.8vw, 58px);
}

h3 {
  font-size: clamp(23px, 2.2vw, 32px);
}

h4 {
  font-size: 22px;
}

p,
li,
input,
select,
textarea {
  font-size: clamp(16px, 1vw, 18px);
  line-height: 1.75;
  font-style: normal;
}

p {
  color: var(--pcp-text-soft);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  z-index: 200;
  border-radius: 999px;
  background: #fff;
}

/* HEADER STABLE */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 74px;
  background: rgba(247, 242, 235, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45, 39, 34, 0.08);
}

.site-header__inner {
  width: min(100% - 64px, 1360px);
  height: 74px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-header__brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  color: var(--pcp-text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(25px, 1.7vw, 32px);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__nav-shell {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  min-width: 0;
}

.site-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.site-nav__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: clamp(18px, 1.4vw, 28px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__menu li {
  margin: 0;
  padding: 0;
}

.site-nav__menu a[href*="demander-un-devis"] {
  display: none;
}

.site-nav__menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 38px;
  color: var(--pcp-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: var(--pcp-accent);
  transition: width 240ms var(--pcp-ease);
}

.site-nav__menu a:hover,
.site-nav__menu .current-menu-item > a,
.site-nav__menu .current_page_item > a {
  color: var(--pcp-accent);
}

.site-nav__menu a:hover::after,
.site-nav__menu .current-menu-item > a::after,
.site-nav__menu .current_page_item > a::after {
  width: 100%;
}

.site-header__cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--pcp-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 14px 32px rgba(118, 87, 66, 0.20);
  transition: transform 220ms var(--pcp-ease), background 220ms var(--pcp-ease), box-shadow 220ms var(--pcp-ease);
}

.site-header__cta:hover {
  transform: translateY(-2px);
  background: var(--pcp-accent-soft);
  box-shadow: 0 18px 42px rgba(118, 87, 66, 0.28);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--pcp-line);
  border-radius: 999px;
  background: #fff;
}

.nav-toggle__line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--pcp-text);
}

@media (max-width: 1179.98px) {
  .site-header__inner {
    width: min(100% - 40px, 1360px);
    gap: 16px;
  }

  .site-header__brand {
    min-width: 0;
    max-width: calc(100% - 60px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    flex: 0 0 auto;
    display: block;
  }

  .site-header__nav-shell {
    position: fixed;
    top: 74px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 18px;
    max-height: calc(100vh - 98px);
    padding: 22px;
    border: 1px solid var(--pcp-line);
    border-radius: 24px;
    background: rgba(255, 253, 249, 0.98);
    box-shadow: var(--pcp-shadow-lg);
    visibility: hidden;
    z-index: 110;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 220ms var(--pcp-ease), transform 220ms var(--pcp-ease);
  }

  .site-header__nav-shell.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav,
  .site-nav__menu {
    display: grid;
    justify-content: stretch;
    width: 100%;
  }

  .site-nav__menu {
    gap: 6px;
  }

  .site-nav__menu a {
    min-height: 44px;
    height: auto;
    white-space: normal;
  }

  .site-header__cta {
    width: 100%;
  }
}

@media (max-width: 479.98px) {
  .site-header__inner {
    width: min(100% - 28px, 1360px);
  }

  .site-header__brand {
    font-size: 24px;
  }

  .site-header__nav-shell {
    left: 14px;
    right: 14px;
    padding: 18px;
    border-radius: 20px;
  }
}

/* LAYOUT GLOBAL */

.site-main {
  min-height: 60vh;
}

.entry-content {
  padding-bottom: clamp(72px, 7vw, 112px);
}

.entry-content > *:not(.alignwide):not(.alignfull) {
  width: var(--pcp-content);
  margin-inline: auto;
}

.entry-content > .alignwide,
.entry-content > .wp-block-group.alignwide,
.entry-content > .wp-block-columns.alignwide {
  width: var(--pcp-container);
  margin-inline: auto;
}

.entry-content > .alignfull,
.entry-content > .wp-block-group.alignfull,
.entry-content > .wp-block-cover.alignfull {
  width: 100%;
}

.wp-block-group,
.wp-block-columns,
.wp-block-image {
  margin-block-start: 0;
  margin-block-end: 0;
}

.pcp-section {
  position: relative;
  padding: clamp(70px, 7vw, 118px) 0;
}

.pcp-section .wp-block-columns,
.pcp-page-hero__inner {
  gap: clamp(28px, 4vw, 64px);
}

/* HERO PAGES */

.pcp-page-hero {
  padding: clamp(54px, 6vw, 88px) 0 clamp(32px, 4vw, 54px);
}

.pcp-page-hero__inner,
.pcp-posts-shell {
  width: var(--pcp-container);
  margin-inline: auto;
}

.pcp-page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  align-items: center;
}

.pcp-page-hero__copy {
  max-width: 760px;
}

.pcp-page-hero__eyebrow,
.pcp-section-intro,
.pcp-card__eyebrow,
.pcp-post-card__meta {
  margin-bottom: 14px;
  color: var(--pcp-accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.pcp-page-hero__title {
  max-width: 11ch;
  margin-bottom: 24px;
}

.pcp-page-hero__excerpt {
  max-width: 58ch;
  color: var(--pcp-text-light);
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.82;
}

.pcp-page-hero__media {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: var(--pcp-radius-lg);
  border: 1px solid rgba(45, 39, 34, 0.08);
  background: var(--pcp-surface-soft);
  box-shadow: var(--pcp-shadow-md);
  isolation: isolate;
}

.pcp-page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 46%, rgba(24, 18, 12, 0.18)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.10), transparent 46%);
  pointer-events: none;
}

.pcp-page-hero__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.01);
  filter: saturate(0.96) contrast(1.04);
  transition: transform 900ms var(--pcp-ease), filter 900ms var(--pcp-ease);
}

.pcp-page-hero__media:hover img {
  transform: scale(1.055);
  filter: saturate(1.04) contrast(1.06);
}

/* HOME HERO GUTENBERG */

.pcp-section--hero {
  width: var(--pcp-wide);
  margin: 32px auto 0;
  padding: clamp(70px, 7vw, 118px) clamp(28px, 5vw, 76px);
  border: 1px solid rgba(45, 39, 34, 0.08);
  border-radius: var(--pcp-radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(242, 236, 228, 0.72)),
    radial-gradient(circle at 84% 16%, rgba(155, 124, 99, 0.18), transparent 36%);
  box-shadow: var(--pcp-shadow-lg);
  overflow: hidden;
}

.pcp-section--hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 39, 34, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 39, 34, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
  pointer-events: none;
}

.pcp-hero__grid {
  align-items: center;
  gap: clamp(36px, 6vw, 96px) !important;
}

.pcp-hero__grid > .wp-block-column:first-child {
  max-width: 700px;
}

.pcp-hero__grid h1 {
  max-width: 11ch;
  margin-bottom: 26px;
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.pcp-hero__lead {
  max-width: 58ch;
  color: var(--pcp-text-light);
  font-size: clamp(17px, 1.15vw, 20px);
  line-height: 1.82;
}

.pcp-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.pcp-hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(45, 39, 34, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--pcp-text);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(24, 18, 12, 0.06);
}
/* =========================
   BLOG CARDS PREMIUM
========================= */

.pcp-posts-shell {
  width: var(--pcp-container);
  margin-inline: auto;
  padding: clamp(70px, 7vw, 110px) 0;
}

.pcp-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 36px);
}

.pcp-post-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid rgba(45, 39, 34, 0.09);
  border-radius: var(--pcp-radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.80));
  box-shadow: var(--pcp-shadow-sm);
  overflow: hidden;
  transition:
    transform 260ms var(--pcp-ease),
    box-shadow 260ms var(--pcp-ease),
    border-color 260ms var(--pcp-ease);
}

.pcp-post-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(155,124,99,0.13), transparent 38%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--pcp-ease);
}

.pcp-post-card:hover {
  transform: translateY(-7px);
  border-color: rgba(118, 87, 66, 0.25);
  box-shadow: var(--pcp-shadow-md);
}

.pcp-post-card:hover::before {
  opacity: 1;
}

.pcp-post-card__meta {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: var(--pcp-accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pcp-post-card__title {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  font-size: clamp(26px, 2.3vw, 36px);
  line-height: 1.02;
}

.pcp-post-card__title a {
  color: var(--pcp-text);
  text-decoration: none;
}

.pcp-post-card__excerpt {
  position: relative;
  z-index: 1;
  color: var(--pcp-text-soft);
}

.pcp-post-card__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
  color: var(--pcp-accent);
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
}

.pcp-post-card__link::after {
  content: "→";
  margin-left: 8px;
  transition: transform 220ms var(--pcp-ease);
}

.pcp-post-card__link:hover::after {
  transform: translateX(5px);
}

@media (max-width: 1023.98px) {
  .pcp-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .pcp-post-grid {
    grid-template-columns: 1fr;
  }

  .pcp-post-card {
    min-height: auto;
    padding: 24px;
    border-radius: 24px;
  }
}
/* =========================
   HOME HERO IMPROVEMENT
========================= */

.pcp-section--hero {
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
}

.pcp-section--hero .wp-block-columns {
  width: 100%;
}

.pcp-hero__grid {
  display: grid !important;
  grid-template-columns: minmax(420px, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
}

.pcp-hero__grid > .wp-block-column:first-child {
  max-width: 620px;
}

.pcp-hero__grid h1 {
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: 1.02;
  max-width: 11ch;
}

.pcp-hero__lead {
  max-width: 54ch;
  margin-top: 22px;
}

.pcp-hero__grid .wp-block-image {
  min-height: 520px;
  border-radius: 0 0 0 90px;
  box-shadow: var(--pcp-shadow-lg);
}

.pcp-hero__grid .wp-block-image img {
  min-height: 520px;
  width: 100%;
  object-fit: cover;
}

.pcp-section--hero .wp-block-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.pcp-section--hero ul {
  margin-top: 28px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.pcp-section--hero li {
  position: relative;
  padding-left: 28px;
  color: var(--pcp-text-soft);
  font-size: 16px;
}

.pcp-section--hero li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--pcp-accent);
}

@media (max-width: 1023.98px) {
  .pcp-section--hero {
    min-height: auto;
  }

  .pcp-hero__grid {
    grid-template-columns: 1fr;
  }

  .pcp-hero__grid .wp-block-image,
  .pcp-hero__grid .wp-block-image img {
    min-height: 360px;
    border-radius: 32px;
  }
}
/* =========================
   ANIMATIONS PREMIUM
========================= */

/* ===== BOUTONS ===== */

.button,
.site-header__cta,
.wp-block-button__link {
  transition:
    transform 240ms var(--pcp-ease),
    box-shadow 240ms var(--pcp-ease),
    background 240ms var(--pcp-ease);
}

.button:hover,
.site-header__cta:hover,
.wp-block-button__link:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px rgba(118, 87, 66, 0.25);
}

.button:active,
.site-header__cta:active {
  transform: translateY(0) scale(0.98);
}


/* ===== IMAGES HERO ===== */

.pcp-page-hero__media img,
.pcp-hero__grid .wp-block-image img {
  transition:
    transform 1.2s var(--pcp-ease),
    filter 1.2s var(--pcp-ease);
}

.pcp-page-hero__media:hover img,
.pcp-hero__grid .wp-block-image:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.05);
}


/* ===== CARTES BLOG ===== */

.pcp-post-card {
  transition:
    transform 320ms var(--pcp-ease),
    box-shadow 320ms var(--pcp-ease);
}

.pcp-post-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: var(--pcp-shadow-lg);
}


/* ===== LIEN AVEC GLISSEMENT ===== */

.pcp-post-card__link {
  position: relative;
  transition: transform 220ms var(--pcp-ease), color 220ms var(--pcp-ease);
}

.pcp-post-card__link:hover {
  transform: translateX(4px);
}


/* ===== FADE IN AU SCROLL ===== */

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s var(--pcp-ease),
    transform 0.8s var(--pcp-ease);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}
.pcp-section--hero {
  position: relative;
  overflow: hidden;
}

.pcp-section--hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(118,87,66,0.15), transparent 40%);
  pointer-events: none;
}

.pcp-hero__grid img {
  transition: transform 1s ease;
}

.pcp-hero__grid img:hover {
  transform: scale(1.06);
}
.button {
  position: relative;
  overflow: hidden;
}

.button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.6s;
}

.button:hover::after {
  left: 100%;
}

.button:hover {
  transform: translateY(-2px);
}
.pcp-card,
.pcp-post-card {
  backdrop-filter: blur(10px);
}

.pcp-card:hover,
.pcp-post-card:hover {
  transform: translateY(-8px) scale(1.01);
}
/* =========================
   SERVICES CARDS PREMIUM
========================= */

.pcp-section:has(.pcp-card-grid) {
  padding-top: clamp(90px, 8vw, 140px);
  padding-bottom: clamp(90px, 8vw, 140px);
}

.pcp-section:has(.pcp-card-grid) > .wp-block-group,
.pcp-section:has(.pcp-card-grid) > .wp-block-columns {
  margin-top: 42px;
}

.pcp-section-intro {
  margin-bottom: 22px;
}

.pcp-section h2 {
  max-width: 980px;
  margin-bottom: 28px;
}

.pcp-section h2 + p {
  max-width: 980px;
  margin-bottom: 52px;
}

.pcp-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 22px;
}

.pcp-card {
  min-height: 250px;
  padding: 28px 24px;
  border-radius: 30px;
  border: 1px solid rgba(118, 87, 66, 0.16);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(236,226,214,0.72));
  box-shadow: 0 18px 46px rgba(24, 18, 12, 0.08);
}

.pcp-card:nth-child(2),
.pcp-card:nth-child(4) {
  transform: translateY(22px);
  background:
    linear-gradient(145deg, rgba(246,240,232,0.96), rgba(222,207,190,0.72));
}

.pcp-card:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(118,87,66,0.95), rgba(79,57,44,0.95));
}

.pcp-card:nth-child(3) h3,
.pcp-card:nth-child(3) p,
.pcp-card:nth-child(3) .pcp-card__eyebrow {
  color: #fff;
}

.pcp-card__eyebrow {
  display: block;
  margin-bottom: 34px;
  color: var(--pcp-accent);
}

.pcp-card h3 {
  margin-bottom: 20px;
}

.pcp-card p {
  color: rgba(45, 39, 34, 0.70);
}

.pcp-card:hover {
  transform: translateY(-8px);
}

.pcp-card:nth-child(2):hover,
.pcp-card:nth-child(4):hover {
  transform: translateY(12px);
}

@media (max-width: 1279.98px) {
  .pcp-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pcp-card:nth-child(2),
  .pcp-card:nth-child(4) {
    transform: none;
  }

  .pcp-card:nth-child(2):hover,
  .pcp-card:nth-child(4):hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 767.98px) {
  .pcp-card-grid {
    grid-template-columns: 1fr;
  }

  .pcp-section h2 + p {
    margin-bottom: 34px;
  }

  .pcp-card {
    min-height: auto;
  }
}
/* BLOG PAGE REBUILD */

.blog .pcp-page-hero,
.page-blog .pcp-page-hero {
  width: var(--pcp-wide);
  margin: 32px auto 0;
  padding: clamp(70px, 7vw, 110px) clamp(28px, 5vw, 76px);
  border-radius: var(--pcp-radius-xl);
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(242,236,228,.75));
  box-shadow: var(--pcp-shadow-lg);
}

.blog .pcp-page-hero__inner,
.page-blog .pcp-page-hero__inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(36px, 6vw, 90px);
}

.blog .pcp-page-hero__title,
.page-blog .pcp-page-hero__title {
  max-width: 9ch;
  font-size: clamp(58px, 7vw, 110px);
}

.blog .pcp-page-hero__media,
.page-blog .pcp-page-hero__media {
  min-height: 460px;
  border-radius: 0 0 0 90px;
}

.pcp-posts-shell {
  width: var(--pcp-container);
  padding: clamp(70px, 7vw, 110px) 0;
}

.pcp-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 36px);
}

.pcp-post-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: 34px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(45,39,34,.1);
  box-shadow: var(--pcp-shadow-sm);
}

.pcp-post-card__title {
  font-size: clamp(28px, 2.4vw, 40px);
}

.pcp-post-card__excerpt {
  margin-top: 8px;
}

.pcp-post-card__link {
  margin-top: auto;
  padding-top: 26px;
}

@media (max-width: 1023px) {
  .blog .pcp-page-hero__inner,
  .page-blog .pcp-page-hero__inner,
  .pcp-post-grid {
    grid-template-columns: 1fr;
  }

  .blog .pcp-page-hero__media,
  .page-blog .pcp-page-hero__media {
    min-height: 340px;
    border-radius: 32px;
  }
}
/* FORMULAIRE PREMIUM */

.pcp-cf7-form {
  display: grid;
  gap: 18px;
}

.pcp-cf7-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.pcp-cf7-form label {
  display: grid;
  gap: 8px;
  color: var(--pcp-text);
  font-size: 14px;
  font-weight: 800;
}

.pcp-cf7-form input,
.pcp-cf7-form select,
.pcp-cf7-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(45, 39, 34, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--pcp-text);
  font-size: 15px;
}

.pcp-cf7-form textarea {
  min-height: 140px;
  padding-top: 14px;
  resize: vertical;
}

.pcp-cf7-form input:focus,
.pcp-cf7-form select:focus,
.pcp-cf7-form textarea:focus {
  outline: none;
  border-color: rgba(118, 87, 66, 0.72);
  box-shadow: 0 0 0 4px rgba(118, 87, 66, 0.10);
}

.pcp-cf7-submit input {
  width: auto;
  min-height: 52px;
  padding: 0 32px;
  border-radius: 999px;
  background: var(--pcp-accent);
  color: #fff;
  font-weight: 850;
  cursor: pointer;
}

@media (max-width: 767px) {
  .pcp-cf7-row {
    grid-template-columns: 1fr;
  }

  .pcp-cf7-submit input {
    width: 100%;
  }
}
/* RESPONSIVE GLOBAL PREMIUM */

@media (max-width: 1024px) {

  .pcp-page-hero__inner,
  .pcp-hero__grid {
    grid-template-columns: 1fr;
  }

  .pcp-page-hero__title {
    max-width: 100%;
    font-size: clamp(38px, 6vw, 64px);
  }

  .pcp-page-hero__media {
    min-height: 280px;
  }

  .pcp-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pcp-post-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


@media (max-width: 768px) {

  .pcp-card-grid,
  .pcp-post-grid {
    grid-template-columns: 1fr;
  }

  .pcp-section {
    padding: 60px 0;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  p {
    font-size: 15px;
  }

  .pcp-page-hero {
    padding: 40px 0;
  }

  .pcp-page-hero__media {
    border-radius: 24px;
  }
}

@media (max-width: 479.98px) {
  :root {
    --pcp-container: min(100% - 28px, 1320px);
    --pcp-wide: min(100% - 28px, 1440px);
    --pcp-content: min(100% - 28px, 860px);
  }

  h1,
  h2,
  h3,
  .pcp-page-hero__title,
  .pcp-hero__grid h1 {
    overflow-wrap: anywhere;
  }

  .pcp-section--hero {
    padding-inline: 18px;
    border-radius: 28px;
  }

  .pcp-section--hero .wp-block-buttons,
  .entry-content .wp-block-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .wp-block-button,
  .wp-block-button__link,
  .button {
    width: 100%;
  }

  .pcp-form-panel {
    padding: 20px;
    border-radius: 24px;
  }
}
.pcp-form-panel {
  padding: clamp(28px, 4vw, 52px);
  border-radius: 34px;
  background: rgba(255,255,255,0.92);
  box-shadow: var(--pcp-shadow-lg);
}

.pcp-quote-form {
  display: grid;
  gap: 22px;
}

.pcp-quote-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.pcp-quote-form label {
  display: grid;
  gap: 10px;
  color: var(--pcp-text);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pcp-quote-form input,
.pcp-quote-form select,
.pcp-quote-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(45,39,34,0.12);
  border-radius: 18px;
  background: #f7f5f2;
  color: var(--pcp-text);
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
}

.pcp-quote-form textarea {
  min-height: 130px;
  padding-top: 16px;
}

.pcp-quote-form input[type="submit"] {
  width: 100%;
  min-height: 58px;
  margin-top: 8px;
  border-radius: 18px;
  background: var(--pcp-accent);
  color: #fff;
  font-size: 16px;
  font-weight: 850;
}

.pcp-form-captcha {
  padding: 14px;
  border: 1px solid rgba(45, 39, 34, .10);
  border-radius: 16px;
  background: rgba(255, 255, 255, .62);
}

.pcp-form-captcha input[type="number"] {
  max-width: 180px;
}

.pcstudio-wizard .pcp-form-captcha {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--text-main);
  font-size: 13px;
  font-weight: 850;
}

.pcstudio-wizard .pcp-form-captcha input[type="number"] {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: rgba(255, 255, 255, .9);
}

.pcp-form-note {
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--pcp-text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 767px) {
  .pcp-quote-row {
    grid-template-columns: 1fr;
  }
}

/* PLAN CÉRAMIQUE STUDIO — MINERAL LUXURY 2026 */

:root {
  --white-warm: #FBF8F2;
  --porcelain: #F4EFE6;
  --stone-light: #E7DFD2;
  --sand: #D8C7AD;
  --taupe: #B7A58B;
  --champagne: #C9A76A;
  --champagne-light: #E9D6A7;
  --bronze-soft: #9B7A4A;
  --walnut: #6B4E35;
  --sage: #A7B3A0;
  --clay: #B8785F;
  --text-main: #1D1D1B;
  --text-muted: #6F6A60;
  --text-light: #FFFFFF;
  --border-soft: rgba(29, 29, 27, 0.12);
  --glass-light: rgba(255, 255, 255, 0.68);
  --shadow-soft: 0 24px 70px rgba(50, 40, 25, 0.12);
  --shadow-hover: 0 30px 90px rgba(50, 40, 25, 0.18);
  --pcstudio-max: min(100% - 48px, 1240px);

  --pcp-bg: var(--white-warm);
  --pcp-bg-deep: var(--porcelain);
  --pcp-surface: #FFFFFF;
  --pcp-surface-soft: var(--porcelain);
  --pcp-surface-dark: var(--walnut);
  --pcp-text: var(--text-main);
  --pcp-text-soft: var(--text-muted);
  --pcp-text-light: rgba(29, 29, 27, 0.68);
  --pcp-text-inverse: var(--text-light);
  --pcp-accent: var(--champagne);
  --pcp-accent-soft: var(--champagne-light);
  --pcp-accent-dark: var(--bronze-soft);
  --pcp-line: var(--border-soft);
  --pcp-line-strong: rgba(29, 29, 27, 0.18);
  --pcp-shadow-sm: 0 12px 32px rgba(50, 40, 25, 0.08);
  --pcp-shadow-md: var(--shadow-soft);
  --pcp-shadow-lg: var(--shadow-hover);
}

html {
  scroll-padding-top: 92px;
}

body {
  background:
    linear-gradient(115deg, rgba(233, 214, 167, 0.18), transparent 34%),
    linear-gradient(180deg, var(--white-warm), var(--porcelain));
  color: var(--text-main);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(120deg, rgba(201, 167, 106, 0.14) 1px, transparent 1px),
    linear-gradient(40deg, rgba(107, 78, 53, 0.07) 1px, transparent 1px);
  background-size: 120px 120px, 180px 180px;
}

h1,
h2,
h3,
h4 {
  color: var(--text-main);
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
}

h2 {
  font-size: clamp(2.125rem, 4vw, 3.25rem);
}

h3 {
  font-size: clamp(1.375rem, 2vw, 1.875rem);
}

p,
li {
  color: var(--text-muted);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(201, 167, 106, 0.55);
  outline-offset: 4px;
}

.button,
.wp-block-button__link,
button.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--champagne);
  color: var(--text-main);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(155, 122, 74, 0.18);
  cursor: pointer;
  transition: transform 220ms var(--pcp-ease), box-shadow 220ms var(--pcp-ease), background 220ms var(--pcp-ease);
}

.button:hover,
.wp-block-button__link:hover,
button.button:hover {
  background: var(--champagne-light);
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(155, 122, 74, 0.24);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.62);
  border-color: var(--border-soft);
  box-shadow: none;
}

.site-header {
  height: 76px;
  background: rgba(251, 248, 242, 0);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  background: rgba(251, 248, 242, 0.82);
  border-bottom-color: rgba(29, 29, 27, 0.08);
  box-shadow: 0 12px 36px rgba(50, 40, 25, 0.08);
}

.site-header__inner {
  width: min(100% - 44px, 1320px);
  height: 76px;
  gap: 24px;
}

.site-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  max-width: 260px;
  color: var(--text-main);
  text-decoration: none;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(201, 167, 106, 0.42);
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(233,214,167,.38)),
    var(--porcelain);
  color: var(--walnut);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 16px 34px rgba(50, 40, 25, 0.10);
}

.logo-text {
  display: grid;
  gap: 2px;
  line-height: 1;
  min-width: 0;
}

.logo-text strong {
  color: var(--text-main);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.logo-text small {
  color: var(--champagne);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.22em;
}

.site-nav__menu {
  gap: clamp(14px, 1.4vw, 28px);
}

.site-nav__menu a {
  color: var(--text-main);
  font-size: 14px;
  font-weight: 750;
}

.site-nav__menu a::after {
  background: var(--champagne);
}

.site-header__cta {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--champagne);
  color: var(--text-main);
  box-shadow: 0 16px 36px rgba(155, 122, 74, 0.20);
}

.nav-toggle {
  width: 46px;
  height: 46px;
  display: none;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  box-shadow: 0 12px 28px rgba(50, 40, 25, 0.08);
}

.nav-toggle__line {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: var(--text-main);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.pcstudio-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  background: var(--white-warm);
  color: var(--text-main);
  animation: pcstudioLoader 900ms ease forwards;
}

.pcstudio-loader__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.pcstudio-loader__line {
  width: 180px;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(201, 167, 106, 0.20);
}

.pcstudio-loader__line::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--champagne);
  transform-origin: left;
  animation: pcstudioLine 720ms ease forwards;
}

.pcstudio-loader p {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes pcstudioLoader {
  0%, 76% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

@keyframes pcstudioLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.pcstudio {
  overflow: hidden;
}

.pcstudio-hero,
.pcstudio-section {
  width: var(--pcstudio-max);
  margin-inline: auto;
}

.pcstudio-hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  padding: clamp(54px, 8vw, 104px) 0 clamp(42px, 6vw, 76px);
}

.pcstudio-label {
  margin: 0 0 14px;
  color: var(--bronze-soft);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 11ch;
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.pcstudio-hero__lead {
  max-width: 600px;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.72;
}

.pcstudio-actions,
.pcstudio-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.pcstudio-badges span {
  padding: 10px 14px;
  border: 1px solid rgba(201, 167, 106, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--text-main);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(16px);
}

.pcstudio-hero__media {
  position: relative;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow-soft);
}

.pcstudio-hero__media img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  border-radius: 26px;
  object-fit: cover;
}

.pcstudio-hero__media figcaption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  background: rgba(251, 248, 242, 0.72);
  color: var(--text-main);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  backdrop-filter: blur(18px);
}

.pcstudio-section {
  padding: clamp(72px, 9vw, 122px) 0;
}

.pcstudio-section__heading {
  max-width: 760px;
  margin-bottom: clamp(30px, 4vw, 52px);
}

.pcstudio-section__heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.125rem, 4vw, 3.25rem);
  line-height: 1.05;
}

.pcstudio-editorial,
.pcstudio-config,
.pcstudio-blog,
.pcstudio-final {
  width: min(100% - 32px, 1320px);
  padding: clamp(36px, 5vw, 64px);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.74), rgba(244,239,230,.88)),
    var(--porcelain);
  box-shadow: var(--shadow-soft);
}

.pcstudio-editorial__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

.pcstudio-editorial__grid > p {
  color: var(--text-main);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.12;
}

.pcstudio-editorial__cards,
.pcstudio-surface__grid,
.pcstudio-details__grid,
.pcstudio-reviews__grid,
.pcstudio-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pcstudio-editorial__cards article,
.pcstudio-feature-card,
.pcstudio-details__grid article,
.pcstudio-reviews__grid article,
.pcstudio-post-card,
.pcstudio-compare article,
.pcstudio-process__grid article,
.pcstudio-config__result,
.pcstudio-wizard {
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 44px rgba(50, 40, 25, 0.08);
}

.pcstudio-editorial__cards article,
.pcstudio-feature-card,
.pcstudio-details__grid article,
.pcstudio-reviews__grid article,
.pcstudio-compare article,
.pcstudio-process__grid article {
  padding: 24px;
}

.pcstudio-editorial__cards span,
.pcstudio-feature-card span,
.pcstudio-process__grid span,
.pcstudio-details__grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--champagne);
  font-weight: 850;
}

.pcstudio-surface__grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.pcstudio-feature-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  grid-column: span 2;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.pcstudio-feature-card:first-child,
.pcstudio-feature-card:nth-child(5) {
  grid-column: span 3;
}

.pcstudio-feature-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(233, 214, 167, 0.18));
  pointer-events: none;
}

.pcstudio-feature-card h3,
.pcstudio-feature-card p,
.pcstudio-feature-card span {
  position: relative;
  z-index: 1;
}

.pcstudio-feature-card span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  line-height: 0.9;
  opacity: .72;
}

.pcstudio-feature-card h3 {
  margin-bottom: 12px;
}

.pcstudio-feature-card p {
  max-width: 34ch;
}

.pcstudio-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 167, 106, .42);
  box-shadow: var(--shadow-hover);
}

.pcstudio-scanner__stage {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.5fr);
  gap: 24px;
  align-items: stretch;
}

.pcstudio-scanner figure {
  position: relative;
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
}

.pcstudio-scanner figure img,
.pcstudio-mood-card img,
.pcstudio-applications img,
.pcstudio-gallery img,
.pcstudio-post-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scanner-point {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 50%;
  background: var(--champagne);
  color: var(--text-main);
  font-weight: 900;
  box-shadow: 0 12px 34px rgba(50,40,25,.18);
  transform: translate(-50%, -50%);
}

.scanner-point.is-active {
  background: var(--text-main);
  color: var(--text-light);
}

.pcstudio-scanner__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 34px;
  background: var(--glass-light);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.pcstudio-moods__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.pcstudio-mood-card {
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
}

.pcstudio-mood-card img {
  height: 330px;
}

.pcstudio-mood-card > div {
  padding: 24px;
}

.pcstudio-mood-card a,
.pcstudio-post-card a {
  color: var(--bronze-soft);
  font-weight: 850;
  text-decoration: none;
}

.pcstudio-swatches {
  display: flex;
  gap: 8px;
  margin: 18px 0;
}

.pcstudio-swatches span {
  width: 26px;
  height: 26px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 8px 18px rgba(50,40,25,.12);
}

.pcstudio-config__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
  gap: 28px;
  align-items: start;
}

.pcstudio-config__steps {
  display: grid;
  gap: 18px;
}

.pcstudio-config fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0 0 20px;
  border: 0;
  border-bottom: 1px solid var(--border-soft);
}

.pcstudio-config legend {
  width: 100%;
  margin-bottom: 4px;
  color: var(--text-main);
  font-weight: 850;
}

.pcstudio-config button,
.pcstudio-choice-grid label {
  min-height: 44px;
  padding: 11px 15px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(255,255,255,.64);
  color: var(--text-main);
  font-weight: 800;
  cursor: pointer;
}

.pcstudio-config button.is-active,
.pcstudio-choice-grid label:has(input:checked) {
  border-color: rgba(201,167,106,.78);
  background: var(--champagne-light);
}

.pcstudio-config__result {
  padding: 28px;
}

.pcstudio-applications__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 18px;
}

.pcstudio-applications article {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.pcstudio-applications article:first-child,
.pcstudio-applications article:nth-child(4) {
  grid-column: span 2;
  grid-row: span 2;
}

.pcstudio-applications article::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 42%, rgba(29, 29, 27, .34)),
    linear-gradient(45deg, rgba(251, 248, 242, .18), transparent 46%);
  pointer-events: none;
}

.pcstudio-applications article img {
  transition: transform 520ms ease, filter 520ms ease;
}

.pcstudio-applications article:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.04);
}

.pcstudio-applications h3 {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(251,248,242,.78);
  font-size: 22px;
  backdrop-filter: blur(16px);
}

.pcstudio-compare__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.pcstudio-compare .is-featured {
  border-color: rgba(201,167,106,.55);
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(233,214,167,.40)),
    var(--porcelain);
  box-shadow: var(--shadow-soft);
}

.pcstudio-compare ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.pcstudio-compare li {
  position: relative;
  padding-left: 28px;
}

.pcstudio-compare li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 0 5px rgba(201, 167, 106, .14);
}

.pcstudio-process__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.pcstudio-process__grid article {
  position: relative;
  min-height: 190px;
  border: 0;
  border-right: 1px solid var(--border-soft);
  border-radius: 0;
  background: rgba(255,255,255,.42);
  box-shadow: none;
}

.pcstudio-process__grid article:first-child {
  border-radius: 24px 0 0 24px;
}

.pcstudio-process__grid article:last-child {
  border-right: 0;
  border-radius: 0 24px 24px 0;
}

.pcstudio-process__grid article::before {
  content: "";
  position: absolute;
  left: 24px;
  top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 0 7px rgba(201,167,106,.16);
}

.pcstudio-process__grid h3 {
  font-size: clamp(1.15rem, 1.45vw, 1.45rem);
  line-height: 1.12;
}

.pcstudio-details {
  width: min(100% - 32px, 1320px);
  padding: clamp(40px, 5vw, 68px);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.38), rgba(231,223,210,.9)),
    var(--stone-light);
}

.pcstudio-details__grid article {
  min-height: 140px;
  display: grid;
  align-content: space-between;
  background: rgba(255,255,255,.64);
}

.pcstudio-details__grid span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(201, 167, 106, .42);
  border-radius: 50%;
  background: rgba(233, 214, 167, .24);
  line-height: 1;
}

.pcstudio-details__grid h3 {
  margin-bottom: 0;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
}

.pcstudio-gallery__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  grid-auto-rows: 240px;
  gap: 18px;
}

.pcstudio-gallery img {
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 420ms ease;
}

.pcstudio-gallery img:nth-child(1),
.pcstudio-gallery img:nth-child(4) {
  grid-row: span 2;
}

.pcstudio-gallery img:hover {
  transform: scale(1.025);
}

.pcstudio-post-card {
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.pcstudio-post-card img {
  height: 220px;
  transition: transform 520ms ease, filter 520ms ease;
}

.pcstudio-post-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 167, 106, .42);
  box-shadow: var(--shadow-hover);
}

.pcstudio-post-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.04);
}

.pcstudio-blog__grid .pcstudio-post-card:first-child {
  grid-column: span 1;
  background:
    linear-gradient(145deg, rgba(255,255,255,.88), rgba(233,214,167,.22)),
    rgba(255,255,255,.72);
}

.pcstudio-post-card > :not(img) {
  margin-inline: 22px;
}

.pcstudio-post-card .pcstudio-label,
.pcstudio-post-card__meta {
  margin-top: 22px;
}

.pcstudio-post-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.pcstudio-post-card__meta .pcstudio-label {
  margin-top: 0;
}

.pcstudio-post-card__meta span {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pcstudio-post-card h3 a {
  color: var(--text-main);
  text-decoration: none;
}

.pcstudio-post-card a {
  display: inline-flex;
  margin: 6px 22px 24px;
}

.pcstudio-blog__more {
  margin-top: 26px;
}

.pcstudio-blog-page .pcstudio-hero {
  min-height: auto;
}

.pcstudio-blog-page .navigation.pagination {
  width: fit-content;
  margin: 34px auto 0;
}

.pcstudio-blog-page .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pcstudio-blog-page .page-numbers {
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  color: var(--text-main);
  font-weight: 850;
  text-decoration: none;
}

.pcstudio-blog-page .page-numbers.current {
  border-color: rgba(201,167,106,.62);
  background: var(--champagne-light);
}

.pcstudio-article-hero {
  width: var(--pcstudio-max);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 104px) 0 42px;
}

.pcstudio-article-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--bronze-soft);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.pcstudio-article-excerpt {
  max-width: 62ch;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
}

.pcstudio-article-hero figure {
  margin: 0;
}

.pcstudio-article-hero img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
}

.pcstudio-article-shell {
  width: min(100% - 48px, 1120px);
  display: grid;
  grid-template-columns: minmax(210px, .35fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  margin: 0 auto;
}

.pcstudio-article-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  background: rgba(255,255,255,.58);
  box-shadow: 0 14px 40px rgba(50,40,25,.07);
}

.pcstudio-article-aside ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pcstudio-article-aside li {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 750;
}

.pcstudio-article-aside .button {
  width: 100%;
  min-height: 44px;
  padding-inline: 14px;
}

.pcstudio-article-body {
  width: 100%;
  margin: 0;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  background: rgba(255,255,255,.74);
  box-shadow: var(--shadow-soft);
}

.pcstudio-article-body > *:not(.alignwide):not(.alignfull) {
  width: 100%;
}

.pcstudio-article-body h2 {
  margin-top: 1.4em;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.pcstudio-article-body p,
.pcstudio-article-body li {
  margin-bottom: 1em;
}

.pcstudio-article-body img {
  border-radius: 22px;
}

.pcstudio-article-nav {
  width: min(100% - 48px, 1120px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: clamp(28px, 5vw, 58px) auto 0;
}

.pcstudio-article-nav div {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  background: rgba(255,255,255,.56);
}

.pcstudio-article-nav div:last-child {
  justify-content: flex-end;
  text-align: right;
}

.pcstudio-article-nav a {
  color: var(--text-main);
  font-weight: 850;
  text-decoration: none;
}

.pcstudio-related-posts {
  width: min(100% - 32px, 1320px);
  margin-inline: auto;
}

.pcstudio-article-cta {
  width: min(100% - 48px, 1120px);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  margin: clamp(36px, 6vw, 76px) auto clamp(70px, 8vw, 118px);
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(233,214,167,.28)),
    var(--porcelain);
  box-shadow: var(--shadow-soft);
}

.pcstudio-article-cta h2 {
  max-width: 720px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.pcstudio-article-cta p:not(.pcstudio-label) {
  max-width: 680px;
}

.pcstudio-reviews__grid article {
  display: grid;
  gap: 10px;
}

.pcstudio-stars {
  color: var(--champagne);
  letter-spacing: 0.12em;
}

.pcstudio-reviews strong {
  color: var(--text-main);
}

.pcstudio-reviews small {
  color: var(--text-muted);
  font-weight: 750;
}

.pcstudio-wizard {
  max-width: 940px;
  padding: clamp(24px, 4vw, 42px);
}

.pcstudio-wizard__progress {
  height: 6px;
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(201,167,106,.18);
}

.pcstudio-wizard__progress span {
  display: block;
  width: 33.33%;
  height: 100%;
  border-radius: inherit;
  background: var(--champagne);
  transition: width 260ms ease;
}

.pcstudio-wizard__step {
  display: none;
}

.pcstudio-wizard__step.is-active {
  display: block;
}

.pcstudio-choice-grid,
.pcstudio-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pcstudio-choice-grid label {
  display: flex;
  align-items: center;
  border-radius: 18px;
}

.pcstudio-choice-grid input {
  margin-right: 10px;
}

.pcstudio-form-grid label {
  display: grid;
  gap: 8px;
  color: var(--text-main);
  font-size: 13px;
  font-weight: 850;
}

.pcstudio-form-grid .is-wide {
  grid-column: 1 / -1;
}

.pcstudio-form-grid input,
.pcstudio-form-grid textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  color: var(--text-main);
}

.pcstudio-form-grid textarea {
  min-height: 130px;
  padding-top: 14px;
  resize: vertical;
}

.pcstudio-wizard__actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
}

.pcstudio-wizard__actions [hidden] {
  display: none !important;
}

.pcstudio-wizard__status {
  margin-top: 16px;
  color: var(--bronze-soft);
  font-weight: 850;
}

.pcstudio-final {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  margin-bottom: clamp(64px, 8vw, 110px);
}

.pcstudio-final h2 {
  max-width: 680px;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(135deg, rgba(185,138,91,.18) 0%, rgba(185,138,91,0) 34%),
    linear-gradient(180deg, #1f1d19 0%, #11100e 100%);
  color: #f7f1e8;
}

.site-footer__inner {
  width: min(100% - 48px, 1320px);
  display: grid;
  grid-template-columns: minmax(280px, 1.45fr) minmax(160px, .8fr) minmax(220px, 1fr) minmax(160px, .8fr);
  gap: clamp(24px, 4vw, 58px);
  margin-inline: auto;
  padding: clamp(48px, 6vw, 76px) 0 32px;
}

.site-footer__brand p {
  max-width: 360px;
  margin: 16px 0 0;
  color: rgba(247,241,232,.72);
  font-size: 15px;
  line-height: 1.7;
}

.site-footer .site-logo {
  color: #fff8ee;
}

.site-footer .logo-mark {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: #fff8ee;
}

.site-footer .logo-text small {
  color: rgba(247,241,232,.62);
}

.site-footer__heading {
  margin-bottom: 14px;
  color: #d7aa73;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-footer__nav,
.site-footer__meta,
.site-footer__social {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer__links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__links li {
  margin: 0;
  padding: 0;
}

.site-footer__meta {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-footer__contact-list {
  display: grid;
  gap: 13px;
}

.site-footer__contact-list p,
.site-footer__social p {
  margin: 0;
  color: rgba(247,241,232,.7);
  line-height: 1.55;
}

.site-footer__contact-list span {
  display: block;
  margin-bottom: 4px;
  color: rgba(215,170,115,.86);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(247,241,232,.74);
  text-decoration: none;
  transition: color 220ms ease, transform 220ms ease;
}

.site-footer__links a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
}

.site-footer__links a::before {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(215,170,115,.78);
  content: "";
  opacity: 0;
  transform: scale(.4);
  transition: opacity 220ms ease, transform 220ms ease;
}

.site-footer__links a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.site-footer__contact-list a {
  color: #fff8ee;
}

.site-footer a:hover {
  color: #d7aa73;
  transform: translateX(3px);
}

.site-footer .site-logo:hover,
.site-footer__social-links a:hover {
  transform: translateY(-2px);
}

.site-footer__social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.site-footer__social-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(255,255,255,.3);
  font-size: 13px;
  font-weight: 850;
}

.site-footer__social > a {
  width: fit-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  padding: 10px 16px;
  border: 1px solid rgba(215,170,115,.34);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #fff8ee;
  font-weight: 850;
}

.site-footer__bottom {
  width: min(100% - 48px, 1320px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-inline: auto;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(247,241,232,.62);
  font-size: 14px;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.reveal-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-up.is-visible,
.pcstudio-ready .pcstudio-hero .reveal-up {
  opacity: 1;
  transform: translateY(0);
}

.pcp-blog-hero,
.pcp-article-hero,
.pcp-page-hero {
  background: transparent;
}

.pcp-blog-hero h1,
.pcp-article-hero h1,
.pcp-page-hero__title {
  font-size: clamp(2.2rem, 5vw, 4.25rem);
}

.pcp-blog-card,
.pcp-post-card {
  background: rgba(255,255,255,.74);
  border-color: var(--border-soft);
}

@media (max-width: 1180px) {
  .site-logo {
    max-width: calc(100% - 70px);
  }

  .site-header__nav-shell {
    position: fixed;
    inset: 76px 18px auto;
    display: none;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 28px;
    background: rgba(251,248,242,.94);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(20px);
  }

  .site-header__nav-shell.is-open {
    display: grid;
    gap: 18px;
  }

  .site-nav,
  .site-nav__menu {
    width: 100%;
  }

  .site-nav__menu {
    display: grid;
    gap: 4px;
  }

  .site-nav__menu a {
    width: 100%;
    height: auto;
    padding: 14px 4px;
    font-size: 18px;
  }

  .site-header__cta {
    width: 100%;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .pcstudio-hero,
  .pcstudio-scanner__stage,
  .pcstudio-config__grid,
  .pcstudio-editorial__grid,
  .pcstudio-final,
  .pcstudio-article-hero,
  .pcstudio-article-shell,
  .pcstudio-article-cta {
    grid-template-columns: 1fr;
  }

  .pcstudio-article-cta {
    display: grid;
  }

  .pcstudio-article-aside {
    position: static;
  }

  .pcstudio-surface__grid,
  .pcstudio-process__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pcstudio-feature-card,
  .pcstudio-feature-card:first-child,
  .pcstudio-feature-card:nth-child(5) {
    grid-column: span 1;
  }

  .pcstudio-applications__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 260px;
  }

  .pcstudio-applications article:first-child,
  .pcstudio-applications article:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .pcstudio-process__grid {
    gap: 14px;
    border: 0;
  }

  .pcstudio-process__grid article,
  .pcstudio-process__grid article:first-child,
  .pcstudio-process__grid article:last-child {
    min-height: 170px;
    border: 1px solid var(--border-soft);
    border-radius: 24px;
  }

  .pcstudio-final {
    display: grid;
  }

  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 820px) {
  :root {
    --pcstudio-max: min(100% - 30px, 1240px);
  }

  .site-header__inner,
  .site-footer__inner,
  .site-footer__bottom {
    width: min(100% - 30px, 1320px);
  }

  .logo-text strong {
    font-size: 11px;
  }

  .pcstudio-hero {
    min-height: auto;
    padding-top: 46px;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(2.125rem, 10vw, 2.625rem);
  }

  .pcstudio-section__heading h2 {
    font-size: clamp(2rem, 8vw, 2.625rem);
  }

  .pcstudio-hero__media figcaption {
    position: static;
    margin-top: 12px;
    border-radius: 18px;
  }

  .pcstudio-editorial,
  .pcstudio-config,
  .pcstudio-blog,
  .pcstudio-final,
  .pcstudio-details {
    width: min(100% - 24px, 1320px);
    padding: 26px;
    border-radius: 28px;
  }

  .pcstudio-editorial__cards,
  .pcstudio-surface__grid,
  .pcstudio-moods__grid,
  .pcstudio-applications__grid,
  .pcstudio-compare__grid,
  .pcstudio-process__grid,
  .pcstudio-details__grid,
  .pcstudio-reviews__grid,
  .pcstudio-blog__grid,
  .pcstudio-choice-grid,
  .pcstudio-form-grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .pcstudio-feature-card,
  .pcstudio-feature-card:first-child,
  .pcstudio-feature-card:nth-child(5) {
    grid-column: auto;
    min-height: 0;
  }

  .pcstudio-applications__grid {
    grid-auto-rows: 260px;
  }

  .pcstudio-compare__grid {
    gap: 16px;
  }

  .pcstudio-process__grid article,
  .pcstudio-process__grid article:first-child,
  .pcstudio-process__grid article:last-child {
    min-height: 0;
  }

  .pcstudio-scanner figure {
    min-height: 360px;
  }

  .scanner-point {
    width: 34px;
    height: 34px;
  }

  .pcstudio-gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .pcstudio-gallery img:nth-child(1),
  .pcstudio-gallery img:nth-child(4),
  .pcstudio-gallery__grid button:nth-child(1),
  .pcstudio-gallery__grid button:nth-child(4) {
    grid-row: span 1;
  }

  .pcstudio-wizard__actions,
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .pcstudio-post-card__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .pcstudio-article-shell,
  .pcstudio-article-nav,
  .pcstudio-article-cta {
    width: min(100% - 30px, 1120px);
  }

  .pcstudio-article-nav {
    grid-template-columns: 1fr;
  }

  .pcstudio-article-nav div:last-child {
    justify-content: flex-start;
    text-align: left;
  }

  .site-footer__meta {
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .pcstudio-loader {
    display: none;
  }

  .reveal-up {
    opacity: 1;
    transform: none;
  }
}

/* DYNAMIC LANDING UPGRADES */

.site-header.is-scrolled {
  height: 66px;
}

.site-header.is-scrolled .site-header__inner {
  height: 66px;
}

.site-nav__menu a.is-active {
  color: var(--bronze-soft);
}

.site-nav__menu a.is-active::after {
  width: 100%;
}

.pcstudio-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.pcstudio-filter-bar button {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  color: var(--text-main);
  font-weight: 850;
  cursor: pointer;
}

.pcstudio-filter-bar button.is-active {
  border-color: rgba(201,167,106,.75);
  background: var(--champagne-light);
}

.pcstudio-materials__intro,
.pcstudio-projects__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin: -6px 0 24px;
  padding: 22px 24px;
  border: 1px solid rgba(201,167,106,.32);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(250,247,239,.72)),
    radial-gradient(circle at 92% 12%, rgba(201,167,106,.2), transparent 34%);
  box-shadow: 0 18px 50px rgba(57, 48, 38, .08);
}

.pcstudio-materials__intro p,
.pcstudio-projects__intro p {
  max-width: 820px;
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

[data-filter-item] {
  transition: opacity 220ms ease, transform 220ms ease;
}

[data-filter-item].is-hidden {
  display: none;
  opacity: 0;
  pointer-events: none;
  transform: scale(.96);
}

.pcstudio-materials__grid,
.pcstudio-projects__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.pcstudio-material-card,
.pcstudio-project-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  background: rgba(255,255,255,.74);
  box-shadow: var(--shadow-soft);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.pcstudio-material-card:hover,
.pcstudio-project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,167,106,.42);
  box-shadow: var(--shadow-hover);
}

.pcstudio-material-card img,
.pcstudio-project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 600ms ease;
}

.pcstudio-material-card:hover img,
.pcstudio-project-card:hover img {
  transform: scale(1.035);
}

.pcstudio-material-card > div,
.pcstudio-project-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.pcstudio-material-card h3,
.pcstudio-project-card h3 {
  margin-bottom: 10px;
}

.pcstudio-material-card > div > p:not(.pcstudio-label),
.pcstudio-project-card > div > p:not(.pcstudio-label) {
  color: var(--text-muted);
  line-height: 1.65;
}

.pcstudio-material-card small,
.pcstudio-project-card small {
  display: block;
  margin: auto 0 14px;
  color: var(--text-muted);
  font-weight: 750;
}

.pcstudio-material-card a,
.pcstudio-project-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bronze-soft);
  font-weight: 850;
  text-decoration: none;
}

.pcstudio-material-card a::after,
.pcstudio-project-card a::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: width 220ms ease;
}

.pcstudio-material-card:hover a::after,
.pcstudio-project-card:hover a::after {
  width: 34px;
}

.pcstudio-projects__grid .pcstudio-project-card:first-child {
  grid-column: span 2;
}

.pcstudio-projects__grid .pcstudio-project-card:first-child img {
  height: 360px;
}

.pcstudio-config__result {
  overflow: hidden;
}

.pcstudio-config__result > img {
  width: calc(100% + 56px);
  height: 210px;
  margin: -28px -28px 24px;
  object-fit: cover;
}

.pcstudio-gallery__grid button {
  min-width: 0;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 26px;
  background: transparent;
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
}

.pcstudio-gallery__grid button:nth-child(1),
.pcstudio-gallery__grid button:nth-child(4) {
  grid-row: span 2;
}

.pcstudio-gallery__grid button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.pcstudio-gallery__grid button:hover img {
  transform: scale(1.035);
}

.pcstudio-lightbox[hidden] {
  display: none;
}

.pcstudio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(29, 29, 27, .68);
  backdrop-filter: blur(14px);
}

.pcstudio-lightbox img {
  max-width: min(100%, 1180px);
  max-height: min(82vh, 780px);
  border-radius: 28px;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}

.pcstudio-lightbox__close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  background: rgba(251,248,242,.88);
  color: var(--text-main);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

body.lightbox-open {
  overflow: hidden;
}

.pcstudio-before-after__slider {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
}

.pcstudio-before-after__slider img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.pcstudio-before-after__before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--before-width, 48%);
  overflow: hidden;
  border-right: 3px solid var(--champagne);
}

.pcstudio-before-after__before img {
  width: calc(100vw - 48px);
  max-width: none;
  filter: saturate(.7) contrast(.92);
}

.pcstudio-before-after__label {
  position: absolute;
  top: 18px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(251,248,242,.82);
  color: var(--text-main);
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.pcstudio-before-after__label--before {
  left: 18px;
}

.pcstudio-before-after__label--after {
  right: 18px;
}

.pcstudio-before-after input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.pcstudio-story {
  width: min(100% - 32px, 1320px);
  padding: clamp(38px, 5vw, 68px);
  border-radius: 34px;
  background: rgba(255,255,255,.54);
  box-shadow: var(--shadow-soft);
}

.pcstudio-story__grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: start;
}

.pcstudio-story__steps {
  display: grid;
  gap: 18px;
}

.pcstudio-story__steps article {
  padding: 24px;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  background: rgba(255,255,255,.62);
  opacity: .62;
  transition: opacity 260ms ease, transform 260ms ease, background 260ms ease;
}

.pcstudio-story__steps article.is-active {
  opacity: 1;
  transform: translateX(8px);
  background: rgba(233,214,167,.28);
}

.pcstudio-story__steps span {
  color: var(--champagne);
  font-weight: 900;
}

.pcstudio-story__media {
  position: sticky;
  top: 110px;
  margin: 0;
}

.pcstudio-story__media img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  border-radius: 32px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.pcstudio-review-initials {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--champagne-light);
  color: var(--walnut);
  font-weight: 900;
}

.pcstudio-wizard__summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.pcstudio-wizard__summary span {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: rgba(255,255,255,.66);
  color: var(--text-muted);
  font-size: 14px;
}

.pcstudio-wizard__summary strong {
  color: var(--text-main);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.pcstudio-floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.pcstudio-floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.pcstudio-top-link {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  background: rgba(255,255,255,.82);
  color: var(--text-main);
  font-weight: 900;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 1180px) {
  .pcstudio-materials__grid,
  .pcstudio-projects__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pcstudio-story__grid {
    grid-template-columns: 1fr;
  }

  .pcstudio-story__media {
    position: static;
  }
}

@media (max-width: 820px) {
  .pcstudio-materials__intro,
  .pcstudio-projects__intro {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .pcstudio-materials__intro .button,
  .pcstudio-projects__intro .button {
    justify-self: start;
  }

  .pcstudio-materials__grid,
  .pcstudio-projects__grid,
  .pcstudio-wizard__summary {
    grid-template-columns: 1fr;
  }

  .pcstudio-projects__grid .pcstudio-project-card:first-child {
    grid-column: span 1;
  }

  .pcstudio-before-after__slider,
  .pcstudio-before-after__slider img {
    min-height: 360px;
  }

  .pcstudio-floating-cta {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: center;
  }

  .pcstudio-floating-cta .button {
    flex: 1;
  }
}

/* CONTACT ET DEVIS */

.pcp-contact-page,
.pcp-quote-page {
  padding-bottom: clamp(70px, 7vw, 110px);
}

.pcp-contact-hero,
.pcp-contact-layout,
.pcp-quote-hero,
.pcp-quote-prep,
.pcp-quote-layout {
  width: var(--pcp-wide);
  margin-inline: auto;
}

.pcp-contact-hero,
.pcp-quote-hero {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .82fr);
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
  padding: clamp(32px, 4vw, 56px);
  border: 1px solid rgba(45,39,34,.08);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(242,236,228,.66));
  box-shadow: var(--pcp-shadow-sm);
}

.pcp-contact-eyebrow,
.pcp-quote-eyebrow {
  margin: 0 0 14px;
  color: var(--pcp-accent);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pcp-contact-hero h1,
.pcp-quote-hero h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(40px, 4.6vw, 66px);
  line-height: 1.02;
}

.pcp-contact-hero p,
.pcp-quote-hero p,
.pcp-contact-form-card > p,
.pcp-quote-note p,
.pcp-quote-prep > div > h2 + p {
  color: var(--pcp-text-light);
  line-height: 1.72;
}

.pcp-contact-hero__media,
.pcp-quote-hero__media {
  min-height: clamp(250px, 25vw, 370px);
  margin: 0;
  overflow: hidden;
  border-radius: 0 0 0 50px;
  background: var(--pcp-surface-soft);
  box-shadow: var(--pcp-shadow-sm);
}

.pcp-contact-hero__media img,
.pcp-quote-hero__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(.96) contrast(1.04);
}

.pcp-contact-layout,
.pcp-quote-layout {
  margin-top: clamp(34px, 5vw, 70px);
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}

.pcp-contact-panel,
.pcp-contact-form-card,
.pcp-quote-note,
.pcp-quote-form-card,
.pcp-quote-prep {
  border: 1px solid rgba(45,39,34,.08);
  border-radius: 30px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--pcp-shadow-sm);
}

.pcp-contact-panel,
.pcp-contact-form-card,
.pcp-quote-note,
.pcp-quote-form-card {
  padding: clamp(26px, 3.4vw, 44px);
}

.pcp-contact-panel h2,
.pcp-contact-form-card h2,
.pcp-quote-note h2,
.pcp-quote-form-card h2,
.pcp-quote-prep h2 {
  max-width: 640px;
  margin-bottom: 16px;
  font-size: clamp(28px, 2.7vw, 42px);
  line-height: 1.08;
}

.pcp-contact-mini-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.pcp-contact-mini,
.pcp-quote-step {
  padding: 20px;
  border: 1px solid rgba(45,39,34,.08);
  border-radius: 22px;
  background: rgba(242,236,228,.48);
}

.pcp-contact-mini span,
.pcp-quote-step span {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(118,87,66,.11);
  color: var(--pcp-accent);
  font-family: var(--pcp-font-display);
  font-weight: 750;
}

.pcp-contact-mini h3,
.pcp-quote-step h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.12;
}

.pcp-contact-mini p,
.pcp-quote-step p,
.pcp-contact-info p,
.pcp-quote-note li {
  color: var(--pcp-text-light);
  line-height: 1.65;
}

.pcp-contact-info {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(45,39,34,.08);
}

.pcp-contact-info strong {
  color: var(--pcp-text);
}

.pcp-contact-form-card .pcp-cf7-form,
.pcp-quote-form-card .pcp-quote-form {
  margin-top: 24px;
}

.pcp-contact-form-card .pcp-cf7-form input,
.pcp-contact-form-card .pcp-cf7-form textarea,
.pcp-quote-form-card .pcp-quote-form input,
.pcp-quote-form-card .pcp-quote-form select,
.pcp-quote-form-card .pcp-quote-form textarea {
  border-radius: 16px;
}

.pcp-contact-form-card .pcp-cf7-submit {
  margin: 0;
}

.pcp-quote-prep {
  margin-top: clamp(28px, 4vw, 52px);
  display: grid;
  grid-template-columns: minmax(0, .58fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: start;
  padding: clamp(26px, 3.4vw, 44px);
  background: rgba(242,236,228,.52);
}

.pcp-quote-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pcp-quote-note ul {
  margin: 22px 0 0;
  padding-left: 20px;
}

.pcp-quote-note li + li {
  margin-top: 8px;
}

@media (max-width: 1100px) {
  .pcp-contact-hero,
  .pcp-quote-hero,
  .pcp-contact-layout,
  .pcp-quote-layout,
  .pcp-quote-prep {
    grid-template-columns: 1fr;
  }

  .pcp-quote-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .pcp-contact-hero,
  .pcp-quote-hero,
  .pcp-contact-panel,
  .pcp-contact-form-card,
  .pcp-quote-note,
  .pcp-quote-form-card,
  .pcp-quote-prep {
    padding: 26px;
    border-radius: 28px;
  }

  .pcp-contact-hero,
  .pcp-contact-hero__copy,
  .pcp-contact-panel,
  .pcp-contact-form-card,
  .pcp-quote-hero,
  .pcp-quote-hero__copy,
  .pcp-quote-note,
  .pcp-quote-form-card,
  .pcp-quote-prep {
    min-width: 0;
    overflow: hidden;
  }

  .pcp-contact-hero h1,
  .pcp-quote-hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 9vw, 50px);
    overflow-wrap: anywhere;
  }

  .pcp-contact-hero p,
  .pcp-contact-form-card p,
  .pcp-contact-mini p,
  .pcp-quote-hero p,
  .pcp-quote-note p,
  .pcp-quote-step p,
  .pcp-quote-note li {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .pcp-contact-hero__media,
  .pcp-quote-hero__media {
    min-height: 230px;
    border-radius: 24px;
  }

  .pcp-quote-steps {
    grid-template-columns: 1fr;
  }
}

/* ACCUEIL REFOUNDATION */

.pcp-home {
  padding-bottom: clamp(70px, 7vw, 110px);
}

.pcp-home-hero,
.pcp-home-intro,
.pcp-home-grid,
.pcp-home-band,
.pcp-home-quote {
  width: var(--pcp-wide);
  margin-inline: auto;
}

.pcp-home-hero {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: center;
  padding: clamp(44px, 5vw, 78px);
  border: 1px solid rgba(45,39,34,.08);
  border-radius: var(--pcp-radius-xl);
  background: linear-gradient(135deg, rgba(255,255,255,.93), rgba(242,236,228,.74));
  box-shadow: var(--pcp-shadow-lg);
  animation: pcp-home-rise 700ms var(--pcp-ease) both;
}

.pcp-home-eyebrow {
  margin: 0 0 16px;
  color: var(--pcp-accent);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.pcp-home-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(22px, 3vw, 34px);
  padding: 8px 14px 8px 8px;
  border: 1px solid rgba(45,39,34,.09);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  box-shadow: 0 12px 32px rgba(24,18,12,.06);
  transition: transform 260ms var(--pcp-ease), box-shadow 260ms var(--pcp-ease);
}

.pcp-home-mark:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(24,18,12,.10);
}

.pcp-home-mark__symbol {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pcp-accent);
  color: #fff;
  font-family: var(--pcp-font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
}

.pcp-home-mark__text {
  color: var(--pcp-text);
  font-size: 13px;
  font-weight: 850;
}

.pcp-home-hero h1 {
  max-width: 12ch;
  margin-bottom: 24px;
  font-size: clamp(48px, 5.6vw, 86px);
  line-height: .98;
}

.pcp-home-hero__lead {
  max-width: 58ch;
  color: var(--pcp-text-light);
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.78;
}

.pcp-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.pcp-home .button {
  max-width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--pcp-accent);
  border-radius: 999px;
  background: var(--pcp-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(118,87,66,.18);
}

.pcp-home .button--ghost {
  background: rgba(255,255,255,.62);
  color: var(--pcp-text);
  border-color: rgba(45,39,34,.22);
  box-shadow: none;
}

.pcp-home-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.pcp-home-trust span {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(45,39,34,.09);
  border-radius: 999px;
  background: rgba(255,255,255,.64);
  color: var(--pcp-text);
  font-size: 13px;
  font-weight: 850;
}

.pcp-home-hero__media,
.pcp-home-card__media,
.pcp-home-quote__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--pcp-surface-soft);
  box-shadow: var(--pcp-shadow-md);
}

.pcp-home-hero__media {
  min-height: clamp(360px, 36vw, 560px);
  border-radius: 0 0 0 72px;
}

.pcp-home-hero__media img,
.pcp-home-card__media img,
.pcp-home-quote__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(.96) contrast(1.04);
  transition: transform 900ms var(--pcp-ease), filter 900ms var(--pcp-ease);
}

.pcp-home-hero__media:hover img,
.pcp-home-card:hover .pcp-home-card__media img,
.pcp-home-quote__media:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.06);
}

.pcp-home-intro {
  margin-top: clamp(36px, 5vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, .9fr);
  gap: clamp(28px, 4vw, 70px);
  align-items: end;
}

.pcp-home-intro h2,
.pcp-home-band h2,
.pcp-home-quote h2 {
  max-width: 760px;
  font-size: clamp(36px, 4.2vw, 66px);
  line-height: 1.02;
}

.pcp-home-intro > p,
.pcp-home-band p,
.pcp-home-quote p,
.pcp-home-card p {
  color: var(--pcp-text-light);
  line-height: 1.76;
}

.pcp-home-grid {
  margin-top: clamp(34px, 5vw, 66px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 36px);
}

.pcp-home-card {
  display: grid;
  grid-template-columns: minmax(180px, .82fr) minmax(0, 1fr);
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(45,39,34,.08);
  border-radius: 34px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--pcp-shadow-sm);
  transition: transform 260ms var(--pcp-ease), box-shadow 260ms var(--pcp-ease), border-color 260ms var(--pcp-ease);
}

.pcp-home-card:hover {
  transform: translateY(-6px);
  border-color: rgba(118,87,66,.22);
  box-shadow: var(--pcp-shadow-md);
}

.pcp-home-card__media {
  min-height: 100%;
  border-radius: 0;
  box-shadow: none;
}

.pcp-home-card__body {
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 38px);
}

.pcp-home-card__topline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.pcp-home-card__topline .pcp-home-eyebrow {
  margin-bottom: 0;
}

.pcp-home-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(118,87,66,.10);
  color: var(--pcp-accent);
  font-family: var(--pcp-font-display);
  font-size: 18px;
  font-weight: 700;
  transition: background 260ms var(--pcp-ease), color 260ms var(--pcp-ease), transform 260ms var(--pcp-ease);
}

.pcp-home-card:hover .pcp-home-icon,
.pcp-home-band:hover .pcp-home-icon,
.pcp-home-quote:hover .pcp-home-icon {
  background: var(--pcp-accent);
  color: #fff;
  transform: scale(1.05);
}

.pcp-home-card h3 {
  margin-bottom: 14px;
  font-size: clamp(27px, 2.2vw, 38px);
  line-height: 1.06;
}

.pcp-home-link {
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
  color: var(--pcp-accent);
  font-weight: 850;
  text-decoration: none;
}

.pcp-home-band,
.pcp-home-quote {
  margin-top: clamp(34px, 5vw, 72px);
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(45,39,34,.08);
  border-radius: 34px;
  background: rgba(255,255,255,.70);
  transition: transform 260ms var(--pcp-ease), box-shadow 260ms var(--pcp-ease), border-color 260ms var(--pcp-ease);
}

.pcp-home-band:hover,
.pcp-home-quote:hover {
  transform: translateY(-4px);
  border-color: rgba(118,87,66,.18);
  box-shadow: var(--pcp-shadow-sm);
}

.pcp-home-band {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.pcp-home-band > div {
  max-width: 780px;
}

.pcp-home-quote {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .88fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.pcp-home-quote__content {
  max-width: 760px;
}

.pcp-home-quote__media {
  min-height: clamp(280px, 28vw, 430px);
  border-radius: 0 0 0 58px;
}

.pcp-home-quote .button {
  margin-top: 26px;
}

@keyframes pcp-home-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pcp-home-hero,
  .pcp-home-mark,
  .pcp-home-card,
  .pcp-home-band,
  .pcp-home-quote,
  .pcp-home-hero__media img,
  .pcp-home-card__media img,
  .pcp-home-quote__media img,
  .pcp-home-icon {
    animation: none;
    transition: none;
  }

  .pcp-home-mark:hover,
  .pcp-home-card:hover,
  .pcp-home-band:hover,
  .pcp-home-quote:hover,
  .pcp-home-hero__media:hover img,
  .pcp-home-card:hover .pcp-home-card__media img,
  .pcp-home-quote__media:hover img {
    transform: none;
  }
}

@media (max-width: 1100px) {
  .pcp-home-hero,
  .pcp-home-intro,
  .pcp-home-quote {
    grid-template-columns: 1fr;
  }

  .pcp-home-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .pcp-home-hero,
  .pcp-home-hero__copy,
  .pcp-home-intro,
  .pcp-home-band,
  .pcp-home-quote,
  .pcp-home-card__body {
    min-width: 0;
    overflow: hidden;
  }

  .pcp-home-eyebrow {
    font-size: 11px;
    letter-spacing: .1em;
    overflow-wrap: anywhere;
  }

  .pcp-home-mark {
    margin-bottom: 20px;
  }

  .pcp-home-mark__text {
    font-size: 12px;
  }

  .pcp-home-hero,
  .pcp-home-band,
  .pcp-home-quote {
    padding: 28px;
    border-radius: 30px;
  }

  .pcp-home-hero h1 {
    max-width: 100%;
    font-size: clamp(42px, 12vw, 58px);
  }

  .pcp-home-hero__media,
  .pcp-home-quote__media {
    min-height: 260px;
    border-radius: 26px;
  }

  .pcp-home-actions,
  .pcp-home-band {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }

  .pcp-home .button {
    width: fit-content;
  }

  .pcp-home-trust {
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .pcp-home-card {
    grid-template-columns: 1fr;
  }

  .pcp-home-card__media {
    min-height: 260px;
  }
}

/* PAGE SERVICES */

.pcp-services {
  padding-bottom: clamp(70px, 7vw, 110px);
}

.pcp-services-hero,
.pcp-services-intro,
.pcp-services-grid,
.pcp-services-feature,
.pcp-services-cta {
  width: var(--pcp-wide);
  margin-inline: auto;
}

.pcp-services-hero {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  padding: clamp(44px, 5vw, 76px);
  border: 1px solid rgba(45,39,34,.08);
  border-radius: var(--pcp-radius-xl);
  background: linear-gradient(135deg, rgba(255,255,255,.93), rgba(242,236,228,.74));
  box-shadow: var(--pcp-shadow-lg);
  animation: pcp-home-rise 700ms var(--pcp-ease) both;
}

.pcp-services-eyebrow {
  margin: 0 0 16px;
  color: var(--pcp-accent);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.pcp-services-hero h1 {
  max-width: 13ch;
  margin-bottom: 24px;
  font-size: clamp(46px, 5vw, 78px);
  line-height: 1;
}

.pcp-services-hero__lead {
  max-width: 60ch;
  color: var(--pcp-text-light);
  font-size: clamp(17px, 1.15vw, 20px);
  line-height: 1.78;
}

.pcp-services-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.pcp-services .button {
  max-width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--pcp-accent);
  border-radius: 999px;
  background: var(--pcp-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(118,87,66,.18);
}

.pcp-services .button--ghost {
  background: rgba(255,255,255,.62);
  color: var(--pcp-text);
  border-color: rgba(45,39,34,.22);
  box-shadow: none;
}

.pcp-services-hero__media,
.pcp-services-feature__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--pcp-surface-soft);
  box-shadow: var(--pcp-shadow-md);
}

.pcp-services-hero__media {
  min-height: clamp(340px, 34vw, 520px);
  border-radius: 0 0 0 72px;
}

.pcp-services-feature__media {
  min-height: clamp(320px, 30vw, 460px);
  border-radius: 0 0 0 58px;
}

.pcp-services-hero__media img,
.pcp-services-feature__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(.96) contrast(1.04);
  transition: transform 900ms var(--pcp-ease), filter 900ms var(--pcp-ease);
}

.pcp-services-hero__media:hover img,
.pcp-services-feature__media:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.06);
}

.pcp-services-intro {
  margin-top: clamp(36px, 5vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, .9fr);
  gap: clamp(28px, 4vw, 70px);
  align-items: end;
}

.pcp-services-intro h2,
.pcp-services-feature h2,
.pcp-services-cta h2 {
  max-width: 780px;
  font-size: clamp(34px, 3.8vw, 60px);
  line-height: 1.03;
}

.pcp-services-intro > p,
.pcp-services-card p,
.pcp-services-feature p,
.pcp-services-cta p {
  color: var(--pcp-text-light);
  line-height: 1.76;
}

.pcp-services-grid {
  margin-top: clamp(34px, 5vw, 66px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.pcp-services-card {
  min-height: 300px;
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid rgba(45,39,34,.08);
  border-radius: 30px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--pcp-shadow-sm);
  transition: transform 260ms var(--pcp-ease), box-shadow 260ms var(--pcp-ease), border-color 260ms var(--pcp-ease);
}

.pcp-services-card:hover {
  transform: translateY(-6px);
  border-color: rgba(118,87,66,.22);
  box-shadow: var(--pcp-shadow-md);
}

.pcp-services-card__topline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.pcp-services-card__topline .pcp-services-eyebrow {
  margin-bottom: 0;
}

.pcp-services-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(118,87,66,.10);
  color: var(--pcp-accent);
  font-family: var(--pcp-font-display);
  font-size: 18px;
  font-weight: 700;
  transition: background 260ms var(--pcp-ease), color 260ms var(--pcp-ease), transform 260ms var(--pcp-ease);
}

.pcp-services-card:hover .pcp-services-icon {
  background: var(--pcp-accent);
  color: #fff;
  transform: scale(1.05);
}

.pcp-services-card h3 {
  margin-bottom: 14px;
  font-size: clamp(26px, 2vw, 34px);
  line-height: 1.08;
}

.pcp-services-feature,
.pcp-services-cta {
  margin-top: clamp(34px, 5vw, 72px);
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(45,39,34,.08);
  border-radius: 34px;
  background: rgba(255,255,255,.70);
}

.pcp-services-feature {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.pcp-services-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.pcp-services-list li {
  position: relative;
  padding-left: 28px;
  color: var(--pcp-text);
  font-weight: 750;
}

.pcp-services-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pcp-accent);
}

.pcp-services-cta {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.pcp-services-cta > div {
  max-width: 780px;
}

@media (prefers-reduced-motion: reduce) {
  .pcp-services-hero,
  .pcp-services-card,
  .pcp-services-hero__media img,
  .pcp-services-feature__media img,
  .pcp-services-icon {
    animation: none;
    transition: none;
  }

  .pcp-services-card:hover,
  .pcp-services-hero__media:hover img,
  .pcp-services-feature__media:hover img {
    transform: none;
  }
}

@media (max-width: 1100px) {
  .pcp-services-hero,
  .pcp-services-intro,
  .pcp-services-feature {
    grid-template-columns: 1fr;
  }

  .pcp-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .pcp-services-hero,
  .pcp-services-feature,
  .pcp-services-cta {
    padding: 28px;
    border-radius: 30px;
  }

  .pcp-services-hero,
  .pcp-services-hero__copy,
  .pcp-services-intro,
  .pcp-services-feature,
  .pcp-services-cta,
  .pcp-services-card {
    min-width: 0;
    overflow: hidden;
  }

  .pcp-services-eyebrow {
    font-size: 11px;
    letter-spacing: .1em;
    overflow-wrap: anywhere;
  }

  .pcp-services-hero h1 {
    max-width: 100%;
    font-size: clamp(32px, 8.8vw, 44px);
    line-height: 1.05;
  }

  .pcp-services-hero__lead,
  .pcp-services-intro > p,
  .pcp-services-card p,
  .pcp-services-feature p,
  .pcp-services-cta p {
    overflow-wrap: anywhere;
  }

  .pcp-services-hero__media,
  .pcp-services-feature__media {
    min-height: 260px;
    border-radius: 26px;
  }

  .pcp-services-actions,
  .pcp-services-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .pcp-services .button {
    width: fit-content;
  }

  .pcp-services-grid {
    grid-template-columns: 1fr;
  }
}

/* PAGES DETAIL : MATERIAUX, COLLECTIONS, REALISATIONS */

.pcp-detail {
  padding-bottom: clamp(70px, 7vw, 110px);
}

.pcp-detail-hero,
.pcp-detail-intro,
.pcp-detail-grid,
.pcp-detail-feature {
  width: var(--pcp-wide);
  margin-inline: auto;
}

.pcp-detail-hero {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  padding: clamp(44px, 5vw, 76px);
  border: 1px solid rgba(45,39,34,.08);
  border-radius: var(--pcp-radius-xl);
  background: linear-gradient(135deg, rgba(255,255,255,.93), rgba(242,236,228,.74));
  box-shadow: var(--pcp-shadow-lg);
  animation: pcp-home-rise 700ms var(--pcp-ease) both;
}

.pcp-detail-eyebrow {
  margin: 0 0 16px;
  color: var(--pcp-accent);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.pcp-detail-hero h1 {
  max-width: 13ch;
  margin-bottom: 24px;
  font-size: clamp(44px, 4.9vw, 76px);
  line-height: 1;
}

.pcp-detail-hero__lead {
  max-width: 60ch;
  color: var(--pcp-text-light);
  font-size: clamp(17px, 1.15vw, 20px);
  line-height: 1.78;
}

.pcp-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.pcp-detail .button {
  max-width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--pcp-accent);
  border-radius: 999px;
  background: var(--pcp-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(118,87,66,.18);
}

.pcp-detail .button--ghost {
  background: rgba(255,255,255,.62);
  color: var(--pcp-text);
  border-color: rgba(45,39,34,.22);
  box-shadow: none;
}

.pcp-detail-hero__media,
.pcp-detail-feature__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--pcp-surface-soft);
  box-shadow: var(--pcp-shadow-md);
}

.pcp-detail-hero__media {
  min-height: clamp(340px, 34vw, 520px);
  border-radius: 0 0 0 72px;
}

.pcp-detail-feature__media {
  min-height: clamp(320px, 30vw, 460px);
  border-radius: 0 0 0 58px;
}

.pcp-detail-hero__media img,
.pcp-detail-feature__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(.96) contrast(1.04);
  transition: transform 900ms var(--pcp-ease), filter 900ms var(--pcp-ease);
}

.pcp-detail-hero__media:hover img,
.pcp-detail-feature__media:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.06);
}

.pcp-detail-intro {
  margin-top: clamp(36px, 5vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, .9fr);
  gap: clamp(28px, 4vw, 70px);
  align-items: end;
}

.pcp-detail-intro h2,
.pcp-detail-feature h2 {
  max-width: 780px;
  font-size: clamp(34px, 3.8vw, 60px);
  line-height: 1.03;
}

.pcp-detail-intro > p,
.pcp-detail-card p,
.pcp-detail-feature p {
  color: var(--pcp-text-light);
  line-height: 1.76;
}

.pcp-detail-grid {
  margin-top: clamp(34px, 5vw, 66px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.pcp-detail-card {
  min-height: 300px;
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid rgba(45,39,34,.08);
  border-radius: 30px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--pcp-shadow-sm);
  transition: transform 260ms var(--pcp-ease), box-shadow 260ms var(--pcp-ease), border-color 260ms var(--pcp-ease);
}

.pcp-detail-card:hover {
  transform: translateY(-6px);
  border-color: rgba(118,87,66,.22);
  box-shadow: var(--pcp-shadow-md);
}

.pcp-detail-card__topline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.pcp-detail-card__topline .pcp-detail-eyebrow {
  margin-bottom: 0;
}

.pcp-detail-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(118,87,66,.10);
  color: var(--pcp-accent);
  font-family: var(--pcp-font-display);
  font-size: 18px;
  font-weight: 700;
  transition: background 260ms var(--pcp-ease), color 260ms var(--pcp-ease), transform 260ms var(--pcp-ease);
}

.pcp-detail-card:hover .pcp-detail-icon {
  background: var(--pcp-accent);
  color: #fff;
  transform: scale(1.05);
}

.pcp-detail-card h3 {
  margin-bottom: 14px;
  font-size: clamp(26px, 2vw, 34px);
  line-height: 1.08;
}

.pcp-detail-feature {
  margin-top: clamp(34px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(45,39,34,.08);
  border-radius: 34px;
  background: rgba(255,255,255,.70);
}

.pcp-detail-feature .button {
  margin-top: 26px;
}

@media (prefers-reduced-motion: reduce) {
  .pcp-detail-hero,
  .pcp-detail-card,
  .pcp-detail-hero__media img,
  .pcp-detail-feature__media img,
  .pcp-detail-icon {
    animation: none;
    transition: none;
  }

  .pcp-detail-card:hover,
  .pcp-detail-hero__media:hover img,
  .pcp-detail-feature__media:hover img {
    transform: none;
  }
}

@media (max-width: 1100px) {
  .pcp-detail-hero,
  .pcp-detail-intro,
  .pcp-detail-feature {
    grid-template-columns: 1fr;
  }

  .pcp-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .pcp-detail-hero,
  .pcp-detail-feature {
    padding: 28px;
    border-radius: 30px;
  }

  .pcp-detail-hero,
  .pcp-detail-hero__copy,
  .pcp-detail-intro,
  .pcp-detail-feature,
  .pcp-detail-card {
    min-width: 0;
    overflow: hidden;
  }

  .pcp-detail-eyebrow {
    font-size: 11px;
    letter-spacing: .1em;
    overflow-wrap: anywhere;
  }

  .pcp-detail-hero h1 {
    max-width: 100%;
    font-size: clamp(32px, 8.8vw, 44px);
    line-height: 1.05;
  }

  .pcp-detail-hero__lead,
  .pcp-detail-intro > p,
  .pcp-detail-card p,
  .pcp-detail-feature p {
    overflow-wrap: anywhere;
    max-width: 100%;
  }

  .pcp-detail-hero__media,
  .pcp-detail-feature__media {
    min-height: 260px;
    border-radius: 26px;
  }

  .pcp-detail-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .pcp-detail .button {
    width: fit-content;
  }

  .pcp-detail-grid {
    grid-template-columns: 1fr;
  }
}

/* BLOG COMPACT */

.pcp-blog {
  padding-bottom: clamp(70px, 7vw, 110px);
}

.pcp-blog-hero,
.pcp-blog-intro,
.pcp-blog-list {
  width: var(--pcp-wide);
  margin-inline: auto;
}

.pcp-blog-hero {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(380px, .9fr);
  gap: clamp(30px, 4vw, 62px);
  align-items: center;
  padding: clamp(34px, 4vw, 58px);
  border: 1px solid rgba(45,39,34,.08);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,.93), rgba(242,236,228,.74));
  box-shadow: var(--pcp-shadow-md);
  animation: pcp-home-rise 650ms var(--pcp-ease) both;
}

.pcp-blog-eyebrow {
  margin: 0 0 14px;
  color: var(--pcp-accent);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.pcp-blog-hero h1 {
  max-width: 10ch;
  margin-bottom: 18px;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
}

.pcp-blog-hero__lead {
  max-width: 54ch;
  color: var(--pcp-text-light);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.74;
}

.pcp-blog-hero__media {
  min-height: clamp(260px, 25vw, 380px);
  margin: 0;
  overflow: hidden;
  border-radius: 0 0 0 52px;
  background: var(--pcp-surface-soft);
  box-shadow: var(--pcp-shadow-sm);
}

.pcp-blog-hero__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(.96) contrast(1.04);
  transition: transform 900ms var(--pcp-ease), filter 900ms var(--pcp-ease);
}

.pcp-blog-hero__media:hover img {
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.06);
}

.pcp-blog-intro {
  margin-top: clamp(24px, 3vw, 42px);
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(45,39,34,.08);
  border-radius: 30px;
  background: rgba(255,255,255,.70);
}

.pcp-blog-intro .pcp-section {
  padding: 0;
}

.pcp-blog-intro h2 {
  max-width: 820px;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.04;
}

.pcp-blog-intro .pcp-section > p:not(.pcp-section-intro) {
  max-width: 760px;
}

.pcp-blog-intro .pcp-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(24px, 3vw, 34px);
}

.pcp-blog-intro .pcp-card {
  min-height: 210px;
  padding: clamp(22px, 2.5vw, 30px);
  border-radius: 24px;
}

.pcp-blog-intro .pcp-card h3 {
  font-size: clamp(24px, 1.8vw, 30px);
  line-height: 1.08;
}

.pcp-blog-list {
  margin-top: clamp(42px, 5vw, 70px);
}

.pcp-blog-list__heading {
  max-width: 760px;
  margin-bottom: clamp(24px, 3vw, 38px);
}

.pcp-blog-list__heading h2 {
  font-size: clamp(32px, 3.4vw, 54px);
  line-height: 1.04;
}

.pcp-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}

.pcp-blog-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.5vw, 32px);
  border: 1px solid rgba(45,39,34,.08);
  border-radius: 28px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--pcp-shadow-sm);
  transition: transform 260ms var(--pcp-ease), box-shadow 260ms var(--pcp-ease), border-color 260ms var(--pcp-ease);
}

.pcp-blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(118,87,66,.22);
  box-shadow: var(--pcp-shadow-md);
}

.pcp-blog-card__topline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.pcp-blog-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(118,87,66,.10);
  color: var(--pcp-accent);
  font-family: var(--pcp-font-display);
  font-size: 18px;
  font-weight: 700;
  transition: background 260ms var(--pcp-ease), color 260ms var(--pcp-ease), transform 260ms var(--pcp-ease);
}

.pcp-blog-card:hover .pcp-blog-icon {
  background: var(--pcp-accent);
  color: #fff;
  transform: scale(1.05);
}

.pcp-blog-card__meta {
  margin: 0;
  color: var(--pcp-accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pcp-blog-card__title {
  margin-bottom: 14px;
  font-size: clamp(24px, 1.9vw, 32px);
  line-height: 1.08;
}

.pcp-blog-card__title a {
  color: var(--pcp-text);
  text-decoration: none;
}

.pcp-blog-card__excerpt {
  color: var(--pcp-text-light);
  line-height: 1.68;
}

.pcp-blog-card__excerpt p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.pcp-blog-card__link {
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
  color: var(--pcp-accent);
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .pcp-blog-hero {
    grid-template-columns: 1fr;
  }

  .pcp-blog-grid,
  .pcp-blog-intro .pcp-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .pcp-blog-hero,
  .pcp-blog-intro {
    padding: 28px;
    border-radius: 30px;
  }

  .pcp-blog-hero,
  .pcp-blog-hero__copy,
  .pcp-blog-intro,
  .pcp-blog-list,
  .pcp-blog-list__heading,
  .pcp-blog-card {
    min-width: 0;
    overflow: hidden;
  }

  .pcp-blog-eyebrow,
  .pcp-blog-card__meta {
    font-size: 11px;
    letter-spacing: .1em;
    overflow-wrap: anywhere;
  }

  .pcp-blog-hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 10vw, 54px);
  }

  .pcp-blog-hero__lead,
  .pcp-blog-intro p,
  .pcp-blog-list__heading h2,
  .pcp-blog-card__excerpt {
    overflow-wrap: anywhere;
    max-width: 100%;
  }

  .pcp-blog-hero__media {
    min-height: 250px;
    border-radius: 26px;
  }

  .pcp-blog-grid,
  .pcp-blog-intro .pcp-card-grid {
    grid-template-columns: 1fr;
  }
}

/* ARTICLE DETAIL */

.pcp-article {
  width: var(--pcp-wide);
  margin-inline: auto;
  padding-bottom: clamp(70px, 7vw, 110px);
}

.pcp-article-hero {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, .72fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(45,39,34,.08);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(242,236,228,.62));
  box-shadow: var(--pcp-shadow-sm);
}

.pcp-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 18px;
  color: var(--pcp-accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pcp-article-icon {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(118,87,66,.11);
  font-family: var(--pcp-font-display);
  font-size: 17px;
  letter-spacing: 0;
}

.pcp-article-hero h1 {
  max-width: 13ch;
  margin-bottom: 18px;
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.02;
}

.pcp-article-hero p {
  max-width: 62ch;
  color: var(--pcp-text-light);
  font-size: clamp(16px, 1vw, 18px);
  line-height: 1.72;
}

.pcp-article-hero__media {
  min-height: clamp(230px, 24vw, 350px);
  margin: 0;
  overflow: hidden;
  border-radius: 0 0 0 48px;
  background: var(--pcp-surface-soft);
  box-shadow: var(--pcp-shadow-sm);
}

.pcp-article-hero__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(.96) contrast(1.04);
}

.pcp-article-body {
  max-width: 820px;
  margin: clamp(34px, 5vw, 64px) auto 0;
}

.pcp-article-body .pcp-article-section {
  margin-top: clamp(24px, 3vw, 34px);
  padding: clamp(26px, 3.4vw, 42px);
  border: 1px solid rgba(45,39,34,.08);
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 42px rgba(55,45,35,.06);
}

.pcp-article-body .pcp-article-section:first-child {
  margin-top: 0;
}

.pcp-article-body h2 {
  max-width: 680px;
  margin-bottom: 16px;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1.08;
}

.pcp-article-body p {
  color: var(--pcp-text-light);
  font-size: 17px;
  line-height: 1.82;
}

.pcp-article-body p + p {
  margin-top: 14px;
}

.pcp-article-body ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--pcp-text-light);
  line-height: 1.78;
}

.pcp-article-body li + li {
  margin-top: 8px;
}

.pcp-article-body .pcp-article-takeaways {
  background: rgba(242,236,228,.62);
}

.pcp-article-body .pcp-article-cta {
  background: var(--pcp-text);
}

.pcp-article-body .pcp-article-cta h2,
.pcp-article-body .pcp-article-cta p {
  color: #fff;
}

.pcp-article-body .pcp-article-cta p {
  opacity: .82;
}

.pcp-article-body .pcp-article-cta .wp-block-buttons {
  margin-top: 22px;
}

@media (max-width: 980px) {
  .pcp-article-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .pcp-article {
    width: min(100% - 32px, 100%);
  }

  .pcp-article-hero,
  .pcp-article-body .pcp-article-section {
    padding: 26px;
    border-radius: 28px;
  }

  .pcp-article-hero__copy,
  .pcp-article-meta,
  .pcp-article-body,
  .pcp-article-body .pcp-article-section {
    min-width: 0;
    overflow: hidden;
  }

  .pcp-article-meta {
    gap: 9px 11px;
    font-size: 11px;
    letter-spacing: .08em;
  }

  .pcp-article-hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 9vw, 48px);
    overflow-wrap: anywhere;
  }

  .pcp-article-hero p,
  .pcp-article-body h2,
  .pcp-article-body p,
  .pcp-article-body li {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .pcp-article-hero__media {
    min-height: 230px;
    border-radius: 24px;
  }

  .pcp-article-body p {
    font-size: 16px;
  }
}

/* Premium landing polish: visual-only overrides, content remains driven by WordPress blocks/settings. */
.site-header__inner {
  justify-content: space-between;
}

.site-header__nav-shell {
  min-width: 0;
  flex: 1 1 auto;
}

.site-nav {
  min-width: 0;
}

.site-nav__menu {
  justify-content: center;
  min-width: 0;
  gap: clamp(10px, 1vw, 20px);
}

.site-nav__menu a {
  white-space: nowrap;
}

.site-header__cta {
  flex: 0 0 auto;
}

.pcstudio {
  background:
    radial-gradient(circle at 14% 8%, rgba(201, 167, 106, 0.13), transparent 26%),
    linear-gradient(180deg, rgba(251, 248, 242, 0.96), rgba(244, 239, 230, 0.88));
}

.pcstudio-hero {
  min-height: min(760px, calc(100svh - 76px));
  padding-top: clamp(92px, 10vw, 132px);
  padding-bottom: clamp(58px, 7vw, 92px);
  align-items: center;
  position: relative;
}

.pcstudio-hero__copy {
  position: relative;
  z-index: 1;
}

.pcstudio-hero__copy::before {
  content: "";
  position: absolute;
  left: -46px;
  top: -38px;
  z-index: -1;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(201, 167, 106, 0.20);
  border-radius: 50%;
  opacity: .72;
}

.hero-title {
  max-width: 12ch;
  letter-spacing: 0;
}

.pcstudio h1,
.pcstudio h2,
.pcstudio h3,
.pcstudio h4 {
  letter-spacing: 0;
}

.pcstudio-hero__lead {
  max-width: 640px;
  color: rgba(47, 43, 36, .78);
  font-weight: 500;
}

.pcstudio-hero__media {
  overflow: hidden;
  border-color: rgba(255,255,255,.84);
  background:
    linear-gradient(145deg, rgba(255,255,255,.78), rgba(244,239,230,.58)),
    rgba(255,255,255,.54);
  transform: translateZ(0);
}

.pcstudio-hero__media::before {
  content: "";
  position: absolute;
  inset: 26px -20px -20px 26px;
  z-index: -1;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(29, 29, 27, .16), rgba(201, 167, 106, .22));
  filter: blur(26px);
}

.pcstudio-hero__media img {
  min-height: 520px;
  object-position: center;
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.015);
}

.pcstudio-hero__media::after {
  position: absolute;
  inset: auto 12px 12px 12px;
  height: 38%;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(180deg, rgba(17,16,14,0), rgba(17,16,14,.38));
  content: "";
  pointer-events: none;
}

.pcstudio-hero__media figcaption {
  z-index: 1;
  border-color: rgba(255,255,255,.52);
  background: rgba(31,29,25,.58);
  color: #fff8ee;
  box-shadow: 0 14px 40px rgba(17,16,14,.14);
}

.pcstudio-badges span,
.pcstudio-hero__media figcaption {
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.pcstudio-editorial,
.pcstudio-config,
.pcstudio-blog,
.pcstudio-final,
.pcstudio-details {
  box-shadow: 0 34px 90px rgba(50, 40, 25, 0.10);
}

.pcstudio-section:nth-of-type(4n + 3) {
  position: relative;
}

.pcstudio-section:nth-of-type(4n + 3)::before {
  content: "";
  position: absolute;
  inset: 18px max(18px, calc((100vw - 1320px) / -2)) auto;
  z-index: -1;
  height: 54%;
  background: linear-gradient(120deg, rgba(29, 29, 27, 0.045), rgba(201, 167, 106, 0.08), transparent);
  pointer-events: none;
}

.pcstudio-feature-card,
.pcstudio-editorial__cards article,
.pcstudio-post-card,
.pcstudio-compare article,
.pcstudio-process__grid article,
.pcstudio-details__grid article {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.pcstudio-feature-card:hover,
.pcstudio-editorial__cards article:hover,
.pcstudio-compare article:hover,
.pcstudio-process__grid article:hover,
.pcstudio-details__grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 167, 106, .40);
  box-shadow: 0 22px 60px rgba(50, 40, 25, 0.10);
}

.pcstudio-feature-card p,
.pcstudio-editorial__cards p,
.pcstudio-post-card p {
  overflow-wrap: anywhere;
}

.pcstudio-section__heading h2,
.pcstudio-editorial__grid > p,
.pcstudio-feature-card h3,
.pcstudio-post-card h3 {
  overflow-wrap: anywhere;
}

.pcstudio-moods .pcstudio-section__heading p:not(.pcstudio-label),
.pcstudio-config .pcstudio-section__heading p:not(.pcstudio-label),
.pcstudio-quote .pcstudio-section__heading p:not(.pcstudio-label),
.pcstudio-reviews .pcstudio-section__heading p:not(.pcstudio-label) {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.pcstudio-mood-card {
  position: relative;
  min-height: 100%;
}

.pcstudio-mood-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}

.pcstudio-mood-card > div {
  position: relative;
}

.pcstudio-mood-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border: 1px solid rgba(201, 167, 106, .38);
  border-radius: 999px;
  background: rgba(255,255,255,.66);
  color: var(--bronze-soft);
  font-size: 12px;
  font-weight: 900;
}

.pcstudio-mood-card a,
.pcstudio-post-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pcstudio-mood-card a::after,
.pcstudio-post-card a::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: width 220ms ease;
}

.pcstudio-mood-card:hover a::after,
.pcstudio-post-card:hover a::after {
  width: 34px;
}

.pcstudio-process__grid article {
  overflow: hidden;
}

.pcstudio-process__grid article::after {
  content: "";
  position: absolute;
  inset: auto 24px 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201,167,106,.55), transparent);
}

.pcstudio-process__grid p {
  margin-top: 12px;
  color: var(--text-muted);
  line-height: 1.62;
}

.pcstudio-reviews {
  position: relative;
}

.pcstudio-reviews__proofs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -4px 0 24px;
}

.pcstudio-reviews__proofs span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(201,167,106,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  color: var(--text-main);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.pcstudio-reviews__grid article {
  position: relative;
  overflow: hidden;
}

.pcstudio-reviews__grid article::before {
  content: "“";
  position: absolute;
  right: 20px;
  top: -18px;
  color: rgba(201,167,106,.16);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 7rem;
  line-height: 1;
}

.pcstudio-reviews__grid article p,
.pcstudio-reviews__grid article strong,
.pcstudio-reviews__grid article small,
.pcstudio-reviews__grid article span {
  position: relative;
}

.pcstudio-reviews__cta {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.pcstudio-proof {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .72fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: stretch;
}

.pcstudio-proof__copy,
.pcstudio-proof__media,
.pcstudio-proof__cards article {
  border: 1px solid rgba(255,255,255,.72);
  background:
    linear-gradient(145deg, rgba(255,255,255,.80), rgba(244,239,230,.72)),
    var(--porcelain);
  box-shadow: 0 26px 70px rgba(50, 40, 25, 0.08);
}

.pcstudio-proof__copy {
  display: grid;
  align-content: center;
  padding: clamp(30px, 4vw, 58px);
  border-radius: 34px;
}

.pcstudio-proof__copy h2 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 4.7vw, 4.85rem);
  line-height: .98;
}

.pcstudio-proof__copy > p:not(.pcstudio-label) {
  max-width: 650px;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.28vw, 1.16rem);
  line-height: 1.78;
}

.pcstudio-proof__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(24px, 3vw, 38px);
}

.pcstudio-proof__stats article {
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(201, 167, 106, .22);
  border-radius: 24px;
  background: rgba(255,255,255,.58);
}

.pcstudio-proof__stats strong,
.pcstudio-proof__stats span {
  display: block;
}

.pcstudio-proof__stats strong {
  color: var(--text-main);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 1;
}

.pcstudio-proof__stats span {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.pcstudio-proof__media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  margin: 0;
  border-radius: 34px;
}

.pcstudio-proof__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.05);
}

.pcstudio-proof__media figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.64);
  border-radius: 18px;
  background: rgba(29, 29, 27, .70);
  color: var(--porcelain);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  backdrop-filter: blur(16px);
}

.pcstudio-proof__cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pcstudio-proof__cards article {
  min-height: 188px;
  padding: 26px;
  border-radius: 28px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.pcstudio-proof__cards article:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 167, 106, .42);
  box-shadow: 0 24px 68px rgba(50, 40, 25, 0.11);
}

.pcstudio-proof__cards h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.pcstudio-proof__cards p {
  color: var(--text-muted);
  line-height: 1.72;
}

.pcstudio-config {
  background:
    linear-gradient(135deg, rgba(29, 29, 27, .94), rgba(61, 52, 42, .92)),
    var(--text-main);
  color: var(--porcelain);
}

.pcstudio-config .pcstudio-label,
.pcstudio-config legend,
.pcstudio-config h2,
.pcstudio-config h3,
.pcstudio-config p {
  color: inherit;
}

.pcstudio-editorial {
  position: relative;
  overflow: hidden;
  border-color: rgba(201,167,106,.24);
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(245,238,226,.84)),
    var(--porcelain);
}

.pcstudio-editorial::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--bronze-soft), rgba(201,167,106,.14));
  content: "";
}

.pcstudio-editorial .pcstudio-section__heading {
  max-width: 880px;
}

.pcstudio-editorial .pcstudio-section__heading h2 {
  max-width: 820px;
}

.pcstudio-editorial__grid {
  align-items: stretch;
}

.pcstudio-editorial__grid > p {
  display: flex;
  min-height: 100%;
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(201,167,106,.2);
  border-radius: 28px;
  background: rgba(255,255,255,.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}

.pcstudio-editorial__cards {
  gap: 14px;
}

.pcstudio-editorial__cards article {
  position: relative;
  min-height: 172px;
  overflow: hidden;
}

.pcstudio-editorial__cards article::after {
  position: absolute;
  right: -30px;
  bottom: -34px;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(201,167,106,.18);
  border-radius: 999px;
  content: "";
}

.pcstudio-editorial__cards span {
  color: var(--bronze-soft);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pcstudio-config .pcstudio-label {
  color: var(--champagne-light);
}

.pcstudio-config fieldset {
  border-bottom-color: rgba(255, 255, 255, .14);
}

.pcstudio-config button,
.pcstudio-config .pcstudio-config__result {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
  color: var(--porcelain);
}

.pcstudio-config button.is-active {
  background: var(--champagne);
  color: var(--text-main);
}

.pcstudio-config__result {
  box-shadow: none;
}

.pcstudio-config__result > img {
  border-radius: 24px;
}

.pcstudio-quote {
  position: relative;
}

.pcstudio-quote .pcstudio-wizard {
  position: relative;
  overflow: hidden;
  margin-inline: auto;
}

.pcstudio-quote .pcstudio-wizard::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--bronze-soft), rgba(201,167,106,.28));
}

.pcstudio-choice-grid label {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pcstudio-choice-grid label:hover {
  transform: translateY(-2px);
  border-color: rgba(201,167,106,.48);
  box-shadow: 0 14px 34px rgba(50,40,25,.08);
}

@media (min-width: 1181px) {
  .site-header__nav-shell {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
  }

  .site-nav__menu {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 1180px) {
  .site-header__nav-shell {
    flex: none;
  }

  .site-nav__menu a {
    white-space: normal;
  }
}

@media (max-width: 820px) {
  .pcstudio {
    overflow-x: hidden;
  }

  .site-header {
    height: 70px;
  }

  .site-header__inner {
    height: 70px;
  }

  .site-header__nav-shell {
    inset: 70px 14px auto;
  }

  .pcstudio-hero {
    gap: 28px;
    padding-top: 96px;
    padding-bottom: 42px;
  }

  .pcstudio-proof {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pcstudio-proof__copy,
  .pcstudio-proof__cards article {
    padding: 26px;
    border-radius: 28px;
  }

  .pcstudio-proof__copy h2 {
    max-width: 100%;
    font-size: clamp(2rem, 8.5vw, 2.45rem);
    line-height: 1.05;
  }

  .pcstudio-proof__stats,
  .pcstudio-proof__cards {
    grid-template-columns: 1fr;
  }

  .pcstudio-proof__stats article {
    min-height: 0;
  }

  .pcstudio-proof__stats span {
    font-size: 11px;
    letter-spacing: 0;
  }

  .pcstudio-proof__media {
    min-height: 360px;
    border-radius: 28px;
  }

  .pcstudio-hero__copy::before {
    left: -72px;
    top: -54px;
  }

  .pcstudio-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pcstudio-actions .button {
    width: auto;
    max-width: 100%;
    justify-content: center;
  }

  .pcstudio-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pcstudio-badges span {
    width: 100%;
    text-align: center;
  }

  .pcstudio-hero__media {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    padding: 10px;
    border-radius: 28px;
  }

  .pcstudio-hero__media img {
    min-height: 0;
    aspect-ratio: 1 / .92;
    border-radius: 22px;
  }

  .pcstudio-hero__media figcaption {
    display: block;
    width: 100%;
    max-width: 100%;
    padding-inline: 12px;
    font-size: 12px;
    white-space: normal !important;
    text-wrap: balance;
  }

  .pcstudio-editorial__grid > p {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .pcstudio-section {
    padding: 52px 0;
  }

  .pcstudio-section__heading {
    margin-bottom: 24px;
  }

  .pcstudio h1,
  .pcstudio h2,
  .pcstudio h3,
  .pcstudio h4,
  .pcstudio p {
    max-width: calc(100vw - 48px) !important;
    text-wrap: initial !important;
    white-space: normal !important;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .hero-title {
    font-size: clamp(2rem, 9.2vw, 2.32rem);
    line-height: 1.05;
  }

  .pcstudio-section__heading h2,
  .pcstudio-editorial__grid > p {
    font-size: clamp(1.9rem, 8vw, 2.25rem);
    line-height: 1.08;
  }

  .pcstudio-config__grid {
    gap: 20px;
  }
}

@media (max-width: 420px) {
  .logo-text strong {
    max-width: 180px;
  }

  .hero-title {
    font-size: clamp(2.05rem, 11vw, 2.45rem);
  }

  .pcstudio-hero__lead {
    font-size: 1rem;
  }
}

/* Final production polish: unify the landing without changing editable WordPress content. */
:root {
  --pcp-section-y: clamp(58px, 7vw, 96px);
  --pcp-card-radius: 22px;
  --pcp-soft-line: rgba(201, 167, 106, .24);
  --pcp-lift: 0 22px 56px rgba(50, 40, 25, .10);
}

html {
  scroll-behavior: smooth;
}

.pcstudio {
  background:
    linear-gradient(180deg, rgba(253,251,247,.98), rgba(244,239,230,.92) 46%, rgba(253,251,247,.98)),
    var(--porcelain);
}

.pcstudio-section {
  padding-block: var(--pcp-section-y);
}

.pcstudio-section__heading {
  margin-inline: auto;
  text-align: center;
}

.pcstudio-section__heading h2 {
  letter-spacing: 0;
  text-wrap: balance;
}

.pcstudio-section__heading p:not(.pcstudio-label) {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--text-muted);
  line-height: 1.72;
}

.pcstudio-label {
  letter-spacing: .12em;
}

.button,
.site-header__cta,
.pcstudio-filter-bar button,
.pcstudio-config button,
.pcstudio-choice-grid label {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.button:hover,
.site-header__cta:hover,
.pcstudio-filter-bar button:hover,
.pcstudio-config button:hover,
.pcstudio-choice-grid label:hover {
  transform: translateY(-2px);
}

.pcstudio-hero {
  min-height: min(780px, calc(100svh - 74px));
  border-bottom: 1px solid rgba(201,167,106,.16);
}

.pcstudio-hero__media,
.pcstudio-proof__media,
.pcstudio-material-card,
.pcstudio-mood-card,
.pcstudio-project-card,
.pcstudio-post-card,
.pcstudio-reviews__grid article,
.pcstudio-wizard,
.pcstudio-config__result,
.pcstudio-details,
.pcstudio-editorial,
.pcstudio-blog,
.pcstudio-final {
  border-radius: var(--pcp-card-radius);
}

.pcstudio-material-card,
.pcstudio-mood-card,
.pcstudio-project-card,
.pcstudio-post-card,
.pcstudio-reviews__grid article,
.pcstudio-editorial__cards article,
.pcstudio-surface__grid article,
.pcstudio-process__grid article,
.pcstudio-details__grid article,
.pcstudio-compare article {
  border-color: var(--pcp-soft-line);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(16px);
}

.pcstudio-material-card:hover,
.pcstudio-mood-card:hover,
.pcstudio-project-card:hover,
.pcstudio-post-card:hover,
.pcstudio-reviews__grid article:hover,
.pcstudio-editorial__cards article:hover,
.pcstudio-surface__grid article:hover,
.pcstudio-process__grid article:hover,
.pcstudio-details__grid article:hover,
.pcstudio-compare article:hover {
  border-color: rgba(201,167,106,.46);
  box-shadow: var(--pcp-lift);
}

.pcstudio-material-card img,
.pcstudio-mood-card img,
.pcstudio-project-card img,
.pcstudio-applications img,
.pcstudio-gallery img,
.pcstudio-post-card img,
.pcstudio-config__result > img {
  filter: saturate(1.03) contrast(1.03);
}

.pcstudio-editorial,
.pcstudio-blog,
.pcstudio-final,
.pcstudio-details {
  width: min(100% - 32px, 1280px);
  box-shadow: 0 24px 72px rgba(50,40,25,.08);
}

.pcstudio-friend-sites {
  width: min(100% - 32px, 1280px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
  margin-top: clamp(34px, 5vw, 70px);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(201,167,106,.22);
  border-radius: var(--pcp-card-radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(244,239,230,.76)),
    var(--porcelain);
  box-shadow: 0 24px 72px rgba(50,40,25,.08);
}

.pcstudio-friend-sites__heading h2 {
  max-width: 620px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.2vw, 3.55rem);
  line-height: 1;
}

.pcstudio-friend-sites__heading p:not(.pcstudio-label) {
  max-width: 620px;
  color: var(--text-muted);
  line-height: 1.72;
}

.pcstudio-friend-sites__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.pcstudio-friend-sites__links a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid rgba(201,167,106,.30);
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  color: var(--text-main);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(50,40,25,.06);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.pcstudio-friend-sites__links a:hover {
  border-color: rgba(201,167,106,.62);
  box-shadow: 0 18px 42px rgba(50,40,25,.10);
  transform: translateY(-2px);
}

.pcstudio-config {
  border: 1px solid rgba(201,167,106,.20);
  background:
    linear-gradient(135deg, rgba(255,255,255,.84), rgba(244,239,230,.78)),
    var(--porcelain);
  color: var(--text-main);
  box-shadow: 0 24px 72px rgba(50,40,25,.08);
}

.pcstudio-config .pcstudio-label,
.pcstudio-config legend,
.pcstudio-config h2,
.pcstudio-config h3,
.pcstudio-config p {
  color: inherit;
}

.pcstudio-config .pcstudio-label,
.pcstudio-config__result .pcstudio-label {
  color: var(--bronze-soft);
}

.pcstudio-config fieldset {
  border-bottom-color: rgba(201,167,106,.20);
}

.pcstudio-config button,
.pcstudio-config .pcstudio-config__result {
  border-color: var(--pcp-soft-line);
  background: rgba(255,255,255,.66);
  color: var(--text-main);
}

.pcstudio-config button.is-active {
  background: var(--champagne-light);
  color: var(--text-main);
  box-shadow: inset 0 0 0 1px rgba(201,167,106,.25);
}

.pcstudio-applications,
.pcstudio-gallery {
  padding-top: clamp(44px, 6vw, 78px);
}

.pcstudio-applications__grid,
.pcstudio-gallery__grid {
  gap: 16px;
}

.pcstudio-process__grid {
  border-color: rgba(201,167,106,.20);
}

.pcstudio-blog {
  position: relative;
  border: 1px solid rgba(201,167,106,.18);
}

.pcstudio-blog::before {
  content: "Blog";
  position: absolute;
  top: 22px;
  right: 28px;
  color: rgba(201,167,106,.18);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: .8;
  pointer-events: none;
}

.reveal-up {
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(.22, 1, .36, 1);
}

.pcstudio-ready .reveal-up:not(.is-visible) {
  opacity: 0;
  transform: translateY(28px);
}

.pcstudio-ready .reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 820px) {
  :root {
    --pcp-section-y: 48px;
    --pcp-card-radius: 18px;
  }

  .pcstudio-section__heading {
    text-align: left;
  }

  .pcstudio-section__heading p:not(.pcstudio-label) {
    margin-inline: 0;
  }

  .pcstudio-editorial,
  .pcstudio-blog,
  .pcstudio-final,
  .pcstudio-details,
  .pcstudio-friend-sites,
  .pcstudio-config {
    width: min(100% - 24px, 1280px);
  }

  .pcstudio-friend-sites {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .pcstudio-friend-sites__links {
    justify-content: flex-start;
  }

  .pcstudio-friend-sites__links a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .pcstudio-blog::before {
    display: none;
  }
}

.pcstudio-blog-hero {
  width: 100%;
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: clamp(74px, 10vw, 132px) 24px clamp(52px, 8vw, 96px);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(31, 29, 25, 0.08);
  background: #fbfaf7;
}

.pcstudio-blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(251,250,247,.98), rgba(251,250,247,.82) 52%, rgba(251,250,247,.94)),
    var(--pcstudio-blog-hero-image, none);
}

.pcstudio-blog-hero__copy {
  width: min(100%, 760px);
  position: relative;
  z-index: 1;
  margin: 0 auto;
  text-align: center;
}

.pcstudio-blog-hero__copy h1 {
  margin: 0;
  color: var(--text-main);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  line-height: .94;
  overflow-wrap: anywhere;
}

.pcstudio-blog-hero__copy p:not(.pcstudio-label) {
  max-width: 58ch;
  margin: 18px auto 0;
  color: var(--text-muted);
}

.pcstudio-blog-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  opacity: .18;
}

.pcstudio-blog-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pcstudio-section__heading--center {
  margin-inline: auto;
  text-align: center;
}

.pcstudio-blog--archive {
  margin-top: clamp(34px, 5vw, 68px);
}

.pcstudio-blog--archive .pcstudio-blog__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.pcstudio-post-card {
  display: grid;
  align-content: start;
  border-radius: 12px;
  background: rgba(255, 255, 255, .84);
}

.pcstudio-post-card__image {
  position: relative;
  display: block;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  color: inherit;
}

.pcstudio-post-card__image img {
  display: block;
  height: 100%;
}

.pcstudio-post-card > :not(.pcstudio-post-card__image) {
  margin-inline: clamp(18px, 2vw, 26px);
}

.pcstudio-post-card .pcstudio-post-card__image + .pcstudio-post-card__meta {
  margin-top: 22px;
}

.pcstudio-post-card h3 {
  margin-top: 12px;
  font-size: clamp(1.32rem, 2vw, 1.85rem);
  line-height: 1.02;
}

.pcstudio-post-card p:not(.pcstudio-label) {
  color: var(--text-muted);
  line-height: 1.68;
}

.pcstudio-video-pill {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(31, 29, 25, .82);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pcp-video-embed {
  margin: clamp(26px, 4vw, 42px) 0;
}

.pcp-video-embed iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 280px;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(50, 40, 25, 0.12);
}

@media (max-width: 860px) {
  .pcstudio-blog--archive .pcstudio-blog__grid {
    grid-template-columns: 1fr;
  }

  .pcstudio-blog-hero {
    min-height: 430px;
  }
}
