/* ═══════════════════════════════════════════
   THE FINISHING TOUCH CLEANING
   Immersive editorial experience
   ═══════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --bg: #F6F4EF;
  --bg-dark: #1C2A1E;
  --bg-card: #FFFFFF;
  --green: #4A6B4E;
  --green-light: #6B8E6F;
  --green-pale: #E4ECE5;
  --green-wash: #F0F5F0;
  --gold: #C4A35A;
  --gold-soft: #EDE3C8;
  --ink: #1A1A1A;
  --ink-mid: #4A4A4A;
  --ink-light: #8A8A82;
  --border: #E0DDD5;
  --white: #FFFFFF;
  --error: #BF3B3B;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-padding-top: 64px;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

.skip-link {
  position: absolute; top: -100%; left: 16px;
  padding: 10px 20px; background: var(--green); color: var(--white);
  border-radius: 6px; font-weight: 600; z-index: 9999;
}
.skip-link:focus { top: 16px; }
::selection { background: var(--green-pale); }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

/* ═══════════════════════════════════════════
   NOISE OVERLAY — analog film grain
   ═══════════════════════════════════════════ */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ═══════════════════════════════════════════
   SCROLL PROGRESS BAR
   ═══════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--green-light));
  z-index: 10001;
  transform-origin: left;
  will-change: width;
}

/* ═══════════════════════════════════════════
   CUSTOM CURSOR
   ═══════════════════════════════════════════ */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: difference;
}

.cursor__dot {
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  position: absolute;
  top: -4px;
  left: -4px;
  transition: transform 0.15s var(--ease-out), opacity 0.3s;
}

.cursor__ring {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  position: absolute;
  top: -20px;
  left: -20px;
  transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), top 0.4s var(--ease-out), left 0.4s var(--ease-out), border-color 0.3s;
}

.cursor.is-hover .cursor__dot {
  transform: scale(0);
}

.cursor.is-hover .cursor__ring {
  width: 64px;
  height: 64px;
  top: -32px;
  left: -32px;
  border-color: rgba(255, 255, 255, 0.8);
}

@media (pointer: coarse) {
  .cursor { display: none; }
}

/* ── UTILITY ── */
.label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}
.label--light { color: var(--gold-soft); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px;
  font-size: 0.88rem; font-weight: 600;
  border-radius: 60px;
  transition: all 0.5s var(--ease-out);
  background: var(--green);
  color: var(--white);
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s var(--ease-out), height 0.6s var(--ease-out);
}
.btn:active::before {
  width: 300px;
  height: 300px;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-101%);
  transition: transform 0.5s var(--ease-out);
}
.btn:hover::after { transform: translateX(0); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(74,107,78,0.25); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--green);
  color: var(--green);
  box-shadow: none;
}

.btn--full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.brand-bar {
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem clamp(1.5rem, 4vw, 3rem);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.brand-bar.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.brand-bar img {
  height: clamp(100px, 16vw, 180px);
  width: auto;
}

.nav {
  position: sticky; top: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: center; gap: 2.5rem;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  height: 64px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: background 0.6s var(--ease-smooth), box-shadow 0.6s var(--ease-smooth), backdrop-filter 0.6s, border-color 0.6s;
}
.nav.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.nav--scrolled {
  background: rgba(246,244,239,0.8);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 1px 0 var(--border);
}

.nav--dark {
  background: rgba(28,42,30,0.85) !important;
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom-color: rgba(255,255,255,0.06);
}
.nav--dark .nav__links a { color: rgba(255,255,255,0.6); }
.nav--dark .nav__links a:hover { color: var(--white); }
.nav--dark .nav__links a::after { background: var(--gold-soft); }
.nav--dark .nav__burger span { background: var(--white); }

.nav__links {
  display: none;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.3px;
  color: var(--ink-mid);
  position: relative;
  transition: color 0.35s var(--ease-out);
}
.nav__links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta {
  display: none;
  padding: 10px 24px;
  font-size: 0.8rem; font-weight: 600;
  background: var(--green); color: var(--white);
  border-radius: 60px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.nav__cta::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-101%);
  transition: transform 0.5s var(--ease-out);
}
.nav__cta:hover::after { transform: translateX(0); }
.nav__cta:hover { background: var(--bg-dark); transform: translateY(-1px); }

.nav__burger {
  display: flex; flex-direction: column; gap: 6px;
  width: 28px; height: 28px;
  justify-content: center; z-index: 110;
}
.nav__burger span {
  display: block; width: 100%; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: all 0.45s var(--ease-out);
  transform-origin: center;
}
.nav__burger.open span:first-child { transform: rotate(45deg) translate(2.8px, 2.8px); }
.nav__burger.open span:last-child { transform: rotate(-45deg) translate(2.8px, -2.8px); }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; position: absolute; right: clamp(1.5rem, 4vw, 3rem); }
  .nav__burger { display: none; }
}

/* ── MOBILE MENU ── */
.mob-menu {
  position: fixed; inset: 0; z-index: 105;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}
.mob-menu.open { opacity: 1; visibility: visible; }

.mob-menu__inner { text-align: center; }
.mob-menu__link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 500;
  color: var(--ink);
  padding: 0.3em 0;
  transform: translateY(40px) rotate(2deg);
  opacity: 0;
  transition: all 0.55s var(--ease-out);
}
.mob-menu.open .mob-menu__link {
  transform: translateY(0) rotate(0deg); opacity: 1;
}
.mob-menu.open .mob-menu__link:nth-child(1) { transition-delay: 0.05s; }
.mob-menu.open .mob-menu__link:nth-child(2) { transition-delay: 0.1s; }
.mob-menu.open .mob-menu__link:nth-child(3) { transition-delay: 0.15s; }
.mob-menu.open .mob-menu__link:nth-child(4) { transition-delay: 0.2s; }
.mob-menu.open .mob-menu__link:nth-child(5) { transition-delay: 0.25s; }

.mob-menu__link--cta { color: var(--green); }
.mob-menu__link:hover { color: var(--green); }

/* ═══════════════════════════════════════════
   HERO — asymmetric split with parallax
   ═══════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100svh;
  padding: 60px clamp(1.5rem, 4vw, 3rem) 60px;
  gap: 3rem;
  align-items: center;
  overflow: hidden;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 40px;
}
.hero__eyebrow::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  width: 0;
  height: 1.5px;
  background: var(--green);
  transition: width 1s var(--ease-out) 0.8s;
}
.hero__eyebrow.revealed::before {
  width: 28px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--green);
}
.hero__title .word {
  display: inline-block;
  will-change: transform, opacity;
}

.hero__body {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ink-mid);
  max-width: 460px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

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

.hero__col--visual {
  display: none;
}

.hero__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 480px;
  margin: 0 auto;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  will-change: clip-path, transform;
}

.hero__float {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  display: flex; flex-direction: column;
  will-change: transform, opacity;
}
.hero__float strong {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.hero__float span {
  font-size: 0.72rem;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero__float--1 { top: 8%; right: 5%; }
.hero__float--2 { bottom: 25%; left: 0; }
.hero__float--3 { bottom: 5%; right: 15%; }

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 60px clamp(2rem, 5vw, 5rem);
    gap: 2rem;
  }
  .hero__col--visual { display: block; }
}

/* ═══════════════════════════════════════════
   MARQUEE — velocity-reactive
   ═══════════════════════════════════════════ */
.marquee {
  padding: 22px 0;
  background: var(--bg-dark);
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  animation: scroll-x 30s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  will-change: transform;
}
.marquee__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
@keyframes scroll-x {
  0% { transform: translateX(0) skewX(0deg); }
  100% { transform: translateX(-50%) skewX(0deg); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ═══════════════════════════════════════════
   SERVICES — bento grid with 3D tilt
   ═══════════════════════════════════════════ */
.services {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 4vw, 3rem);
}

.services__header {
  margin-bottom: 3rem;
}
.services__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
}

.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  perspective: 1200px;
}

.bento__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  overflow: hidden;
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
  transform-style: preserve-3d;
  will-change: transform;
}
.bento__item.revealed {
  clip-path: inset(0% 0% 0% 0% round 20px) !important;
  opacity: 1 !important;
}

@media (pointer: fine) {
  .bento__item:hover {
    box-shadow: 0 24px 64px rgba(0,0,0,0.1);
  }
}

.bento__item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}
.bento__item:hover::before { transform: scaleX(1); }

.bento__img {
  width: calc(100% + clamp(3rem, 6vw, 5rem));
  margin: calc(-1 * clamp(1.5rem, 3vw, 2.5rem)) 0 1.25rem calc(-1 * clamp(1.5rem, 3vw, 2.5rem));
  height: 180px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
.bento__item:hover .bento__img {
  transform: scale(1.04);
}

.bento__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--green-pale);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.5s, transform 0.5s var(--ease-out);
}
.bento__item:hover .bento__number {
  color: var(--green); opacity: 0.2;
  transform: translateX(4px);
}

.bento__item h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.bento__item p {
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.bento__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
}
.bento__price small {
  font-size: 0.75em;
  font-weight: 500;
  color: var(--ink-light);
}

@media (min-width: 700px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .bento__item--large {
    grid-row: span 2;
  }
  .bento__item--wide {
    grid-column: span 2;
  }
}

@media (min-width: 1100px) {
  .bento {
    grid-template-columns: repeat(3, 1fr);
  }
  .bento__item--large {
    grid-column: span 1;
    grid-row: span 2;
  }
  .bento__item--wide {
    grid-column: span 2;
  }
}

/* ═══════════════════════════════════════════
   STATEMENT — pinned text revelation
   ═══════════════════════════════════════════ */
.statement {
  padding: clamp(5rem, 12vw, 10rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--green-wash);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.statement::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,107,78,0.06), transparent 70%);
  transition: width 1.5s var(--ease-out), height 1.5s var(--ease-out);
}
.statement.active::before {
  width: 800px;
  height: 800px;
}

.statement__inner {
  position: relative;
  z-index: 1;
}

.statement__text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
}

.statement__line {
  display: block;
  will-change: transform, opacity;
}

.statement__line--accent {
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(90deg, var(--green), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: 100% 0;
}

/* ═══════════════════════════════════════════
   ABOUT — editorial sticky + scroll layout
   ═══════════════════════════════════════════ */
.about {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 4vw, 3rem);
}

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

.about__sticky h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0;
}
.about__sticky h2 em {
  font-style: italic;
  color: var(--green);
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about__block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  will-change: transform, opacity;
}
.about__block.revealed {
  opacity: 1 !important;
  transform: translateX(0) rotate(0deg) !important;
}

.about__block h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.about__role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

.about__block p {
  font-size: 0.92rem;
  color: var(--ink-mid);
  line-height: 1.75;
}

.about__block--quote {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
}

.about__block--image {
  padding: 0;
  overflow: hidden;
  transform: none !important;
}
.about__block--image.revealed {
  clip-path: circle(75% at 50% 50%) !important;
  transition: clip-path 1.2s var(--ease-out);
}
.about__block--image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.8s var(--ease-out);
}
.about__block--image:hover img {
  transform: scale(1.05);
}

.about__block--quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255,255,255,0.9);
}
.about__block--quote em {
  color: var(--gold-soft);
  font-style: italic;
}

.about__block--stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
  background: var(--green-wash);
  border-color: var(--green-pale);
  transform: none !important;
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.stat__label {
  font-size: 0.72rem;
  color: var(--ink-light);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (min-width: 900px) {
  .about__layout {
    grid-template-columns: 0.4fr 0.6fr;
    gap: 4rem;
  }
  .about__sticky {
    position: sticky;
    top: 120px;
    align-self: start;
  }
}

/* ═══════════════════════════════════════════
   AREA — overlapping / offset
   ═══════════════════════════════════════════ */
.area {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--bg-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.area__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.area__text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.area__text h2 em { font-style: italic; color: var(--green-light); }

.area__text > p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.area__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2rem;
}
.area__tags li {
  padding: 8px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 60px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  transition: all 0.4s var(--ease-spring);
}
.area__tags li.revealed {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}
.area__tags li:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
  transform: translateY(-2px) scale(1.03);
}

.area__note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}
.area__note a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.area__map-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255,255,255,0.08);
  transition: clip-path 1.4s var(--ease-out);
}
.area__map-wrap.revealed {
  clip-path: circle(80% at 50% 50%) !important;
}
.area__map-wrap iframe {
  width: 100%; height: 100%; border: 0;
  filter: saturate(0.7) brightness(0.95);
}

@media (min-width: 900px) {
  .area__layout {
    grid-template-columns: 0.55fr 0.45fr;
    gap: 4rem;
    align-items: center;
  }
}

/* ═══════════════════════════════════════════
   REVIEWS — horizontal scroll gallery
   ═══════════════════════════════════════════ */
.reviews {
  padding: clamp(5rem, 10vw, 9rem) 0;
  overflow: hidden;
}

.reviews__header {
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 3rem;
}
.reviews__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
}

.reviews__track {
  display: flex;
  gap: 1.25rem;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  will-change: transform;
}

.review {
  flex: none;
  width: clamp(300px, 75vw, 420px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  transform-origin: center bottom;
}
.review:nth-child(odd) {
  transform: rotate(-1.5deg);
}
.review:nth-child(even) {
  transform: rotate(1.5deg);
}
.review:hover {
  transform: translateY(-6px) rotate(0deg) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.review__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}

.review p {
  font-size: 0.92rem;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review__author {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review__author strong {
  font-size: 0.88rem;
  color: var(--ink);
}
.review__author span {
  font-size: 0.78rem;
  color: var(--ink-light);
}

/* ═══════════════════════════════════════════
   CONTACT — split dark/light
   ═══════════════════════════════════════════ */
.contact {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

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

.contact__left {
  background: var(--bg-dark);
  color: var(--white);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
}
.contact__left h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.contact__left > p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  max-width: 400px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.contact__detail strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.contact__detail a,
.contact__detail span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
}
.contact__detail a:hover { color: var(--gold-soft); }

.contact__social {
  display: flex; gap: 1rem;
}
.contact__social a {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.4s var(--ease-spring);
}
.contact__social a.revealed {
  opacity: 1 !important;
  transform: scale(1) translateY(0) !important;
}
.contact__social a:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
  transform: translateY(-3px) scale(1.1);
}

/* Right — form */
.contact__right {
  background: var(--bg-card);
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
}

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

.form-field {
  display: flex; flex-direction: column;
  will-change: transform, opacity, filter;
}
.form-field.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
  filter: blur(0) !important;
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
}

.form-field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-out);
  appearance: none;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(74,107,78,0.1);
  transform: translateY(-1px);
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238A8A82' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field .form-err {
  display: none;
  font-size: 0.75rem;
  color: var(--error);
  margin-top: 6px;
}
.form-field .form-err.show { display: block; }
.form-field input.invalid,
.form-field select.invalid {
  border-color: var(--error);
}

.form-field + .btn { margin-top: 0.5rem; }

.form-ok {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}
.form-ok.show { display: block; }
.form-ok h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--green);
}
.form-ok p { color: var(--ink-mid); font-size: 0.92rem; }

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .contact__layout {
    grid-template-columns: 0.45fr 0.55fr;
  }
  .contact__left {
    padding: clamp(4rem, 6vw, 6rem) clamp(2rem, 4vw, 4rem);
  }
  .contact__right {
    padding: clamp(4rem, 6vw, 6rem) clamp(2rem, 4vw, 4rem);
  }
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem clamp(1.5rem, 4vw, 3rem) 2rem;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  will-change: transform, opacity;
}
.footer__inner.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.footer__brand {
  margin-bottom: 2rem;
}
.footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: 0.75rem;
}
.footer__brand p {
  font-size: 0.85rem;
  color: var(--ink-light);
  max-width: 320px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.footer__nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-mid);
  transition: color 0.3s, transform 0.3s var(--ease-out);
}
.footer__nav a:hover {
  color: var(--green);
  transform: translateX(3px);
}

.footer__bar {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--ink-light);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.footer__dev {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-light);
  text-decoration: none;
  font-size: 0.7rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  transition: opacity 0.3s, background 0.3s;
}
.footer__dev:hover {
  opacity: 0.85;
  background: rgba(255, 255, 255, 0.1);
}

.footer__dev-logo {
  height: 20px;
  width: 20px;
  border-radius: 3px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   REDUCED MOTION — graceful degradation
   ═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .brand-bar,
  .nav,
  .hero__eyebrow,
  .hero__title .word,
  .hero__body,
  .hero__actions,
  .hero__float,
  .bento__item,
  .statement__line,
  .about__block,
  .area__tags li,
  .form-field,
  .contact__social a,
  .footer__inner {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    transition: none !important;
  }
  .hero__photo {
    clip-path: none !important;
  }
  .about__block--image {
    clip-path: none !important;
  }
  .area__map-wrap {
    clip-path: none !important;
  }
  .hero__float { animation: none; }
  .btn:hover { transform: none; }
  .bento__item:hover, .review:hover { transform: none !important; }
  .marquee__track { animation: none; }
  .cursor { display: none !important; }
  .noise-overlay { display: none; }
  .scroll-progress { display: none; }
  .review { transform: none !important; }
}
