/* ==========================================================================
   KLOUT CREATIVE — Design System
   Editorial / cinematic / luxury-minimal
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* ---- Brand palette (from brief, exact) ---- */
  --bg-primary: #F5F2EC;
  --bg-secondary: #5E7C63;
  --text-primary: #1E1E1E;
  --text-light: #FFFFFF;
  --accent: #C8A44D;

  /* ---- Derived tones (kept within the same family, used sparingly) ---- */
  --bg-primary-dim: #EDE9E0;
  --line: rgba(30, 30, 30, 0.12);
  --line-on-dark: rgba(255, 255, 255, 0.18);
  --text-muted: rgba(30, 30, 30, 0.58);
  --text-muted-on-dark: rgba(255, 255, 255, 0.68);
  --shadow-soft: 0 30px 60px -30px rgba(30, 30, 30, 0.25);

  /* ---- Type ---- */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* ---- Motion ---- */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.16, 1, .3, 1);
  --dur-fast: 400ms;
  --dur-med: 800ms;
  --dur-slow: 1400ms;

  /* ---- Layout ---- */
  --edge: clamp(20px, 5vw, 72px);
  --max: 1440px;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ---- Type scale ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}

.display-1 {
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 400;
  line-height: 0.98;
}

.display-2 {
  font-size: clamp(2.25rem, 5.4vw, 4.75rem);
  font-weight: 400;
  line-height: 1.02;
}

.display-3 {
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 400;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
}

.lede {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-muted);
  font-weight: 300;
  max-width: 42ch;
  line-height: 1.7;
}

.on-dark .lede { color: var(--text-muted-on-dark); }

.micro {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

/* ---- Layout primitives ---- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--edge);
  padding-right: var(--edge);
}

section { position: relative; }

.section-pad { padding-top: clamp(72px, 12vw, 160px); padding-bottom: clamp(72px, 12vw, 160px); }
.on-dark { background: var(--bg-secondary); color: var(--text-light); }

.rule {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}
.on-dark .rule { border-top-color: var(--line-on-dark); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--text-light);
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--text-primary);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.on-dark .btn-ghost { color: var(--text-light); border-color: var(--line-on-dark); }
.on-dark .btn-ghost:hover { border-color: var(--text-light); color: var(--text-light); }

.btn-line {
  padding: 0;
  border-radius: 0;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: 0.78rem;
}
.btn-line:hover { color: var(--accent); }

/* ==========================================================================
   NAV
   ========================================================================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 26px var(--edge);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--dur-fast) var(--ease), padding var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
  border-bottom: 1px solid transparent;
  mix-blend-mode: normal;
}

.nav.is-scrolled {
  background: rgba(245, 242, 236, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom-color: var(--line);
}

.nav-mark {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.nav-mark em { font-style: italic; color: var(--accent); }

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--dur-fast) var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--accent); }

.nav-cta {
  display: inline-flex;
  padding: 11px 24px;
  border: 1px solid var(--text-primary);
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--dur-fast) var(--ease);
}
.nav-cta:hover { background: var(--text-primary); color: var(--text-light); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 600;
}
.nav-burger span {
  width: 22px; height: 1px;
  background: var(--text-primary);
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}

.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 450;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--edge);
  transform: translateY(-100%);
  transition: transform var(--dur-med) var(--ease);
}
.nav-mobile.is-open { transform: translateY(0); }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2.6rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--text-light);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  filter: contrast(1.08) saturate(0.88) brightness(0.94);
  animation: heroSettle 2.4s var(--ease-soft) forwards;
}
@keyframes heroSettle {
  from { transform: scale(1.08); filter: blur(6px) contrast(1.08) saturate(0.88) brightness(0.94); }
  to { transform: scale(1); filter: blur(0) contrast(1.08) saturate(0.88) brightness(0.94); }
}

.hero-tint {
  position: absolute; inset: 0;
  background: var(--bg-secondary);
  mix-blend-mode: multiply;
  opacity: 0.16;
  z-index: 1;
}

.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,20,18,0.32) 0%, rgba(20,20,18,0.06) 30%, rgba(20,20,18,0.5) 62%, rgba(20,20,18,0.92) 100%),
    linear-gradient(90deg, rgba(20,20,18,0.55) 0%, rgba(20,20,18,0.08) 42%, rgba(20,20,18,0.08) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: var(--edge);
  padding-bottom: clamp(48px, 6vw, 88px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.hero-headline {
  opacity: 0;
  animation: riseIn 1.1s var(--ease-soft) 0.5s forwards;
}
.hero-headline .display-1 { color: var(--text-light); }

.hero-sub {
  max-width: 340px;
  opacity: 0;
  animation: riseIn 1.1s var(--ease-soft) 0.85s forwards;
}
.hero-sub p { color: rgba(255,255,255,0.82); font-size: 0.95rem; font-weight: 300; margin: 0 0 22px; line-height: 1.7; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: riseIn 1.1s var(--ease-soft) 1.1s forwards;
}

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

.hero-scroll-cue {
  position: absolute;
  right: var(--edge);
  bottom: 32px;
  z-index: 3;
  writing-mode: vertical-rl;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: riseIn 1s var(--ease-soft) 1.4s forwards;
}
.hero-scroll-cue .line {
  width: 1px; height: 46px;
  background: rgba(255,255,255,0.5);
}

@media (max-width: 760px) {
  .hero-content { flex-direction: column; align-items: flex-start; gap: 26px; }
  .hero-scroll-cue { display: none; }
}

/* ==========================================================================
   REVEAL — the signature "catch up" motion
   Images resolve from motion-blur into sharp focus as they enter view.
   ========================================================================== */

.reveal {
  opacity: 0;
  filter: blur(14px);
  transform: translateY(36px) scale(1.02);
  transition:
    opacity 1.1s var(--ease-soft),
    filter 1.1s var(--ease-soft),
    transform 1.1s var(--ease-soft);
}
.reveal.in-view {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}
.reveal-delay-1.in-view { transition-delay: 0.08s; }
.reveal-delay-2.in-view { transition-delay: 0.16s; }
.reveal-delay-3.in-view { transition-delay: 0.24s; }
.reveal-delay-4.in-view { transition-delay: 0.32s; }
.reveal-delay-5.in-view { transition-delay: 0.4s; }

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease-soft), transform 0.9s var(--ease-soft);
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: clamp(40px, 6vw, 76px);
}
.section-head .heading-block { max-width: 640px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-top: 18px; }

@media (max-width: 700px) {
  .section-head { flex-direction: column; align-items: flex-start; gap: 22px; }
}

/* ==========================================================================
   FEATURED WORK / EDITORIAL GRID
   ========================================================================== */

.work-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(12px, 1.6vw, 22px);
}

.work-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-primary-dim);
}
.work-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-soft), filter 0.6s var(--ease);
}
.work-item:hover img { transform: scale(1.06); }

.work-item .work-cap {
  position: absolute;
  left: 20px; bottom: 18px;
  z-index: 2;
  color: var(--text-light);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.work-item:hover .work-cap { opacity: 1; transform: translateY(0); }
.work-item .work-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,30,30,0) 55%, rgba(30,30,30,0.55) 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.work-item:hover .work-scrim { opacity: 1; }

.work-cap .eyebrow { color: var(--text-light); opacity: 0.85; margin-bottom: 4px; font-size: 0.66rem; }
.work-cap .title { font-family: var(--font-display); font-size: 1.15rem; }

.work-item.span-3 { grid-column: span 3; aspect-ratio: 4/5; }
.work-item.span-4 { grid-column: span 4; aspect-ratio: 16/10; }
.work-item.span-2 { grid-column: span 2; aspect-ratio: 3/4; }

@media (max-width: 900px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-item.span-3, .work-item.span-4, .work-item.span-2 { grid-column: span 1; aspect-ratio: 4/5; }
}
@media (max-width: 560px) {
  .work-grid { grid-template-columns: 1fr; }
}

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

.services-list { border-top: 1px solid var(--line); }

.service-row {
  display: grid;
  grid-template-columns: 90px 1.1fr 1.5fr auto;
  align-items: center;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  transition: background var(--dur-fast) var(--ease);
}
.service-row:hover { background: rgba(200, 164, 77, 0.06); }

.service-index { font-family: var(--font-display); font-size: 1rem; color: var(--text-muted); font-style: italic; }
.service-name { font-family: var(--font-display); font-size: clamp(1.4rem, 2.4vw, 2rem); }
.service-desc { color: var(--text-muted); font-size: 0.92rem; font-weight: 300; max-width: 46ch; }
.service-meta { display: flex; align-items: center; gap: 26px; justify-self: end; white-space: nowrap; }
.service-price { font-size: 0.82rem; color: var(--text-muted); }
.service-price strong { color: var(--text-primary); font-weight: 500; }

@media (max-width: 860px) {
  .service-row { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
  .service-meta { justify-self: start; }
}

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

.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}
.about-portrait { aspect-ratio: 4/5; overflow: hidden; }
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-copy .eyebrow { margin-bottom: 22px; }
.about-copy blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.15rem);
  line-height: 1.35;
  margin: 0 0 30px;
}
.about-copy p { color: var(--text-muted); font-weight: 300; margin: 0 0 20px; max-width: 52ch; }

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.about-fact .num { font-family: var(--font-display); font-size: 1.8rem; }
.about-fact .lbl { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-top: 6px; }

@media (max-width: 860px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-facts { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testi-track-outer { overflow: hidden; }
.testi-track {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  width: max-content;
  animation: scrollX 42s linear infinite;
}
.testi-track:hover { animation-play-state: paused; }
@keyframes scrollX {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testi-card {
  width: min(420px, 82vw);
  flex: none;
  background: var(--bg-primary);
  border: 1px solid var(--line);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.testi-quote-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3.2rem;
  color: var(--accent);
  line-height: 1;
}
.testi-body { font-size: 1rem; font-weight: 300; line-height: 1.7; color: var(--text-primary); }
.testi-name { font-size: 0.8rem; letter-spacing: 0.04em; color: var(--text-primary); }
.testi-role { font-size: 0.74rem; color: var(--text-muted); margin-top: 2px; }

/* ==========================================================================
   MARQUEE
   ========================================================================== */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line-on-dark);
  border-bottom: 1px solid var(--line-on-dark);
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollX 28s linear infinite;
}
.marquee-item {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 2.1rem);
  padding: 0 34px;
  white-space: nowrap;
  color: rgba(255,255,255,0.9);
}
.marquee-item::after { content: '—'; margin-left: 34px; color: var(--accent); font-style: normal; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */

.cta-band {
  text-align: center;
  padding: clamp(80px, 12vw, 150px) var(--edge);
}
.cta-band h2 { margin: 26px auto 40px; max-width: 16ch; }
.cta-band .lede { margin-left: auto; margin-right: auto; text-align: center; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  padding: clamp(60px, 8vw, 100px) var(--edge) 34px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}
.footer-mark { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 18px; }
.footer-mark em { font-style: italic; color: var(--accent); }
.footer-tag { color: var(--text-muted-on-dark); font-weight: 300; max-width: 30ch; }
.footer-col h5 { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted-on-dark); margin-bottom: 18px; font-weight: 500; font-family: var(--font-body); }
.footer-col a, .footer-col p { display: block; font-size: 0.9rem; margin-bottom: 12px; color: rgba(255,255,255,0.88); font-weight: 300; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px; border-top: 1px solid var(--line-on-dark);
  font-size: 0.75rem; color: var(--text-muted-on-dark);
  flex-wrap: wrap; gap: 12px;
}

@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}

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

.lightbox {
  position: fixed; inset: 0;
  background: rgba(30, 30, 30, 0.96);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 88vw; max-height: 84vh;
  object-fit: contain;
  transform: scale(0.96);
  transition: transform 0.4s var(--ease);
}
.lightbox.is-open img { transform: scale(1); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: none; border: none; color: var(--text-light);
  font-family: var(--font-body); font-size: 0.85rem;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.lightbox-close { top: 32px; right: var(--edge); }
.lightbox-prev { left: var(--edge); top: 50%; transform: translateY(-50%); font-size: 1.8rem; }
.lightbox-next { right: var(--edge); top: 50%; transform: translateY(-50%); font-size: 1.8rem; }
.lightbox-caption {
  position: absolute; left: 0; right: 0; bottom: 32px;
  text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.7);
}

/* ==========================================================================
   PAGE HEADER (interior pages)
   ========================================================================== */

.page-header {
  padding-top: clamp(150px, 20vw, 220px);
  padding-bottom: clamp(50px, 8vw, 90px);
}
.page-header .eyebrow { margin-bottom: 22px; }
.page-header .lede { margin-top: 22px; }

/* ==========================================================================
   PORTFOLIO FILTER
   ========================================================================== */

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 50px;
}
.filter-btn {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: transparent;
  transition: all var(--dur-fast) var(--ease);
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active { background: var(--text-primary); color: var(--text-light); border-color: var(--text-primary); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.6vw, 22px);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/5;
  background: var(--bg-primary-dim);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-soft); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.is-hidden { display: none; }
.gallery-item .tag {
  position: absolute; top: 16px; left: 16px;
  font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light); background: rgba(30,30,30,0.55);
  padding: 6px 12px; backdrop-filter: blur(6px);
}

@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   FORMS
   ========================================================================== */

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.form-field { display: flex; flex-direction: column; gap: 10px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.form-field input, .form-field textarea, .form-field select {
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 10px 2px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  transition: border-color var(--dur-fast) var(--ease);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.form-field textarea { resize: vertical; min-height: 110px; }

@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   SERVICES CARDS (index page teaser)
   ========================================================================== */

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 26px);
}
.service-card {
  padding: 40px 32px;
  border: 1px solid var(--line);
  transition: border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover { border-color: var(--accent); transform: translateY(-6px); }
.service-card .num { font-family: var(--font-display); font-style: italic; color: var(--text-muted); margin-bottom: 22px; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 14px; }
.service-card p { color: var(--text-muted); font-weight: 300; font-size: 0.9rem; flex-grow: 1; margin: 0 0 26px; }
.service-card .price { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 18px; }

@media (max-width: 900px) { .service-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .service-cards { grid-template-columns: 1fr; } }

/* ==========================================================================
   BOOKING PAGE
   ========================================================================== */

.acuity-frame-wrap {
  border: 1px solid var(--line);
  background: #fff;
  min-height: 780px;
  position: relative;
}
.acuity-frame-wrap iframe { width: 100%; height: 780px; border: none; display: block; }
.acuity-placeholder {
  padding: 90px 40px;
  text-align: center;
}
.acuity-placeholder .eyebrow { margin-bottom: 18px; }
.acuity-placeholder p { max-width: 50ch; margin: 18px auto 0; color: var(--text-muted); font-weight: 300; }
.acuity-placeholder code {
  display: inline-block; margin-top: 22px; padding: 10px 16px;
  background: var(--bg-primary-dim); font-size: 0.8rem; border: 1px solid var(--line);
}

.book-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.book-step { padding: 26px 0; border-top: 1px solid var(--line); }
.book-step .num { font-family: var(--font-display); font-style: italic; color: var(--accent); }
.book-step .lbl { font-family: var(--font-display); font-size: 1.15rem; margin: 10px 0 6px; }
.book-step p { font-size: 0.85rem; color: var(--text-muted); font-weight: 300; margin: 0; }

@media (max-width: 860px) { .book-steps { grid-template-columns: 1fr 1fr; } }

/* ==========================================================================
   MISC
   ========================================================================== */

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

.img-frame { overflow: hidden; }
.img-frame img { width: 100%; height: 100%; object-fit: cover; }

.contact-list { margin-top: 30px; }
.contact-list li { padding: 18px 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-list .lbl { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.contact-list .val { font-family: var(--font-display); font-size: 1.15rem; }

/* ==========================================================================
   WELCOME WEEK LANDING PAGE
   Scoped additions only — reuses existing tokens, fonts, buttons, reveal
   system. Nothing above this block was changed.
   ========================================================================== */

/* ---- Offer cards (Solo / Duo) ---- */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 26px);
  align-items: stretch;
}
.offer-card {
  padding: 44px 38px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.offer-card:hover { border-color: var(--accent); transform: translateY(-6px); }
.offer-card.is-featured { background: var(--text-primary); color: var(--text-light); border-color: var(--text-primary); }
.offer-card.is-featured .offer-price small { color: rgba(255,255,255,0.6); }
.offer-card.is-featured .btn-primary { background: var(--accent); }
.offer-card.is-featured .btn-primary:hover { background: var(--text-light); color: var(--text-primary); }

.offer-badge {
  position: absolute;
  top: -14px; right: 38px;
  background: var(--accent);
  color: var(--text-primary);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;
}

.offer-name { font-family: var(--font-display); font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-bottom: 10px; }
.offer-price { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.2rem); margin: 6px 0 18px; }
.offer-price small { font-family: var(--font-body); font-size: 0.9rem; font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--text-muted); margin-left: 8px; }
.offer-list { margin: 0 0 30px; display: flex; flex-direction: column; gap: 12px; flex-grow: 1; }
.offer-list li { font-size: 0.92rem; font-weight: 300; padding-left: 22px; position: relative; }
.offer-list li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }
.offer-sub { font-size: 0.8rem; color: var(--text-muted); }

@media (max-width: 760px) { .offer-grid { grid-template-columns: 1fr; } }

/* ---- 3-step variant of the existing book-steps grid ---- */
.book-steps.steps-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 700px) { .book-steps.steps-3 { grid-template-columns: 1fr; } }

/* ---- FAQ list ---- */
.faq-list { border-top: 1px solid var(--line); max-width: 780px; }
.faq-item { padding: 30px 0; border-bottom: 1px solid var(--line); }
.faq-item h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.25rem; margin: 0 0 12px; }
.faq-item p { color: var(--text-muted); font-weight: 300; font-size: 0.94rem; margin: 0; max-width: 60ch; }
