/* =====================================================
   VERDANT GROUNDS — LIVING CINEMA
   ===================================================== */


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

:root {
  --nav-h: 72px;
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

html {
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.9;
  overflow-x: hidden;
}

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

/* =====================================================
   GRAIN TEXTURE
   ===================================================== */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* =====================================================
   CUSTOM CURSOR
   ===================================================== */
#cursor-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s;
  top: 0; left: 0;
}
#cursor-ring {
  position: fixed;
  width: 24px;
  height: 24px;
  border: 1.5px solid rgba(107,143,94,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  top: 0; left: 0;
  transition: width 0.25s var(--ease-out-expo), height 0.25s var(--ease-out-expo),
              opacity 0.25s, border-color 0.25s;
}
html.has-cursor * { cursor: none !important; }

/* Cursor hover state */
#cursor-ring.is-hover {
  width: 40px;
  height: 40px;
  opacity: 1;
  border-color: rgba(107,143,94,0.9);
}

/* =====================================================
   URGENCY BANNER
   ===================================================== */
#urgency-banner {
  background: var(--accent);
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 201;
  overflow: hidden;
  transition: height 0.35s ease, opacity 0.35s ease;
}
#urgency-banner.dismissed { height: 0; opacity: 0; pointer-events: none; }
#urgency-banner p {
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: white;
  text-align: center;
  padding: 0 48px;
}
#urgency-banner .close-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 18px;
  width: 32px;
  height: 32px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s;
}
#urgency-banner .close-btn:hover { opacity: 1; }

/* =====================================================
   NAV
   ===================================================== */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 clamp(24px, 5vw, 64px);
  transition: background 0.5s ease, border-bottom 0.5s ease, top 0.35s ease;
}
#nav.scrolled {
  background: rgba(12,15,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(107,143,94,0.3);
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.01em;
  transition: font-size 0.5s;
  flex-shrink: 0;
}
#nav.scrolled .nav-logo { font-size: 16px; }

.nav-links {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  margin: 0 auto;
  list-style: none;
}
.nav-links a {
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232,228,220,0.7);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--accent);
  color: white;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0 24px;
  height: 44px;
  display: flex;
  align-items: center;
  border-radius: 0;
  transition: background 0.2s, opacity 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { opacity: 0.85; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  margin-left: auto;
  padding: 8px 0;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
#mobile-nav {
  position: fixed;
  inset: 0;
  background: #0C0F0A;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(80px,15vh,120px) clamp(32px,8vw,64px) clamp(40px,8vh,80px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
#mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav-links { list-style: none; }
.mobile-nav-links li {
  overflow: hidden;
  margin-bottom: clamp(16px, 3vw, 24px);
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 16px;
}
.mobile-nav-links .link-num {
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: var(--accent);
}
.mobile-nav-links a {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(36px, 10vw, 56px);
  color: var(--text);
  transform: translateX(60px);
  opacity: 0;
  display: inline-block;
  transition: color 0.2s;
}
#mobile-nav.open .mobile-nav-links a { transform: translateX(0); opacity: 1; }
.mobile-nav-links li:nth-child(1) a { transition-delay: 0.05s; transition: transform 0.5s var(--ease-out-expo) 0.05s, opacity 0.5s ease 0.05s, color 0.2s; }
.mobile-nav-links li:nth-child(2) a { transition-delay: 0.13s; transition: transform 0.5s var(--ease-out-expo) 0.13s, opacity 0.5s ease 0.13s, color 0.2s; }
.mobile-nav-links li:nth-child(3) a { transition-delay: 0.21s; transition: transform 0.5s var(--ease-out-expo) 0.21s, opacity 0.5s ease 0.21s, color 0.2s; }
.mobile-nav-links li:nth-child(4) a { transition-delay: 0.29s; transition: transform 0.5s var(--ease-out-expo) 0.29s, opacity 0.5s ease 0.29s, color 0.2s; }
.mobile-nav-links li:nth-child(5) a { transition-delay: 0.37s; transition: transform 0.5s var(--ease-out-expo) 0.37s, opacity 0.5s ease 0.37s, color 0.2s; }
.mobile-nav-phone {
  margin-top: auto;
  padding-top: 40px;
}
.mobile-nav-phone .label {
  font-family: 'Satoshi', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.mobile-nav-phone a {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 7vw, 42px);
  color: var(--accent);
  display: block;
}

/* =====================================================
   HERO
   ===================================================== */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(12,15,10,0.88) 0%, rgba(12,15,10,0.55) 50%, rgba(12,15,10,0.35) 100%);
  z-index: 1;
  transition: background 0.6s ease;
}
.hero-grain { z-index: 2; }

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 7%;
  max-width: 100%;
}
.hero-name {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(52px, 9vw, 128px);
  line-height: 0.88;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  overflow: hidden;
}
/* Splitting.js char wrappers */
.hero-name .word { overflow: hidden; display: inline-block; }
.hero-name .char {
  display: inline-block;
  transform: translateY(105%);
}

.hero-rule {
  width: 80px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 24px;
}
.hero-tagline {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(16px, 2.2vw, 28px);
  color: rgba(232,228,220,0.8);
  max-width: 520px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(24px);
}
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 0;
}
.btn-primary {
  background: var(--accent);
  color: white;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  height: 52px;
  padding: 0 32px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.85; }
.btn-secondary {
  background: transparent;
  color: var(--text);
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  height: 52px;
  padding: 0 32px;
  border: 1px solid rgba(232,228,220,0.4);
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { background: rgba(232,228,220,0.05); }

.hero-phone {
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(232,228,220,0.55);
  opacity: 0;
}
.hero-phone a { color: var(--accent); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 1;
  transition: opacity 0.3s;
}
.scroll-line {
  width: 1px;
  height: 56px;
  background: var(--accent);
  animation: scrollReveal 2s ease-in-out infinite;
}
@keyframes scrollReveal {
  0%   { transform: scaleY(0); transform-origin: top;    opacity: 0; }
  45%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
.scroll-label {
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232,228,220,0.4);
}

/* =====================================================
   MARQUEE BAR
   ===================================================== */
#marquee-bar {
  height: 56px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
#marquee-bar:hover .marquee-track { animation-play-state: paused; }
.marquee-track .run {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0 32px;
}
.marquee-sep {
  opacity: 0.6;
  margin: 0 16px;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================================================
   STATS
   ===================================================== */
#stats {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--bg);
}
.stats-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 15vw;
  color: var(--text);
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 40px clamp(24px, 4vw, 56px);
  text-align: center;
  border-right: 1px solid rgba(232,228,220,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}
.stat-number {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(56px, 9vw, 128px);
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-suffix {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 56px);
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(232,228,220,0.6);
}

/* =====================================================
   BEFORE / AFTER
   ===================================================== */
#before-after {
  background: var(--bg);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
  padding-bottom: 60px;
}
.ba-header {
  padding: clamp(60px, 8vw, 100px) clamp(24px, 7%, 120px) clamp(40px, 5vw, 60px);
}
.section-eyebrow {
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.section-heading {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.section-heading.dark { color: #1A1A1A; }

.ba-slider-wrap {
  position: relative;
  width: 100vw;
  height: 70vh;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
}
.ba-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.ba-after { z-index: 1; }
.ba-before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.05s;
}
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 35%;
  width: 2px;
  background: var(--accent);
  z-index: 3;
  pointer-events: none;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  letter-spacing: -2px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  pointer-events: none;
}
.ba-label {
  position: absolute;
  top: 20px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  z-index: 5;
}
.ba-label-before { left: 20px; z-index: 6; }
.ba-label-after { right: 20px; }
.ba-caption {
  padding: clamp(24px, 3vw, 32px) clamp(24px, 7%, 120px) clamp(60px, 8vw, 100px);
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--muted);
}
.ba-caption strong {
  color: var(--text);
  font-weight: 400;
  display: block;
  margin-bottom: 4px;
}

/* =====================================================
   PROJECTS
   ===================================================== */
#projects {
  background: var(--bg);
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 80px);
}
.projects-header {
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.projects-intro {
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--muted);
  margin-top: 16px;
  max-width: 480px;
}
.filter-bar {
  display: flex;
  gap: 8px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 0;
  border: 1px solid rgba(232,228,220,0.2);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  min-height: 40px;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 340px;
  gap: 12px;
}
.project-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.project-card.hidden { opacity: 0; transform: scale(0.96); pointer-events: none; display: none; }

/* Asymmetric grid placement */
.project-card:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
.project-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.project-card:nth-child(3) { grid-column: 3; grid-row: 1; }
.project-card:nth-child(4) { grid-column: 2; grid-row: 2; }
.project-card:nth-child(5) { grid-column: 3; grid-row: 2; }
.project-card:nth-child(6) { grid-column: 2 / span 2; grid-row: 3; }

.project-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.12);
  transition: transform 0.4s ease;
  will-change: transform;
}
.project-card:hover .project-img { transform: scale(1.04); }

/* Image wipe reveal */
.project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg);
  z-index: 5;
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}
.project-card.revealed::after { transform: scaleX(0); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12,15,10,0) 30%, rgba(12,15,10,0.8) 100%);
  z-index: 2;
  transition: background 0.4s;
}
.project-card:hover .project-overlay {
  background: linear-gradient(to bottom, rgba(12,15,10,0.15) 0%, rgba(12,15,10,0.85) 100%);
}
.project-left-border {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  z-index: 3;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}
.project-card:hover .project-left-border { transform: scaleY(1); }

.project-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 3;
  background: var(--accent);
  color: white;
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0;
}
.project-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  z-index: 3;
  transition: transform 0.4s ease;
}
.project-card:hover .project-info { transform: translateY(-4px); }
.project-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  color: white;
  line-height: 1.2;
  margin-bottom: 4px;
}
.project-location {
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

/* =====================================================
   ABOUT
   ===================================================== */
#about {
  position: relative;
  z-index: 5;
  margin-top: -60px;
  display: grid;
  grid-template-columns: 38% 62%;
  min-height: 680px;
}
.about-content {
  background: var(--bg);
  padding: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-heading {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 72px);
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 16px 0 24px;
}
.about-text {
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: rgba(232,228,220,0.75);
  line-height: 1.8;
  margin-bottom: 32px;
}
.about-established {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 8px;
}
.about-license {
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: rgba(232,228,220,0.35);
  margin-bottom: 40px;
}
.about-owner {
  margin-top: auto;
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--muted);
}

.about-image-wrap {
  position: relative;
  overflow: hidden;
}
.about-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.about-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg);
  z-index: 3;
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}
.about-image-wrap.revealed::after { transform: scaleX(0); }
.about-grain { position: absolute; inset: 0; z-index: 2; opacity: 0.03; }

/* =====================================================
   WHY US — LIGHT SECTION
   ===================================================== */
#why-us {
  background: var(--light);
  padding: clamp(80px, 10vw, 120px) clamp(24px, 7%, 120px);
}
.why-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.owner-quote {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 20px;
  color: #5A5A50;
  max-width: 320px;
  line-height: 1.5;
  flex-shrink: 0;
  padding-top: 8px;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.why-item {
  padding: clamp(32px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--accent);
  padding-right: 40px;
}
.why-item:nth-child(even) { padding-right: 0; padding-left: 40px; }
.why-num {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.why-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  color: #1A1A1A;
  margin-bottom: 10px;
}
.why-desc {
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: #5A5A50;
  line-height: 1.7;
}

/* =====================================================
   REVIEWS
   ===================================================== */
#reviews {
  background: var(--bg);
  padding: clamp(80px, 10vw, 120px) clamp(24px, 7%, 120px);
}
.reviews-heading {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(52px, 7vw, 96px);
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: clamp(48px, 6vw, 72px);
  line-height: 1;
}
.review-item {
  padding: clamp(40px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.review-item:first-of-type { border-top: 1px solid var(--border); }
.review-item:nth-child(odd) .review-text { max-width: 60%; margin-right: auto; }
.review-item:nth-child(even) .review-text { max-width: 55%; margin-left: auto; }
.review-item:nth-child(4) .review-text { max-width: 65%; margin: 0 auto; font-size: 29px !important; }
.review-text {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 26px;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 20px;
}
.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review-author {
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.review-stars {
  font-size: 12px;
  color: var(--accent);
}
.review-item:nth-child(even) .review-meta { justify-content: flex-end; gap: 24px; }

.reviews-summary {
  text-align: center;
  margin-top: clamp(40px, 5vw, 64px);
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  color: var(--muted);
}

/* =====================================================
   PACKAGES — LIGHT
   ===================================================== */
#packages {
  background: var(--light);
  padding: clamp(80px, 10vw, 120px) clamp(24px, 7%, 120px);
}
.packages-heading {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(52px, 7vw, 96px);
  color: #1A1A1A;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1;
}
.packages-intro {
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #5A5A50;
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 520px;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.package-card {
  border: 1px solid rgba(0,0,0,0.1);
  padding: 40px 36px;
  background: #FFFFFF;
  position: relative;
  transition: background 0.4s, color 0.4s;
}
.package-card.recommended {
  background: var(--primary);
  border-color: var(--primary);
}
.package-card:not(.recommended):hover {
  background: var(--accent);
  border-color: var(--accent);
}
.package-card:not(.recommended):hover * { color: white !important; }
.package-card:not(.recommended):hover .pkg-check { color: white !important; }

.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 14px;
  white-space: nowrap;
  animation: badgeBounce 0.4s ease;
}
@keyframes badgeBounce {
  0% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.08); }
  100% { transform: translateX(-50%) scale(1); }
}

.pkg-name {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.recommended .pkg-name { color: white; }

.pkg-price-wrap { margin-bottom: 8px; display: flex; align-items: baseline; gap: 4px; }
.pkg-price {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 48px;
  color: #1A1A1A;
  line-height: 1;
}
.recommended .pkg-price { color: white; }
.pkg-period {
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #5A5A50;
}
.recommended .pkg-period { color: rgba(255,255,255,0.6); }

.pkg-divider {
  height: 1px;
  background: rgba(0,0,0,0.1);
  margin: 24px 0;
}
.recommended .pkg-divider { background: rgba(255,255,255,0.15); }

.pkg-features {
  list-style: none;
  margin-bottom: 32px;
}
.pkg-features li {
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #3A3A30;
  padding: 6px 0;
  display: flex;
  gap: 10px;
}
.recommended .pkg-features li { color: rgba(255,255,255,0.8); }
.pkg-check {
  color: var(--accent);
  font-weight: 500;
  flex-shrink: 0;
}
.recommended .pkg-check { color: white; }

.pkg-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  background: var(--accent);
  color: white;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.pkg-cta:hover { opacity: 0.85; }
.recommended .pkg-cta { background: white; color: #0C0F0A; }

.packages-note {
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #6B6B60;
  text-align: center;
}

/* =====================================================
   CONTACT
   ===================================================== */
#contact {
  background: var(--bg);
  padding: clamp(80px, 10vw, 120px) clamp(24px, 7%, 120px);
}
.contact-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: clamp(48px, 6vw, 80px);
}
.contact-heading {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(40px, 5vw, 72px);
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.contact-subtext {
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
.contact-cta-link {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 26px;
  color: var(--accent);
  display: inline-block;
  position: relative;
  margin-bottom: 32px;
}
.contact-cta-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.contact-cta-link:hover::after { width: 100%; }

.contact-rule {
  width: 100%;
  height: 1px;
  background: rgba(232,228,220,0.1);
  margin-bottom: 32px;
}
.contact-phone-label {
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-phone {
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.contact-email {
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: rgba(232,228,220,0.55);
  display: block;
  margin-bottom: 8px;
}
.contact-address {
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.hours-table tr td {
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--muted);
  padding: 5px 0;
}
.hours-table tr td:last-child { text-align: right; }
.hours-table tr.today td {
  color: var(--accent);
  font-weight: 500;
}
.hours-table tr.closed td { font-style: italic; opacity: 0.4; }
.contact-radius {
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  margin-top: 20px;
}

/* Contact Form */
.contact-form-label {
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  display: block;
}
.form-group { margin-bottom: 0; position: relative; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(232,228,220,0.2);
  color: var(--text);
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: 16px;
  height: 52px;
  padding: 0;
  outline: none;
  transition: border-color 0.25s;
  display: block;
  margin-bottom: 24px;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(107,107,96,0.5); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
}
.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%236B6B60' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  cursor: pointer;
}
.form-select option { background: var(--bg); color: var(--text); }
.form-textarea { height: 120px; resize: none; padding-top: 12px; }
.form-submit {
  width: 100%;
  height: 54px;
  background: var(--accent);
  color: white;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-bottom: 12px;
}
.form-submit:hover { opacity: 0.85; }
.form-privacy {
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.visible { display: block; animation: fadeIn 0.5s ease; }
.success-heading {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 42px;
  color: var(--accent);
  margin-bottom: 16px;
}
.success-text {
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--muted);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* =====================================================
   CTA STRIP
   ===================================================== */
#cta-strip {
  background: var(--accent);
  clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
  padding: calc(60px + clamp(60px, 8vw, 100px)) clamp(24px, 7%, 120px) clamp(60px, 8vw, 100px);
  text-align: center;
}
.cta-heading {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 72px);
  color: white;
  line-height: 1.1;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.btn-cta-white {
  background: white;
  color: var(--accent);
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  height: 54px;
  padding: 0 40px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s;
}
.btn-cta-white:hover { opacity: 0.9; }

/* =====================================================
   FOOTER
   ===================================================== */
#footer {
  background: var(--dark);
  padding: clamp(60px, 8vw, 100px) clamp(24px, 7%, 120px) clamp(40px, 5vw, 60px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 10px;
}
.footer-tagline {
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer-license {
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: rgba(232,228,220,0.3);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(232,228,220,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-contact-phone {
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.footer-contact-email, .footer-contact-address {
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}
.footer-social {
  margin-top: 16px;
  display: flex;
  gap: 16px;
}
.footer-social a {
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: rgba(232,228,220,0.4);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid rgba(232,228,220,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-family: 'Satoshi', sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: rgba(232,228,220,0.3);
}

/* =====================================================
   MOBILE STICKY BAR
   ===================================================== */
#mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: var(--accent);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
  text-decoration: none;
}
.sticky-bar-content {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  font-size: 14px;
}
.sticky-phone-icon {
  font-size: 18px;
  animation: phonePulse 4s ease-in-out infinite;
}
@keyframes phonePulse {
  0%, 85%, 100% { transform: scale(1); }
  90% { transform: scale(1.15); }
  95% { transform: scale(0.95); }
}

/* =====================================================
   UTILITY
   ===================================================== */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5%, 80px);
}
.label {
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Word split animation */
.word-split .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.word-split .word > span {
  display: inline-block;
  transform: translateY(48px);
  opacity: 0;
}

/* =====================================================
   RESPONSIVE — MOBILE
   ===================================================== */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  body { overscroll-behavior-y: none; }

  #mobile-sticky-bar { display: flex; }
  #footer { padding-bottom: 80px; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero mobile */
  .hero-content {
    padding: 0 0 10%;
    width: 100%;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .hero-name { font-size: 26vw; text-align: center; }
  .hero-rule { margin: 0 auto; }
  .hero-tagline { font-size: 5.5vw; text-align: center; margin-left: auto; margin-right: auto; }
  .hero-ctas { flex-direction: column; width: calc(100% - 48px); }
  .btn-primary, .btn-secondary { width: 100%; height: 56px; justify-content: center; }
  .hero-overlay {
    background: rgba(12,15,10,0.72) !important;
  }
  .scroll-indicator { display: none; }

  /* Marquee */
  #marquee-bar { height: 48px; }

  /* Stats mobile */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(232,228,220,0.1); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(232,228,220,0.1); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .stat-number { font-size: 18vw; }
  .stat-suffix { font-size: 9vw; }
  .stats-bg-text { font-size: 30vw; opacity: 0.03; }

  /* Before/After mobile */
  .ba-slider-wrap { height: 65vw; }

  /* Projects mobile — horizontal scroll */
  .projects-grid {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .projects-grid::-webkit-scrollbar { display: none; }
  .project-card {
    flex: 0 0 88vw;
    height: 70vw;
    scroll-snap-align: start;
  }
  /* Reset grid placement on mobile */
  .project-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
  .filter-bar { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; padding-bottom: 8px; }
  .filter-bar::-webkit-scrollbar { display: none; }

  /* About mobile */
  #about { grid-template-columns: 1fr; margin-top: 0; }
  .about-image-wrap { height: 55vh; position: relative; }
  .about-image { position: absolute; }
  .about-content { padding: 48px 24px; }

  /* Why us mobile */
  .why-header { flex-direction: column; }
  .owner-quote { max-width: 100%; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item { padding-right: 0 !important; padding-left: 0 !important; }

  /* Reviews mobile */
  .review-item .review-text,
  .review-item:nth-child(odd) .review-text,
  .review-item:nth-child(even) .review-text,
  .review-item:nth-child(4) .review-text {
    max-width: 100%;
    margin: 0;
    font-size: 18px !important;
    text-align: center;
  }
  .review-meta { justify-content: center !important; gap: 16px; }

  /* Packages mobile */
  .packages-grid { grid-template-columns: 1fr; }

  /* Contact mobile */
  .contact-grid { grid-template-columns: 1fr; }

  /* Footer mobile */
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* =====================================================
   REDUCED MOTION
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-name .char { transform: none !important; }
  .hero-tagline, .hero-ctas, .hero-phone { opacity: 1 !important; transform: none !important; }
  #cursor-dot, #cursor-ring { display: none; }
}
