/* ============================================================
   GRIP ZONE TIRE — Sumi-e ink-wash cinematic
   Palette is strictly the four uploaded swatches + paper/ink:
   SUN (crimson)  #C43556   ·  CHILL (blue-teal) #3D8A8B
   MOSS (olive)   #B6C648   ·  SAFFRON (yellow)  #FFD166
   PAPER #F6F1E6 family     ·  INK #20242B family
   NO BLUR anywhere (global rule): glass = gradients + borders only.
   ============================================================ */
:root {
  --paper:        #F6F1E6;
  --paper-bright: #FBF7EE;
  --paper-2:      #EFE8D7;
  --paper-3:      #E4DBC4;
  --ink:          #20242B;
  --ink-900:      #171A20;
  --ink-soft:     #3C424C;
  --ink-mist:     #6A7076;
  --sun:          #C43556;
  --sun-deep:     #9A2843;
  --chill:        #3D8A8B;
  --chill-deep:   #2C6768;
  --chill-ink:    #14282B;   /* dark sections: ink washed with Blue Chill */
  --moss:         #B6C648;
  --saffron:      #FFD166;
  --hairline:     rgba(32, 36, 43, .16);
  --hairline-soft:rgba(32, 36, 43, .09);
  --serif: "Shippori Mincho B1", "Georgia", serif;
  --sans: "Zen Kaku Gothic New", "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(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

:focus-visible { outline: 2px solid var(--sun); outline-offset: 3px; }
.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 3000;
  background: var(--sun); color: var(--paper-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; }

::selection { background: var(--sun); color: var(--paper-bright); }

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

/* ---------- washi paper grain (crisp turbulence, never blurry) ---------- */
.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.82' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- 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(246, 241, 230, .97);
  box-shadow: 0 1px 0 var(--hairline);
  padding-top: 9px; padding-bottom: 9px;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand-logo {
  height: 54px; width: auto; display: block;
  border-radius: 9px;
  box-shadow: 0 3px 12px rgba(32,36,43,.14);
}
.hanko {
  width: 46px; height: 46px; flex: none;
  background: var(--sun); color: var(--paper-bright);
  border-radius: 9px;
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 800; font-size: 19px;
  letter-spacing: .04em; line-height: 1;
  box-shadow: inset 0 0 0 2px rgba(251,247,238,.35), 0 4px 12px rgba(196,53,86,.28);
  rotate: -3deg;
}
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name .bn-top {
  font-family: var(--serif); font-weight: 700;
  font-size: 20px; letter-spacing: .12em; color: var(--ink);
}
.brand-name .bn-top .zone { color: var(--sun); }
.brand-name .bn-sub {
  font-size: 10px; letter-spacing: .44em; text-transform: uppercase;
  color: var(--chill-deep); margin-top: 4px;
}
.main-nav { display: flex; gap: clamp(14px, 2.4vw, 32px); align-items: center; }
.main-nav a {
  font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink); position: relative; padding: 6px 0;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--sun);
  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(--sun); color: var(--paper-bright) !important;
  padding: 10px 22px !important; border-radius: 999px; white-space: nowrap;
  transition: background .35s ease, transform .35s ease;
}
.nav-book:hover { background: var(--sun-deep); transform: translateY(-2px); }
.nav-book::after { display: none; }
.nav-phone {
  border: 1.5px solid var(--ink);
  padding: 10px 22px !important; border-radius: 999px;
  color: var(--ink) !important; white-space: nowrap;
  transition: background .35s ease, color .35s ease;
}
.nav-phone:hover { background: var(--ink); color: var(--paper-bright) !important; }
.nav-phone::after { display: none; }

/* ---------- hero scrub (light washi painting) ---------- */
.scrub-section { position: relative; }
#hero { height: 480vh; background: var(--paper); }
.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(246,241,230,.72) 0%, rgba(246,241,230,0) 26%,
      rgba(246,241,230,0) 62%, rgba(246,241,230,.82) 100%);
}
.hero-copy {
  position: absolute; inset: 0;
  text-align: center; padding: 0 6vw; pointer-events: none;
}
/* NOTE: the scrub engine overwrites `transform` on these lines each frame,
   so centering must never rely on transform — left/right + margin plus the
   separate `translate` property only. */
.reveal-line {
  position: absolute; left: 0; right: 0; margin-inline: auto;
  width: min(940px, 90vw);
  top: 50%; translate: 0 -50%;
  opacity: 0; /* stacked lines stay hidden until the engine's first tick */
}
#hero .reveal-line:first-of-type { opacity: 1; }

.hero-kicker {
  font-size: 12.5px; font-weight: 900; letter-spacing: .5em; text-transform: uppercase;
  color: var(--chill-ink); margin-bottom: 26px;
  text-shadow:
    0 0 6px rgba(246,241,230,1), 0 0 14px rgba(246,241,230,1),
    0 0 26px rgba(246,241,230,.95), 0 1px 2px rgba(246,241,230,.9);
}
.hero-title {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(54px, 10vw, 138px);
  letter-spacing: .06em; line-height: .98;
  color: var(--ink);
  text-shadow: 0 2px 34px rgba(246,241,230,.85);
  animation: trackIn 2.4s cubic-bezier(.16,1,.3,1) both;
}
@keyframes trackIn {
  from { letter-spacing: .28em; opacity: 0; }
  to   { letter-spacing: .06em; opacity: 1; }
}
.hero-title .zone { color: var(--sun); }
.hero-tag {
  margin-top: 26px;
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: clamp(20px, 2.6vw, 31px);
  color: var(--ink-soft);
  text-shadow: 0 1px 18px rgba(246,241,230,.95);
}
.hero-rule {
  width: 70px; height: 2px; background: var(--sun);
  margin: 26px auto 0;
}
.hero-seal {
  margin: 22px auto 0; width: 34px; height: 34px;
  background: var(--sun); border-radius: 7px; rotate: -4deg;
  display: grid; place-items: center;
  color: var(--paper-bright); font-family: var(--serif); font-weight: 800; font-size: 15px;
  box-shadow: inset 0 0 0 1.6px rgba(251,247,238,.4);
}
.rl-big {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(34px, 5vw, 66px); line-height: 1.14;
  color: var(--ink);
  text-shadow: 0 2px 26px rgba(246,241,230,.92), 0 0 60px rgba(246,241,230,.7);
}
.rl-big em { color: var(--sun); font-style: italic; }
.rl-big .teal { color: var(--chill-deep); font-style: italic; }
.rl-small {
  margin-top: 20px; font-size: 14.5px; font-weight: 700; letter-spacing: .26em;
  text-transform: uppercase; color: var(--ink-soft);
  text-shadow: 0 1px 12px rgba(246,241,230,1), 0 1px 26px rgba(246,241,230,.9);
}
.hero-cta-row { display: flex; gap: 18px; justify-content: center; margin-top: 34px; pointer-events: auto; flex-wrap: wrap; }

/* ---------- 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: 1.5px solid var(--ink);
  transition: background .35s ease, color .35s ease, transform .35s ease, border-color .35s ease;
  cursor: pointer;
}
.btn-ghost { color: var(--ink); background: rgba(251,247,238,.55); font-weight: 700; }
.btn-ghost:hover { background: var(--ink); color: var(--paper-bright); transform: translateY(-2px); }
.btn-ghost.on-dark { color: var(--paper-bright); border-color: var(--paper-bright); background: rgba(23,26,32,.25); }
.btn-ghost.on-dark:hover { background: var(--paper-bright); color: var(--ink); }

@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; }

/* Crimson lacquer-glass pill — layered radial gradients + masked hairline +
   inset shading + sheen sweep. Sharp everywhere: no blur filters of any kind. */
.btn-glass {
  position: relative; overflow: hidden;
  border: none; color: var(--paper-bright); font-weight: 700;
  background-image:
    radial-gradient(101.79% 101.79% at 65.61% 81.79%, rgba(255,255,255,.5) 0%, rgba(255,255,255,0) 100%),
    radial-gradient(114.65% 114.65% at 9.73% 17.27%, #d95e79 0%, var(--sun-deep) 100%);
  background-blend-mode: overlay, normal;
  box-shadow:
    10px 14px 26px rgba(154, 40, 67, .3),
    inset -3px -3px 4px rgba(251, 247, 238, .34),
    inset 4px 4px 5px rgba(23, 26, 32, .22);
}
.btn-glass:hover { transform: translateY(-2px); }
.btn-glass::before {
  content: ""; position: absolute; inset: 0; z-index: 2;
  padding: 1.6px; border-radius: inherit; opacity: .55;
  background: linear-gradient(176.87deg, rgba(255,255,255,.7) 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;
  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,.62) 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: 34%;
  z-index: 1; pointer-events: none;
  transform: translateX(-150%) skewX(-16deg);
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.44) 50%, rgba(255,255,255,0) 100%);
}
@keyframes glassSheen {
  from { transform: translateX(-150%) skewX(-16deg); }
  to   { transform: translateX(330%) 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; }

@media (prefers-reduced-motion: reduce) {
  .rise { animation: none !important; opacity: 1 !important; transform: none !important; }
  .btn-glass:hover .btn-sheen { animation: none; }
  .hero-title { animation: none; }
}

.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(--ink-soft); transition: opacity .5s ease;
}
.scroll-hint::after {
  content: ""; width: 1.5px; height: 44px;
  background: linear-gradient(var(--sun), 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(32,36,43,.12);
}
.progress-fill { height: 100%; width: 0; background: var(--sun); }

/* ---------- section furniture ---------- */
.section-label {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 12px; font-weight: 700; letter-spacing: .5em; text-transform: uppercase;
}
.section-label::before { content: ""; width: 44px; height: 2px; background: currentColor; opacity: .55; }
.h2 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(38px, 4.6vw, 64px); line-height: 1.1; letter-spacing: .01em;
}
.h2 em { font-style: italic; color: var(--sun); }
.h2 .teal { font-style: italic; color: var(--chill); }

.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; }

/* brush-stroke divider between paper sections */
.brush-divider { display: block; width: 100%; height: 34px; color: var(--ink); opacity: .82; }
.brush-divider.flip { scale: -1 1; }
.brush-divider svg { width: 100%; height: 100%; display: block; }

/* ---------- story — over clip 2 ---------- */
.media-section { position: relative; overflow: hidden; }
.media-bg { position: absolute; inset: 0; }
.media-bg video, .media-bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  will-change: transform;
}
#story .media-veil {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(246,241,230,.96) 0%, rgba(246,241,230,.88) 40%, rgba(246,241,230,.28) 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: 620px; }
.story-copy .section-label { color: var(--sun); }
.story-copy .h2 { margin: 26px 0 30px; color: var(--ink); }
.story-copy p { color: var(--ink-soft); font-size: 18px; font-weight: 500; max-width: 56ch; }
.story-copy p + p { margin-top: 18px; }
.story-sign {
  margin-top: 36px; display: flex; gap: 40px; flex-wrap: wrap;
}
.sign-block { font-family: var(--serif); font-style: italic; font-size: 23px; color: var(--ink); }
.sign-block span { display: block; font-family: var(--sans); font-style: normal;
  font-size: 11.5px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
  color: var(--chill-deep); margin-top: 8px; }

.stat-strip {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline);
  background: rgba(246,241,230,.92);
}
.stat {
  padding: 34px 20px; text-align: center;
  border-left: 1px solid var(--hairline-soft);
}
.stat:first-child { border-left: none; }
.stat-num {
  font-family: var(--serif); font-weight: 700; font-size: clamp(30px, 3.4vw, 46px);
  color: var(--sun); line-height: 1;
}
.stat-cap { margin-top: 10px; font-size: 11.5px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ink-soft); }
.stat-word {
  font-family: var(--serif); font-weight: 700; font-size: clamp(30px, 3.4vw, 46px);
  color: var(--sun); line-height: 1;
}
.brand-note {
  margin-top: clamp(44px, 6vh, 64px); text-align: center;
  font-size: 12.5px; font-weight: 900; letter-spacing: .3em; text-transform: uppercase;
  color: var(--sun);
}
.brand-note + .brand-row { margin-top: 18px; }

/* ---------- services — two-column ink menu ---------- */
#services { background: var(--paper); position: relative; }
.services-inner { max-width: 1180px; margin: 0 auto; padding: clamp(90px, 12vh, 150px) clamp(24px, 5vw, 64px); }
.services-head { text-align: center; margin-bottom: clamp(48px, 7vh, 80px); }
.services-head .section-label { color: var(--chill-deep); }
.services-head .h2 { color: var(--ink); margin-top: 22px; }
.services-head p { max-width: 52ch; margin: 18px auto 0; color: var(--ink-soft); font-size: 17px; }

.menu-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px);
}
.menu-col h3 {
  font-family: var(--serif); font-weight: 800; font-size: clamp(26px, 2.6vw, 34px);
  color: var(--ink); display: flex; align-items: center; gap: 16px;
  padding-bottom: 18px; border-bottom: 2px solid var(--ink);
}
.menu-col h3 .col-seal {
  width: 30px; height: 30px; border-radius: 6px; rotate: -4deg; flex: none;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 800; color: var(--paper-bright); font-family: var(--serif);
}
.menu-col.road h3 .col-seal { background: var(--sun); }
.menu-col.shop h3 .col-seal { background: var(--chill); }
.menu-col h3 small {
  margin-left: auto; font-family: var(--sans); font-weight: 700;
  font-size: 10.5px; letter-spacing: .34em; text-transform: uppercase; color: var(--ink-mist);
}
.menu-item {
  display: flex; align-items: baseline; gap: 12px;
  padding: 20px 0 18px; border-bottom: 1px solid var(--hairline-soft);
}
.mi-name { font-family: var(--serif); font-weight: 700; font-size: 20px; color: var(--ink); }
.mi-dots { flex: 1; border-bottom: 2px dotted rgba(32,36,43,.28); translate: 0 -5px; }
.mi-price {
  font-family: var(--serif); font-weight: 700; font-size: 19px; color: var(--sun);
  white-space: nowrap;
}
.menu-col.shop .mi-price { color: var(--chill-deep); }
.mi-book {
  white-space: nowrap; font-size: 12px; font-weight: 900; letter-spacing: .14em;
  text-transform: uppercase; color: var(--paper-bright);
  background: var(--sun); padding: 7px 16px; border-radius: 999px;
  transition: background .3s ease, transform .3s ease;
  translate: 0 -3px;
}
.mi-book:hover { background: var(--sun-deep); transform: translateY(-2px); }
.menu-col.shop .mi-book { background: var(--chill); }
.menu-col.shop .mi-book:hover { background: var(--chill-deep); }

/* slim emergency strip — available, not shouty */
.road-strip {
  margin-top: clamp(36px, 5vh, 54px);
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  border: 1px dashed var(--hairline); border-radius: 14px;
  padding: 16px 22px; background: var(--paper-bright);
}
.road-strip .rs-icon {
  width: 34px; height: 34px; flex: none; border-radius: 7px; rotate: -4deg;
  background: var(--ink); color: var(--paper-bright);
  display: grid; place-items: center; font-family: var(--serif); font-size: 15px; font-weight: 800;
}
.road-strip p { font-size: 15px; color: var(--ink-soft); margin: 0; flex: 1; min-width: 220px; }
.road-strip p b { color: var(--ink); }
.rs-book {
  font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); border: 1.5px solid var(--ink); padding: 9px 18px; border-radius: 999px;
  transition: background .3s ease, color .3s ease;
  white-space: nowrap;
}
.rs-book:hover { background: var(--ink); color: var(--paper-bright); }
.mi-desc {
  flex-basis: 100%; font-size: 14.5px; color: var(--ink-mist); margin-top: 6px; line-height: 1.6;
}
.menu-item { flex-wrap: wrap; }
.mi-tag {
  font-size: 10px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 999px; translate: 0 -3px;
}
.mi-tag.moss { background: var(--moss); color: var(--ink-900); }
.mi-tag.saffron { background: var(--saffron); color: var(--ink-900); }
.menu-note {
  margin-top: clamp(40px, 6vh, 60px); text-align: center;
  font-size: 13px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-mist);
}
.menu-note b { color: var(--sun); }

.brand-row {
  margin-top: clamp(44px, 6vh, 64px);
  display: flex; align-items: center; justify-content: center; gap: clamp(18px, 4vw, 54px);
  flex-wrap: wrap;
  font-family: var(--serif); font-weight: 700; font-size: 17px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-soft);
}
.brand-row span { display: flex; align-items: center; gap: 12px; }
.brand-row span::before { content: "●"; font-size: 7px; color: var(--sun); }

/* ---------- craft — over clip 3 ---------- */
#craft .media-veil {
  position: absolute; inset: 0;
  background: linear-gradient(280deg, rgba(246,241,230,.96) 0%, rgba(246,241,230,.88) 42%, rgba(246,241,230,.24) 100%);
}
.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(--sun); }
.craft-copy .h2 { margin: 26px 0 30px; color: var(--ink); }
.craft-copy > p { font-size: 18px; font-weight: 500; color: var(--ink-soft); }
.craft-list { margin-top: 36px; display: grid; }
.craft-list li {
  list-style: none; display: flex; gap: 18px; align-items: baseline;
  padding: 16px 0; border-top: 1px solid var(--hairline);
  font-size: 16.5px; font-weight: 500; color: var(--ink-soft);
}
.craft-list li:last-child { border-bottom: 1px solid var(--hairline); }
.craft-list b { color: var(--ink); font-weight: 700; }
.craft-list .tick { color: var(--moss); font-weight: 900; font-size: 18px; translate: 0 1px; }

/* ---------- gallery — the work, editorial ink frames ---------- */
#work { background: var(--paper-2); position: relative; }
#work::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--hairline); }
.work-inner { max-width: 1380px; margin: 0 auto; padding: clamp(90px, 12vh, 150px) clamp(24px, 5vw, 64px); }
.work-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; margin-bottom: clamp(44px, 6vh, 70px); }
.work-head .section-label { color: var(--chill-deep); }
.work-head .h2 { color: var(--ink); margin-top: 22px; }
.work-head p { max-width: 44ch; color: var(--ink-soft); }
.work-grid {
  columns: 3; column-gap: 22px;
}

/* moving pictures of the real shop */
.clip-grid {
  display: grid; gap: 22px;
  grid-template-columns: minmax(260px, 1fr) 1.6fr 1.6fr;
  grid-template-areas: "tour a b" "tour c c";
}
.clip-card { position: relative; margin: 0; overflow: hidden;
  background: var(--paper-bright); border: 1px solid var(--hairline);
  padding: 10px 10px 14px;
  box-shadow: 0 10px 28px rgba(32,36,43,.09);
  transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s ease;
}
.clip-card:hover { transform: translateY(-6px) rotate(-.4deg); box-shadow: 0 22px 44px rgba(32,36,43,.16); }
.clip-card:nth-child(1) { grid-area: tour; }
.clip-card:nth-child(2) { grid-area: a; }
.clip-card:nth-child(3) { grid-area: b; }
.clip-card:nth-child(4) { grid-area: c; }
.clip-card video {
  width: 100%; height: calc(100% - 34px); object-fit: cover; display: block;
  aspect-ratio: 16 / 9; background: var(--paper-2);
}
.clip-card.tall video { aspect-ratio: 3 / 5; height: calc(100% - 34px); }
.clip-card figcaption {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 4px 0;
  font-size: 11.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft);
}
.clip-card figcaption .wc-seal {
  width: 20px; height: 20px; border-radius: 4px; rotate: -4deg; flex: none;
  background: var(--sun); color: var(--paper-bright);
  display: grid; place-items: center; font-family: var(--serif); font-size: 9px; font-weight: 800;
}
.work-card {
  break-inside: avoid; margin-bottom: 22px; position: relative;
  background: var(--paper-bright);
  border: 1px solid var(--hairline);
  padding: 10px 10px 14px;
  box-shadow: 0 10px 28px rgba(32,36,43,.09);
  transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s ease;
}
.work-card:hover { transform: translateY(-6px) rotate(-.4deg); box-shadow: 0 22px 44px rgba(32,36,43,.16); }
.work-card img { width: 100%; height: auto; }
.work-card figcaption {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 4px 0;
  font-size: 11.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft);
}
.work-card figcaption .wc-seal {
  width: 20px; height: 20px; border-radius: 4px; rotate: -4deg; flex: none;
  background: var(--sun); color: var(--paper-bright);
  display: grid; place-items: center; font-family: var(--serif); font-size: 9px; font-weight: 800;
}
.work-card.teal figcaption .wc-seal { background: var(--chill); }
.work-card.moss figcaption .wc-seal { background: var(--moss); color: var(--ink-900); }
.work-card.saffron figcaption .wc-seal { background: var(--saffron); color: var(--ink-900); }

/* ---------- testimonials ---------- */
#word { background: var(--paper); }
.word-inner { max-width: 1280px; margin: 0 auto; padding: clamp(90px, 12vh, 150px) clamp(24px, 5vw, 64px); }
.word-inner .section-label { color: var(--sun); }
.word-inner .h2 { color: var(--ink); margin: 24px 0 8px; }
.word-sub { color: var(--ink-soft); margin-bottom: clamp(44px, 6vh, 70px); }
.word-sub b { color: var(--ink); }
.word-sub .stars { color: var(--saffron); text-shadow: 0 1px 0 rgba(32,36,43,.35); letter-spacing: .1em; }
.quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 36px); }
.quote-grid.three { grid-template-columns: repeat(3, 1fr); }
.quote-card {
  background: var(--paper-bright); border: 1px solid var(--hairline);
  padding: 40px 38px 34px; position: relative;
  box-shadow: 0 10px 26px rgba(32,36,43,.07);
}
.quote-card::before {
  content: "\201C"; position: absolute; top: 4px; left: 24px;
  font-family: var(--serif); font-size: 96px; line-height: 1;
  color: var(--chill); opacity: .35;
}
.quote-card p {
  position: relative; font-family: var(--serif); font-size: 20px;
  font-weight: 600; line-height: 1.55; color: var(--ink);
}
.quote-card figcaption {
  margin-top: 20px; font-size: 12px; font-weight: 700; letter-spacing: .26em;
  text-transform: uppercase; color: var(--chill-deep);
}
.quote-card .q-stars { position: absolute; top: 22px; right: 24px; font-size: 13px; color: var(--saffron); text-shadow: 0 1px 0 rgba(32,36,43,.4); letter-spacing: .12em; }

/* ---------- offers band (dark ink-teal) ---------- */
.offers-band { background: var(--chill-ink); color: var(--paper); position: relative; overflow: hidden; }
.offers-band::before {
  content: ""; position: absolute; right: -110px; top: 50%; translate: 0 -50%;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, #d4506e 0%, var(--sun) 52%, var(--sun-deep) 100%);
  opacity: .9;
}
.offers-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: clamp(70px, 9vh, 110px) clamp(24px, 5vw, 64px);
  display: flex; align-items: center; justify-content: space-between; gap: 44px; flex-wrap: wrap;
}
.offer-big {
  font-family: var(--serif); font-weight: 800; font-size: clamp(58px, 8vw, 104px); line-height: 1;
  color: var(--saffron);
}
.offer-big small { font-size: .3em; letter-spacing: .28em; text-transform: uppercase; color: var(--paper); display: block; margin-top: 8px; font-family: var(--sans); font-weight: 700; }
.offers-inner .ob-left { max-width: 560px; }
.offers-inner h3 {
  font-family: var(--serif); font-weight: 700; font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25; margin-bottom: 14px; color: var(--paper-bright);
}
.offers-inner p { color: rgba(246,241,230,.82); max-width: 56ch; }
.offers-inner p b { color: var(--saffron); }

/* ---------- visit / hours / map / booking ---------- */
#visit { background: var(--paper); position: relative; }
#visit::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--hairline); }
.visit-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);
}
.visit-left .section-label { color: var(--chill-deep); }
.visit-left .h2 { color: var(--ink); margin: 24px 0 20px; }
.visit-left > p { color: var(--ink-soft); 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(--chill-deep); padding-bottom: 14px;
}
.hours-table td {
  padding: 11px 0; border-top: 1px solid var(--hairline);
  font-size: 16px; font-weight: 500; color: var(--ink);
}
.hours-table td:last-child { text-align: right; color: var(--sun); font-weight: 700; }
.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: .18s; }
.hours-table.in tr:nth-child(3) td { transition-delay: .3s; }

/* relief map artwork — pan / zoom / pin (no Google embed) */
.map-art {
  position: relative; margin-top: 36px; overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--paper-2);
  aspect-ratio: 16 / 10;
  cursor: grab; touch-action: none; user-select: none;
  box-shadow: 0 16px 40px rgba(32,36,43,.12);
}
.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 img { 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 var(--hairline); border-radius: 8px; overflow: hidden;
  box-shadow: 0 6px 18px rgba(32,36,43,.24);
}
.map-controls button {
  width: 40px; height: 40px; border: none; cursor: pointer;
  background: rgba(251,247,238,.97); color: var(--ink);
  font-size: 20px; line-height: 1;
  transition: background .25s ease, color .25s ease;
}
.map-controls button:first-child { border-bottom: 1px solid var(--hairline-soft); }
.map-controls button:hover { background: var(--sun); color: var(--paper-bright); }

.map-marker {
  position: absolute; left: 46%; 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(32,36,43,.4));
  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(196,53,86,.5), rgba(196,53,86,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: 46%; top: 40%; z-index: 4;
  transform: translate(-50%, calc(-100% - 58px)) scale(.85);
  transform-origin: 50% 100%;
  width: 238px; padding: 16px 18px 14px;
  background: var(--paper-bright); color: var(--ink);
  border: 1px solid var(--hairline); border-radius: 10px;
  box-shadow: 0 16px 40px rgba(32,36,43,.3);
  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(--paper-bright);
  border-right: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  transform: rotate(45deg);
}
.map-infocard b { font-family: var(--serif); font-size: 17px; display: block; }
.mi-stars { display: block; margin-top: 3px; font-size: 12.5px; color: var(--saffron); text-shadow: 0 1px 0 rgba(32,36,43,.4); letter-spacing: .06em; }
.mi-stars em { font-style: normal; color: var(--ink-soft); text-shadow: none; }
.mi-addr { display: block; margin-top: 7px; font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); }
.mi-row { display: flex; gap: 16px; margin-top: 11px; padding-top: 10px; border-top: 1px solid var(--hairline-soft); }
.mi-row a { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--chill-deep); }
.mi-row a:hover { color: var(--sun); text-decoration: underline; text-underline-offset: 3px; }
.map-art::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(23,26,32,.42) 0%, rgba(23,26,32,0) 34%);
}
.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;
}
.map-caption .mc-addr {
  font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--paper-bright); text-shadow: 0 1px 10px rgba(23,26,32,.8);
  line-height: 1.6;
}
.map-caption .mc-addr b { color: var(--saffron); }
.map-open {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--paper-bright); background: var(--sun);
  padding: 10px 18px; border-radius: 999px; font-weight: 700;
  transition: background .3s ease, transform .3s ease;
}
.map-open:hover { background: var(--sun-deep); transform: translateY(-2px); }

/* booking form — ink slate card */
.book-form {
  background: var(--chill-ink); border: 1px solid rgba(61,138,139,.4);
  padding: clamp(34px, 4vw, 54px);
  align-self: start; position: relative; overflow: hidden;
  box-shadow: 0 24px 60px rgba(20,40,43,.28);
}
.book-form::before {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 190px; height: 190px; border-radius: 50%;
  background: radial-gradient(circle at 40% 36%, #d4506e 0%, var(--sun) 55%, var(--sun-deep) 100%);
  opacity: .85; pointer-events: none;
}
.book-form h3 {
  position: relative; font-family: var(--serif); font-weight: 700; font-size: 30px;
  color: var(--paper-bright); margin-bottom: 8px;
}
.book-form .form-sub { position: relative; font-size: 15px; color: rgba(246,241,230,.75); margin-bottom: 30px; }
.field { margin-bottom: 22px; position: relative; }
.field label {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
  color: var(--saffron); margin-bottom: 9px;
}
.field input, .field select, .field textarea {
  width: 100%; background: rgba(246,241,230,.08);
  border: 1px solid rgba(61,138,139,.5);
  color: var(--paper-bright); font-family: var(--sans); font-size: 16px;
  padding: 14px 16px; border-radius: 2px; outline: none;
  transition: border-color .3s ease, background .3s ease;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(246,241,230,.42); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--saffron); background: rgba(246,241,230,.13);
}
.field input[type="date"] { color-scheme: dark; }
.field textarea { resize: vertical; min-height: 96px; }
.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='%23FFD166' fill='none' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; }
.field select option { background: var(--chill-ink); color: var(--paper-bright); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.book-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { position: relative; margin-top: 18px; font-size: 14px; font-weight: 500; color: rgba(246,241,230,.78); text-align: center; }
.form-note a { color: var(--saffron); }
.form-success { display: none; text-align: center; padding: 60px 10px; position: relative; }
.form-success.show { display: block; }
.form-success .fs-mark {
  width: 74px; height: 74px; margin: 0 auto; border-radius: 16px; rotate: -4deg;
  background: var(--sun); color: var(--paper-bright);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 40px; font-weight: 800;
  box-shadow: inset 0 0 0 2px rgba(251,247,238,.4);
}
.form-success h4 { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--paper-bright); margin: 22px 0 10px; }
.form-success p { color: rgba(246,241,230,.8); font-size: 15.5px; }
.form-success a { color: var(--saffron); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink-900); color: var(--paper); border-top: 4px solid var(--sun); }
.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: 96px; width: auto; margin-bottom: 18px; border-radius: 10px; box-shadow: 0 8px 22px rgba(0,0,0,.35); }
.foot-brand p { font-family: var(--serif); font-style: italic; font-size: 19px; color: rgba(246,241,230,.85); max-width: 30ch; }
.foot-col h5 {
  font-size: 11.5px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--chill); margin-bottom: 20px;
}
.foot-col a, .foot-col address {
  display: block; font-style: normal; color: rgba(246,241,230,.88);
  font-size: 15.5px; margin-bottom: 12px; line-height: 1.5;
}
.foot-col a:hover { color: var(--saffron); }
.foot-base {
  border-top: 1px solid rgba(246,241,230,.14);
  padding: 22px clamp(24px, 5vw, 64px);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 12.5px; letter-spacing: .12em; color: rgba(246,241,230,.6);
  max-width: 1280px; margin: 0 auto;
}

/* ---------- Cal.com modal (no backdrop blur — solid ink veil) ---------- */
.cal-modal {
  position: fixed; inset: 0; z-index: 1500;
  display: none; align-items: center; justify-content: center;
  padding: 4vh 4vw;
  background: rgba(23, 26, 32, .86);
}
.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(--paper-bright); border: 1px solid var(--hairline);
  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(--chill-ink);
  border-bottom: 1px solid rgba(61,138,139,.4);
}
.cal-head span { font-family: var(--serif); font-size: 19px; color: var(--paper-bright); }
.cal-back {
  background: none; border: 1px solid var(--chill); color: var(--paper-bright);
  width: 34px; height: 34px; border-radius: 999px; font-size: 16px;
  cursor: pointer; line-height: 1; margin-right: 12px;
  transition: background .3s ease;
}
.cal-back:hover { background: var(--chill); }
.cal-head #calTitle { flex: 1; }
.cal-picker { flex: 1; overflow: auto; padding: clamp(24px, 4vw, 44px); }
.cal-picker[hidden] { display: none; }
.cp-sub {
  font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--ink);
  margin-bottom: 22px;
}
.cp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.cp-grid button {
  text-align: left; cursor: pointer;
  background: var(--paper); border: 1px solid var(--hairline); border-radius: 12px;
  padding: 18px 20px; font-family: var(--sans);
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
.cp-grid button:hover { border-color: var(--sun); transform: translateY(-3px); background: var(--paper-bright); }
.cp-grid button b { display: block; font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--ink); }
.cp-grid button span { display: block; margin-top: 5px; font-size: 13px; color: var(--ink-mist); }
.cp-grid .cp-emergency { border-style: dashed; }
.cp-grid .cp-emergency b { color: var(--sun); }
.cal-close {
  background: none; border: 1px solid var(--chill); color: var(--paper-bright);
  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(--sun); border-color: var(--sun); }
.cal-box iframe { flex: 1; width: 100%; border: 0; background: var(--paper-bright); }
.cal-box iframe[hidden] { display: none; }
.book-inline { color: var(--chill-deep); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; font-weight: 700; }
.book-inline:hover { color: var(--sun); }
.form-note .book-inline { color: var(--saffron); }

/* 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: 13.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--paper-bright);
  background-image:
    radial-gradient(101.79% 101.79% at 65.61% 81.79%, rgba(255,255,255,.5) 0%, rgba(255,255,255,0) 100%),
    radial-gradient(114.65% 114.65% at 9.73% 17.27%, #d95e79 0%, var(--sun-deep) 100%);
  background-blend-mode: overlay, normal;
  box-shadow: 0 14px 34px rgba(154,40,67,.4),
    inset -3px -3px 4px rgba(251,247,238,.34), inset 4px 4px 5px rgba(23,26,32,.22);
  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.08); }
.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; } }
@media (prefers-reduced-motion: reduce) { .float-book { animation: none; } }

.mobile-bar { display: none; }

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .menu-cols { grid-template-columns: 1fr; gap: 54px; }
  .work-grid { columns: 2; }
  .clip-grid { grid-template-columns: 1fr 1fr; grid-template-areas: "tour a" "tour b" "c c"; }
  .quote-grid.three { grid-template-columns: 1fr; }
  .visit-inner { grid-template-columns: 1fr; }
  .foot-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .main-nav { display: none; }
  #hero { height: 420vh; }
  .hero-cta-row .btn { padding: 15px 26px; }
  .hero-cta-row .btn-big { padding: 19px 34px; font-size: 14px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat { border-left: none; border-top: 1px solid var(--hairline-soft); }
  .work-grid { columns: 1; }
  .clip-grid { grid-template-columns: 1fr; grid-template-areas: "tour" "a" "b" "c"; }
  .clip-card.tall video { aspect-ratio: 3 / 4; }
  .quote-grid { grid-template-columns: 1fr; }
  .brand-logo { height: 44px; }
  .road-strip { flex-direction: column; align-items: flex-start; }
  .field-row { grid-template-columns: 1fr; }
  .craft-inner { justify-content: flex-start; }
  .foot-inner { grid-template-columns: 1fr; }
  .offers-inner { flex-direction: column; align-items: flex-start; }
  .offers-band::before { right: -180px; opacity: .5; }
  .float-book { display: none; }
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 1200;
    background: var(--ink-900); border-top: 1px solid rgba(246,241,230,.2);
  }
  .mobile-bar a {
    text-align: center; padding: 16px 8px; font-size: 12.5px; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase; color: var(--paper-bright);
  }
  .mobile-bar a.mb-call { background: var(--sun); }
  .site-footer { padding-bottom: 54px; }
}

/* bigger hero booking button */
.btn-big { padding: 22px 46px; font-size: 15px; }
