/* ============================================================
   ALLSORTS OF LANDSCAPING — Smoke Whisper / Weathered Steel /
   Duststone Clay / Cinder Red cinematic (user palette card)
   SMOKE #ECE7D5 · STEEL #837D75 · CLAY #806055 · CINDER #A33633
   ============================================================ */
:root {
  --smoke: #ECE7D5;
  --smoke-bright: #F6F2E5;
  --steel: #837D75;
  --steel-soft: #A69F95;
  --steel-deep: #55504A;
  --clay: #806055;
  --clay-lt: #A5837A;
  --ink: #2A2521;         /* deepest clay-family ink */
  --ink-800: #362F2A;
  --ink-700: #453B34;
  --cinder: #A33633;
  --cinder-lt: #C4534E;
  --cinder-deep: #7E2926;
  --serif: "Fraunces", "Georgia", serif;
  --sans: "Karla", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--smoke);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17.5px;
  font-weight: 500;
  line-height: 1.68;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--cinder); color: var(--smoke-bright); }
:focus-visible { outline: 2px solid var(--cinder); outline-offset: 3px; }
.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 3000;
  background: var(--cinder); color: var(--smoke-bright);
  padding: 12px 22px; border-radius: 0 0 10px 10px;
  font-weight: 700; letter-spacing: .1em; transition: top .3s ease;
}
.skip-link:focus { top: 0; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- film grain ---------- */
.grain {
  position: fixed; inset: -50%; width: 200%; height: 200%;
  pointer-events: none; z-index: 2000; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 1.2s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0,0); } 25% { transform: translate(-2%,1%); }
  50% { transform: translate(1%,-2%); } 75% { transform: translate(-1%,2%); }
  100% { transform: translate(2%,-1%); }
}

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(20px, 4vw, 56px);
  transition: background .45s ease, box-shadow .45s ease, padding .45s ease;
}
.site-header.scrolled {
  background: rgba(236, 231, 213, .94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(131, 125, 117, .35);
  padding-top: 9px; padding-bottom: 9px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; border-radius: 6px; box-shadow: 0 2px 10px rgba(42,37,33,.25); }
.brand-word {
  font-family: var(--serif); font-size: 20px; letter-spacing: .04em; line-height: 1.02;
  color: var(--smoke-bright); text-shadow: 0 1px 12px rgba(42,37,33,.7);
  transition: color .45s ease, text-shadow .45s ease;
}
.brand-word b { display: block; font-weight: 400; font-size: 11px; letter-spacing: .34em; text-transform: uppercase; }
.site-header.scrolled .brand-word { color: var(--ink); text-shadow: none; }
.main-nav { display: flex; gap: clamp(14px, 2.2vw, 32px); align-items: center; }
.main-nav a {
  font-size: 13.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--smoke-bright); position: relative; padding: 6px 0;
  text-shadow: 0 1px 10px rgba(42,37,33,.65);
  transition: color .45s ease, text-shadow .45s ease;
}
.site-header.scrolled .main-nav a { color: var(--ink); text-shadow: none; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--cinder); transform: scaleX(0); transform-origin: right;
  transition: transform .4s ease;
}
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-book {
  background: var(--cinder); color: var(--smoke-bright) !important;
  padding: 10px 22px !important; border-radius: 999px; white-space: nowrap;
  text-shadow: none !important;
  transition: background .35s ease, transform .35s ease;
}
.nav-book:hover { background: var(--cinder-deep); transform: translateY(-2px); }
.nav-book::after, .nav-phone::after { display: none; }
.nav-phone {
  border: 1px solid var(--steel-soft); padding: 10px 22px !important;
  border-radius: 999px; white-space: nowrap;
  transition: background .35s ease, color .35s ease;
}
.nav-phone:hover { background: var(--steel-deep); color: var(--smoke-bright) !important; }

/* ---------- hero scrub ---------- */
.scrub-section { position: relative; }
#hero { height: 520vh; background: var(--ink); }
.scrub-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.scrub-sticky canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.scrub-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, rgba(42,37,33,.58) 0%, rgba(42,37,33,.12) 30%,
    rgba(42,37,33,.1) 55%, rgba(42,37,33,.7) 100%);
}
.hero-copy {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 0 6vw; pointer-events: none;
}
/* engine overwrites transform each frame — center with margins + translate only */
.reveal-line {
  position: absolute; left: 0; right: 0; margin-inline: auto;
  width: min(940px, 88vw); top: 50%; translate: 0 -50%;
  opacity: 0;
}
#hero .reveal-line:first-of-type { opacity: 1; }

.hero-kicker {
  font-size: 13px; font-weight: 700; letter-spacing: .44em; text-transform: uppercase;
  color: var(--smoke); margin-bottom: 26px;
  text-shadow: 0 1px 14px rgba(42,37,33,.95);
}
.hero-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(56px, 10vw, 138px); letter-spacing: .08em; line-height: .98;
  color: var(--smoke-bright);
  text-shadow: 0 2px 40px rgba(42,37,33,.75);
  animation: trackIn 2.2s cubic-bezier(.16,1,.3,1) both;
}
@keyframes trackIn {
  from { letter-spacing: .3em; opacity: 0; }
  to   { letter-spacing: .08em; opacity: 1; }
}
.hero-tag {
  margin-top: 28px; font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(20px, 2.6vw, 30px); color: var(--smoke);
  text-shadow: 0 2px 22px rgba(42,37,33,.95);
}
.hero-rule { width: 64px; height: 1px; background: var(--cinder-lt); margin: 26px auto 0; }
.rl-big {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(34px, 5vw, 62px); line-height: 1.12; color: var(--smoke-bright);
  text-shadow: 0 2px 34px rgba(42,37,33,.85);
}
.rl-big em { color: var(--cinder-lt); font-style: italic; text-shadow: 0 2px 30px rgba(42,37,33,.95); }
.rl-small {
  margin-top: 22px; font-size: 16px; font-weight: 700; letter-spacing: .24em;
  text-transform: uppercase; color: var(--smoke-bright);
  text-shadow: 0 2px 10px rgba(42,37,33,1), 0 1px 24px rgba(42,37,33,.9);
}
.hero-cta-row { display: flex; gap: 18px; justify-content: center; margin-top: 34px; pointer-events: auto; flex-wrap: wrap; }
.book-inline { color: var(--cinder-lt); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; pointer-events: auto; }
.book-inline:hover { color: var(--smoke-bright); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 13.5px; letter-spacing: .2em;
  text-transform: uppercase; padding: 18px 38px; border-radius: 999px;
  border: 1px solid var(--steel-soft); cursor: pointer;
  transition: background .35s ease, color .35s ease, transform .35s ease;
}
.btn-ghost { color: var(--smoke-bright); background: rgba(42,37,33,.42); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: var(--smoke); color: var(--ink); transform: translateY(-2px); }
.btn-big { padding: 22px 46px; font-size: 15px; }

.btn-cinder {
  border: none; font-weight: 700; color: var(--smoke-bright);
  background: linear-gradient(135deg, var(--cinder-lt) 0%, var(--cinder-deep) 100%);
  box-shadow: 0 14px 32px rgba(42,37,33,.5), inset 0 1px 0 rgba(246,242,229,.35);
}
.btn-cinder:hover { transform: translateY(-2px); filter: brightness(1.08); }

.btn-glass {
  position: relative; overflow: hidden; border: none;
  color: var(--smoke-bright); font-weight: 700;
  background-image:
    radial-gradient(101.79% 101.79% at 65.61% 81.79%, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 100%),
    radial-gradient(114.65% 114.65% at 9.73% 17.27%, #A33633 0%, #55504A 100%);
  background-blend-mode: overlay, normal;
  box-shadow: 12px 14px 24px rgba(42,37,33,.5),
    inset -3px -3px 4px rgba(236,231,213,.38), inset 4px 4px 4px rgba(42,37,33,.2);
}
.btn-glass::before {
  content: ""; position: absolute; inset: 0; z-index: 2; padding: 2px;
  border-radius: inherit; opacity: .5;
  background: linear-gradient(176.87deg, rgba(255,255,255,.55) 8.56%, rgba(255,255,255,0) 85.04%);
  -webkit-mask: linear-gradient(#fff,#fff) content-box, linear-gradient(#fff,#fff);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff,#fff) content-box, linear-gradient(#fff,#fff);
  mask-composite: exclude;
  filter: blur(1px); pointer-events: none;
}
.btn-glass::after {
  content: ""; position: absolute; inset: 1px; z-index: 1; border-radius: inherit;
  opacity: 0; mix-blend-mode: overlay;
  background: radial-gradient(101.79% 101.79% at 65.61% 81.79%, rgba(255,255,255,.6) 0%, rgba(255,255,255,0) 100%);
  transition: opacity .3s ease-in-out; pointer-events: none;
}
.btn-glass:hover::after { opacity: 1; }
.btn-sheen {
  position: absolute; top: 0; bottom: 0; left: 0; width: 33%; z-index: 1;
  pointer-events: none; transform: translateX(-140%) skewX(-16deg); filter: blur(5px);
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.55) 50%, rgba(255,255,255,0) 100%);
}
@keyframes glassSheen {
  from { transform: translateX(-140%) skewX(-16deg); }
  to   { transform: translateX(320%) skewX(-16deg); }
}
.btn-glass:hover .btn-sheen { animation: glassSheen .85s cubic-bezier(.32,0,.24,1); }
.btn-glass .btn-label, .btn-glass > :not(.btn-sheen) { position: relative; z-index: 3; }

@keyframes heroRise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.rise { animation: heroRise .7s cubic-bezier(.22,1,.36,1) both; }
.rise-2 { animation-delay: .09s; } .rise-3 { animation-delay: .18s; } .rise-4 { animation-delay: .27s; }

.scroll-hint {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .4em; text-transform: uppercase;
  color: var(--smoke); transition: opacity .5s ease;
  text-shadow: 0 1px 10px rgba(42,37,33,.9);
}
.scroll-hint::after {
  content: ""; width: 1px; height: 44px;
  background: linear-gradient(var(--cinder-lt), transparent);
  animation: hintDrop 1.8s ease-in-out infinite;
}
@keyframes hintDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.progress-track { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(236,231,213,.22); }
.progress-fill { height: 100%; width: 0; background: var(--cinder); }

/* ---------- section furniture ---------- */
.section-label {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 12px; font-weight: 700; letter-spacing: .48em; text-transform: uppercase;
}
.section-label::before { content: ""; width: 44px; height: 1px; background: currentColor; opacity: .6; }
.h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(38px, 4.6vw, 60px); line-height: 1.08;
}
.h2 em { font-style: italic; color: var(--cinder); }
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s ease, transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }

/* ---------- media sections (story / craft / dream / winter) ---------- */
.media-section { position: relative; overflow: hidden; }
.media-bg { position: absolute; inset: 0; }
.media-bg video { width: 100%; height: 100%; object-fit: cover; display: block; will-change: transform; }
.media-veil-l { position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(42,37,33,.94) 0%, rgba(42,37,33,.8) 42%, rgba(54,47,42,.4) 100%); }
.media-veil-r { position: absolute; inset: 0;
  background: linear-gradient(280deg, rgba(42,37,33,.94) 0%, rgba(42,37,33,.8) 44%, rgba(54,47,42,.4) 100%); }
.media-veil-c { position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(42,37,33,.88) 0%, rgba(42,37,33,.55) 45%, rgba(42,37,33,.88) 100%); }

.story-inner {
  position: relative; z-index: 2; max-width: 1280px; margin: 0 auto;
  padding: clamp(120px, 16vh, 200px) clamp(24px, 5vw, 64px);
}
.story-copy { max-width: 640px; }
.story-copy .section-label { color: var(--cinder-lt); }
.story-copy .h2 { margin: 26px 0 30px; color: var(--smoke-bright); }
.story-copy .h2 em { color: var(--cinder-lt); }
.story-copy p { color: var(--smoke-bright); font-size: 18.5px; font-weight: 500; max-width: 56ch; text-shadow: 0 1px 14px rgba(42,37,33,.75); }
.story-copy p + p { margin-top: 18px; }
.story-sign { margin-top: 34px; font-family: var(--serif); font-style: italic; font-size: 24px; color: var(--smoke); }
.story-sign span {
  display: block; font-family: var(--sans); font-style: normal; font-size: 12px;
  font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
  color: var(--cinder-lt); margin-top: 8px;
}

.stat-strip {
  position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(236,231,213,.28);
  background: rgba(42,37,33,.78); backdrop-filter: blur(8px);
}
.stat { padding: 34px 20px; text-align: center; border-left: 1px solid rgba(236,231,213,.16); }
.stat:first-child { border-left: none; }
.stat-num { font-family: var(--serif); font-size: clamp(30px, 3.4vw, 46px); color: var(--cinder-lt); line-height: 1; }
.stat-cap { margin-top: 10px; font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--smoke-bright); }

/* ---------- services (smoke section) ---------- */
#services { background: var(--smoke); color: var(--ink); position: relative; }
#services::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--steel-soft); }
.pkg-inner { max-width: 1280px; margin: 0 auto; padding: clamp(90px, 12vh, 150px) clamp(24px, 5vw, 64px); }
.pkg-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; margin-bottom: clamp(48px, 7vh, 84px); }
.pkg-head .section-label { color: var(--clay); }
.pkg-head .h2 { color: var(--ink); margin-top: 24px; }
.pkg-head p { max-width: 44ch; color: var(--steel-deep); font-size: 17px; font-weight: 500; }

.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); }
.svc-card {
  background: var(--smoke-bright); border: 1px solid var(--steel-soft);
  padding: 38px 30px 34px; display: flex; flex-direction: column;
  transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s ease, border-color .4s ease;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(42,37,33,.18); border-color: var(--clay); }
.svc-card .svc-ico { font-size: 26px; color: var(--clay); }
.svc-card h3 { font-family: var(--serif); font-weight: 500; font-size: 25px; color: var(--ink); margin: 14px 0 10px; line-height: 1.15; }
.svc-card h3 b { color: var(--cinder); font-weight: 500; }
.svc-card p { font-size: 15px; font-weight: 500; color: var(--steel-deep); line-height: 1.6; flex: 1; }
.svc-card a {
  display: inline-flex; margin-top: 20px; font-size: 12.5px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--cinder);
  border-bottom: 1px solid var(--cinder); padding-bottom: 3px; align-self: flex-start;
  transition: color .3s ease, border-color .3s ease;
}
.svc-card a:hover { color: var(--ink); border-color: var(--ink); }
.svc-winter { background: var(--ink-800); border-color: var(--ink-700); }
.svc-winter h3 { color: var(--smoke-bright); }
.svc-winter h3 b { color: var(--cinder-lt); }
.svc-winter p { color: var(--smoke); }
.svc-winter .svc-ico { color: var(--smoke-bright); }
.svc-winter a { color: var(--cinder-lt); border-color: var(--cinder-lt); }
.svc-winter a:hover { color: var(--smoke-bright); border-color: var(--smoke-bright); }

/* chips */
.addons { margin-top: clamp(56px, 8vh, 84px); }
.addons h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 3vw, 36px); color: var(--ink); margin-bottom: 26px; }
.chip-wrap { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  background: var(--smoke-bright); border: 1px solid var(--steel-soft);
  padding: 12px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 700; letter-spacing: .06em; color: var(--steel-deep);
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.chip:hover { background: var(--clay); color: var(--smoke-bright); transform: translateY(-2px); }

/* ---------- craft ---------- */
.craft-inner {
  position: relative; z-index: 2; max-width: 1280px; margin: 0 auto;
  padding: clamp(120px, 16vh, 200px) clamp(24px, 5vw, 64px);
  display: flex; justify-content: flex-end;
}
.craft-copy { max-width: 620px; }
.craft-copy .section-label { color: var(--cinder-lt); }
.craft-copy .h2 { margin: 26px 0 30px; color: var(--smoke-bright); }
.craft-copy .h2 em { color: var(--cinder-lt); }
.craft-copy > p { font-size: 18.5px; font-weight: 500; color: var(--smoke-bright); text-shadow: 0 1px 14px rgba(42,37,33,.75); }
.craft-list { margin-top: 36px; }
.craft-list li {
  list-style: none; display: flex; gap: 18px; align-items: baseline;
  padding: 16px 0; border-top: 1px solid rgba(236,231,213,.32);
  font-size: 17px; font-weight: 500; color: var(--smoke-bright);
  text-shadow: 0 1px 12px rgba(42,37,33,.8);
}
.craft-list li:last-child { border-bottom: 1px solid rgba(236,231,213,.32); }
.craft-list b { color: var(--smoke); }
.craft-list .tick { color: var(--cinder-lt); font-family: var(--serif); font-style: italic; }

/* ---------- dream (water garden) ---------- */
.dream-inner {
  position: relative; z-index: 2; min-height: 88vh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: clamp(110px, 14vh, 170px) clamp(24px, 5vw, 64px);
}
.dream-inner .section-label { color: var(--cinder-lt); }
.dream-inner .h2 { font-size: clamp(40px, 5.4vw, 72px); color: var(--smoke-bright); margin: 26px 0 18px; max-width: 20ch; }
.dream-inner .h2 em { color: var(--cinder-lt); }
.dream-inner p { color: var(--smoke-bright); font-weight: 500; font-size: 19px; max-width: 52ch; text-shadow: 0 1px 16px rgba(42,37,33,.85); }
.dream-inner .hero-cta-row { margin-top: 38px; }

/* ---------- winter (snow clip) ---------- */
.winter-inner {
  position: relative; z-index: 2; max-width: 1280px; margin: 0 auto;
  padding: clamp(120px, 16vh, 200px) clamp(24px, 5vw, 64px);
}
.winter-copy { max-width: 640px; }
.snow-label { color: var(--cinder-lt) !important; }
.winter-copy .h2 { margin: 26px 0 30px; color: var(--smoke-bright); }
.winter-copy .h2 em { color: var(--cinder-lt); }
.winter-copy > p { font-size: 18.5px; font-weight: 500; color: var(--smoke-bright); text-shadow: 0 1px 14px rgba(42,37,33,.75); }
.winter-cta { justify-content: flex-start; }

/* ---------- gallery marquee ---------- */
#gallery { background: var(--smoke-bright); padding: clamp(90px, 12vh, 150px) 0; position: relative; }
#gallery::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--steel-soft); }
.gal-head { max-width: 1280px; margin: 0 auto clamp(44px, 6vh, 70px); padding: 0 clamp(24px, 5vw, 64px); }
.gal-head .section-label { color: var(--clay); }
.gal-head .h2 { color: var(--ink); margin: 24px 0 12px; }
.gal-head p { max-width: 60ch; color: var(--steel-deep); font-weight: 500; }
.gal-marquee { overflow: hidden; margin-top: 18px; }
.gal-track {
  display: flex; gap: 18px; width: max-content;
  animation: galSlide 46s linear infinite;
}
.gal-rev .gal-track { animation-name: galSlideRev; animation-duration: 54s; }
.gal-marquee:hover .gal-track { animation-play-state: paused; }
.gal-track img {
  width: clamp(220px, 24vw, 340px); aspect-ratio: 4 / 3.4; object-fit: cover;
  border: 1px solid var(--steel-soft); background: var(--smoke);
  filter: saturate(.96);
  transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s ease, filter .5s ease;
}
.gal-track img:hover { transform: translateY(-8px) scale(1.03); box-shadow: 0 22px 44px rgba(42,37,33,.28); filter: saturate(1.05); }
@keyframes galSlide    { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes galSlideRev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ---------- estimate / map / form ---------- */
#estimate { background: var(--ink); position: relative; }
#estimate::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: rgba(236,231,213,.3); }
.est-inner {
  max-width: 1280px; margin: 0 auto;
  padding: clamp(90px, 12vh, 150px) clamp(24px, 5vw, 64px);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 6vw, 90px);
}
.est-left .section-label { color: var(--cinder-lt); }
.est-left .h2 { color: var(--smoke-bright); margin: 24px 0 20px; }
.est-left .h2 em { color: var(--cinder-lt); }
.est-left > p { color: var(--smoke-bright); font-weight: 500; max-width: 52ch; }

.hours-table { margin-top: 36px; width: 100%; border-collapse: collapse; }
.hours-table caption {
  text-align: left; font-size: 12px; font-weight: 700; letter-spacing: .4em;
  text-transform: uppercase; color: var(--cinder-lt); padding-bottom: 14px;
}
.hours-table td { padding: 11px 0; border-top: 1px solid rgba(236,231,213,.28); font-size: 16px; font-weight: 500; color: var(--smoke-bright); }
.hours-table td:last-child { text-align: right; color: var(--smoke); font-weight: 700; }
.hours-table tr.closed td:last-child { color: var(--cinder-lt); letter-spacing: .18em; text-transform: uppercase; font-size: 12.5px; }
.hours-table tr td { opacity: 0; transform: translateX(-16px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.hours-table.in tr td { opacity: 1; transform: none; }
.hours-table.in tr:nth-child(2) td { transition-delay: .12s; }
.hours-table.in tr:nth-child(3) td { transition-delay: .24s; }

/* interactive relief map */
.map-art {
  position: relative; margin-top: 36px; overflow: hidden;
  border: 1px solid rgba(236,231,213,.45); background: var(--ink-800);
  aspect-ratio: 16 / 9; cursor: grab; touch-action: none; user-select: none;
}
.map-art.dragging { cursor: grabbing; }
.map-layer { position: absolute; inset: 0; transform-origin: 0 0; will-change: transform; }
.map-art.gliding .map-layer { transition: transform .45s cubic-bezier(.22,1,.36,1); }
.map-layer video { width: 100%; height: 100%; display: block; object-fit: cover; pointer-events: none; }
.map-controls {
  position: absolute; right: 14px; top: 14px; z-index: 3;
  display: flex; flex-direction: column;
  border: 1px solid rgba(236,231,213,.5); border-radius: 8px; overflow: hidden;
  box-shadow: 0 6px 18px rgba(42,37,33,.4);
}
.map-controls button {
  width: 40px; height: 40px; border: none; cursor: pointer;
  background: rgba(42,37,33,.85); color: var(--smoke-bright);
  font-size: 20px; line-height: 1; backdrop-filter: blur(6px);
  transition: background .25s ease;
}
.map-controls button:first-child { border-bottom: 1px solid rgba(236,231,213,.35); }
.map-controls button:hover { background: var(--cinder); color: var(--smoke-bright); }
.map-marker {
  position: absolute; left: 48%; top: 40%; z-index: 2;
  width: 34px; height: 46px; margin: -46px 0 0 -17px;
  cursor: pointer; outline: none; transform-origin: 50% 100%;
}
.marker-pin {
  width: 34px; height: 46px; display: block;
  filter: drop-shadow(0 6px 8px rgba(42,37,33,.5));
  animation: pinDrop .8s cubic-bezier(.22,1.4,.36,1) .6s both, pinBob 3.2s ease-in-out 1.6s infinite;
  transform-origin: 50% 100%;
}
@keyframes pinDrop {
  from { transform: translateY(-70px) scale(.6); opacity: 0; }
  60%  { transform: translateY(0) scale(1.06); opacity: 1; }
  to   { transform: none; opacity: 1; }
}
@keyframes pinBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.marker-pulse {
  position: absolute; left: 50%; bottom: -5px; width: 30px; height: 12px; margin-left: -15px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(163,54,51,.55), rgba(163,54,51,0));
  animation: pulseRing 2.4s ease-out 1.6s infinite;
}
@keyframes pulseRing { 0% { transform: scale(.6); opacity: .9; } 70%,100% { transform: scale(2.1); opacity: 0; } }
.map-marker:hover .marker-pin, .map-marker:focus-visible .marker-pin {
  animation-play-state: paused, paused; transform: scale(1.12); transition: transform .3s ease;
}
.map-infocard {
  position: absolute; left: 48%; top: 40%; z-index: 4;
  transform: translate(-50%, calc(-100% - 58px)) scale(.85); transform-origin: 50% 100%;
  width: 246px; padding: 16px 18px 14px;
  background: var(--smoke-bright); color: var(--ink);
  border: 1px solid var(--steel-soft); border-radius: 10px;
  box-shadow: 0 16px 40px rgba(42,37,33,.45);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .35s cubic-bezier(.22,1,.36,1);
}
.map-infocard.open { opacity: 1; pointer-events: auto; transform: translate(-50%, calc(-100% - 58px)) scale(1); }
.map-infocard::after {
  content: ""; position: absolute; left: 50%; bottom: -7px; width: 12px; height: 12px; margin-left: -6px;
  background: var(--smoke-bright); border-right: 1px solid var(--steel-soft); border-bottom: 1px solid var(--steel-soft);
  transform: rotate(45deg);
}
.map-infocard b { font-family: var(--serif); font-size: 16.5px; display: block; }
.mi-stars { display: block; margin-top: 3px; font-size: 12.5px; color: var(--cinder); letter-spacing: .06em; }
.mi-stars em { font-style: normal; color: var(--steel-deep); }
.mi-addr { display: block; margin-top: 7px; font-size: 13.5px; line-height: 1.5; color: var(--steel-deep); font-weight: 500; }
.mi-row { display: flex; gap: 16px; margin-top: 11px; padding-top: 10px; border-top: 1px solid var(--smoke); }
.mi-row a { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--clay); }
.mi-row a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.map-caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; padding: 18px 20px;
  pointer-events: none;
}
.map-caption::before {
  content: ""; position: absolute; inset: -60px 0 0 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to top, rgba(42,37,33,.6) 0%, rgba(42,37,33,0) 100%);
}
.map-caption .mc-addr {
  font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--smoke-bright); text-shadow: 0 1px 12px rgba(42,37,33,.9); line-height: 1.6;
}
.map-caption .mc-addr b { color: var(--smoke); }
.map-open {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 8px; pointer-events: auto;
  font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--smoke-bright); background: var(--cinder);
  padding: 10px 18px; border-radius: 999px; font-weight: 700;
  transition: background .3s ease, transform .3s ease;
}
.map-open:hover { background: var(--cinder-deep); transform: translateY(-2px); }

/* ---------- form ---------- */
.est-form {
  background: var(--ink-800); border: 1px solid rgba(236,231,213,.35);
  padding: clamp(34px, 4vw, 54px); align-self: start;
}
.est-form h3 { font-family: var(--serif); font-weight: 500; font-size: 30px; color: var(--smoke-bright); margin-bottom: 8px; }
.est-form .form-sub { font-size: 15px; font-weight: 500; color: var(--smoke); margin-bottom: 30px; }
.field { margin-bottom: 22px; }
.field label {
  display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .24em;
  text-transform: uppercase; color: var(--smoke); margin-bottom: 9px;
}
.field input, .field select, .field textarea {
  width: 100%; background: var(--ink-700);
  border: 1px solid rgba(236,231,213,.35);
  color: var(--smoke-bright); font-family: var(--sans); font-size: 16px; font-weight: 500;
  padding: 14px 16px; border-radius: 2px; outline: none;
  transition: border-color .3s ease, background .3s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cinder-lt); background: var(--steel-deep); }
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C4534E' fill='none' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.est-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { margin-top: 18px; font-size: 14.5px; font-weight: 500; color: var(--smoke); text-align: center; }
.form-note a { color: var(--cinder-lt); }
.form-success { display: none; text-align: center; padding: 60px 10px; }
.form-success.show { display: block; }
.form-success .fs-mark { font-family: var(--serif); font-size: 64px; color: var(--cinder-lt); line-height: 1; }
.form-success h4 { font-family: var(--serif); font-size: 28px; font-weight: 500; color: var(--smoke-bright); margin: 18px 0 10px; }
.form-success p { color: var(--smoke); font-weight: 500; font-size: 15.5px; }

/* ---------- interactive 3D spotlight card ---------- */
#dimension { background: var(--smoke); padding: clamp(80px, 10vh, 130px) clamp(20px, 4vw, 56px); position: relative; }
#dimension::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--steel-soft); }
.dim-inner { max-width: 1280px; margin: 0 auto; }
.dim-card {
  position: relative; overflow: hidden; border-radius: 18px;
  background: var(--ink); border: 1px solid var(--ink-700);
  display: flex; min-height: 520px;
  box-shadow: 0 34px 80px rgba(42,37,33,.35);
}
.dim-spot {
  position: absolute; width: 420px; height: 420px; z-index: 1;
  transform: translate(-50%, -50%); pointer-events: none; opacity: 0;
  background: radial-gradient(circle at center, rgba(236,231,213,.16) 0%, rgba(236,231,213,.05) 45%, transparent 75%);
  filter: blur(18px);
  transition: opacity .3s ease;
}
.dim-left {
  flex: 1; position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(36px, 5vw, 72px);
}
.dim-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(36px, 4.6vw, 58px); line-height: 1.08;
  background: linear-gradient(to bottom, var(--smoke-bright) 20%, var(--steel-soft) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.dim-left p { margin-top: 20px; color: var(--smoke); font-size: 17px; font-weight: 500; max-width: 46ch; }
.dim-cta { justify-content: flex-start; margin-top: 30px; }
.dim-right { flex: 1; position: relative; min-height: 420px; }
.dim-right spline-viewer { position: absolute; inset: 0; width: 100%; height: 100%; }
.dim-loader {
  position: absolute; inset: 0; display: flex; flex-direction: column; gap: 16px;
  align-items: center; justify-content: center;
  color: var(--steel-soft); font-size: 12.5px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
  transition: opacity .6s ease; pointer-events: none;
}
.dim-loader.hide { opacity: 0; }
.dim-loader span {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid rgba(236,231,213,.2); border-top-color: var(--cinder-lt);
  animation: dimSpin 1s linear infinite;
}
@keyframes dimSpin { to { transform: rotate(360deg); } }

/* ---------- footer ---------- */
.site-footer { background: var(--ink-800); border-top: 1px solid rgba(236,231,213,.28); color: var(--smoke-bright); }
.foot-inner {
  max-width: 1280px; margin: 0 auto;
  padding: clamp(56px, 8vh, 90px) clamp(24px, 5vw, 64px) 40px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(36px, 5vw, 70px);
}
.foot-brand img { height: 64px; margin-bottom: 20px; border-radius: 8px; }
.foot-brand p { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--smoke); max-width: 32ch; }
.foot-col h5 { font-size: 11.5px; font-weight: 700; letter-spacing: .4em; text-transform: uppercase; color: var(--cinder-lt); margin-bottom: 20px; }
.foot-col a, .foot-col address { display: block; font-style: normal; color: var(--smoke-bright); font-weight: 500; font-size: 15.5px; margin-bottom: 12px; line-height: 1.5; }
.foot-col a:hover { color: var(--cinder-lt); }
.foot-base {
  border-top: 1px solid rgba(236,231,213,.18);
  padding: 22px clamp(24px, 5vw, 64px);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 12.5px; font-weight: 500; letter-spacing: .12em; color: var(--smoke);
  max-width: 1280px; margin: 0 auto;
}

/* ---------- Cal.com booking modal ---------- */
.cal-modal {
  position: fixed; inset: 0; z-index: 1500;
  display: none; align-items: center; justify-content: center;
  padding: 4vh 4vw;
  background: rgba(42,37,33,.84); backdrop-filter: blur(8px);
}
.cal-modal.open { display: flex; animation: calFade .3s ease both; }
@keyframes calFade { from { opacity: 0; } to { opacity: 1; } }
.cal-box {
  position: relative; width: min(1060px, 100%); height: min(780px, 100%);
  background: var(--smoke-bright); border: 1px solid var(--steel-soft);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  animation: heroRise .5s cubic-bezier(.22,1,.36,1) both;
  display: flex; flex-direction: column;
}
.cal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; background: var(--ink-800);
  border-bottom: 1px solid rgba(236,231,213,.35);
}
.cal-head span { font-family: var(--serif); font-size: 19px; color: var(--smoke-bright); }
.cal-close {
  background: none; border: 1px solid var(--steel-soft); color: var(--smoke);
  width: 34px; height: 34px; border-radius: 999px; font-size: 17px; cursor: pointer; line-height: 1;
  transition: background .3s ease, color .3s ease;
}
.cal-close:hover { background: var(--cinder); color: var(--smoke-bright); }
.cal-box iframe { flex: 1; width: 100%; border: 0; background: var(--smoke-bright); }

/* floating booking pill */
.float-book {
  position: fixed; right: 26px; bottom: 26px; z-index: 1300;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 32px; border-radius: 999px;
  font-size: 14px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--smoke-bright);
  background-image:
    radial-gradient(101.79% 101.79% at 65.61% 81.79%, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 100%),
    radial-gradient(114.65% 114.65% at 9.73% 17.27%, #A33633 0%, #55504A 100%);
  background-blend-mode: overlay, normal;
  box-shadow: 0 14px 34px rgba(42,37,33,.55),
    inset -3px -3px 4px rgba(236,231,213,.38), inset 4px 4px 4px rgba(42,37,33,.2);
  overflow: hidden;
  opacity: 0; transform: translateY(24px); pointer-events: none;
  transition: opacity .5s ease, transform .5s cubic-bezier(.22,1,.36,1);
  animation: floatNudge 5s ease-in-out infinite;
}
.float-book.show { opacity: 1; transform: none; pointer-events: auto; }
.float-book:hover { filter: brightness(1.1); }
.float-book .btn-label { position: relative; z-index: 3; }
.float-book:hover .btn-sheen { animation: glassSheen .85s cubic-bezier(.32,0,.24,1); }
@keyframes floatNudge { 0%,88%,100% { scale: 1; } 92% { scale: 1.05; } 96% { scale: 1; } }

/* mobile call bar */
.mobile-bar { display: none; }

@media (prefers-reduced-motion: reduce) {
  .rise, .marker-pin, .marker-pulse, .float-book, .grain, .gal-track { animation: none !important; }
  .rise { opacity: 1 !important; transform: none !important; }
  .btn-glass:hover .btn-sheen, .float-book:hover .btn-sheen { animation: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .est-inner { grid-template-columns: 1fr; }
  .foot-inner { grid-template-columns: 1fr 1fr; }
  .dim-card { flex-direction: column; }
  .dim-right { min-height: 380px; }
}
@media (max-width: 760px) {
  body { font-size: 16.5px; }
  .main-nav { display: none; }
  .brand img { height: 40px; }
  .brand-word { font-size: 17px; }
  #hero { height: 460vh; }
  .hero-cta-row .btn { padding: 15px 26px; }
  .hero-cta-row .btn-big { padding: 19px 34px; font-size: 14px; }
  .svc-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat { border-left: none; border-top: 1px solid rgba(236,231,213,.16); }
  .field-row { grid-template-columns: 1fr; }
  .craft-inner { justify-content: flex-start; }
  .foot-inner { grid-template-columns: 1fr; }
  .float-book { display: none; }
  .gal-track img { width: 62vw; }
  .winter-cta .btn { width: 100%; justify-content: center; }
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 1200;
    background: var(--ink-800); border-top: 1px solid rgba(236,231,213,.4);
  }
  .mobile-bar a {
    text-align: center; padding: 16px 8px; font-size: 12.5px; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase; color: var(--smoke-bright);
  }
  .mobile-bar a.mb-call { background: var(--cinder); color: var(--smoke-bright); }
  .site-footer { padding-bottom: 54px; }
}
