/* ============================================================
   MICHELLE BAEZA MAKEUP — Design System v2
   Multi-Page Redesign · Dusty Rose + Champagne Gold
   ============================================================ */

/* ---- 1. Custom Properties ---- */

:root {
  --bg:            #faf8f5;
  --bg-deep:       #f0ece6;
  --surface:       rgba(255, 255, 255, 0.78);
  --surface-strong:#ffffff;
  --text:          #1a1715;
  --muted:         #7a6e69;
  --line:          rgba(26, 23, 21, 0.1);

  /* Dusty Rose — primary accent */
  --rose:          #c49a91;
  --rose-deep:     #8a5a51;
  --rose-soft:     rgba(196, 154, 145, 0.14);

  /* Champagne Gold — secondary accent */
  --gold:          #c4a47c;
  --gold-soft:     rgba(196, 164, 124, 0.13);

  /* Shadows */
  --shadow-sm:     0 4px 14px rgba(26, 20, 16, 0.06);
  --shadow:        0 18px 50px rgba(26, 20, 16, 0.09);
  --shadow-lg:     0 36px 90px rgba(26, 20, 16, 0.13);

  /* Border Radius */
  --r-xl: 40px;
  --r-lg: 28px;
  --r-md: 18px;
  --r-sm: 12px;

  /* Layout */
  --max-w: 1200px;
}

[data-theme="dark"] {
  --bg:            #100f0d;
  --bg-deep:       #181512;
  --surface:       rgba(26, 23, 20, 0.85);
  --surface-strong:#1c1815;
  --text:          #f4eeea;
  --muted:         #bdb4ae;
  --line:          rgba(244, 238, 234, 0.1);
  --rose:          #d4a89f;
  --rose-deep:     #e8c0b8;
  --rose-soft:     rgba(212, 168, 159, 0.15);
  --gold:          #d4b890;
  --gold-soft:     rgba(212, 184, 144, 0.13);
  --shadow-sm:     0 4px 14px rgba(0, 0, 0, 0.22);
  --shadow:        0 18px 50px rgba(0, 0, 0, 0.30);
  --shadow-lg:     0 36px 90px rgba(0, 0, 0, 0.40);
}

/* ---- 2. Reset & Base ---- */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  transition: background-color 240ms ease, color 240ms ease;
  overflow-x: hidden;
}

/* Subtle grain texture for premium feel */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }

/* ---- 3. Typography ---- */

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--text);
}

h1 { font-size: clamp(3.5rem, 7vw, 7rem); }
h2 { font-size: clamp(2.4rem, 4vw, 4rem); }
h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); }

p { color: var(--muted); }

.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  display: block;
  margin-bottom: 0.9rem;
}

[data-theme="dark"] .eyebrow { color: var(--rose); }

/* ---- 4. Layout ---- */

.container {
  width: min(calc(100% - 2.5rem), var(--max-w));
  margin-inline: auto;
}

.section { padding-block: 7rem; }

/* ---- 5. Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease,
              color 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  min-height: 3.2rem;
  padding: 0.85rem 2rem;
  background: var(--text);
  color: var(--bg);
  box-shadow: 0 8px 24px rgba(26, 20, 16, 0.2);
}

.btn-primary:hover { box-shadow: 0 12px 32px rgba(26, 20, 16, 0.28); }

.btn-outline {
  min-height: 3.2rem;
  padding: 0.85rem 2rem;
  border: 1px solid var(--line);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--text);
  background: var(--text);
  color: var(--bg);
}

.btn-ghost {
  padding-bottom: 0.18rem;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  color: inherit;
  opacity: 0.65;
}

.btn-ghost:hover {
  opacity: 1;
  transform: none;
}

/* ---- 6. Navigation ---- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: calc(0.75rem + env(safe-area-inset-top, 0px)) 0 0.75rem;
  transition: padding 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

.site-header.is-scrolled {
  padding: calc(0.85rem + env(safe-area-inset-top, 0px)) 0 0.85rem;
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--line);
}

[data-theme="dark"] .site-header.is-scrolled {
  background: rgba(16, 15, 13, 0.94);
}

/* ── Mobile: force solid nav background at all times ──
   iOS Safari's translucent URL bar can otherwise let hero content
   bleed through the area above the nav. */
@media (max-width: 900px) {
  .site-header,
  .site-header.is-scrolled {
    background: var(--bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 var(--line);
  }

  [data-theme="dark"] .site-header,
  [data-theme="dark"] .site-header.is-scrolled {
    background: var(--bg);
  }

  /* Restore normal (dark) text colors on hero since the nav is now solid */
  .hero .nav-brand-name,
  .site-header:not(.is-scrolled) .nav-brand-name {
    color: var(--text);
  }
  .site-header:not(.is-scrolled) .nav-brand-sub {
    color: var(--muted);
  }
  .site-header:not(.is-scrolled) .nav-link {
    color: var(--muted);
  }
  .site-header:not(.is-scrolled) .nav-cta {
    background: var(--text);
    color: #fff;
    border-color: transparent;
  }
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  flex-shrink: 0;
  opacity: 1;
  transition: opacity 200ms ease;
}

.nav-brand:hover { opacity: 0.65; }

.nav-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1;
  transition: color 180ms ease;
}

.hero .nav-brand-name,
.site-header:not(.is-scrolled) .nav-brand-name {
  color: #fff;
}

.nav-brand-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
  transition: color 180ms ease;
}

.site-header:not(.is-scrolled) .nav-brand-sub {
  color: rgba(244, 238, 234, 0.5);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 180ms ease;
}

.site-header:not(.is-scrolled) .nav-link {
  color: rgba(244, 238, 234, 0.6);
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--text);
}

.site-header:not(.is-scrolled) .nav-link:hover,
.site-header:not(.is-scrolled) .nav-link[aria-current="page"] {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.nav-cta {
  min-height: auto;
  padding: 0.65rem 1.3rem;
  font-size: 0.76rem;
}

.site-header:not(.is-scrolled) .nav-cta {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.site-header:not(.is-scrolled) .nav-cta:hover {
  background: rgba(255, 255, 255, 0.28);
}

.theme-btn {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 180ms ease, border-color 180ms ease;
  flex-shrink: 0;
}

.site-header:not(.is-scrolled) .theme-btn {
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(244, 238, 234, 0.6);
}

.theme-btn:hover { color: var(--text); border-color: var(--text); }

.theme-btn .icon-sun { display: none; }
.theme-btn .icon-moon { display: block; }
[data-theme="dark"] .theme-btn .icon-sun { display: block; }
[data-theme="dark"] .theme-btn .icon-moon { display: none; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
}

.site-header:not(.is-scrolled) .nav-toggle {
  border-color: rgba(255, 255, 255, 0.28);
}

.nav-toggle span {
  display: block;
  width: 1.05rem;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.site-header:not(.is-scrolled) .nav-toggle span {
  background: #fff;
}

/* Mobile full-screen nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-overlay-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1.1rem;
  transition: color 180ms ease, border-color 180ms ease;
}

.nav-overlay-close:hover { color: var(--text); border-color: var(--text); }

.nav-overlay .overlay-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 7vw, 3.8rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.01em;
  transition: color 180ms ease, transform 200ms ease;
}

.nav-overlay .overlay-link:hover {
  color: var(--rose);
  transform: translateX(8px);
}

.nav-overlay .overlay-cta {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-top: 1.5rem;
  transition: color 180ms ease;
}

[data-theme="dark"] .nav-overlay .overlay-cta { color: var(--rose); }
.nav-overlay .overlay-cta:hover { color: var(--text); transform: none; }

/* ---- 7. Footer ---- */

.site-footer {
  background: #1a1715;
  padding: 5rem 0 2.5rem;
}

[data-theme="dark"] .site-footer {
  background: #0d0b09;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}

.footer-logo {
  height: 140px;
  width: auto;
  display: block;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(250, 248, 245, 0.42);
  margin-bottom: 1.8rem;
  max-width: 26ch;
}

.footer-social {
  display: flex;
  gap: 0.7rem;
}

.footer-social a {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 248, 245, 0.48);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.footer-col-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.3);
  margin-bottom: 1.2rem;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col-links a,
.footer-col-links span {
  font-size: 0.9rem;
  color: rgba(250, 248, 245, 0.55);
  transition: color 180ms ease;
}

.footer-col-links a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(250, 248, 245, 0.26);
}

/* ---- 8. Animations ---- */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-group > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 750ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 750ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-group.is-visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0ms; }
.reveal-group.is-visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 90ms; }
.reveal-group.is-visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 180ms; }
.reveal-group.is-visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 270ms; }

/* ================================================================
   HOME PAGE
   ================================================================ */

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.85) brightness(0.88);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 11, 10, 0.80) 0%,
    rgba(14, 11, 10, 0.22) 52%,
    rgba(14, 11, 10, 0.04) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 6rem;
  animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero .eyebrow { color: rgba(244, 238, 234, 0.55); }

.hero h1 {
  color: #fff;
  font-size: clamp(4rem, 9vw, 8.5rem);
  font-weight: 300;
  line-height: 0.96;
  max-width: 13ch;
  margin-bottom: 1.6rem;
}

.hero h1 em {
  font-style: italic;
  color: rgba(244, 238, 234, 0.78);
}

.hero-lead {
  color: rgba(244, 238, 234, 0.62);
  font-size: 1.05rem;
  max-width: 46ch;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
}

.hero .btn-primary {
  background: #fff;
  color: #1a1715;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.hero .btn-primary:hover { box-shadow: 0 14px 38px rgba(0, 0, 0, 0.32); }

.hero .btn-ghost { color: rgba(244, 238, 234, 0.7); }
.hero .btn-ghost:hover { color: rgba(244, 238, 234, 1); opacity: 1; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  writing-mode: vertical-rl;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 238, 234, 0.38);
}

.hero-scroll-line {
  width: 1px;
  height: 4rem;
  background: linear-gradient(to bottom, transparent, rgba(244, 238, 234, 0.38));
  animation: scrollLine 2.4s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  60%       { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
}

/* Marquee */

.marquee-band {
  overflow: hidden;
  padding-block: 1.1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-deep);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding-inline: 1.8rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
  opacity: 0.7;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Featured work grid */

.featured-label {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2rem;
}

.featured-work {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  aspect-ratio: 16 / 10;
}

.fw-item {
  overflow: hidden;
  border-radius: var(--r-lg);
  position: relative;
}

.fw-item.fw-tall { grid-row: 1 / 3; }

.fw-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.02);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), filter 400ms ease;
}

.fw-item:hover img {
  transform: scale(1.05);
  filter: saturate(1) contrast(1.02);
}

/* Services strip */

.home-services-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.home-service-item {
  padding: 2.2rem 1.8rem;
  border-right: 1px solid var(--line);
  background: var(--surface-strong);
  transition: background 200ms ease;
}

[data-theme="dark"] .home-service-item { background: var(--surface-strong); }

.home-service-item:last-child { border-right: 0; }

.home-service-item:hover { background: var(--bg-deep); }

.home-service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--rose);
  opacity: 0.22;
  line-height: 1;
  margin-bottom: 1rem;
}

.home-service-item h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.home-service-item p  { font-size: 0.88rem; line-height: 1.62; }

/* Testimonial feature */

.testimonial-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.testimonial-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
}

.testimonial-copy blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 1.8rem;
}

.testimonial-copy cite {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-style: normal;
  margin-bottom: 2rem;
}

[data-theme="dark"] .testimonial-copy cite { color: var(--rose); }

/* CTA band */

.cta-band {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 32rem;
  display: flex;
  align-items: center;
}

.cta-band-media {
  position: absolute;
  inset: 0;
}

.cta-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.6) brightness(0.48);
}

.cta-band-content {
  position: relative;
  z-index: 2;
  max-width: 50ch;
  padding: 4rem;
}

.cta-band .eyebrow { color: rgba(196, 154, 145, 0.9); }
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p  { color: rgba(244, 238, 234, 0.62); margin-bottom: 2.2rem; }

.cta-band .btn-primary {
  background: #fff;
  color: #1a1715;
}

/* ================================================================
   INTERIOR PAGE HERO
   ================================================================ */

.page-hero {
  padding-top: calc(80px + 5rem);
  padding-bottom: 5rem;
  text-align: center;
}

/* Thin vertical ornament above the eyebrow label */
.page-hero .eyebrow::before {
  content: '';
  display: block;
  width: 1px;
  height: 2.8rem;
  background: var(--rose);
  margin: 0 auto 1.2rem;
  opacity: 0.5;
}

.page-hero h1 {
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  max-width: 22ch;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

.page-hero .lead {
  font-size: 1.08rem;
  max-width: 50ch;
  margin-inline: auto;
  line-height: 1.75;
}

.page-hero-line {
  width: 100%;
  height: 1px;
  background: var(--line);
  margin-top: 5rem;
}

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

.about-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  padding-bottom: 2.5rem;
  padding-right: 2.5rem;
}

.about-image-main {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84);
}

.about-image-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48%;
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 5px solid var(--bg);
  box-shadow: var(--shadow);
}

.about-image-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84);
}

.about-copy h2 { margin-bottom: 1.5rem; }

.about-copy p {
  margin-bottom: 1.1rem;
  font-size: 1rem;
}

.about-copy p:last-of-type { margin-bottom: 0; }

.about-signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 400;
  color: var(--rose-deep);
  margin-top: 1.8rem;
  display: block;
}

[data-theme="dark"] .about-signature { color: var(--rose); }

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 6rem;
}

.value-card {
  padding: 2rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  backdrop-filter: blur(8px);
}

.value-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: var(--rose-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--rose-deep);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
}

[data-theme="dark"] .value-icon { color: var(--rose); }

.value-card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.value-card p  { font-size: 0.92rem; line-height: 1.65; }

.areas-band {
  margin-top: 5rem;
  padding: 4rem;
  background: var(--bg-deep);
  border-radius: var(--r-xl);
  text-align: center;
}

.areas-band h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.areas-band > p { margin-bottom: 1.8rem; }

.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.area-tag {
  padding: 0.55rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
}

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

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2.8rem 2.4rem;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--surface-strong);
  transition: box-shadow 240ms ease, transform 240ms ease;
}

[data-theme="dark"] .service-card { background: var(--surface-strong); }
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.service-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--rose);
  opacity: 0.18;
  margin-bottom: 0.2rem;
}

.service-card h3 { font-size: 2rem; margin-bottom: 1rem; }
.service-card > p { font-size: 0.95rem; margin-bottom: 1.8rem; line-height: 1.72; }

.service-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-includes li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.service-includes li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
  opacity: 0.7;
}

/* Process steps */

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.process-step {
  padding: 2.5rem 2rem;
  background: var(--bg);
}

[data-theme="dark"] .process-step { background: var(--bg); }

.process-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--rose);
  opacity: 0.28;
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
.process-step p  { font-size: 0.9rem; line-height: 1.68; }

/* FAQ accordion */

.faq-list { max-width: 720px; margin-inline: auto; }

.faq-item { border-bottom: 1px solid var(--line); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--text);
  text-align: left;
  gap: 1rem;
  cursor: pointer;
}

.faq-question svg {
  flex-shrink: 0;
  color: var(--rose);
  transition: transform 280ms ease;
}

.faq-question[aria-expanded="true"] svg { transform: rotate(45deg); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms ease;
}

.faq-answer.is-open { grid-template-rows: 1fr; }

.faq-answer-inner { overflow: hidden; }

.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.78;
}

/* ================================================================
   PORTFOLIO PAGE
   ================================================================ */

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: 'Manrope', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.filter-btn:hover,
.filter-btn.is-active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.portfolio-grid {
  columns: 3;
  column-gap: 1rem;
}

.portfolio-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.portfolio-item.is-hidden { display: none; }

.portfolio-item img {
  width: 100%;
  display: block;
  filter: saturate(0.85) contrast(1.02);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), filter 400ms ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
  filter: saturate(1) contrast(1.02);
}

.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 11, 10, 0.68) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 300ms ease;
  display: flex;
  align-items: flex-end;
  padding: 1.4rem;
}

.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }

.portfolio-item-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #fff;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2.5rem; font-size: 0.95rem; }

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-detail-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  display: block;
  margin-bottom: 0.2rem;
}

[data-theme="dark"] .contact-detail-label { color: var(--rose); }

.contact-detail-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  display: block;
}

.contact-form-wrap {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 3rem;
  box-shadow: var(--shadow);
}

[data-theme="dark"] .contact-form-wrap { background: var(--surface-strong); }

.form-head { margin-bottom: 2rem; }

.form-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.form-head p { font-size: 0.9rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px var(--rose-soft);
}

.form-group textarea { height: 9rem; resize: vertical; line-height: 1.6; }

.form-submit { margin-top: 1.5rem; }
.form-submit .btn { width: 100%; justify-content: center; min-height: 3.4rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
}

.form-success.is-visible { display: block; }

.form-success-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-style: italic;
  color: var(--rose);
  margin-bottom: 1rem;
}

.form-success h3 { font-size: 2rem; margin-bottom: 0.5rem; }
.form-success p  { font-size: 0.95rem; }

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

@media (max-width: 1024px) {
  .testimonial-feature { gap: 4rem; }
  .contact-grid { gap: 4rem; }
}

@media (max-width: 860px) {
  .section { padding-block: 5rem; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero h1 { font-size: clamp(3.2rem, 10vw, 5.5rem); }

  .featured-work {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    aspect-ratio: auto;
    gap: 0.75rem;
  }

  .fw-item.fw-tall { grid-row: auto; aspect-ratio: 4 / 3; }
  .fw-item { aspect-ratio: 4 / 3; }
  .fw-item:last-child { display: none; }

  .home-services-strip { grid-template-columns: repeat(2, 1fr); }

  .home-service-item { border-bottom: 1px solid var(--line); }
  .home-service-item:nth-child(2),
  .home-service-item:nth-child(4) { border-right: 0; }

  .testimonial-feature { grid-template-columns: 1fr; gap: 3rem; }
  .testimonial-image { aspect-ratio: 16 / 9; }

  .about-duo { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-float { display: none; }
  .about-image-main { aspect-ratio: 16 / 9; }

  .about-values { grid-template-columns: 1fr; gap: 0.75rem; }

  .service-cards { grid-template-columns: 1fr; }

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

  .portfolio-grid { columns: 2; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .section { padding-block: 4rem; }

  .hero-scroll { display: none; }

  .featured-label { flex-direction: column; align-items: flex-start; }

  .home-services-strip { grid-template-columns: 1fr; }
  .home-service-item { border-right: 0 !important; }

  .portfolio-grid { columns: 1; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 2rem 1.5rem; }

  .areas-band { padding: 2.5rem 1.5rem; }

  .cta-band { min-height: 24rem; }
  .cta-band-content { padding: 2.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
