/* ============================================================
   THE DECOR BESTIES — LUXURY EDITORIAL DESIGN SYSTEM
   Inspired by SingleFin.nc — Cinematic, Minimal, Intentional
   ============================================================ */

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

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  --ivory:        #F9F6F1;
  --cream:        #F2EDE4;
  --champagne:    #E8D9C0;
  --blush:        #E8C4B8;
  --blush-deep:   #C9917F;
  --gold:         #B89C6E;
  --gold-light:   #D4B896;
  --charcoal:     #2C2A27;
  --charcoal-mid: #4A4640;
  --charcoal-soft:#7A756E;
  --white:        #FFFFFF;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Jost', system-ui, sans-serif;

  --fs-hero:   clamp(4rem, 10vw, 10rem);
  --fs-h1:     clamp(3rem, 6vw, 7rem);
  --fs-h2:     clamp(2rem, 4vw, 4.5rem);
  --fs-h3:     clamp(1.4rem, 2.5vw, 2.2rem);
  --fs-lead:   clamp(1rem, 1.5vw, 1.25rem);
  --fs-body:   clamp(0.875rem, 1.2vw, 1rem);
  --fs-label:  0.75rem;
  --fs-micro:  0.65rem;

  --space-xs:  clamp(0.5rem, 1vw, 1rem);
  --space-sm:  clamp(1rem, 2vw, 2rem);
  --space-md:  clamp(2rem, 4vw, 4rem);
  --space-lg:  clamp(4rem, 8vw, 8rem);
  --space-xl:  clamp(6rem, 12vw, 14rem);

  --ease-silk:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:    0.3s;
  --dur-mid:     0.6s;
  --dur-slow:    1s;
  --dur-cinematic: 1.4s;

  --header-h: 80px;
  --max-w:    1440px;
  --gutter:   clamp(1.5rem, 5vw, 6rem);
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: 1.7;
  cursor: none;
  overflow-x: hidden;
}

body.loading { overflow: hidden; }

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

::selection {
  background: var(--champagne);
  color: var(--charcoal);
}

/* ── CUSTOM CURSOR ────────────────────────────────────────── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--charcoal);
  border-radius: 50%;
  transition: width 0.3s var(--ease-silk), height 0.3s var(--ease-silk), background 0.3s;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid var(--charcoal);
  border-radius: 50%;
  transition: width 0.5s var(--ease-silk), height 0.5s var(--ease-silk),
              border-color 0.3s, transform 0.12s linear;
}

.cursor-dot.hovered {
  width: 8px;
  height: 8px;
  background: var(--gold);
}

.cursor-ring.hovered {
  width: 56px;
  height: 56px;
  border-color: var(--gold);
}

/* ── LOADING SCREEN ───────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  transition: opacity 0.8s var(--ease-silk), visibility 0.8s;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-wordmark {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  animation: loaderFade 0.8s 0.2s var(--ease-silk) forwards;
}

.loader-bar-wrap {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  overflow: hidden;
  opacity: 0;
  animation: loaderFade 0.5s 0.5s ease forwards;
}

.loader-bar {
  height: 100%;
  background: var(--gold);
  animation: loaderBar 1s 0.6s var(--ease-silk) forwards;
}

@keyframes loaderFade {
  to { opacity: 1; }
}

@keyframes loaderBar {
  from { width: 0; }
  to   { width: 100%; }
}

/* ── HEADER / NAV ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  transition: background 0.6s var(--ease-silk), border-color 0.6s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(249, 246, 241, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(44,42,39,0.08);
}

.site-header.dark {
  background: transparent;
}

.site-header.dark.scrolled {
  background: rgba(44, 42, 39, 0.92);
}

.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  transition: color 0.3s;
  white-space: nowrap;
}

.site-header.dark .nav-logo { color: var(--ivory); }

.nav-logo span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.nav-links a {
  font-size: var(--fs-label);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--charcoal);
  position: relative;
  transition: color 0.3s;
}

.site-header.dark .nav-links a { color: var(--ivory); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-silk);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0.6rem 1.4rem;
  border: 1px solid currentColor;
  color: var(--charcoal);
  transition: background 0.4s, color 0.4s, border-color 0.4s;
}

.site-header.dark .nav-cta { color: var(--ivory); border-color: var(--ivory); }

.nav-cta:hover {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
}

.site-header.dark .nav-cta:hover {
  background: var(--ivory);
  color: var(--charcoal);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--charcoal);
  transition: transform 0.4s var(--ease-silk), opacity 0.3s, width 0.3s;
  transform-origin: center;
}

.site-header.dark .nav-toggle span { background: var(--ivory); }

.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-silk), visibility 0.5s;
}

.nav-drawer.open {
  opacity: 1;
  visibility: visible;
}

.nav-drawer a {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: 0.05em;
  transition: color 0.3s, transform 0.3s;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.5s var(--ease-silk), transform 0.5s var(--ease-silk), color 0.3s;
}

.nav-drawer.open a {
  opacity: 1;
  transform: translateY(0);
}

.nav-drawer.open a:nth-child(1) { transition-delay: 0.1s; }
.nav-drawer.open a:nth-child(2) { transition-delay: 0.15s; }
.nav-drawer.open a:nth-child(3) { transition-delay: 0.2s; }
.nav-drawer.open a:nth-child(4) { transition-delay: 0.25s; }
.nav-drawer.open a:nth-child(5) { transition-delay: 0.3s; }

.nav-drawer a:hover { color: var(--gold); }

.nav-drawer-footer {
  position: absolute;
  bottom: 2rem;
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: var(--ivory);
  padding: var(--space-lg) var(--gutter) var(--space-md);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.footer-brand .footer-tagline {
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: var(--fs-body);
  color: rgba(249,246,241,0.5);
  max-width: 280px;
  line-height: 1.8;
}

.footer-nav h4,
.footer-contact h4 {
  font-size: var(--fs-micro);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-family: var(--ff-body);
  font-weight: 400;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  font-size: var(--fs-body);
  color: rgba(249,246,241,0.6);
  transition: color 0.3s;
  letter-spacing: 0.05em;
}

.footer-nav a:hover { color: var(--ivory); }

.footer-contact address {
  font-style: normal;
  font-size: var(--fs-body);
  color: rgba(249,246,241,0.6);
  line-height: 2;
}

.footer-contact a {
  color: rgba(249,246,241,0.6);
  transition: color 0.3s;
}

.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-sm);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: var(--fs-micro);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(249,246,241,0.3);
}

.footer-social {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.footer-social a {
  color: rgba(249,246,241,0.4);
  transition: color 0.3s;
  display: flex;
}

.footer-social a:hover { color: var(--gold); }

/* ── UTILITY CLASSES ──────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-label {
  font-size: var(--fs-micro);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--dur-cinematic) var(--ease-expo),
              transform var(--dur-cinematic) var(--ease-expo);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity var(--dur-cinematic) var(--ease-expo),
              transform var(--dur-cinematic) var(--ease-expo);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity var(--dur-cinematic) var(--ease-expo),
              transform var(--dur-cinematic) var(--ease-expo);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity var(--dur-cinematic) var(--ease-expo),
              transform var(--dur-cinematic) var(--ease-expo);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.5s; }
.delay-5 { transition-delay: 0.7s; }

/* ── BTN SYSTEM ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--ff-body);
  font-size: var(--fs-label);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 1rem 2rem;
  border: 1px solid transparent;
  transition: background 0.4s var(--ease-silk), color 0.4s, border-color 0.4s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-dark {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
}

.btn-dark:hover {
  background: var(--gold);
  color: var(--ivory);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--ivory);
}

.btn-outline-light {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
  background: var(--ivory);
  color: var(--charcoal);
  border-color: var(--ivory);
}

.btn-gold {
  background: var(--gold);
  color: var(--ivory);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  transform: translateY(-2px);
}

.btn svg { transition: transform 0.3s var(--ease-silk); flex-shrink: 0; }
.btn:hover svg { transform: translateX(4px); }

/* ── HORIZONTAL RULE ──────────────────────────────────────── */
.rule {
  width: 100%;
  height: 1px;
  background: rgba(44,42,39,0.08);
  margin: 0;
}

.rule-gold {
  background: var(--gold);
  width: 60px;
  height: 1px;
}

/* ── PAGE HERO (shared) ───────────────────────────────────── */
.page-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg) var(--gutter) var(--space-md);
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  transition: transform 8s var(--ease-silk);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-hero h1 {
  font-family: var(--ff-display);
  font-size: var(--fs-h1);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.page-hero p {
  font-size: var(--fs-lead);
  color: rgba(249,246,241,0.65);
  max-width: 520px;
  line-height: 1.7;
}

/* ── MARQUEE ──────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  background: var(--charcoal);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  will-change: transform;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  color: rgba(249,246,241,0.4);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

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

/* ── STICKY MOBILE CTA ────────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 0.9rem 2rem;
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  border-radius: 2px;
  transition: transform 0.4s var(--ease-silk), opacity 0.4s;
}

/* ── WHATSAPP FAB ─────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 890;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease-back), box-shadow 0.3s;
  color: white;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* ══════════════════════════════════════════════════════════
   HOME PAGE
══════════════════════════════════════════════════════════ */

/* HERO */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

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

.home-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroScale 12s var(--ease-silk) forwards;
}

@keyframes heroScale {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(44,42,39,0.75) 0%,
    rgba(44,42,39,0.2) 60%,
    transparent 100%
  );
  z-index: 1;
}

.home-hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) var(--gutter) var(--space-lg);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: var(--space-md);
}

.hero-headline {
  font-family: var(--ff-display);
  font-size: var(--fs-hero);
  font-weight: 300;
  color: var(--ivory);
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 820px;
  opacity: 0;
  transform: translateY(60px);
  animation: heroText 1.2s 0.8s var(--ease-expo) forwards;
}

.hero-headline em {
  font-style: italic;
  color: var(--champagne);
}

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

.hero-sub-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 340px;
  opacity: 0;
  animation: heroText 1.2s 1.2s var(--ease-expo) forwards;
}

.hero-subtext {
  font-size: var(--fs-body);
  color: rgba(249,246,241,0.7);
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: heroText 0.8s 1.8s ease forwards;
}

.hero-scroll span {
  font-size: var(--fs-micro);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(249,246,241,0.5);
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollBounce 2s 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50%       { transform: scaleY(0.5); transform-origin: top; }
}

/* STATEMENT SECTION */
.statement-section {
  padding: var(--space-xl) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-lg);
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.statement-label-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.statement-number {
  font-family: var(--ff-display);
  font-size: clamp(5rem, 15vw, 14rem);
  font-weight: 300;
  color: var(--champagne);
  line-height: 1;
  letter-spacing: -0.03em;
}

.statement-text h2 {
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

.statement-text h2 em {
  font-style: italic;
  color: var(--gold);
}

.statement-text p {
  font-size: var(--fs-lead);
  color: var(--charcoal-soft);
  line-height: 1.9;
  max-width: 540px;
}

/* HOME SERVICES */
.services-section {
  background: var(--charcoal);
  padding: var(--space-lg) var(--gutter);
}

.services-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-md);
}

.services-header h2 {
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}

.service-card {
  background: var(--charcoal);
  padding: var(--space-md) var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: background 0.4s var(--ease-silk);
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.5s var(--ease-silk);
}

.service-card:hover::after { width: 100%; }

.service-card:hover { background: rgba(255,255,255,0.03); }

.service-num {
  font-family: var(--ff-display);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.2em;
}

.service-card h3 {
  font-family: var(--ff-display);
  font-size: var(--fs-h3);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.2;
}

.service-card p {
  font-size: var(--fs-body);
  color: rgba(249,246,241,0.5);
  line-height: 1.8;
  flex: 1;
}

.service-arrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s;
}

.service-card:hover .service-arrow { gap: 1rem; }

/* EXPERIENCE STORY */
.experience-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.experience-image {
  position: relative;
  overflow: hidden;
}

.experience-image img {
  transition: transform 8s var(--ease-silk);
}

.experience-image:hover img { transform: scale(1.04); }

.experience-content {
  background: var(--cream);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.experience-content h2 {
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.1;
}

.experience-content h2 em {
  font-style: italic;
  color: var(--gold);
}

.experience-content p {
  font-size: var(--fs-lead);
  color: var(--charcoal-soft);
  line-height: 1.9;
  max-width: 440px;
}

.experience-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--champagne);
}

.stat-item .stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-top: 0.5rem;
}

/* FEATURED WORK */
.work-section {
  padding: var(--space-lg) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}

.work-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-md);
}

.work-header h2 {
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.1;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-xs);
}

.work-item {
  position: relative;
  overflow: hidden;
  background: var(--champagne);
}

.work-item:first-child {
  grid-row: span 2;
  min-height: 680px;
}

.work-item:not(:first-child) {
  min-height: 320px;
}

.work-item img {
  transition: transform 0.8s var(--ease-silk);
}

.work-item:hover img { transform: scale(1.06); }

.work-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,42,39,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-silk);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

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

.work-item-info h4 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ivory);
}

.work-item-info span {
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* PROCESS */
.process-section {
  background: var(--cream);
  padding: var(--space-lg) var(--gutter);
}

.process-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: var(--space-md);
}

.process-header h2 {
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.1;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--champagne);
  z-index: 0;
}

.process-step {
  padding: var(--space-sm);
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-dot {
  width: 16px;
  height: 16px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--cream);
  margin: 0 auto 2rem;
  position: relative;
  transition: background 0.3s;
}

.process-step:hover .step-dot { background: var(--gold); }

.step-num {
  font-size: var(--fs-micro);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.process-step h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.process-step p {
  font-size: var(--fs-body);
  color: var(--charcoal-soft);
  line-height: 1.8;
}

/* TESTIMONIALS */
.testimonials-section {
  padding: var(--space-lg) var(--gutter);
  background: var(--ivory);
  overflow: hidden;
}

.testimonials-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-md);
}

.testimonials-header h2 {
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.1;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.8s var(--ease-silk);
}

.testimonial-slide {
  min-width: 100%;
  padding: var(--space-md) 0;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-md);
  align-items: center;
}

.testimonial-image {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.quote-mark {
  font-family: var(--ff-display);
  font-size: 5rem;
  color: var(--champagne);
  line-height: 0.5;
  font-weight: 300;
}

.testimonial-content blockquote {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--charcoal);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author strong {
  font-weight: 400;
  font-size: var(--fs-body);
  letter-spacing: 0.1em;
}

.testimonial-author span {
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
}

.testimonials-controls {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: var(--space-sm);
}

.t-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--champagne);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.t-btn:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--ivory);
}

.t-dots {
  display: flex;
  gap: 0.5rem;
}

.t-dot {
  width: 6px;
  height: 6px;
  background: var(--champagne);
  border-radius: 50%;
  transition: background 0.3s, width 0.3s;
}

.t-dot.active {
  background: var(--charcoal);
  width: 20px;
  border-radius: 3px;
}

/* FAQ */
.faq-section {
  background: var(--charcoal);
  padding: var(--space-lg) var(--gutter);
}

.faq-inner {
  max-width: 860px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: var(--space-md);
}

.faq-header h2 {
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--ivory);
  transition: color 0.3s;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.4s var(--ease-silk);
}

.faq-icon::before {
  width: 14px; height: 1px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1px; height: 14px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-silk);
}

.faq-answer-inner {
  padding: 0 0 1.75rem;
  font-size: var(--fs-body);
  color: rgba(249,246,241,0.55);
  line-height: 1.9;
}

.faq-item.open .faq-answer { max-height: 300px; }

/* FINAL CTA */
.final-cta {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.final-cta-bg img { filter: brightness(0.4); }

.final-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-lg) var(--gutter);
  max-width: 800px;
}

.final-cta h2 {
  font-family: var(--ff-display);
  font-size: var(--fs-h1);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.05;
  margin-bottom: 2rem;
}

.final-cta h2 em {
  font-style: italic;
  color: var(--champagne);
}

.final-cta p {
  font-size: var(--fs-lead);
  color: rgba(249,246,241,0.65);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.final-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════ */

.about-intro {
  padding: var(--space-lg) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-lg);
  align-items: start;
}

.about-intro-sticky {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.about-intro h2 {
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.about-intro h2 em { font-style: italic; color: var(--gold); }

.about-intro .lead {
  font-size: var(--fs-lead);
  color: var(--charcoal-soft);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.about-portrait {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.about-portrait img { transition: transform 8s var(--ease-silk); }
.about-portrait:hover img { transform: scale(1.04); }

.portrait-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(249,246,241,0.92);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1rem;
}

.portrait-caption strong {
  display: block;
  font-weight: 400;
  font-size: var(--fs-body);
  letter-spacing: 0.05em;
}

.portrait-caption span {
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-values {
  background: var(--cream);
  padding: var(--space-lg) var(--gutter);
}

.about-values-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.about-values h2 {
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.value-item {
  padding: 2rem 0;
  border-top: 1px solid var(--champagne);
}

.value-num {
  font-family: var(--ff-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.value-item h3 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.value-item p {
  font-size: var(--fs-body);
  color: var(--charcoal-soft);
  line-height: 1.9;
}

.about-full-image {
  width: 100%;
  height: clamp(400px, 60vw, 700px);
  overflow: hidden;
  position: relative;
}

.about-story {
  padding: var(--space-lg) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-lg);
}

.story-nav {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  height: fit-content;
}

.story-nav-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 0;
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
  cursor: none;
}

.story-nav-item.active {
  color: var(--charcoal);
  border-color: var(--gold);
}

.story-nav-dot {
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
  flex-shrink: 0;
}

.story-content h3 {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.story-content p {
  font-size: var(--fs-lead);
  color: var(--charcoal-soft);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.story-block {
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--champagne);
  margin-bottom: var(--space-md);
}

/* ══════════════════════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════════════════════ */

.services-full {
  padding: var(--space-lg) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}

.service-full-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  align-items: center;
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--champagne);
}

.service-full-item:last-child { border-bottom: none; }

.service-full-item:nth-child(even) .service-full-image { order: 2; }
.service-full-item:nth-child(even) .service-full-content { order: 1; }

.service-full-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-full-image img { transition: transform 0.8s var(--ease-silk); }
.service-full-image:hover img { transform: scale(1.06); }

.service-full-content {
  padding: var(--space-sm);
}

.service-full-content h2 {
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.service-full-content p {
  font-size: var(--fs-lead);
  color: var(--charcoal-soft);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.service-includes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.service-includes li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-body);
  color: var(--charcoal-soft);
}

.service-includes li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.pricing-note {
  padding: var(--space-md) var(--gutter);
  background: var(--charcoal);
  text-align: center;
}

.pricing-note p {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-style: italic;
  color: rgba(249,246,241,0.7);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

/* ══════════════════════════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════════════════════════ */

.gallery-filter {
  padding: var(--space-sm) var(--gutter);
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow-x: auto;
  border-bottom: 1px solid var(--champagne);
}

.filter-btn {
  font-size: var(--fs-label);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--charcoal-soft);
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--charcoal);
  border-color: var(--gold);
}

.gallery-masonry {
  columns: 3;
  column-gap: var(--space-xs);
  padding: var(--space-sm) var(--gutter) var(--space-lg);
  max-width: var(--max-w);
  margin: 0 auto;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--space-xs);
  overflow: hidden;
  position: relative;
  background: var(--champagne);
  cursor: none;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.8s var(--ease-silk);
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,42,39,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease-silk);
}

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

.gallery-item-overlay span {
  color: var(--ivory);
  font-size: var(--fs-label);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(44,42,39,0.95);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.lightbox.open { opacity: 1; visibility: visible; }

.lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.lightbox-inner img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  width: auto;
  height: auto;
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  color: var(--ivory);
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

.lightbox-close:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════ */

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header-h));
}

.contact-image {
  position: relative;
  overflow: hidden;
}

.contact-image img { transition: transform 10s var(--ease-silk); }
.contact-image:hover img { transform: scale(1.04); }

.contact-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(44,42,39,0.2), transparent);
}

.contact-form-side {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ivory);
}

.contact-form-side h2 {
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.contact-form-side > p {
  font-size: var(--fs-body);
  color: var(--charcoal-soft);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group label {
  display: block;
  font-size: var(--fs-micro);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--champagne);
  background: transparent;
  padding: 0.75rem 0;
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--charcoal);
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
  cursor: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea {
  height: 120px;
  resize: none;
  line-height: 1.7;
}

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

.form-success {
  display: none;
  padding: 1.5rem;
  background: var(--cream);
  border-left: 2px solid var(--gold);
  margin-top: 1.5rem;
}

.form-success p {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
}

.contact-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--charcoal);
}

.contact-info-cell {
  padding: var(--space-md) var(--gutter);
  border-right: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.contact-info-cell:last-child { border-right: none; }

.contact-info-cell h4 {
  font-size: var(--fs-micro);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 400;
}

.contact-info-cell p,
.contact-info-cell a {
  font-size: var(--fs-body);
  color: rgba(249,246,241,0.65);
  line-height: 1.9;
}

.contact-info-cell a:hover { color: var(--ivory); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-item:first-child { grid-row: span 1; min-height: 360px; }
  .work-item:not(:first-child) { min-height: 280px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .about-intro { grid-template-columns: 1fr; }
  .about-intro-sticky { position: static; }
  .about-story { grid-template-columns: 1fr; }
  .story-nav { display: none; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .service-full-item { grid-template-columns: 1fr; }
  .service-full-item:nth-child(even) .service-full-image { order: 0; }
  .service-full-item:nth-child(even) .service-full-content { order: 0; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-image { min-height: 400px; }
  .contact-info-row { grid-template-columns: 1fr; }
  .contact-info-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
}

@media (max-width: 768px) {
  :root { --gutter: 1.25rem; }

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

  .home-hero-content {
    grid-template-columns: 1fr;
    align-items: flex-start;
    padding-bottom: var(--space-md);
  }

  .hero-sub-block { max-width: 100%; }

  .statement-section { grid-template-columns: 1fr; gap: var(--space-md); }

  .experience-section { grid-template-columns: 1fr; }
  .experience-image { min-height: 350px; }
  .experience-content { padding: var(--space-md); }

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

  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-item:first-child { grid-column: span 2; min-height: 300px; }
  .work-item:not(:first-child) { min-height: 200px; }

  .testimonial-slide { grid-template-columns: 1fr; }
  .testimonial-image { aspect-ratio: 16/9; }

  .gallery-masonry { columns: 2; }

  .footer-top { grid-template-columns: 1fr; }

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

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

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

  .values-grid { grid-template-columns: 1fr; }

  .work-header, .services-header, .testimonials-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .work-grid { grid-template-columns: 1fr; }
  .work-item:first-child { grid-column: auto; }
  .hero-ctas { flex-direction: column; }
  .final-cta-btns { flex-direction: column; align-items: center; }
  .process-steps { grid-template-columns: 1fr; }
}

@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  button, a { cursor: pointer; }
}
