/* =============================================================
   THE SIGMA  —  Bodoni Moda · Jost · White Dove · Black · Gray
   ============================================================= */

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

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  background: var(--dove);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none; /* hide default — custom cursor takes over */
}

/* Hide custom cursor on touch */
@media (hover: none) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }

/* 2. CUSTOM PROPERTIES */
:root {
  --serif:  'Raleway', sans-serif;
  --sans:   'Jost', sans-serif;

  --black:       #0A0A0A;
  --ink:         #141414;
  --ink-2:       #1C1C1C;
  --ink-3:       #252525;

  --dove:        #F4F0E7;   /* White Dove */
  --dove-2:      #EDE9DF;
  --dove-3:      #E4DFD4;
  --white:       #FFFFFF;

  --gray-100:    #E8E3D9;
  --gray-200:    #D4CFC6;
  --gray-300:    #B8B3AA;
  --gray-400:    #8A857C;
  --gray-500:    #5A564F;

  --text:        #111111;
  --text-2:      #3C3830;
  --text-3:      #6A6560;

  --b-light:     rgba(10, 10, 10, 0.09);
  --b-med:       rgba(10, 10, 10, 0.15);
  --b-dark:      rgba(255, 255, 255, 0.08);

  --max-w:       1200px;
  --hh:          80px;          /* header height */

  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io:     cubic-bezier(0.4, 0, 0.2, 1);

  --gold:        #C9A96E;
}

/* 3. TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
}

/* 4. LAYOUT */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px)  { .container { padding: 0 48px; } }
@media (min-width: 1024px) { .container { padding: 0 64px; } }

.desktop-br { display: none; }
@media (min-width: 768px) { .desktop-br { display: block; } }

/* 5. LOADER */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}

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

.loader.done .loader-logo {
  animation-play-state: paused;
}

.loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loader-logo {
  width: 88px;
  height: auto;
  display: block;
  animation: loaderPulse 1.4s ease-in-out infinite;
  filter: brightness(1) invert(0);
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

.loader-bar-wrap {
  width: 160px;
  height: 1px;
  background: rgba(244,240,231,0.15);
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  background: var(--dove);
  width: 0%;
  transition: width 0.1s linear;
}

.loader-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 240, 231, 0.35);
}

/* 6. CUSTOM CURSOR
   mix-blend-mode: difference makes white invert to black on light
   backgrounds and stay white on dark — always visible. */
.cursor-dot {
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10002;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), opacity 0.2s ease;
  will-change: transform;
}

.cursor-ring {
  width: 42px;
  height: 42px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10001;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.5s var(--ease), height 0.5s var(--ease),
              background 0.35s ease, opacity 0.2s ease;
  will-change: transform;
}

/* Hover states */
.cursor-dot.hover { width: 6px; height: 6px; opacity: 0.4; }
.cursor-ring.hover {
  width: 68px;
  height: 68px;
  background: rgba(255, 255, 255, 0.15);
}

/* 7. SCROLL PROGRESS */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--gold);
  z-index: 1000;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* 8. BUTTONS — clean transitions, no fill animation */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 34px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 1px;
  position: relative;
  cursor: none;
  transition: background 0.35s var(--ease),
              color 0.35s var(--ease),
              border-color 0.35s var(--ease),
              transform 0.3s var(--ease),
              box-shadow 0.35s ease;
}

/* — Dark (for light/dove backgrounds) */
.btn-gold, .btn-primary {
  background: var(--black);
  color: var(--dove);
  border: 1.5px solid var(--black);
}

.btn-gold:hover, .btn-primary:hover {
  background: var(--ink-3);
  border-color: var(--ink-3);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(10,10,10,0.22);
}

/* — Outline dark (for light backgrounds) */
.btn-gold-outline, .btn-secondary {
  background: transparent;
  color: var(--black);
  border: 1.5px solid rgba(10,10,10,0.28);
}

.btn-gold-outline:hover, .btn-secondary:hover {
  background: rgba(10,10,10,0.05);
  border-color: rgba(10,10,10,0.65);
  color: var(--black);
  transform: translateY(-3px);
}

/* — Light (for dark/black backgrounds) */
.btn-white, .btn-light {
  background: var(--dove);
  color: var(--black);
  border: 1.5px solid var(--dove);
}

.btn-white:hover, .btn-light:hover {
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(244,240,231,0.14);
}

/* — Outline light (for dark backgrounds) */
.btn-outline {
  background: transparent;
  color: rgba(244,240,231,0.75);
  border: 1.5px solid rgba(244,240,231,0.22);
}

.btn-outline:hover {
  color: var(--dove);
  border-color: rgba(244,240,231,0.6);
  background: rgba(244,240,231,0.05);
  transform: translateY(-3px);
}

/* Hero overrides — light buttons on dark hero */
.hero-actions .btn-gold {
  background: var(--dove);
  color: var(--black);
  border-color: var(--dove);
}
.hero-actions .btn-gold:hover {
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 14px 36px rgba(244,240,231,0.16);
}

.btn-sm { padding: 10px 22px; font-size: 0.74rem; }

/* 9. SECTION LABELS + TITLES */
.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 26px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.section-eyebrow--light { color: var(--gray-300); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.5vw, 6rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--text);
  letter-spacing: -0.025em;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
}

.section-title--light { color: var(--dove); }
.section-title--light em { color: var(--gray-200); }

/* Clip-path reveal (applied via JS observer) */
.reveal-clip {
  overflow: hidden;
}

.reveal-clip-inner {
  display: block;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transition: clip-path 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-clip-inner.visible {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* 10. HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--hh);
  transition: height 0.4s var(--ease);
}

.site-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.site-header.scrolled::after {
  background: rgba(10, 10, 10, 0.92);
  border-bottom-color: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-header.scrolled { height: 64px; }

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) { .header-inner { padding: 0 64px; } }

/* Logo */
.logo, .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  transition: opacity 0.3s ease;
}

.logo:hover { opacity: 0.7; }

.logo-monogram {
  height: 48px;
  width: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-monogram {
  height: 50px;
  width: 50px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.logo-name {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--dove);
  line-height: 1;
  text-transform: uppercase;
}

.logo-sub {
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,240,231,0.38);
  line-height: 1;
}

.footer-logo .logo-name   { font-size: 0.78rem; }

/* Nav */
.main-nav { display: none; }

@media (min-width: 1024px) {
  .main-nav { display: block; margin-left: 0; }

  .main-nav ul { display: flex; align-items: center; gap: 28px; }

  .nav-link {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(244,240,231,0.55);
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--dove);
    transition: width 0.35s var(--ease);
  }

  .nav-link:hover, .nav-link.active { color: var(--dove); }
  .nav-link:hover::after, .nav-link.active::after { width: 100%; }
}

/* Header CTA */
.header-cta { display: none; align-items: center; gap: 22px; justify-content: flex-end; flex: 1; }
@media (min-width: 1024px) { .header-cta { display: flex; } }

.header-phone {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.8rem; font-weight: 500;
  white-space: nowrap;
  color: rgba(244,240,231,0.6);
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
}

.header-phone svg { color: var(--gray-300); flex-shrink: 0; }
.header-phone:hover { color: var(--dove); }

.header-social-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-social-link {
  color: var(--gray-400);
  display: flex;
  align-items: center;
  transition: color 0.25s ease;
}

.header-social-link:hover { color: var(--gold); }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 15px;
  position: relative;
  z-index: 10;
  cursor: none;
}

@media (min-width: 1024px) { .hamburger { display: none; } }

.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--dove);
  transition: all 0.35s var(--ease);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 56px;
  transform: translateX(-100%);
  transition: transform 0.55s var(--ease);
  pointer-events: none;
}

.mobile-nav.open { transform: translateX(0); pointer-events: auto; }

.mobile-nav ul { display: flex; flex-direction: column; align-items: center; gap: 6px; }

.mobile-nav-link {
  font-family: var(--serif);
  font-size: clamp(3rem, 11vw, 5rem);
  font-weight: 700;
  color: var(--dove);
  letter-spacing: -0.02em;
  transition: opacity 0.3s ease;
}

.mobile-nav-link:hover { opacity: 0.45; }

.mobile-phone {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--gray-400);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 9px;
}


/* 11. HERO */
.hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  max-width: 100vw;
}

@keyframes hero-ken-burns {
  0%   { transform: scale(1.0)  translate(0,     0); }
  100% { transform: scale(1.22) translate(-1.5%, -1%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(8,8,8,0.88) 0%,
      rgba(8,8,8,0.60) 45%,
      rgba(8,8,8,0.25) 75%,
      rgba(8,8,8,0.10) 100%
    ),
    linear-gradient(
      to top,
      rgba(8,8,8,0.72) 0%,
      transparent 40%
    );
  pointer-events: none;
  z-index: 1;
}

/* Subtle grain texture on hero */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: calc(var(--hh) + 60px) 24px 64px;
}

@media (min-width: 768px)  { .hero-content { padding: calc(var(--hh) + 80px) 48px 80px; } }
@media (min-width: 1024px) { .hero-content { padding: calc(var(--hh) + 100px) 64px 96px; } }

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gray-300);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.hero-eyebrow.visible { opacity: 1; transform: translateY(0); }

.eyebrow-line {
  display: block;
  width: 34px; height: 1px;
  background: var(--gray-400);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 9vw, 8.5rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--dove);
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.hero-line.visible { opacity: 1; transform: translateY(0); }

.hero-line--italic {
  font-style: italic;
  font-weight: 300;
  color: var(--gray-200);
}

.hero-subtext {
  font-size: clamp(0.9rem, 1.5vw, 1.02rem);
  font-weight: 300;
  color: rgba(244,240,231,0.75);
  max-width: 470px;
  line-height: 1.85;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.hero-subtext.visible { opacity: 1; transform: translateY(0); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 54px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.hero-actions.visible { opacity: 1; transform: translateY(0); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.hero-trust.visible { opacity: 1; transform: translateY(0); }

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(244,240,231,0.68);
  letter-spacing: 0.05em;
}

.trust-item svg { color: var(--gray-300); flex-shrink: 0; }
.trust-divider { width: 1px; height: 15px; background: rgba(255,255,255,0.1); }

.hero-phone-cta {
  position: absolute;
  bottom: 96px; right: 24px;
  z-index: 2;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  pointer-events: auto;
}

@media (min-width: 768px)  { .hero-phone-cta { right: 48px; } }
@media (min-width: 1024px) { .hero-phone-cta { right: 64px; } }

.hero-phone-cta a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gray-400);
  transition: color 0.3s ease;
}

.hero-phone-cta a:hover { color: var(--dove); }

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,240,231,0.25);
  transition: color 0.3s ease;
}

.hero-scroll:hover { color: rgba(244,240,231,0.55); }
.scroll-arrow { animation: bounce 2s ease-in-out infinite; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* 11b. HERO — VIDEO BACKGROUND */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  pointer-events: none;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.4s ease;
}

.hero-video.playing {
  opacity: 1;
}

/* 11c. HERO — BLUEPRINT GRID OVERLAY */
.hero-blueprint {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(160,185,220,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160,185,220,0.045) 1px, transparent 1px),
    linear-gradient(rgba(160,185,220,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160,185,220,0.02) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px, 20px 20px, 20px 20px;
  animation: blueprint-drift 28s linear infinite;
  opacity: 0;
  transition: opacity 2s ease 0.8s;
}

.hero-blueprint.visible { opacity: 1; }

@keyframes blueprint-drift {
  0%   { background-position: 0 0, 0 0, 0 0, 0 0; }
  100% { background-position: 80px 80px, 80px 80px, 20px 20px, 20px 20px; }
}

/* 11d. HERO — PARTICLE CANVAS */
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* 11e. HERO — SCANNING LINE */
.hero-scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,169,110,0.18) 40%, rgba(201,169,110,0.22) 60%, transparent 100%);
  z-index: 2;
  pointer-events: none;
  animation: scanline-sweep 12s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  animation-delay: 2s;
  opacity: 0;
  overflow: hidden;
}

@keyframes scanline-sweep {
  0%   { top: 12%;  left: -45%; opacity: 0; }
  6%   { opacity: 1; }
  90%  { opacity: 0.7; }
  100% { top: 86%; left: 100%; opacity: 0; }
}

/* 11f. HERO — CORNER BRACKETS */
.hero-corner {
  position: absolute;
  width: 38px;
  height: 38px;
  z-index: 3;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.hero-corner--tl { top: 28px;    left: 28px;    border-top:    1px solid rgba(201,169,110,0.3); border-left:   1px solid rgba(201,169,110,0.3); }
.hero-corner--tr { top: 28px;    right: 28px;   border-top:    1px solid rgba(201,169,110,0.3); border-right:  1px solid rgba(201,169,110,0.3); }
.hero-corner--bl { bottom: 28px; left: 28px;    border-bottom: 1px solid rgba(201,169,110,0.3); border-left:   1px solid rgba(201,169,110,0.3); }
.hero-corner--br { bottom: 28px; right: 28px;   border-bottom: 1px solid rgba(201,169,110,0.3); border-right:  1px solid rgba(201,169,110,0.3); }

/* 11g. HERO — BUILD PROGRESS BAR */
.hero-build-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.hero-build-bar.visible { opacity: 1; transform: translateY(0); }

.hero-build-label,
.hero-build-est {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,240,231,0.62);
  white-space: nowrap;
}

.hero-build-track {
  flex: 1;
  max-width: 180px;
  height: 1px;
  background: rgba(255,255,255,0.07);
  overflow: hidden;
  position: relative;
}

.hero-build-fill {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #9A7A40, #C9A96E, #E8C97A, #C9A96E);
  background-size: 200% 100%;
  transition: width 2.8s cubic-bezier(0.22, 1, 0.36, 1);
  animation: gold-shimmer 3s ease infinite 3s;
}

@keyframes gold-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* 12. STATS */
.stats-band {
  background: var(--ink);
  border-top:    1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 32px 24px 0;
}

.stats-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); padding: 0 48px; }
}

@media (min-width: 1024px) { .stats-grid { padding: 0 64px; } }

.stat-item {
  text-align: center;
  padding: 52px 16px;
  position: relative;
  transition: background 0.35s ease;
}

.stat-item:hover { background: rgba(255,255,255,0.025); }

.stat-number {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--dove);
  display: inline;
  letter-spacing: -0.03em;
}

.stat-suffix {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gray-300);
  display: inline;
  line-height: 1;
}

.stat-label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 12px;
}

.stat-divider { display: none; }

@media (min-width: 768px) {
  .stat-item:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.07);
  }
}

/* 13. SERVICES */
.services { padding: 72px 0 0; background: var(--dove); }
.section-header { margin-bottom: 48px; }

.service-block {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

@media (min-width: 900px) {
  .service-block { grid-template-columns: 1fr 1fr; }
  .service-block--right .service-image-wrap { order: 2; }
  .service-block--right .service-content    { order: 1; }
  .service-block--left  .service-image-wrap { order: 1; }
  .service-block--left  .service-content    { order: 2; }
}

.service-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

@media (min-width: 900px) { .service-image-wrap { aspect-ratio: auto; min-height: 520px; } }

.service-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: transform 0.9s var(--ease);
  will-change: transform;
}

.service-image-wrap:hover img { transform: scale(1.05); }

/* Parallax wrapper */
.service-image-wrap .parallax-img {
  position: absolute;
  inset: -15% 0;
  height: 130%;
  object-fit: cover;
  will-change: transform;
}

.service-number {
  position: absolute;
  bottom: 20px; left: 20px;
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,0.1);
  pointer-events: none;
  user-select: none;
}

/* Number in cream content area (service 03) */
.service-number--dark {
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: rgba(10,10,10,0.05);
  bottom: 16px;
  left: auto;
  right: 20px;
  z-index: 0;
  overflow: hidden;
  max-width: 100%;
}

.service-content {
  background: var(--dove-2);
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--b-light);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

@media (min-width: 900px) {
  .service-content { padding: 68px 56px; border-top: none; border-left: 1px solid var(--b-light); }
  .service-block--left .service-content { border-left: none; border-right: 1px solid var(--b-light); }
}

/* Hover accent bar */
.service-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--black);
  transition: height 0.55s var(--ease);
  pointer-events: none;
}

.service-content:hover::before { height: 100%; }

/* Sigma watermark */
.service-content::after {
  content: attr(data-num);
  position: absolute;
  bottom: -30px; right: -10px;
  font-family: var(--serif);
  font-size: 9rem;
  font-weight: 700;
  color: rgba(10,10,10,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: transform 0.6s var(--ease);
}

.service-content:hover::after { transform: translateY(-10px); }

.service-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}

.service-heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 22px;
  letter-spacing: -0.025em;
}

.service-text {
  font-size: 0.93rem;
  color: var(--text-3);
  line-height: 1.9;
  margin-bottom: 28px;
}

.service-list {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-list li {
  font-size: 0.86rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-list li::before {
  content: '';
  display: block;
  width: 14px; height: 1px;
  background: var(--gray-300);
  flex-shrink: 0;
}

/* 14. PROJECTS */
.projects { padding: 72px 0; background: var(--ink); }

.projects-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .projects-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}

.projects-intro {
  font-size: 0.93rem;
  color: var(--gray-400);
  max-width: 340px;
  line-height: 1.9;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  align-items: start;
}

@media (min-width: 768px)  { .projects-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .projects-grid { grid-template-columns: 1fr 1.1fr 1fr; } }

/* 3D tilt container */
.project-card {
  position: relative;
  overflow: hidden;
  cursor: none;
  background: var(--ink-2);
  transform-style: preserve-3d;
  transition: box-shadow 0.4s ease;
}

.project-card:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.project-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.project-card--tall .project-image-wrap { aspect-ratio: 3/4; }

.project-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  pointer-events: none;
  will-change: transform;
}

.project-card:hover .project-image-wrap img { transform: scale(1.06); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(10,10,10,0.97) 0%,
    rgba(10,10,10,0.25) 55%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}

.project-card:hover .project-overlay { opacity: 1; }

.project-overlay-content {
  padding: 30px 26px;
  transform: translateY(12px);
  transition: transform 0.4s var(--ease);
}

.project-card:hover .project-overlay-content { transform: translateY(0); }

.project-location {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-300);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}

.project-title {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--dove);
  margin-bottom: 9px;
  letter-spacing: -0.02em;
}

.project-desc {
  font-size: 0.83rem;
  color: rgba(244,240,231,0.6);
  line-height: 1.7;
  margin-bottom: 8px;
}

.project-meta {
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0.08em;
}

.project-card-footer {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.project-card-location {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.project-card-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dove);
  letter-spacing: -0.01em;
}

.project-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-300);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 4px 10px;
  border-radius: 1px;
  white-space: nowrap;
  flex-shrink: 0;
}

.project-tag--active {
  color: #C9A96E;
  background: rgba(201,169,110,0.08);
  border-color: rgba(201,169,110,0.25);
}

/* Coming Soon card */
.project-coming-soon-wrap {
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
}

.project-coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 32px;
}

.coming-soon-sigma {
  width: 36px !important;
  height: 36px !important;
  max-width: 36px !important;
  object-fit: contain;
  opacity: 0.5;
  filter: brightness(0) invert(1);
  margin-bottom: 6px;
  display: block;
}

.coming-soon-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #C9A96E;
}

.coming-soon-address {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dove);
  letter-spacing: -0.02em;
  margin-top: 4px;
}

.coming-soon-location {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: rgba(244,240,231,0.4);
  letter-spacing: 0.06em;
}

/* 15. PROCESS */
.process {
  padding: 72px 0;
  background: var(--dove);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: 'Σ';
  position: absolute;
  top: 50%; right: -100px;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 580px;
  font-weight: 700;
  color: rgba(10,10,10,0.028);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.process-header { max-width: 560px; margin-bottom: 80px; }

.process-intro {
  font-size: 0.95rem;
  color: var(--text-3);
  line-height: 1.9;
  margin-top: 22px;
}

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

@media (min-width: 768px) { .process-steps { grid-template-columns: repeat(4, 1fr); } }

.process-step {
  padding: 0 0 48px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.3s var(--ease);
}

.process-step:hover { transform: translateY(-4px); }

@media (min-width: 768px) { .process-step { padding: 0 40px 0 0; } }

.step-number {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  color: var(--gray-200);
  letter-spacing: -0.02em;
}

.step-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.step-text {
  font-size: 0.9rem;
  color: var(--text-3);
  line-height: 1.9;
}

.step-connector { display: none; }

@media (min-width: 768px) {
  .step-connector {
    display: block;
    position: absolute;
    top: 28px; right: 0;
    width: 80%; height: 1px;
    background: linear-gradient(to right, var(--gray-200), var(--b-light));
    pointer-events: none;
  }
  .process-step:last-child .step-connector { display: none; }
}

/* 16. TESTIMONIALS */
.testimonials {
  padding: 72px 0;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.testimonials-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.45) 0%,
    rgba(8,8,8,0.30) 50%,
    rgba(8,8,8,0.45) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.testimonials .container { position: relative; z-index: 2; }

/* Testimonials dark-mode text overrides */
.testimonials .section-eyebrow        { color: rgba(244,240,231,0.75); }
.testimonials .section-title          { color: #ffffff; }
.testimonials .testimonial-quote-mark { display: none; }
.testimonials .testimonial-text       { color: #ffffff; text-shadow: 0 1px 10px rgba(0,0,0,0.5); }
.testimonials .author-name            { color: #ffffff; }
.testimonials .author-title           { color: rgba(244,240,231,0.7); }
.testimonials .author-avatar          { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: #ffffff; }
.testimonials .testimonial-stars svg  { color: #C9A96E; }
.testimonials .carousel-btn           { border-color: rgba(255,255,255,0.3); color: #ffffff; }
.testimonials .carousel-btn:hover     { border-color: #ffffff; background: rgba(255,255,255,0.1); color: #ffffff; }
.testimonials .dot                    { background: rgba(255,255,255,0.3); }
.testimonials .dot.active             { background: #C9A96E; }

.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-header .section-eyebrow { justify-content: center; }
.testimonials-header .section-eyebrow::before { display: none; }

.testimonial-carousel { position: relative; max-width: 800px; margin: 0 auto; }
.testimonial-track { position: relative; }

.testimonial-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  animation: slideIn 0.5s var(--ease);
}

.testimonial-slide.active { display: flex; }

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

.testimonial-quote-mark {
  font-family: var(--serif);
  font-size: 7rem;
  font-weight: 400;
  line-height: 0.5;
  color: var(--gray-300);
  margin-bottom: 20px;
  user-select: none;
}

.testimonial-text {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 640px;
  letter-spacing: -0.01em;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.author-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gray-200);
  border: 1.5px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-500);
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.author-name {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 3px;
  letter-spacing: 0.03em;
}

.author-title {
  display: block;
  font-size: 0.73rem;
  color: var(--text-3);
  letter-spacing: 0.07em;
}

.testimonial-stars { display: flex; gap: 3px; }
.testimonial-stars svg { width: 13px; height: 13px; color: var(--gray-500); }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 52px;
}

.carousel-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--b-med);
  background: transparent;
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  border-color: var(--black);
  color: var(--black);
  background: rgba(10,10,10,0.05);
}

.carousel-dots { display: flex; gap: 8px; }

.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: none;
  transition: all 0.35s ease;
  padding: 0;
}

.dot.active { background: var(--black); width: 22px; border-radius: 3px; }

/* 17. ABOUT */
.about {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

@media (min-width: 900px) { .about { grid-template-columns: 1fr 1fr; } }

.about-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

@media (min-width: 900px) { .about-image-wrap { aspect-ratio: auto; min-height: 620px; } }

.about-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.about-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,8,8,0.18) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.about-image-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: var(--dove);
  opacity: 0.15;
  pointer-events: none;
}

.about-content {
  background: var(--dove-2);
  padding: 64px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--b-light);
}

@media (min-width: 900px) {
  .about-content { padding: 80px 64px; border-top: none; border-left: 1px solid var(--b-light); }
}

.about-text { font-size: 0.93rem; color: var(--text-3); line-height: 1.95; margin-top: 22px; }

.about-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 34px 0;
}

.about-badge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-3);
  line-height: 1.45;
}

.about-badge svg { color: var(--gray-500); flex-shrink: 0; margin-top: 1px; }

/* 18. AREAS */
.areas {
  padding: 100px 0;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.areas-header { margin-bottom: 56px; }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.04);
}

@media (min-width: 600px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .areas-grid { grid-template-columns: repeat(4, 1fr); } }

.area-item {
  background: var(--ink);
  padding: 26px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease;
  cursor: none;
}

.area-item:hover { background: var(--ink-2); }

.area-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dove);
  transition: color 0.3s ease;
  letter-spacing: -0.01em;
}

.area-item:hover .area-name { color: var(--gray-200); }

.area-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gray-300);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.area-item:hover .area-dot { opacity: 1; }

.area-item--cta { background: rgba(255,255,255,0.02); }

.area-item--cta a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0.07em;
  font-style: italic;
  font-family: var(--serif);
  transition: color 0.3s ease;
}

.area-item--cta:hover { background: rgba(255,255,255,0.05); }
.area-item--cta a:hover { color: var(--dove); }

/* 19. CTA BANNER */
@keyframes cta-gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes cta-glow-pulse {
  0%, 100% { opacity: 0.18; transform: scale(1); }
  50%       { opacity: 0.28; transform: scale(1.12); }
}

.cta-banner {
  background: linear-gradient(
    135deg,
    #080808 0%,
    #111108 18%,
    #0d0d0d 35%,
    #1a1608 52%,
    #0a0a0a 68%,
    #141208 84%,
    #080808 100%
  );
  background-size: 300% 300%;
  animation: cta-gradient-shift 12s ease infinite;
  border-top: 1px solid rgba(196,160,80,0.12);
  position: relative;
  overflow: hidden;
}

/* ambient gold orb */
.cta-banner::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,160,80,0.14) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: cta-glow-pulse 8s ease-in-out infinite;
  pointer-events: none;
}

/* top edge light line */
.cta-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(196,160,80,0.35), rgba(255,255,255,0.15), rgba(196,160,80,0.35), transparent);
  pointer-events: none;
}

.cta-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 110px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (min-width: 768px) { .cta-banner-inner { padding: 130px 64px; } }

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content .section-eyebrow { justify-content: center; }
.cta-content .section-eyebrow::before { display: none; }

.cta-heading {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 700;
  line-height: 0.92;
  color: var(--dove);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.cta-heading em { font-style: italic; font-weight: 400; color: var(--gray-200); }

.cta-subtext {
  font-size: 0.95rem;
  color: var(--gray-400);
  max-width: 400px;
  margin: 0 auto 40px;
  line-height: 1.9;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.cta-sigma-bg {
  position: absolute;
  top: 50%; right: -60px;
  transform: translateY(-50%);
  width: clamp(280px, 40vw, 520px);
  height: auto;
  opacity: 0.07;
  pointer-events: none;
  filter: brightness(0) sepia(1) saturate(2) hue-rotate(10deg) brightness(0.6);
  user-select: none;
}

/* 20. CONTACT */
.contact { background: var(--dove); }

.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) { .contact-inner { grid-template-columns: 1fr 1.3fr; } }

.contact-info {
  padding: 80px 40px;
  background: var(--dove-2);
  border-bottom: 1px solid var(--b-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 900px) {
  .contact-info { padding: 100px 64px; border-bottom: none; border-right: 1px solid var(--b-light); }
}

.contact-intro {
  font-size: 0.93rem;
  color: var(--text-3);
  line-height: 1.9;
  margin-top: 22px;
  margin-bottom: 40px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 34px; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: opacity 0.3s ease;
}

.contact-detail:hover { opacity: 0.65; }

.contact-icon {
  width: 42px; height: 42px;
  border-radius: 2px;
  background: rgba(10,10,10,0.05);
  border: 1px solid var(--b-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  flex-shrink: 0;
}

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

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

.contact-social { display: flex; gap: 9px; margin-bottom: 32px; }

.social-link {
  width: 37px; height: 37px;
  border-radius: 2px;
  border: 1px solid var(--b-med);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  cursor: none;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.social-link:hover {
  border-color: var(--black);
  color: var(--black);
  background: rgba(10,10,10,0.05);
}

.footer-social .social-link { border-color: rgba(255,255,255,0.09); color: var(--gray-400); }
.footer-social .social-link:hover { border-color: rgba(244,240,231,0.35); color: var(--dove); background: rgba(255,255,255,0.04); }

.license-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-3);
  padding: 11px 15px;
  background: rgba(10,10,10,0.04);
  border: 1px solid var(--b-light);
  border-radius: 2px;
}

.license-badge svg { color: var(--gray-500); flex-shrink: 0; }

.contact-form-wrap {
  padding: 80px 40px;
  display: flex;
  align-items: center;
}

@media (min-width: 900px) { .contact-form-wrap { padding: 100px 64px; } }

.contact-form { width: 100%; position: relative; }

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

.form-group { position: relative; margin-bottom: 24px; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--dove);
  border: 1px solid var(--b-med);
  border-radius: 2px;
  padding: 20px 16px 8px;
  font-family: var(--sans);
  font-size: 0.93rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
}

.form-group select {
  cursor: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236A6560' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: var(--dove);
}

.form-group select option { background: var(--dove); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-group label {
  position: absolute;
  top: 14px; left: 16px;
  font-size: 0.86rem;
  color: var(--text-3);
  pointer-events: none;
  transition: all 0.25s var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--black);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(10,10,10,0.05);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select.has-value ~ label {
  top: 7px;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
}

.form-validation {
  position: absolute;
  top: 100%; left: 0;
  font-size: 0.7rem;
  color: #C44;
  margin-top: 4px;
  display: none;
}

.form-group.error .form-validation { display: block; }
.form-group.error input,
.form-group.error textarea,
.form-group.error select { border-color: #C44; }
.form-group.success input,
.form-group.success textarea,
.form-group.success select { border-color: #4A8C5C; }

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 18px 32px;
  font-size: 0.86rem;
}

.btn-loading { display: none; }
.btn-submit.loading .btn-text { display: none; }
.btn-submit.loading .btn-loading { display: flex; animation: spin 0.8s linear infinite; }

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.form-success {
  position: absolute;
  inset: 0;
  background: var(--dove);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 40px;
}

.form-success[aria-hidden="false"] { display: flex; animation: slideIn 0.5s var(--ease); }

.form-success svg { color: var(--gray-500); }

.form-success h3 {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.form-success p {
  font-size: 0.93rem;
  color: var(--text-3);
  max-width: 330px;
  line-height: 1.75;
}

/* 21. FOOTER */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 80px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  margin-bottom: 64px;
}

@media (min-width: 768px) { .footer-inner { grid-template-columns: 1.4fr 2fr; } }

.footer-brand { display: flex; flex-direction: column; gap: 20px; }

.footer-tagline {
  font-family: var(--serif);
  font-size: 0.98rem;
  font-style: italic;
  color: rgba(244,240,231,0.28);
  line-height: 1.65;
  max-width: 210px;
}

.footer-social { display: flex; gap: 9px; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media (min-width: 600px) { .footer-links { grid-template-columns: repeat(4, 1fr); } }

.footer-col-title {
  font-family: var(--sans);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dove);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a,
.footer-col li {
  font-size: 0.83rem;
  color: rgba(244,240,231,0.3);
  line-height: 1.5;
  transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--gray-200); }
.footer-contact-list { gap: 12px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 22px 0;
}

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom .container { flex-direction: row; justify-content: space-between; text-align: left; }
}

.footer-copy {
  font-size: 0.74rem;
  color: rgba(244,240,231,0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.footer-license { color: rgba(244,240,231,0.18); }

.footer-legal { display: flex; gap: 24px; }

.footer-legal a {
  font-size: 0.74rem;
  color: rgba(244,240,231,0.18);
  transition: color 0.3s ease;
}

.footer-legal a:hover { color: var(--gray-300); }

.footer-credit {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,240,231,0.35);
  padding: 28px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.04);
  margin-top: 14px;
}

.footer-credit span {
  color: rgba(196,160,80,0.7);
  letter-spacing: 0.12em;
}

/* 22. BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 24px;
  width: 42px; height: 42px;
  border-radius: 2px;
  background: var(--dove);
  border: 1px solid var(--b-med);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  cursor: none;
  transition: all 0.35s var(--ease);
}

.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

.back-to-top:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--dove);
  transform: translateY(-3px);
}

/* 23. SCROLL ANIMATIONS */
.animate-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.animate-in.visible { opacity: 1; transform: translateY(0); }

/* 24. RESPONSIVE */

/* ── 480px and below (phones) ─────────────────────────────── */
@media (max-width: 480px) {

  /* Hero */
  .hero-content        { padding: calc(var(--hh) + 32px) 20px 52px; }
  .hero-headline       { font-size: clamp(2.8rem, 13vw, 4.2rem); margin-bottom: 20px; }
  .hero-subtext        { font-size: 0.88rem; margin-bottom: 28px; }
  .hero-actions        { gap: 10px; margin-bottom: 32px; }
  .hero-actions .btn   { padding: 14px 22px; font-size: 0.72rem; }
  .hero-trust          { gap: 12px; }
  .trust-divider       { display: none; }
  .hero-phone-cta      { display: none; }
  .hero-build-bar      { display: none; }
  .hero-corner         { width: 22px; height: 22px; }
  .hero-corner--tl     { top: 12px; left: 12px; }
  .hero-corner--tr     { top: 12px; right: 12px; }
  .hero-corner--bl     { bottom: 12px; left: 12px; }
  .hero-corner--br     { bottom: 12px; right: 12px; }
  .hero-scanline       { display: none; }

  /* Typography */
  .section-title       { font-size: clamp(2rem, 9vw, 3rem); }
  .section-eyebrow     { font-size: 0.6rem; }

  /* Services */
  .service-content     { padding: 36px 20px; }
  .service-number      { display: none !important; }
  .service-eyebrow     { font-size: 0.6rem; }
  .service-heading     { font-size: clamp(1.5rem, 5vw, 2rem); }
  .service-block--left .service-image-wrap img { object-position: center 20%; }

  /* About */
  .about-content       { padding: 40px 20px; }
  .about-badges        { grid-template-columns: 1fr; gap: 12px; }
  .about-badge         { padding: 16px; }

  /* CTA Banner */
  .cta-banner-inner    { padding: 60px 20px; }

  /* Process */
  .process-step        { padding: 0 0 36px 0; }

  /* Contact */
  .contact-info        { padding: 48px 20px; }
  .contact-form-wrap   { padding: 40px 20px; }
  .form-row            { grid-template-columns: 1fr; }
  .contact-detail      { gap: 12px; }
  .contact-icon        { width: 38px; height: 38px; flex-shrink: 0; }

  /* Footer */
  .footer-links        { grid-template-columns: 1fr 1fr; gap: 16px 24px; }
  .footer-inner        { gap: 40px; margin-bottom: 48px; }
  .site-footer         { padding-top: 56px; }
}

/* ── 768px and below (tablets portrait + large phones) ──────── */
@media (max-width: 768px) {
  .hero-content        { padding: calc(var(--hh) + 48px) 24px 64px; }
  .service-content     { padding: 44px 28px; }
  .about-content       { padding: 52px 28px; }
  .contact-info        { padding: 60px 28px; }
  .contact-form-wrap   { padding: 60px 28px; }
  .service-block--left .service-image-wrap img { object-position: center 20%; }

  /* Stats */
  .stat-item           { padding: 40px 12px; }
  .stat-number         { font-size: clamp(2.4rem, 6vw, 3.8rem); }

  /* Areas */
  .areas               { padding: 64px 0; }
  .areas-grid          { grid-template-columns: repeat(2, 1fr); }

  /* CTA Banner */
  .cta-banner-inner    { padding: 72px 24px; }
  .cta-heading         { font-size: clamp(2.6rem, 10vw, 5rem); }

  /* Process */
  .process-header      { margin-bottom: 52px; }

  /* Projects */
  .projects-header     { margin-bottom: 44px; }

  /* Section headers */
  .section-header      { margin-bottom: 48px; }
}

/* ── Service/About reorder on sub-900px ─────────────────────── */
@media (max-width: 899px) {
  .service-block--right .service-image-wrap,
  .service-block--left  .service-image-wrap { order: 0 !important; }
  .service-block--right .service-content,
  .service-block--left  .service-content    { order: 1 !important; }
}

/* ── Mobile-only fixes ───────────────────────────────────────── */
@media (max-width: 768px) {
  .about-image-wrap { height: 280px; aspect-ratio: unset; }
  .about-video { display: block; width: 100%; height: 100%; object-fit: cover; }
  .service-number { display: none !important; }
}

/* Mobile nav close button */
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--dove);
  cursor: pointer;
  z-index: 10;
  transition: background 0.25s ease, transform 0.3s ease;
}
.mobile-nav-close:hover {
  background: rgba(255,255,255,0.16);
  transform: rotate(90deg);
}

/* =============================================================
   GALLERY BUTTON & PROJECT FOOTER
   ============================================================= */

.project-footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.gallery-count-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  background: none;
  border: none;
  padding: 0;
  cursor: none;
  transition: color 0.25s ease;
}

.gallery-count-btn:hover { color: #C9A96E; }

/* =============================================================
   LIGHTBOX
   ============================================================= */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 6, 0.97);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Header */
.lightbox-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 40px 0;
  flex-shrink: 0;
}

.lightbox-location {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 4px;
}

.lightbox-title {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.lightbox-meta-tag {
  font-family: var(--sans);
  font-size: 0.62rem;
  color: var(--gray-400);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.lightbox-counter {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  white-space: nowrap;
  padding-top: 4px;
}

/* Close */
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  cursor: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

/* Stage */
.lightbox-stage {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 70px;
  min-height: 0;
}

.lightbox-img-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 2px;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: block;
}

.lightbox-img.loaded {
  opacity: 1;
  transform: scale(1);
}

/* Nav arrows */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  cursor: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.2);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-nav:hover.lightbox-prev { transform: translateY(-50%) translateX(-2px); }
.lightbox-nav:hover.lightbox-next { transform: translateY(-50%) translateX(2px); }

/* Thumbs */
.lightbox-thumbs {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 6px;
  justify-content: center;
  padding: 14px 40px 24px;
  flex-shrink: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.lightbox-thumbs::-webkit-scrollbar { display: none; }

.lightbox-thumb {
  width: 60px;
  height: 45px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 1px;
  opacity: 0.4;
  cursor: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: 1px solid transparent;
}

.lightbox-thumb:hover { opacity: 0.7; }

.lightbox-thumb.active {
  opacity: 1;
  border-color: #C9A96E;
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 640px) {
  .lightbox-header { padding: 20px 20px 0; }
  .lightbox-stage  { padding: 16px 50px; }
  .lightbox-thumbs { padding: 10px 16px 16px; gap: 4px; }
  .lightbox-thumb  { width: 46px; height: 34px; }
  .lightbox-nav    { width: 38px; height: 38px; }
  .lightbox-prev   { left: 8px; }
  .lightbox-next   { right: 8px; }
}
