/* ============================================================
   Canteiro Weddings — Home
   Editorial luxury. Lightness. Generous space.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Montserrat:wght@200;300;400&display=swap');

:root {
  --cream: #F9F5F0;
  --cream-deep: #F2EBE4;
  --white: #FFFFFF;
  --ink: #3D3535;
  --mauve: #897475;
  --terracotta: #E8723F;
  --terracotta-hover: #d6632f;
  --blush: #D7A5A7;
  --blush-soft: #F8D5D5;

  --display: 'Cormorant Garamond', 'Times New Roman', serif; /* stand-in for Infinity */
  --body: 'Montserrat', system-ui, sans-serif;

  --max: 1440px;
  --pad-x: clamp(24px, 6vw, 96px);
  --section-y: clamp(80px, 12vw, 160px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Type ---------- */

.display {
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mauve);
}

.body-text {
  font-family: var(--body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-solid {
  background: var(--terracotta);
  color: #fff;
  border: 1px solid var(--terracotta);
}
.btn-solid:hover { background: var(--terracotta-hover); border-color: var(--terracotta-hover); }

.btn-outline {
  background: transparent;
  color: var(--mauve);
  border: 0.5px solid var(--mauve);
  letter-spacing: 0.18em;
}
.btn-outline:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
  background: transparent;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 0.5px solid rgba(255,255,255,0.85);
  letter-spacing: 0.18em;
}
.btn-outline-white:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

/* ---------- Navbar ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 80px;
  padding: 0 var(--pad-x);
  transition: background 0.3s ease, border-color 0.3s ease;
  background: transparent;
  border-bottom: 0.5px solid transparent;
}

.nav.active {
  background: #F9F5F0;
  border-bottom: 0.5px solid #E8E0D8;
}

/* Hamburger — anchored left, vertically centered, never moves */
.nav-burger {
  position: absolute;
  top: 50%;
  left: var(--pad-x);
  transform: translateY(-50%);
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
}
.nav-burger span {
  display: block;
  width: 26px;
  height: 1px;
  background: #fff;
  transition: background 0.3s ease, transform 0.3s ease;
}
.nav-burger span:nth-child(2) { width: 20px; }
.nav.active .nav-burger span { background: var(--ink); }
.nav-burger:hover span:nth-child(2) { width: 26px; }

/* Logo (center) — large by default, smaller in active state */
.nav-logo {
  position: absolute;
  top: 68px; /* 40px center + 28px offset for transparent state */
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 220px;
  transition: width 0.3s ease, top 0.3s ease;
  z-index: 1;
  pointer-events: auto;
}
.nav-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
}
.nav.active .nav-logo { width: 110px; top: 40px; }

/* ---------- Sub-nav (floating pill over hero bottom) ---------- */

.subnav {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  width: 80%;
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  transition: height 0.3s ease;
  overflow: hidden;
  z-index: 4;
}

.subnav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 40px);
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  transition: gap 0.3s ease;
}

.subnav-list a {
  font-family: var(--body);
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3D3535;
  padding: 6px 0;
  transition: color 0.2s ease, letter-spacing 0.3s ease;
  white-space: nowrap;
}
.subnav-list a:hover {
  color: var(--terracotta);
}
.subnav-list a.subnav-ai {
  color: var(--terracotta);
}

.subnav-sep {
  color: #D7A5A7;
  font-size: 0.7rem;
  user-select: none;
  pointer-events: none;
}

.subnav:hover {
  height: 64px;
}
.subnav:hover .subnav-list {
  gap: clamp(28px, 4vw, 56px);
}
.subnav:hover .subnav-list a {
  letter-spacing: 0.28em;
}

/* Right CTA — anchored right, vertically centered, never moves */
.nav-right {
  position: absolute;
  top: 50%;
  right: var(--pad-x);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 2;
}

/* Design with AI — text link next to the Start Planning CTA */
.nav-ai-link {
  font-family: var(--body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
  position: relative;
  white-space: nowrap;
}
.nav-ai-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-ai-link:hover::after { transform: scaleX(1); }
.nav.active .nav-ai-link { color: var(--ink); }

.nav-ai-badge {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--body);
  font-weight: 400;
  font-size: 8.5px;
  letter-spacing: 0.18em;
  padding: 2px 6px;
  border-radius: 2px;
}

@media (max-width: 960px) {
  .nav-ai-link { display: none; }
}

@media (max-width: 560px) {
  /* A centered logo + a right-aligned CTA collide on narrow screens, so hide
     the top-bar CTA (still reachable via the menu, the planning form, and the
     floating WhatsApp button) and seat the logo inside the bar. */
  .nav-logo { top: 40px; }
  .nav-right .nav-cta { display: none; }
}

.nav-cta {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  padding: 10px 20px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Default (transparent): outlined white CTA */
.nav:not(.active) .nav-cta {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.9);
}
.nav:not(.active) .nav-cta:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

/* Active (cream): solid terracotta */
.nav.active .nav-cta {
  background: var(--terracotta);
  color: #fff;
  border: 1px solid var(--terracotta);
}
.nav.active .nav-cta:hover {
  background: var(--terracotta-hover);
  border-color: var(--terracotta-hover);
}

/* ---------- Drawer ---------- */

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(61, 53, 53, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
  z-index: 200;
}
.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, visibility 0s linear 0s;
}

.drawer {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 380px;
  max-width: 100%;
  background: var(--cream);
  z-index: 201;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  padding: 28px 44px 36px;
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }

.drawer-close {
  align-self: flex-start;
  background: none;
  border: none;
  color: var(--mauve);
  font-size: 28px;
  line-height: 1;
  font-weight: 300;
  padding: 4px 8px 4px 0;
  cursor: pointer;
  font-family: var(--body);
  transition: color 0.3s ease, transform 0.3s ease;
}
.drawer-close:hover { color: var(--ink); transform: rotate(90deg); }

.drawer-nav {
  list-style: none;
  margin: 56px 0 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.drawer-nav a {
  font-family: var(--display);
  font-weight: 300;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--ink);
  display: inline-block;
  padding: 4px 0;
  transition: color 0.3s ease, transform 0.3s ease;
}
.drawer-nav a:hover {
  color: var(--terracotta);
  transform: translateX(6px);
}

.drawer-divider {
  border: 0;
  border-top: 1px solid #D7A5A7;
  margin: 8px 0 24px;
}

.drawer-ai {
  font-family: var(--body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mauve);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  align-self: flex-start;
}
.drawer-ai:hover { color: var(--terracotta); }

.drawer-spacer { flex: 1; }

.drawer-social {
  display: flex;
  gap: 22px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(137, 116, 117, 0.18);
}
.drawer-social a {
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--mauve);
  transition: color 0.3s ease, transform 0.3s ease;
}
.drawer-social a:hover { color: var(--terracotta); transform: translateY(-2px); }
.drawer-social svg { width: 18px; height: 18px; }

body.no-scroll { overflow: hidden; }

/* ---------- Section base ---------- */

section {
  position: relative;
}

.section-pad {
  padding: var(--section-y) var(--pad-x);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.center-stack {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.center-stack .eyebrow { margin-bottom: 4px; }

/* ============================================================
   1. HERO
   ============================================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  width: 100%;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.22) 30%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.65) 100%);
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 var(--pad-x);
}

.hero h1 {
  color: #fff;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 7.4vw, 108px);
  line-height: 1;
  letter-spacing: -0.015em;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
}
.hero h1 span { display: block; }

.hero-sub {
  margin-top: 32px;
  max-width: 540px;
  color: rgba(255,255,255,0.96);
  font-size: 14px;
  letter-spacing: 0.04em;
  font-weight: 300;
  line-height: 1.7;
  text-shadow: 0 1px 18px rgba(0,0,0,0.55);
}

.hero-cta {
  margin-top: 44px;
}

.hero-scroll {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 18px rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 44px;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 0 12px rgba(0,0,0,0.5);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ============================================================
   2. BRAND DECLARATION
   ============================================================ */

.declaration {
  background: var(--cream);
}
.declaration .container {
  max-width: var(--max);
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(48px, 9vw, 140px);
  align-items: center;
}
.declaration-text {
  max-width: 560px;
  /* Slight optical offset right to keep the text comfortably indented */
  padding-left: clamp(0px, 4vw, 64px);
}
.declaration .eyebrow { display: inline-block; margin-bottom: 28px; }
.declaration h2 {
  font-size: clamp(40px, 5.4vw, 68px);
  margin-bottom: 36px;
}
.declaration p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
  font-weight: 300;
}
.declaration-img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  /* Pulled up slightly for editorial offset */
  align-self: center;
  max-width: 460px;
  margin-left: auto;
}
.declaration-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.declaration-img:hover img { transform: scale(1.03); }
.declaration-img-caption {
  position: absolute;
  left: -16px;
  bottom: 24px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mauve);
  background: var(--cream);
  padding: 6px 0;
}

.divider-mark {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--mauve);
  margin: 0 0 36px;
  opacity: 0.5;
}

@media (max-width: 960px) {
  .declaration .container {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .declaration-text { padding-left: 0; max-width: 640px; }
  .declaration-img { max-width: 100%; aspect-ratio: 4/5; }
  .declaration-img-caption { left: 12px; }
  .divider-mark { margin-left: 0; }
}

/* ============================================================
   3. SELECTED WORK
   ============================================================ */

.work {
  background: var(--white);
}

.work-head {
  text-align: center;
  margin-bottom: 80px;
}
.work-head .eyebrow { display: inline-block; margin-bottom: 22px; }
.work-head h2 {
  font-size: clamp(36px, 4.8vw, 60px);
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  margin-bottom: 80px;
}

.work-card {
  display: block;
  position: relative;
  cursor: pointer;
}
.work-card .img-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--cream);
}
.work-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.work-card:hover img { transform: scale(1.04); }

.work-caption {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.work-caption .couple {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.005em;
}
.work-caption .venue {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mauve);
}

.work-cta-row {
  text-align: center;
}

/* ============================================================
   4. SERVICES
   ============================================================ */

.services {
  background: var(--cream);
}

.services-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 80px;
}
.services-head .eyebrow { margin-bottom: 22px; display: inline-block; }
.services-head h2 {
  font-size: clamp(36px, 4.8vw, 60px);
  margin-bottom: 28px;
}
.services-head p {
  font-size: 15px; line-height: 1.85;
  color: var(--ink);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-bottom: 80px;
}

.service-card {
  display: flex;
  flex-direction: column;
}
.service-card .img-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 28px;
}
.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service-card:hover img { transform: scale(1.05); }
.service-card .num {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 12px;
}
.service-card h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--ink);
}
.service-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--mauve);
  font-style: italic;
  font-family: var(--display);
  font-weight: 400;
}

.services-cta-row {
  text-align: center;
}

/* ============================================================
   5. DESTINATIONS
   ============================================================ */

.destinations {
  background: var(--white);
}

.destinations-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 80px;
}
.destinations-head .eyebrow { margin-bottom: 22px; display: inline-block; }
.destinations-head h2 {
  font-size: clamp(36px, 4.8vw, 60px);
  margin-bottom: 28px;
}
.destinations-head p {
  font-size: 15px; line-height: 1.85;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.dest-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: pointer;
  color: #fff;
}
.dest-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.dest-card:hover img { transform: scale(1.06); }
.dest-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.55) 100%);
}
.dest-label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 36px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.dest-label .name {
  font-family: var(--display);
  font-weight: 300;
  font-size: 36px;
  letter-spacing: 0.01em;
  line-height: 1;
}
.dest-label .arrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.8);
  padding-bottom: 4px;
}

/* ============================================================
   6. TESTIMONIAL
   ============================================================ */

.testimonial {
  position: relative;
  height: clamp(560px, 78vh, 760px);
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Subtle full overlay for baseline contrast */
.testimonial::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.22) 100%);
  z-index: 1;
}
/* Centered radial vignette focused behind the text for legibility */
.testimonial::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 50%, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0) 80%);
  z-index: 1;
  pointer-events: none;
}
.testimonial-inner {
  position: relative; z-index: 2;
  max-width: 880px;
  text-align: center;
  padding: 0 var(--pad-x);
  text-shadow: 0 1px 12px rgba(0,0,0,0.18);
}
.testimonial-mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 80px;
  line-height: 1;
  margin-bottom: 28px;
  opacity: 0.85;
}
.testimonial-quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.4;
  letter-spacing: 0.005em;
  color: #fff;
}
.testimonial-attr {
  margin-top: 44px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #fff;
  opacity: 1;
}
.testimonial-link {
  display: inline-block;
  margin-top: 28px;
  font-family: var(--body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.testimonial-link:hover { opacity: 1; }

/* ============================================================
   7. PRESS
   ============================================================ */

/* Outer band gives the white block clear separation from neighbors */
.press {
  background: var(--cream);
  padding: clamp(56px, 7vw, 88px) var(--pad-x);
}
.press-block {
  background: #FFFFFF;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 88px) clamp(32px, 6vw, 96px);
  border: 0.5px solid #ECE4DC;
  border-radius: 2px;
}
.press .eyebrow {
  text-align: center;
  display: block;
  margin-bottom: 56px;
}
.press-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(80px, 12vw, 180px);
  flex-wrap: wrap;
}

.press-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  filter: opacity(0.6);
  transition: filter 0.3s ease;
}
.press-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}
.press-logo.bb-text {
  font-family: var(--body);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: #3D3535;
  line-height: 1;
}
.press-logo:hover { filter: opacity(0.85); }

/* ============================================================
   8. AI DESIGN TOOL
   ============================================================ */

.ai-section {
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}
.ai-section::before,
.ai-section::after {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: var(--blush-soft);
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
}
.ai-section::before { top: -120px; left: -100px; }
.ai-section::after { bottom: -120px; right: -100px; background: var(--blush); opacity: 0.25; }

.ai-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.ai-inner .eyebrow { margin-bottom: 28px; display: inline-block; }
.ai-inner h2 {
  font-size: clamp(40px, 5.4vw, 68px);
  margin-bottom: 28px;
}
.ai-inner p {
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 44px;
  color: var(--ink);
}
.ai-stars {
  display: flex; justify-content: center; gap: 10px;
  margin-bottom: 36px;
  color: var(--terracotta);
  font-size: 16px;
}
.ai-stars span:nth-child(2) { font-size: 22px; }

/* ============================================================
   9. ABOUT / GABI
   ============================================================ */

.about {
  background: var(--white);
}
.about .container {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}
.about-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.about-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 25%;
}
.about-text .eyebrow { display: inline-block; margin-bottom: 22px; }
.about-text h2 {
  font-size: clamp(34px, 4.4vw, 52px);
  margin-bottom: 32px;
  line-height: 1.1;
}
.about-text p {
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 36px;
  color: var(--ink);
}
.about-text .signature {
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  color: var(--mauve);
  margin-bottom: 36px;
  display: block;
}

/* ============================================================
   10. FOR PROFESSIONALS
   ============================================================ */

.pro {
  background: var(--mauve);
  color: #fff;
}
.pro .container {
  max-width: 880px;
  text-align: center;
}
.pro .eyebrow {
  color: rgba(255,255,255,0.7);
  display: inline-block;
  margin-bottom: 26px;
}
.pro h2 {
  color: #fff;
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 32px;
  line-height: 1.1;
}
.pro p {
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 44px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   11. FINAL CTA
   ============================================================ */

.final {
  background: var(--cream);
  text-align: center;
}
.final .container { max-width: 820px; }
.final h2 {
  font-size: clamp(40px, 5.6vw, 76px);
  margin-bottom: 24px;
  line-height: 1.05;
}
.final-sub {
  font-size: 16px;
  color: var(--mauve);
  margin-bottom: 44px;
  letter-spacing: 0.02em;
}
.final-buttons {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}
/* Stronger primary on cream — matches the header CTA's authority */
.final .btn-solid {
  background: #E8723F;
  border-color: #E8723F;
  padding: 18px 38px;
  font-size: 11.5px;
  letter-spacing: 0.26em;
  box-shadow: 0 1px 0 rgba(232, 114, 63, 0.18), 0 8px 24px -10px rgba(232, 114, 63, 0.45);
}
.final .btn-solid:hover {
  background: #d6632f;
  border-color: #d6632f;
  box-shadow: 0 1px 0 rgba(214, 99, 47, 0.22), 0 10px 28px -10px rgba(214, 99, 47, 0.55);
}

/* ============================================================
   FOOTER — editorial three-column
   ============================================================ */

.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  padding: clamp(72px, 9vw, 120px) var(--pad-x) 0;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  padding-bottom: clamp(60px, 8vw, 96px);
}

.footer-brand .footer-logo {
  display: block;
  height: 44px;
  margin: 0 0 28px;
}
.footer-brand .footer-logo img { height: 100%; width: auto; }
.footer-tagline {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.3;
  color: #fff;
  margin-bottom: 24px;
  max-width: 320px;
}
.footer-locales {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  line-height: 2;
}

.footer-col h4 {
  font-family: var(--body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-family: var(--display);
  font-weight: 300;
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}
.footer-col a:hover { color: var(--terracotta); transform: translateX(3px); }

.footer-contact {
  font-family: var(--body);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.85;
  color: rgba(255,255,255,0.78);
}
.footer-contact a { color: rgba(255,255,255,0.88); border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 1px; transition: border-color 0.3s ease, color 0.3s ease; }
.footer-contact a:hover { color: var(--terracotta); border-bottom-color: var(--terracotta); }

.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}
.footer-social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 0.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.footer-social a:hover { color: #fff; border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; }

.footer-divider {
  border: 0;
  height: 0;
  border-top: 0.5px solid rgba(255,255,255,0.12);
  margin: 0;
  max-width: var(--max);
  margin-left: auto; margin-right: auto;
  position: relative;
  z-index: 2;
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .footer-fineprint a { color: rgba(255,255,255,0.7); }
.footer-bottom .footer-fineprint a:hover { color: #fff; }
.footer-bottom .footer-fineprint span + span { margin-left: 18px; padding-left: 18px; border-left: 0.5px solid rgba(255,255,255,0.18); }

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom .footer-fineprint span + span { margin-left: 0; padding-left: 0; border-left: 0; display: block; }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .nav { grid-template-columns: 1fr auto 1fr; }

  .work-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .dest-grid { grid-template-columns: 1fr; }
  .about .container { grid-template-columns: 1fr; }
  .about-img { aspect-ratio: 4/5; max-height: 600px; }
}

@media (max-width: 560px) {
  :root {
    --pad-x: 22px;
    --section-y: 72px;
  }
  .nav-cta { padding: 9px 16px; font-size: 9.5px; letter-spacing: 0.2em; }
  .nav-logo { width: 160px; }
  .nav.active .nav-logo { width: 92px; }
  .hero { min-height: 600px; }
  .hero h1 { font-size: 44px; }
  .hero-sub { font-size: 13px; margin-top: 24px; }
  .services-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonial-mark { font-size: 56px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}


/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Hero — full-bleed image with overlay, matches home's hero rhythm */
.ap-hero {
  position: relative;
  height: 70vh;
  min-height: 540px;
  width: 100%;
  overflow: hidden;
  color: #fff;
}
.ap-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 1;
}
.ap-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.22) 35%, rgba(0,0,0,0.6) 75%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
}
.ap-hero-inner {
  position: relative; z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 0 var(--pad-x) clamp(72px, 9vw, 120px);
}
.ap-hero .eyebrow {
  color: rgba(255,255,255,0.95);
  margin-bottom: 22px;
  text-shadow: 0 1px 18px rgba(0,0,0,0.55);
}
.ap-hero h1 {
  color: #fff;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 6.4vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.012em;
  max-width: 880px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.ap-hero h1 em { font-style: italic; font-weight: 300; }

/* Story section */
.ap-story { background: var(--white); }
.ap-story .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}
.ap-story-text .eyebrow { display: inline-block; margin-bottom: 22px; }
.ap-story-text h2 {
  font-size: clamp(36px, 4.6vw, 60px);
  margin-bottom: 36px;
  line-height: 1.08;
}
.ap-story-text p {
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink);
  margin-bottom: 22px;
  font-weight: 300;
}
.ap-story-text p:last-child { margin-bottom: 0; }
.ap-story-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.ap-story-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

/* Values section */
.ap-values { background: var(--white); }
.ap-values-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 96px;
}
.ap-values-head .eyebrow { display: inline-block; margin-bottom: 22px; }
.ap-values-head h2 {
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.08;
}
.ap-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(32px, 4vw, 56px);
  max-width: 1200px;
  margin: 0 auto;
}
.ap-value {
  display: flex;
  flex-direction: column;
}
.ap-value-num {
  font-style: italic;
  color: var(--mauve);
  margin-right: 0.3em;
}
.ap-value h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin-bottom: 16px;
  color: var(--ink);
}
.ap-value p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink);
  font-weight: 300;
}

/* Studio — stat callout on mauve */
.ap-studio {
  background: var(--mauve);
  color: #fff;
}
.ap-studio .container {
  max-width: 980px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(48px, 8vw, 96px);
  align-items: center;
}
.ap-studio .eyebrow {
  color: rgba(255,255,255,0.7);
  display: inline-block;
  margin-bottom: 22px;
}
.ap-studio h2 {
  color: #fff;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.1;
  margin-bottom: 24px;
}
.ap-studio p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.85;
  font-weight: 300;
}
.ap-stat {
  text-align: left;
}
.ap-stat .num {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(96px, 14vw, 200px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #fff;
  display: block;
}
.ap-stat .unit {
  font-family: var(--body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  display: block;
  margin-top: 16px;
}

/* Team section */
.ap-team { background: var(--white); }
.ap-team-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 96px;
}
.ap-team-head .eyebrow { display: inline-block; margin-bottom: 22px; }
.ap-team-head h2 {
  font-size: clamp(36px, 4.6vw, 60px);
  margin-bottom: 28px;
  line-height: 1.08;
}
.ap-team-head p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink);
  font-weight: 300;
}
.ap-team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}
.ap-team-card {
  display: flex;
  flex-direction: column;
}
.ap-team-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 22px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ap-team-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ap-team-img.placeholder {
  background: var(--cream);
}
.ap-team-img.placeholder .monogram {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 64px;
  color: var(--mauve);
  opacity: 0.45;
  line-height: 1;
  letter-spacing: -0.01em;
}
.ap-team-card .name {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 6px;
}
.ap-team-card .role {
  font-family: var(--body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mauve);
}

/* Final CTA on About — reuse .final from home */

/* Responsive */
@media (max-width: 960px) {
  .ap-story .container { grid-template-columns: 1fr; }
  .ap-values-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .ap-studio .container { grid-template-columns: 1fr; text-align: center; }
  .ap-stat { text-align: center; }
  .ap-team-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (max-width: 560px) {
  .ap-hero { min-height: 480px; }
  .ap-values-grid { grid-template-columns: 1fr; gap: 40px; }
  .ap-team-grid { grid-template-columns: 1fr; }
}


/* About — signature under the story */
.ap-signature {
  display: block;
  margin-top: 36px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--mauve);
  line-height: 1.3;
}


/* About — team photo (full-width horizontal placeholder) */
.ap-team-head p + p { margin-top: 22px; }
.ap-team-head p {
  margin: 0 auto;
  max-width: 720px;
}
.ap-team-photo {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  aspect-ratio: 21 / 9;
  overflow: hidden;
}
.ap-team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ap-team-photo-placeholder {
  width: 100%; height: 100%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ap-team-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 0.5px dashed rgba(137, 116, 117, 0.35);
}
.ap-team-photo-label {
  font-family: var(--body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mauve);
  opacity: 0.6;
  position: relative;
  z-index: 1;
}
@media (max-width: 560px) {
  .ap-team-photo { aspect-ratio: 4 / 3; }
}


/* About — team blocks (replaces .ap-team-photo single-block layout) */
.ap-team-block {
  margin-top: clamp(72px, 9vw, 120px);
}
.ap-team-block.portrait {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.ap-team-block.wide {
  display: block;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.ap-team-block-photo {
  overflow: hidden;
  background: var(--cream);
}
.ap-team-block-photo.vertical { aspect-ratio: 4 / 5; }
.ap-team-block-photo.vertical img { object-position: center 40%; }
.ap-team-block-photo.horizontal { aspect-ratio: 21 / 9; }
.ap-team-block-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.ap-team-block-caption .caption-title {
  display: block;
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.005em;
}
.ap-team-block-caption .caption-text {
  font-family: var(--body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink);
  max-width: 480px;
}
.ap-team-block-caption.centered {
  text-align: center;
  margin: 40px auto 0;
  max-width: 720px;
}
.ap-team-block-caption.centered .caption-text {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 760px) {
  .ap-team-block.portrait { grid-template-columns: 1fr; gap: 32px; }
  .ap-team-block-photo.horizontal { aspect-ratio: 4 / 3; }
}


/* ============================================================
   ABOUT — Our Story (text-only variant)
   ============================================================ */
.ap-story-solo .container {
  display: block;
  max-width: 740px;
}


/* ============================================================
   ABOUT — The Founders (2-col + couple photo below)
   ============================================================ */
.ap-founders { background: var(--cream); }

.ap-founders-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.ap-founders-head .eyebrow { display: inline-block; margin-bottom: 22px; }
.ap-founders-head h2 {
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.08;
  margin-bottom: 28px;
}
.ap-founders-head p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink);
  font-weight: 300;
}

.ap-founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  max-width: 1200px;
  margin: 0 auto;
}
.ap-founder { display: flex; flex-direction: column; }
.ap-founder-photo {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  margin-bottom: 28px;
  background: var(--cream-deep);
}
.ap-founder-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.ap-founder-name {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.ap-founder-role {
  font-family: var(--body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 22px;
  display: block;
}
.ap-founder-bio {
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink);
  font-weight: 300;
  margin-bottom: 18px;
}
.ap-founder-bio:last-child { margin-bottom: 0; }

.ap-founders-couple {
  margin: clamp(80px, 9vw, 120px) auto 0;
  max-width: 1400px;
}
.ap-founders-couple-photo {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.ap-founders-couple-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.ap-founders-couple-caption {
  text-align: center;
  max-width: 720px;
  margin: 40px auto 0;
}
.ap-founders-couple-caption .caption-title {
  display: block;
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.005em;
}
.ap-founders-couple-caption p {
  font-family: var(--body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink);
}

@media (max-width: 760px) {
  .ap-founders-grid { grid-template-columns: 1fr; gap: 64px; }
  .ap-founders-couple-photo { aspect-ratio: 4 / 3; }
}


/* ============================================================
   ABOUT — One Roof (editorial 2-col + 3-stat row)
   ============================================================ */
.ap-roof { background: var(--cream); }

.ap-roof-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.ap-roof-copy .eyebrow { display: inline-block; margin-bottom: 22px; }
.ap-roof-copy h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.1;
  margin-bottom: 28px;
}
.ap-roof-copy p {
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink);
  font-weight: 300;
}
.ap-roof-img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.ap-roof-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.ap-roof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 5vw, 72px);
  max-width: 1100px;
  margin: clamp(72px, 9vw, 112px) auto 0;
  text-align: center;
}
.ap-roof-stat .num {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(56px, 8vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: block;
}
.ap-roof-stat .unit {
  font-family: var(--body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mauve);
  display: block;
  margin-top: 16px;
}

@media (max-width: 760px) {
  .ap-roof-grid { grid-template-columns: 1fr; gap: 40px; }
  .ap-roof-img { aspect-ratio: 4 / 3; }
  .ap-roof-stats { grid-template-columns: 1fr; gap: 40px; }
}


/* ============================================================
   PROMO STRIP — Design with AI launch
   ============================================================ */
.promo-strip {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--body);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 11px 56px 11px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.promo-strip-badge {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  padding: 4px 9px;
  border-radius: 2px;
  font-weight: 400;
}
.promo-strip-text { font-weight: 400; }
.promo-strip-text em {
  font-style: italic;
  font-weight: 300;
  opacity: 0.92;
  margin: 0 4px;
}
.promo-strip-cta {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 400;
  margin-left: 6px;
}
.promo-strip-cta:hover { text-decoration: none; }
.promo-strip-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.7;
}
.promo-strip-close:hover { opacity: 1; }

body.with-promo-strip { padding-top: 42px; }
body.with-promo-strip .nav { top: 42px; }

html.promo-dismissed .promo-strip { display: none; }
html.promo-dismissed body.with-promo-strip { padding-top: 0; }
html.promo-dismissed body.with-promo-strip .nav { top: 0; }

@media (max-width: 640px) {
  .promo-strip {
    font-size: 11px;
    padding: 9px 42px 9px 14px;
    gap: 10px;
  }
  .promo-strip-badge { font-size: 8px; padding: 3px 7px; }
  body.with-promo-strip { padding-top: 38px; }
  body.with-promo-strip .nav { top: 38px; }
  html.promo-dismissed body.with-promo-strip { padding-top: 0; }
  html.promo-dismissed body.with-promo-strip .nav { top: 0; }
}


/* ============================================================
   SECTION 8 — DESIGN WITH AI (spotlight)
   ============================================================ */

.ai-section {
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}

/* Override the prior decorative blobs */
.ai-section::before,
.ai-section::after {
  display: none;
}

.ai-container {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42fr 58fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left: copy column */
.ai-copy {
  max-width: 520px;
}
.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 2px;
  margin-bottom: 28px;
}
.ai-title {
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 1.08;
  margin-bottom: 28px;
}
.ai-copy p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink);
  font-weight: 300;
  margin-bottom: 36px;
}
.ai-cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.ai-text-link {
  font-family: var(--body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mauve);
  position: relative;
  transition: color 0.3s ease;
}
.ai-text-link:hover { color: var(--terracotta); }

/* Right: browser frame mockup */
.ai-mockup {
  position: relative;
  perspective: 1400px;
}
.ai-browser-frame {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(61, 53, 53, 0.12),
    0 8px 20px rgba(61, 53, 53, 0.06),
    0 0 0 1px rgba(137, 116, 117, 0.08);
  transform: rotate(-0.4deg);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
}
.ai-browser-frame:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow:
    0 40px 80px rgba(61, 53, 53, 0.16),
    0 10px 24px rgba(61, 53, 53, 0.08),
    0 0 0 1px rgba(137, 116, 117, 0.08);
}
.ai-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #F5F1EC;
  border-bottom: 0.5px solid rgba(137, 116, 117, 0.18);
}
.ai-browser-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.ai-browser-dot.dot-red    { background: #E8723F; opacity: 0.55; }
.ai-browser-dot.dot-yellow { background: #D7A5A7; opacity: 0.55; }
.ai-browser-dot.dot-green  { background: #897475; opacity: 0.45; }
.ai-browser-url {
  margin-left: 24px;
  font-family: var(--body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--mauve);
}
.ai-browser-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* Drawer "Design with AI" — NEW badge */
.drawer-ai {
  text-decoration: none;
}
.drawer-ai-badge {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--body);
  font-weight: 400;
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
  margin-left: 8px;
  vertical-align: middle;
}

/* Responsive */
@media (max-width: 960px) {
  .ai-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ai-copy { max-width: none; }
  .ai-browser-frame { transform: none; }
}


/* ============================================================
   SECTION 11 — START PLANNING FORM (replaces Final CTA)
   ============================================================ */

.form-section {
  background: var(--cream);
  color: var(--ink);
}

.form-container {
  max-width: 720px;
  margin: 0 auto;
}

.form-title {
  color: var(--ink);
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.15;
  margin-bottom: 64px;
  letter-spacing: -0.008em;
}

.planning-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-field {
  position: relative;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(137, 116, 117, 0.35);
  padding: 14px 0;
  font-family: var(--body);
  font-weight: 300;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-field textarea {
  resize: vertical;
  min-height: 48px;
  line-height: 1.6;
  font-family: var(--body);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-bottom-color: var(--mauve);
}

/* Placeholder color */
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--mauve);
  opacity: 0.7;
  font-weight: 300;
  font-family: var(--body);
}

/* Date input — placeholder-like color when empty */
.form-field input[type="date"] {
  color: var(--mauve);
  opacity: 0.7;
  font-weight: 300;
}
.form-field input[type="date"]:valid,
.form-field input[type="date"]:focus {
  color: var(--ink);
  opacity: 1;
}
.form-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: opacity(0.5);
  cursor: pointer;
}

/* Select fields — chevron + default option styling */
.form-field.select-field {
  position: relative;
}
.form-field select {
  padding-right: 28px;
  cursor: pointer;
  color: var(--mauve);
  opacity: 0.7;
  font-weight: 300;
}
.form-field select:valid {
  color: var(--ink);
  opacity: 1;
}
.form-field.select-field::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid var(--mauve);
  border-bottom: 1.5px solid var(--mauve);
  transform: translateY(-75%) rotate(45deg);
  pointer-events: none;
  opacity: 0.7;
}
/* Style the dropdown options (browser-dependent) */
.form-field select option {
  background: #fff;
  color: var(--ink);
  font-family: var(--body);
}

/* Submit button — solid terracotta */
.form-submit {
  margin-top: 24px;
  align-self: flex-start;
  background: var(--terracotta);
  color: #fff;
  border: 1px solid var(--terracotta);
  padding: 16px 36px;
  font-family: var(--body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
.form-submit:hover {
  background: var(--terracotta-hover);
  border-color: var(--terracotta-hover);
}
.form-submit:active {
  transform: translateY(1px);
}

/* Status messages */
.form-status {
  margin-top: 24px;
  font-family: var(--body);
  font-weight: 400;
  font-size: 14px;
  color: var(--mauve);
  min-height: 22px;
}
.form-status.error { color: var(--terracotta); }
.form-status.success {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
}

@media (max-width: 560px) {
  .form-title { margin-bottom: 44px; }
  .planning-form { gap: 22px; }
  .form-field input,
  .form-field textarea,
  .form-field select { font-size: 15px; }
}


/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */

.wa-button {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow:
    0 10px 28px rgba(37, 211, 102, 0.38),
    0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
  text-decoration: none;
}
.wa-button:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 14px 32px rgba(37, 211, 102, 0.5),
    0 6px 16px rgba(0, 0, 0, 0.2);
}
.wa-button svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@media (max-width: 560px) {
  .wa-button {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
  .wa-button svg { width: 28px; height: 28px; }
}


/* ============================================================
   CATALOG PAGE
   ============================================================ */

/* Hero — full-bleed image with overlay (matches About hero pattern) */
.cat-hero {
  position: relative;
  height: 70vh;
  min-height: 560px;
  width: 100%;
  overflow: hidden;
  color: #fff;
  padding: 0;
  text-align: center;
}
.cat-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 50%;
  z-index: 1;
}
.cat-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.18) 30%, rgba(0,0,0,0.6) 75%, rgba(0,0,0,0.72) 100%);
  z-index: 2;
}
.cat-hero-inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 0 var(--pad-x) clamp(72px, 9vw, 120px);
}
.cat-hero .eyebrow {
  color: rgba(255,255,255,0.95);
  margin-bottom: 22px;
  text-shadow: 0 1px 18px rgba(0,0,0,0.55);
  display: inline-block;
}
.cat-hero h1 {
  font-family: var(--display);
  font-weight: 300;
  color: #fff;
  font-size: clamp(48px, 6.4vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.012em;
  margin-bottom: 28px;
  max-width: 880px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.cat-hero h1 em { font-style: italic; font-weight: 300; }
.cat-hero p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.95);
  font-weight: 300;
  text-shadow: 0 1px 16px rgba(0,0,0,0.5);
}

/* Catalog grid */
.cat-grid-section {
  background: var(--cream);
  padding: clamp(40px, 5vw, 80px) var(--pad-x) clamp(96px, 12vw, 160px);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 5vw, 72px);
  max-width: 1300px;
  margin: 0 auto;
}

.cat-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  color: inherit;
  font-family: inherit;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cat-card:hover { transform: translateY(-6px); }

.cat-card-cover {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--cream-deep);
  margin-bottom: 22px;
  position: relative;
  box-shadow:
    0 12px 24px rgba(61, 53, 53, 0.08),
    0 4px 8px rgba(61, 53, 53, 0.04);
  transition: box-shadow 0.4s ease;
}
.cat-card:hover .cat-card-cover {
  box-shadow:
    0 20px 40px rgba(61, 53, 53, 0.14),
    0 8px 16px rgba(61, 53, 53, 0.06);
}
.cat-card-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cat-card:hover .cat-card-cover img { transform: scale(1.04); }

.cat-card-cover::after {
  content: 'View Catalog →';
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.55) 100%);
  color: #fff;
  font-family: var(--body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.cat-card:hover .cat-card-cover::after {
  opacity: 1;
  transform: translateY(0);
}

.cat-card-title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 8px;
}
.cat-card-meta {
  font-family: var(--body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mauve);
}

/* ============================================================
   FLIPBOOK MODAL
   ============================================================ */

.flipbook-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20, 17, 17, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}
.flipbook-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.4s ease, visibility 0s linear 0s;
}

/* Modal header */
.flipbook-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  color: rgba(255,255,255,0.85);
  flex-shrink: 0;
}
.flipbook-title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: #fff;
}
.flipbook-header-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.flipbook-download,
.flipbook-close {
  background: none;
  border: 0.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.9);
  font-family: var(--body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.flipbook-download:hover,
.flipbook-close:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.flipbook-close {
  padding: 10px 14px;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1;
}

/* Flipbook stage */
.flipbook-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 24px;
  overflow: hidden;
}

.flipbook-frame {
  flex: 1;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
  border-radius: 6px;
}

.flip-page {
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flip-page img,
.flip-page canvas {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Cover / back-cover styling for demo pages */
.flip-page.cover,
.flip-page.back {
  background: var(--cream);
  color: var(--ink);
  text-align: center;
  padding: 64px 32px;
  flex-direction: column;
}
.flip-page.cover .cover-eyebrow,
.flip-page.back .cover-eyebrow {
  font-family: var(--body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 32px;
}
.flip-page.cover .cover-title,
.flip-page.back .cover-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.flip-page.cover .cover-title em,
.flip-page.back .cover-title em { font-style: italic; }
.flip-page.cover .cover-meta,
.flip-page.back .cover-meta {
  font-family: var(--body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-top: 16px;
}

/* Flipbook controls (bottom) */
.flipbook-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 20px 32px 28px;
  color: rgba(255,255,255,0.85);
  flex-shrink: 0;
}
.flipbook-nav-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease, color 0.3s ease;
}
.flipbook-nav-btn:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.flipbook-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.flipbook-nav-btn svg { width: 22px; height: 22px; fill: currentColor; }

.flipbook-page-indicator {
  font-family: var(--body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  min-width: 80px;
  text-align: center;
}

/* Loading state */
.flipbook-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  color: rgba(255,255,255,0.7);
  font-family: var(--body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  z-index: 2;
}
.flipbook-loading::before {
  content: '';
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-top-color: rgba(255,255,255,0.85);
  border-radius: 50%;
  animation: flipSpin 0.9s linear infinite;
}
@keyframes flipSpin { to { transform: rotate(360deg); } }

/* Responsive */
@media (max-width: 960px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .flipbook-header { padding: 14px 18px; }
  .flipbook-title { font-size: 18px; }
  .flipbook-download { padding: 8px 14px; font-size: 9px; }
  .flipbook-stage { padding: 12px; }
}
@media (max-width: 560px) {
  .cat-grid { grid-template-columns: 1fr; gap: 40px; }
  .flipbook-header-right { gap: 12px; }
  .flipbook-download span { display: none; }
}


/* ============================================================
   FOR PROFESSIONALS PAGE
   ============================================================ */

/* Hero — full-bleed image with overlay, mirrors About hero pattern */
.pp-hero {
  position: relative;
  height: 78vh;
  min-height: 620px;
  width: 100%;
  overflow: hidden;
  color: #fff;
}
.pp-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 1;
}
.pp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.28) 35%, rgba(0,0,0,0.65) 75%, rgba(0,0,0,0.78) 100%);
  z-index: 2;
}
.pp-hero-inner {
  position: relative; z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(140px, 16vh, 180px) var(--pad-x) clamp(72px, 9vw, 120px);
}
.pp-hero .eyebrow {
  color: rgba(255,255,255,0.95);
  margin-bottom: 22px;
  display: inline-block;
  text-shadow: 0 1px 18px rgba(0,0,0,0.55);
}
.pp-hero h1 {
  font-family: var(--display);
  font-weight: 300;
  color: #fff;
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  margin-bottom: 32px;
  max-width: 820px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.pp-hero h1 em { font-style: italic; font-weight: 300; display: block; }
.pp-hero p {
  max-width: 720px;
  margin: 0 auto 44px;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.96);
  font-weight: 300;
  text-shadow: 0 1px 16px rgba(0,0,0,0.5);
}
.pp-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Stats section */
.pp-stats {
  background: var(--cream);
}
.pp-stats-context {
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--mauve);
  margin-bottom: 72px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}
.pp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(32px, 4vw, 56px);
  max-width: 1200px;
  margin: 0 auto;
}
.pp-stat {
  text-align: center;
  border-left: 0.5px solid rgba(137, 116, 117, 0.3);
  padding: 8px 24px;
}
.pp-stat:first-child { border-left: none; }
.pp-stat-value {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 4.4vw, 60px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 14px;
  display: block;
}
.pp-stat-value em { font-style: italic; }
.pp-stat-label {
  font-family: var(--body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mauve);
  line-height: 1.5;
}

/* Pillars section (3 column) */
.pp-pillars {
  background: var(--white);
}
.pp-pillars h2 {
  text-align: center;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.08;
  margin-bottom: 88px;
  color: var(--ink);
}
.pp-pillars h2 em { font-style: italic; font-weight: 300; }
.pp-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 5vw, 72px);
  max-width: 1200px;
  margin: 0 auto;
}
.pp-pillar {
  display: flex;
  flex-direction: column;
}
.pp-pillar-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--mauve);
  margin-bottom: 18px;
  line-height: 1;
}
.pp-pillar h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin-bottom: 18px;
  color: var(--ink);
}
.pp-pillar p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink);
  font-weight: 300;
}

/* Collections (centered text) */
.pp-collections {
  background: var(--cream);
}
.pp-collections-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.pp-collections h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.08;
  margin-bottom: 44px;
  color: var(--ink);
}
.pp-collections h2 em { font-style: italic; font-weight: 300; }
.pp-collections p {
  font-size: 16px;
  line-height: 1.95;
  color: var(--ink);
  font-weight: 300;
  margin-bottom: 22px;
}
.pp-collections p:last-of-type {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--mauve);
  margin-top: 32px;
  line-height: 1.4;
}

/* Services grid (4 cards) */
.pp-services {
  background: var(--white);
}
.pp-services-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 80px;
}
.pp-services-head h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.08;
  margin-bottom: 32px;
  color: var(--ink);
}
.pp-services-head h2 em { font-style: italic; font-weight: 300; }
.pp-services-head p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink);
  font-weight: 300;
}
.pp-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(36px, 4vw, 56px);
  max-width: 1100px;
  margin: 0 auto;
}
.pp-service-card {
  padding: 36px 0;
  border-top: 0.5px solid rgba(137, 116, 117, 0.3);
}
.pp-service-card h3 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--ink);
}
.pp-service-card p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--ink);
  font-weight: 300;
}

/* Difference — mauve 2-column */
.pp-difference {
  background: var(--mauve);
  color: #fff;
}
.pp-difference h2 {
  text-align: center;
  font-family: var(--display);
  font-weight: 300;
  color: #fff;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.08;
  margin-bottom: 88px;
}
.pp-difference h2 em { font-style: italic; font-weight: 300; }
.pp-difference-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  max-width: 1100px;
  margin: 0 auto;
}
.pp-difference-col h3 {
  font-family: var(--body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}
.pp-difference-col p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.55;
  color: #fff;
}

/* Vertical image above each column */
.pp-difference-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 36px;
}
.pp-difference-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Full-bleed image break section (between Collections and Services) */
.pp-break {
  width: 100%;
  height: 50vh;
  min-height: 380px;
  max-height: 620px;
  overflow: hidden;
  display: block;
}
.pp-break img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 50%;
  display: block;
}

/* Process — 4-step horizontal */
.pp-process {
  background: var(--cream);
}
.pp-process h2 {
  text-align: center;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.08;
  margin-bottom: 88px;
  color: var(--ink);
}
.pp-process h2 em { font-style: italic; font-weight: 300; }
.pp-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 3.5vw, 48px);
  max-width: 1200px;
  margin: 0 auto;
  counter-reset: step;
}
.pp-step {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 28px;
  border-top: 0.5px solid rgba(137, 116, 117, 0.35);
}
.pp-step-num {
  font-family: var(--body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 18px;
}
.pp-step h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--ink);
}
.pp-step p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink);
  font-weight: 300;
}

/* Final CTA */
.pp-final {
  background: var(--white);
  text-align: center;
}
.pp-final-inner {
  max-width: 760px;
  margin: 0 auto;
}
.pp-final h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.05;
  margin-bottom: 32px;
  color: var(--ink);
}
.pp-final h2 em { font-style: italic; font-weight: 300; }
.pp-final p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink);
  font-weight: 300;
  margin-bottom: 48px;
}
.pp-final-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 960px) {
  .pp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pp-stat { border-left: none; border-top: 0.5px solid rgba(137, 116, 117, 0.3); padding: 24px 16px 0; }
  .pp-stat:nth-child(-n+2) { border-top: none; padding-top: 0; }
  .pp-pillars-grid { grid-template-columns: 1fr; gap: 48px; }
  .pp-services-grid { grid-template-columns: 1fr; }
  .pp-difference-grid { grid-template-columns: 1fr; }
  .pp-process-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
}
@media (max-width: 560px) {
  .pp-stats-grid { grid-template-columns: 1fr; }
  .pp-stat { border-top: 0.5px solid rgba(137, 116, 117, 0.3); padding: 24px 16px 0; }
  .pp-stat:first-child { border-top: none; padding-top: 0; }
  .pp-process-grid { grid-template-columns: 1fr; gap: 40px; }
  .pp-hero { min-height: 540px; }
}


/* For Professionals — Partners (hotels) marquee */
.pp-partners {
  background: var(--cream-deep);
  padding: clamp(56px, 7vw, 80px) 0;
  overflow: hidden;
}
.pp-partners-eyebrow {
  text-align: center;
  display: block;
  margin-bottom: 48px;
  font-family: var(--body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mauve);
}
.pp-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 80px, #000 calc(100% - 80px), transparent);
          mask-image: linear-gradient(90deg, transparent, #000 80px, #000 calc(100% - 80px), transparent);
}
.pp-marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(60px, 7vw, 110px);
  width: max-content;
  animation: pp-scroll 45s linear infinite;
}
.pp-marquee:hover .pp-marquee-track {
  animation-play-state: paused;
}
@keyframes pp-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.pp-partner {
  height: 70px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1) opacity(0.65);
  transition: filter 0.3s ease;
}
.pp-partner:hover {
  filter: grayscale(1) opacity(1);
}
.pp-partner img {
  height: 100%;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}
@media (max-width: 560px) {
  .pp-partner { height: 54px; }
}


/* ============================================================
   HOME — PARTNERS VIDEO SECTION (between Declaration and Selected Work)
   ============================================================ */

.video-section {
  background: var(--white);
  text-align: center;
}
.video-head {
  max-width: 720px;
  margin: 0 auto 64px;
}
.video-head .eyebrow {
  display: inline-block;
  margin-bottom: 22px;
}
.video-head h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--ink);
}
.video-head h2 em { font-style: italic; font-weight: 300; }
.video-head p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--mauve);
  line-height: 1.4;
}
.video-wrap {
  max-width: 1100px;
  margin: 0 auto 56px;
  aspect-ratio: 16 / 9;
  position: relative;
  background: var(--cream-deep);
  box-shadow:
    0 30px 60px rgba(61, 53, 53, 0.12),
    0 8px 20px rgba(61, 53, 53, 0.06);
  overflow: hidden;
}
.video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}

/* Clickable poster variant — opens YouTube in a new tab */
.video-poster {
  text-decoration: none;
  cursor: pointer;
  display: block;
}
.video-poster img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.video-poster:hover img { transform: scale(1.03); }
.video-play {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}
.video-play svg {
  width: 88px;
  height: 88px;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.4));
  transition: transform 0.3s ease;
}
.video-poster:hover .video-play svg { transform: scale(1.08); }
.video-cta-row {
  text-align: center;
}


/* ============================================================
   OUR SERVICES PAGE
   ============================================================ */

/* Hero — full-bleed image with overlay, mirrors For Pros hero pattern */
.sv-hero {
  position: relative;
  height: 78vh;
  min-height: 620px;
  width: 100%;
  overflow: hidden;
  color: #fff;
}
.sv-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 50%;
  z-index: 1;
}
.sv-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.28) 35%, rgba(0,0,0,0.65) 75%, rgba(0,0,0,0.78) 100%);
  z-index: 2;
}
.sv-hero-inner {
  position: relative; z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(140px, 16vh, 180px) var(--pad-x) clamp(72px, 9vw, 120px);
}
.sv-hero .eyebrow {
  color: rgba(255,255,255,0.95);
  margin-bottom: 22px;
  display: inline-block;
  text-shadow: 0 1px 18px rgba(0,0,0,0.55);
}
.sv-hero h1 {
  font-family: var(--display);
  font-weight: 300;
  color: #fff;
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  margin-bottom: 32px;
  max-width: 820px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.sv-hero h1 em { font-style: italic; font-weight: 300; display: block; }
.sv-hero p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.96);
  font-weight: 300;
  text-shadow: 0 1px 16px rgba(0,0,0,0.5);
}

/* Intro / manifesto */
.sv-intro {
  background: var(--cream);
  text-align: center;
}
.sv-intro-inner {
  max-width: 720px;
  margin: 0 auto;
}
.sv-intro .eyebrow { display: inline-block; margin-bottom: 26px; }
.sv-intro h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 36px;
}
.sv-intro h2 em { font-style: italic; font-weight: 300; }
.sv-intro p {
  font-size: 16px;
  line-height: 1.95;
  color: var(--ink);
  font-weight: 300;
}

/* Service detail — alternating image/text split */
.sv-service {
  background: var(--white);
}
.sv-service.alt { background: var(--cream); }

.sv-service-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}
.sv-service.right .sv-service-img { order: 2; }
.sv-service.right .sv-service-text { order: 1; }

.sv-service-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.sv-service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sv-service-img:hover img { transform: scale(1.03); }

.sv-service-text {
  max-width: 520px;
}
.sv-service-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--mauve);
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}
.sv-service-eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 18px;
}
.sv-service h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.008em;
  color: var(--ink);
  margin-bottom: 28px;
}
.sv-service h2 em { font-style: italic; font-weight: 300; }
.sv-service-lead {
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink);
  font-weight: 300;
  margin-bottom: 28px;
}
.sv-service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sv-service-list li {
  position: relative;
  padding-left: 22px;
  font-family: var(--body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.sv-service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 1px;
  background: var(--mauve);
}

/* Process steps */
.sv-process {
  background: var(--cream-deep);
}
.sv-process h2 {
  text-align: center;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.08;
  margin-bottom: 88px;
  color: var(--ink);
}
.sv-process h2 em { font-style: italic; font-weight: 300; }
.sv-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 3.5vw, 48px);
  max-width: 1200px;
  margin: 0 auto;
}
.sv-step {
  display: flex;
  flex-direction: column;
  padding-top: 28px;
  border-top: 0.5px solid rgba(137, 116, 117, 0.35);
}
.sv-step-num {
  font-family: var(--body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 18px;
}
.sv-step h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--ink);
}
.sv-step p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink);
  font-weight: 300;
}

/* Final CTA — mauve */
.sv-final {
  background: var(--mauve);
  color: #fff;
  text-align: center;
}
.sv-final-inner {
  max-width: 760px;
  margin: 0 auto;
}
.sv-final h2 {
  font-family: var(--display);
  font-weight: 300;
  color: #fff;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.05;
  margin-bottom: 32px;
}
.sv-final h2 em { font-style: italic; font-weight: 300; }
.sv-final p {
  color: rgba(255,255,255,0.92);
  font-size: 16px;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 48px;
}
.sv-final-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 960px) {
  .sv-service-inner { grid-template-columns: 1fr; gap: 40px; }
  .sv-service.right .sv-service-img { order: 0; }
  .sv-service.right .sv-service-text { order: 0; }
  .sv-process-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
}
@media (max-width: 560px) {
  .sv-process-grid { grid-template-columns: 1fr; gap: 40px; }
  .sv-hero { min-height: 540px; }
}


/* ============================================================
   WEDDING STORY PAGE
   ============================================================ */

.sw-hero {
  width: 100%;
  height: 80vh;
  min-height: 620px;
  max-height: 920px;
  overflow: hidden;
}
.sw-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.sw-title {
  background: var(--cream);
  text-align: center;
  padding: clamp(72px, 10vw, 120px) var(--pad-x) clamp(56px, 7vw, 96px);
}
.sw-title .eyebrow { display: inline-block; margin-bottom: 28px; }
.sw-title h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(56px, 7.4vw, 116px);
  line-height: 1.02;
  letter-spacing: -0.014em;
  color: var(--ink);
  margin-bottom: 26px;
}
.sw-title h1 em { font-style: italic; font-weight: 300; }
.sw-title .meta {
  font-family: var(--body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mauve);
}

.sw-body {
  background: var(--cream);
  padding-bottom: clamp(40px, 6vw, 80px);
}
.sw-paragraph {
  max-width: 680px;
  margin: clamp(64px, 9vw, 120px) auto;
  padding: 0 var(--pad-x);
  font-size: 17px;
  line-height: 1.95;
  color: var(--ink);
  font-weight: 300;
  text-align: center;
}
.sw-paragraph em { font-style: italic; }

.sw-breakout {
  display: block;
  margin: clamp(64px, 9vw, 120px) auto;
  max-width: 1400px;
  padding: 0 var(--pad-x);
}
.sw-breakout img {
  width: 100%; height: auto;
  display: block;
}
.sw-breakout.fullbleed {
  max-width: none;
  padding: 0;
}

.sw-closing {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--mauve);
  line-height: 1.4;
  text-align: center;
  max-width: 760px;
  margin: clamp(80px, 11vw, 140px) auto 0;
  padding: 0 var(--pad-x);
}

.sw-details-grid {
  max-width: 1400px;
  margin: clamp(72px, 10vw, 140px) auto 0;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 32px);
}
.sw-details-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.sw-cta {
  text-align: center;
  padding: clamp(96px, 12vw, 160px) var(--pad-x);
  background: var(--cream);
}
.sw-cta a {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--mauve);
  letter-spacing: -0.005em;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 0.5px solid rgba(137, 116, 117, 0.55);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.sw-cta a:hover {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}

@media (max-width: 760px) {
  .sw-details-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* Wedding story — vendor credits */
.sw-credits {
  background: var(--white);
  text-align: center;
  padding: clamp(72px, 9vw, 120px) var(--pad-x);
}
.sw-credits-eyebrow {
  font-family: var(--body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mauve);
  display: block;
  margin-bottom: 44px;
}
.sw-credits-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sw-credits-list li {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 0.5px solid rgba(137, 116, 117, 0.16);
}
.sw-credits-list li:last-child { border-bottom: 0; }
.sw-credits-list .role {
  font-family: var(--body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--mauve);
  text-align: right;
}
.sw-credits-list .name {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  color: var(--ink);
  text-align: left;
  letter-spacing: -0.005em;
}
@media (max-width: 560px) {
  .sw-credits-list li {
    grid-template-columns: 1fr;
    gap: 5px;
    text-align: center;
    padding: 16px 0;
  }
  .sw-credits-list .role,
  .sw-credits-list .name { text-align: center; }
}


/* Wedding story — 2-column details (used on pages with only 2 detail images) */
.sw-details-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1100px;
}
@media (max-width: 760px) {
  .sw-details-grid.two-col { grid-template-columns: 1fr; gap: 18px; }
}


/* ============================================================
   TESTIMONIALS PAGE
   ============================================================ */
.tm-intro {
  max-width: 580px;
  margin: 0 auto clamp(36px, 5vw, 60px);
  text-align: center;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 300;
  color: var(--ink);
}
.tm-list { background: var(--cream); }
.tm-container {
  max-width: 760px;
  margin: 0 auto;
}
.tm-card {
  padding: clamp(40px, 6vw, 64px) 0;
  border-top: 0.5px solid rgba(137, 116, 117, 0.18);
}
.tm-card:first-child { border-top: 0; }
.tm-quote {
  font-family: var(--body);
  font-weight: 300;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 20px;
}
.tm-quote:last-of-type { margin-bottom: 28px; }
.tm-attr {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.tm-couple {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 23px;
  line-height: 1.1;
  color: var(--ink);
}
.tm-venue {
  font-family: var(--body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mauve);
}


/* ============================================================
   COMING SOON / PLACEHOLDER PAGE
   ============================================================ */

.cs-section {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(140px, 18vh, 200px) var(--pad-x) clamp(80px, 10vw, 140px);
}
.cs-inner {
  max-width: 680px;
}
.cs-eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 36px;
}
.cs-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 1.02;
  letter-spacing: -0.014em;
  color: var(--ink);
  margin-bottom: 36px;
}
.cs-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--mauve);
}
.cs-sub {
  font-family: var(--body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 56px;
}
.cs-cta {
  display: inline-block;
  font-family: var(--body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mauve);
  border-bottom: 0.5px solid rgba(137, 116, 117, 0.55);
  padding-bottom: 6px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.cs-cta:hover {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}

/* ============================================================
   LEGAL / CONTENT PAGES (privacy, terms, press)
   ============================================================ */
.legal-section {
  padding: 150px var(--pad-x) 100px;
  background: var(--cream);
}
.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal-inner h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 10px;
}
.legal-meta {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 40px;
}
.legal-inner h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 23px;
  line-height: 1.2;
  color: var(--ink);
  margin: 40px 0 14px;
}
.legal-inner p {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 14px;
}
.legal-inner ul {
  margin: 12px 0 18px;
  padding-left: 22px;
}
.legal-inner li {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 6px;
}
.legal-inner a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-note {
  background: #fff;
  border-left: 3px solid var(--mauve);
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 36px;
}
.legal-back {
  display: inline-block;
  margin-top: 48px;
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mauve);
  border-bottom: 0.5px solid rgba(137, 116, 117, 0.55);
  padding-bottom: 6px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.legal-back:hover {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}

/* Hotel partner logos as links (keep logo sizing intact) */
.pp-partner a {
  display: inline-flex;
  height: 100%;
  align-items: center;
}

/* Vertical video frame (Design with AI explainer) */
.vid-frame {
  position: relative;
  width: min(340px, 78vw);
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}
.vid-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.vid-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Design with AI — explainer page */
.dwa-section {
  padding: 150px var(--pad-x) 90px;
  background: var(--cream);
}
.dwa-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  flex-wrap: wrap;
}
.dwa-copy { flex: 1 1 360px; }
.dwa-copy h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08;
  color: var(--ink);
  margin: 18px 0 22px;
}
.dwa-copy h1 em { font-style: italic; }
.dwa-copy p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 16px;
  max-width: 520px;
}
.dwa-note {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--mauve);
  margin-top: 16px;
}
.dwa-cta-row { margin-top: 30px; }
.dwa-video { flex: 0 0 auto; text-align: center; }
.dwa-video-label {
  display: block;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 16px;
}
@media (max-width: 760px) {
  .dwa-inner { flex-direction: column; }
  .dwa-video { order: -1; }
}
