:root {
  --bg: #faf6ef;
  --bg-panel: #ffffff;
  --bg-panel-2: #f3ece1;
  --ink: #2a2420;
  --ink-soft: #5c5449;
  --ink-faint: #928a7a;
  --matcha: #6b7f52;
  --matcha-deep: #566642;
  --matcha-pale: #e8f2e1;
  --sakura: #c97b92;
  --sakura-deep: #a85c74;
  --sakura-pale: #f8e6ea;
  --line: rgba(42, 36, 32, 0.12);
  --line-strong: rgba(42, 36, 32, 0.22);
  --shadow-sm: 0 8px 20px rgba(42, 36, 32, 0.10);
  --shadow: 0 20px 40px rgba(42, 36, 32, 0.16);
  --display: "Playfair Display", Georgia, serif;
  --serif: "Shippori Mincho", "Hiragino Mincho ProN", "Iowan Old Style", Georgia, serif;
  --sans: "DM Sans", -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --r-lg: 22px;
  --r-md: 16px;
  --r-sm: 12px;
}
/* This page targets English-speaking inbound guests. Colors are held strictly to the
   sakura x matcha token set above; the Stripe/Google Form panels further down are the
   one deliberate exception, since they represent real external services and keep those
   services' own brand colors rather than ours. */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--sakura); color: #fff; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }

h1, h2 { font-family: var(--display); font-weight: 700; text-wrap: balance; margin: 0; letter-spacing: -0.01em; }
h3 { font-family: var(--serif); font-weight: 600; text-wrap: balance; margin: 0; }

.eyebrow {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint);
  display: flex; align-items: center; gap: 0.7em; font-weight: 500;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--sakura-deep); display: inline-block; }

p { color: var(--ink-soft); max-width: 62ch; }
.source-note { font-size: 11px; color: var(--ink-faint); margin-top: 18px; }

/* nav — minimal: serif wordmark + tracked-caps label + hamburger only */
header.site {
  position: sticky; top: 0; z-index: 30;
  background: color-mix(in srgb, var(--bg-panel) 88%, transparent);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: baseline; justify-content: space-between; padding: 20px clamp(20px, 5vw, 56px); }
.brand-mark { display: flex; align-items: baseline; gap: 10px; text-decoration: none; }
.brand-word { font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--ink); }
.brand-tag { font-size: 9.5px; letter-spacing: 0.22em; color: var(--ink-faint); }
.menu-btn {
  border: none; background: transparent; padding: 8px; margin: -8px; cursor: pointer; color: var(--ink);
  display: flex; align-items: center; border-radius: 999px;
}
.menu-btn:hover { background: var(--bg-panel-2); }

.nav-drawer {
  position: fixed; inset: 0; z-index: 50; visibility: hidden; opacity: 0;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  background: linear-gradient(150deg, var(--bg-panel) 0%, var(--matcha-pale) 120%);
}
.nav-drawer.open { visibility: visible; opacity: 1; }
.nav-drawer-blob {
  position: absolute; width: 360px; height: 360px; border-radius: 50%; filter: blur(60px); opacity: 0.7; pointer-events: none;
}
.nav-drawer-blob.a { top: -120px; right: -80px; background: var(--sakura-pale); }
.nav-drawer-blob.b { bottom: -140px; left: -100px; background: var(--matcha-pale); }
.drawer-inner { position: relative; height: 100%; display: flex; flex-direction: column; }
.drawer-top { display: flex; align-items: baseline; justify-content: space-between; padding: 20px clamp(20px, 5vw, 56px); }
.drawer-close {
  border: none; background: transparent; cursor: pointer; color: var(--ink); font-size: 18px; padding: 8px; margin: -8px;
  border-radius: 999px;
}
.drawer-close:hover { background: var(--bg-panel); }
.drawer-links {
  flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: 0 clamp(20px, 5vw, 56px);
}
.drawer-links a {
  font-family: var(--display); font-weight: 700; font-size: clamp(30px, 6vw, 46px); text-decoration: none; color: var(--ink);
  padding: 6px 0; transition: color 0.15s ease;
}
.drawer-links a:hover { color: var(--sakura-deep); }
.drawer-cta { margin: 0 clamp(20px, 5vw, 56px) clamp(28px, 6vw, 48px); }

section { padding: clamp(56px, 9vw, 104px) 0; }
.rule { height: 1px; background: var(--line); margin: 0; }

.btn {
  font-family: var(--sans); font-size: 13.5px; font-weight: 600; letter-spacing: 0.02em; padding: 15px 28px;
  border-radius: 999px; text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease; border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--matcha-deep); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { border-color: var(--sakura-deep); color: var(--sakura-deep); }

/* hero — mesh gradient + staggered offset photos */
.mesh-bg { position: relative; overflow: hidden; }
.mesh-blob { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }

.hero { background: linear-gradient(38deg, var(--bg-panel) 0%, var(--bg-panel-2) 100%); }
.hero .mesh-blob.a { top: -160px; right: -120px; width: 460px; height: 460px; background: var(--matcha-pale); opacity: 0.9; }
.hero .mesh-blob.b { bottom: -170px; right: 220px; width: 300px; height: 300px; background: var(--sakura-pale); opacity: 0.65; }
.hero .mesh-blob.c { top: 60px; left: -140px; width: 280px; height: 280px; background: var(--sakura-pale); opacity: 0.4; }
.hero-grid {
  position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 48px);
  align-items: center; padding-top: clamp(20px, 4vw, 40px);
}
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }
.rating-line { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink-soft); margin: 16px 0 18px; }
.rating-line .stars { color: var(--sakura-deep); letter-spacing: 1px; }
.hero h1 { font-size: clamp(36px, 5.4vw, 64px); line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 18px; max-width: 12ch; }
.hero .lede { font-size: 15px; line-height: 1.75; max-width: 42ch; margin: 0 0 8px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.hero-photos { position: relative; height: clamp(320px, 40vw, 440px); }
.hp { position: absolute; border-radius: var(--r-lg); object-fit: cover; box-shadow: var(--shadow); }
.hp-a { left: 4%; top: 0; width: 56%; height: 84%; }
.hp-b { right: 0; top: 20%; width: 40%; height: 58%; }
@media (max-width: 560px) { .hero-photos { height: clamp(260px, 66vw, 340px); } .hp-a { width: 60%; } .hp-b { width: 42%; } }

/* story — text hugs the left edge, photo bleeds off the right edge of the viewport;
   an asymmetric editorial layout in place of a contained, evenly-split column pair */
.story-section { overflow: hidden; }
.story-bleed { display: grid; grid-template-columns: minmax(300px, 1fr) minmax(220px, 360px); align-items: center; gap: clamp(30px, 6vw, 64px); }
@media (max-width: 860px) { .story-bleed { grid-template-columns: 1fr; } }
.story-bleed .lead-text { padding-left: clamp(20px, 5vw, 56px); max-width: 540px; }
@media (max-width: 860px) { .story-bleed .lead-text { padding: 0 clamp(20px, 5vw, 56px); max-width: none; } }
.lead-text h2 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 18px; line-height: 1.16; }
.lead-text p + p { margin-top: 12px; }
.visual-stack { position: relative; }
@media (max-width: 860px) { .visual-stack { padding: 0 clamp(20px, 5vw, 56px); } }
.visual-offset {
  position: absolute; top: -18px; left: -18px; width: 62%; height: 68%; background: var(--matcha-pale); border-radius: var(--r-md); z-index: 0;
}
@media (max-width: 560px) { .visual-offset { top: -14px; left: -14px; width: 55%; height: 60%; } }
.visual {
  position: relative; z-index: 1; height: clamp(220px, 26vw, 320px);
  border-radius: var(--r-lg) 0 0 var(--r-lg); overflow: hidden; box-shadow: var(--shadow);
}
@media (max-width: 860px) { .visual { height: auto; aspect-ratio: 5/4; border-radius: var(--r-lg); max-width: 420px; margin: 0 auto; } }
.visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

.section-head { font-size: clamp(26px, 3.4vw, 36px); margin-top: 14px; line-height: 1.16; }

/* steps — a light zigzag instead of a flush, uniform row */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 44px; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr 1fr; } }
.step { background: var(--bg-panel); border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px 22px 26px; box-shadow: var(--shadow-sm); }
.steps .step:nth-child(2n) { transform: translateY(-18px); }
@media (max-width: 760px) { .steps .step:nth-child(2n) { transform: none; } }
.step .num { font-family: var(--display); font-weight: 700; font-size: 34px; color: var(--sakura-deep); line-height: 1; }
.step h3 { font-size: 16.5px; margin: 14px 0 8px; }
.step p { font-size: 13px; margin: 0; }
.meta-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; }
.meta-pill { background: var(--bg-panel-2); border-radius: 999px; padding: 11px 22px; display: flex; flex-direction: column; gap: 2px; }
.meta-pill .k { font-size: 10px; letter-spacing: 0.12em; color: var(--ink-faint); text-transform: uppercase; }
.meta-pill .v { font-family: var(--display); font-weight: 700; font-size: 16px; }
.meta-pill .v span { font-family: var(--sans); font-weight: 400; font-size: 11px; color: var(--ink-faint); }

/* photo carousel */
.carousel { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--bg-panel); box-shadow: var(--shadow); margin-top: 46px; }
.carousel-track { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.carousel-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s ease; }
.carousel-slide.active { opacity: 1; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel-slide .ph-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 20px 14px;
  font-size: 12px; letter-spacing: 0.02em; color: #fff; font-weight: 500;
  background: linear-gradient(0deg, rgba(0,0,0,0.6), transparent);
}
.carousel-nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; }
.carousel-dots { display: flex; gap: 7px; }
.carousel-dots button { width: 7px; height: 7px; border-radius: 50%; border: none; background: var(--line-strong); padding: 0; cursor: pointer; }
.carousel-dots button.active { background: var(--sakura-deep); }
.carousel-arrows { display: flex; gap: 8px; }
.carousel-arrows button {
  width: 32px; height: 32px; border: 1px solid var(--line-strong); background: var(--bg-panel); border-radius: 999px; cursor: pointer; color: var(--ink);
}
.carousel-arrows button:hover { background: var(--matcha-pale); border-color: var(--matcha-deep); }
.carousel-note { font-size: 11px; color: var(--ink-faint); margin-top: 12px; }

/* reviews */
.review-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 22px; }
.review-scores { display: flex; gap: 12px; flex-wrap: wrap; }
.review-score { background: var(--bg-panel-2); border-radius: var(--r-md); padding: 14px 22px; }
.review-score .src { font-size: 10.5px; letter-spacing: 0.1em; color: var(--ink-faint); text-transform: uppercase; }
.review-score .num { font-family: var(--display); font-weight: 700; font-size: 22px; margin-top: 3px; }
.review-score .num .stars { color: var(--sakura-deep); font-size: 12px; letter-spacing: 1px; margin-left: 6px; }
.review-score .count { font-size: 11px; color: var(--ink-faint); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 16px; }
@media (max-width: 760px) { .review-grid { grid-template-columns: 1fr; } }
.review-card { background: var(--bg-panel); border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px 22px 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 10px; }
.review-grid .review-card:nth-child(3n+2) { margin-top: 26px; }
@media (max-width: 760px) { .review-grid .review-card:nth-child(3n+2) { margin-top: 0; } }
.review-src-row { display: flex; align-items: center; justify-content: space-between; }
.review-src { font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; padding: 4px 11px; border-radius: 999px; }
.review-src.google { background: var(--matcha-pale); color: var(--matcha-deep); }
.review-src.gyg { background: var(--sakura-pale); color: var(--sakura-deep); }
.review-stars { color: var(--sakura-deep); font-size: 11px; letter-spacing: 1px; }
.review-body { font-size: 13.5px; color: var(--ink-soft); margin: 0; }
.review-who { font-size: 11px; color: var(--ink-faint); }
.review-photo { width: 100%; aspect-ratio: 16/9; background: var(--matcha-pale); border-radius: var(--r-sm); }

/* availability + flow */
.avail-section {
  position: relative; overflow: hidden;
  background: linear-gradient(155deg, var(--bg-panel-2) 0%, var(--sakura-pale) 130%);
}
.avail-section .mesh-blob.a { top: -180px; left: -140px; width: 420px; height: 420px; background: var(--matcha-pale); opacity: 0.85; }
.avail-section .mesh-blob.b { bottom: -160px; right: -120px; width: 360px; height: 360px; background: var(--bg-panel); opacity: 0.55; }
.avail-head { position: relative; }
.avail-head h2 { font-size: clamp(26px, 3.4vw, 36px); margin: 14px 0 12px; line-height: 1.16; }
.avail-head { max-width: 56ch; }

/* two asymmetric columns instead of one stacked column: calendar (narrower, fixed)
   beside the reserve flow (wider, flexible) */
.avail-layout { display: grid; grid-template-columns: minmax(300px, 400px) 1fr; align-items: start; gap: clamp(28px, 4vw, 56px); margin-top: 30px; }
@media (max-width: 960px) { .avail-layout { grid-template-columns: 1fr; } }

.widget-frame {
  position: relative; border-radius: var(--r-lg); background: var(--bg-panel); box-shadow: var(--shadow);
  padding: clamp(22px, 3.4vw, 32px); margin-top: 10px;
}
.widget-frame .cal-mock { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; margin-top: 16px; }
.widget-frame .cal-mock .d {
  aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-radius: var(--r-sm); color: var(--ink-faint); gap: 1px;
}
.widget-frame .cal-mock .d .dnum { font-size: 12px; }
.widget-frame .cal-mock .d .dseats { font-size: 9.5px; font-variant-numeric: tabular-nums; letter-spacing: 0.02em; }
.widget-frame .cal-mock .d.avail { background: var(--matcha-pale); color: var(--matcha-deep); cursor: pointer; }
.widget-frame .cal-mock .d.avail:hover { background: color-mix(in srgb, var(--matcha-pale) 60%, var(--matcha-deep) 40%); }
.widget-frame .cal-mock .d.avail.selected { background: var(--matcha-deep); color: #fff; }
.widget-frame .cal-mock .d.off { background: var(--sakura-pale); color: var(--sakura-deep); cursor: not-allowed; }
.widget-frame .cal-mock .d.off .dnum { text-decoration: line-through; }
.widget-frame .cal-mock .d.past { background: var(--bg-panel-2); color: var(--ink-faint); opacity: 0.5; cursor: not-allowed; }
.widget-legend { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 16px; font-size: 11px; color: var(--ink-faint); }
.widget-legend span { display: inline-flex; align-items: center; gap: 6px; }
.widget-legend i { width: 9px; height: 9px; border-radius: 3px; display: inline-block; }
.widget-legend .lg-open { background: var(--matcha-pale); border: 1px solid var(--matcha-deep); }
.widget-legend .lg-closed { background: var(--sakura-pale); border: 1px solid var(--sakura-deep); }
.cal-month-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.cal-month-head h4 { font-family: var(--display); font-weight: 700; font-size: 17px; margin: 0; }
.cal-month-head .cal-nav { display: flex; gap: 6px; }
.cal-month-head button {
  width: 30px; height: 30px; border: 1px solid var(--line-strong); background: var(--bg-panel); border-radius: 999px;
  cursor: pointer; font-size: 14px; color: var(--ink-soft); line-height: 1;
}
.cal-month-head button:disabled { opacity: 0.3; cursor: not-allowed; }
.cal-month-head button:not(:disabled):hover { background: var(--matcha-pale); border-color: var(--matcha-deep); }
.widget-caption { font-size: 11px; color: var(--ink-faint); margin-top: 12px; }
.slot-panel { margin-top: 18px; border-top: 1px solid var(--line); padding-top: 18px; }
.slot-panel .empty { font-size: 12.5px; color: var(--ink-faint); }
.slot-panel h5 { font-family: var(--display); font-weight: 700; font-size: 15px; margin: 0 0 12px; }
.slot-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(122px, 1fr)); gap: 9px; }
.slot-row { border-radius: var(--r-sm); padding: 9px 12px; font-size: 12.5px; display: flex; flex-direction: column; gap: 2px; border: 1px solid transparent; }
.slot-row.open { background: var(--matcha-pale); color: var(--matcha-deep); border-color: var(--matcha-deep); }
.slot-row.full { background: var(--sakura-pale); color: var(--sakura-deep); opacity: 0.75; }
.slot-row .t { font-weight: 700; }
.disclaimer {
  position: relative; margin-top: 18px; padding: 14px 18px; border-radius: var(--r-sm);
  background: var(--bg-panel); box-shadow: var(--shadow-sm); font-size: 12.5px; color: var(--ink-soft);
  border-left: 3px solid var(--sakura-deep);
}

.flow { position: relative; margin-top: 0; }
.flow-steps { display: flex; gap: 0; margin-bottom: 26px; }
.flow-step { flex: 1; text-align: center; position: relative; padding: 0 8px; }
.flow-step .fs-num {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line-strong); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 8px; font-family: var(--display); font-weight: 700; font-size: 13px; background: var(--bg-panel); color: var(--ink-faint); transition: all 0.2s ease;
}
.flow-step.done .fs-num { background: var(--matcha-deep); border-color: var(--matcha-deep); color: #fff; }
.flow-step .fs-label { font-size: 12px; color: var(--ink-soft); }
.flow-step:not(:last-child)::after {
  content: ""; position: absolute; top: 16px; left: 60%; width: 80%; height: 1px; background: var(--line-strong); z-index: -1;
}

.guest-picker { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
@media (max-width: 560px) { .guest-picker { grid-template-columns: repeat(2, 1fr); } }
.guest-picker button {
  border: 1px solid var(--line-strong); background: var(--bg-panel); padding: 13px 14px; border-radius: var(--r-md); cursor: pointer;
  font-size: 12.5px; color: var(--ink); text-align: left; transition: all 0.15s ease;
}
.guest-picker button:hover { border-color: var(--matcha-deep); }
.guest-picker button .amt { display: block; font-family: var(--display); font-weight: 700; font-size: 16px; margin-top: 4px; color: var(--matcha-deep); }
.guest-picker button.chosen { border-color: var(--matcha-deep); background: var(--matcha-pale); }

.flow-panel { display: none; margin-top: 24px; border-radius: var(--r-lg); background: var(--bg-panel); box-shadow: var(--shadow); padding: clamp(20px, 3vw, 28px); }
.flow-panel.show { display: block; }
.flow-panel h4 { font-family: var(--display); font-weight: 700; font-size: 17px; margin: 0 0 12px; }
.flow-panel .stripe-row { display: flex; align-items: center; justify-content: space-between; background: var(--bg-panel-2); border-radius: var(--r-sm); padding: 13px 16px; margin-bottom: 16px; }
.flow-panel .stripe-row .amt { font-family: var(--display); font-weight: 700; font-size: 19px; }
.locked-field { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 12px; border-radius: var(--r-sm); padding: 10px 14px; background: var(--matcha-pale); color: var(--matcha-deep); margin-bottom: 10px; }
.locked-field b { font-weight: 700; font-variant-numeric: tabular-nums; }

/* "this is a real, external checkout page" — deliberately kept in Stripe's own product
   colors, not our sakura/matcha palette, since clicking Pay is a real full-page redirect
   to Stripe's own hosted checkout, not a panel we've designed. */
.stripe-frame { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); display: none; }
.stripe-frame.show { display: block; }
.stripe-body { background: #fff; font-family: -apple-system, "Segoe UI", Arial, sans-serif; display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .stripe-body { grid-template-columns: 1fr; } }
.stripe-summary { background: #f6f8fa; padding: 32px clamp(20px, 4vw, 40px); border-right: 1px solid #e6e9ec; }
@media (max-width: 640px) { .stripe-summary { border-right: none; border-bottom: 1px solid #e6e9ec; } }
.stripe-summary .brand { font-size: 13px; color: #697386; margin-bottom: 22px; }
.stripe-summary .line { display: flex; justify-content: space-between; font-size: 13.5px; color: #30313d; padding: 10px 0; border-bottom: 1px solid #e6e9ec; }
.stripe-summary .total { display: flex; justify-content: space-between; font-size: 20px; color: #30313d; padding: 16px 0 0; font-weight: 600; }
.stripe-pay { padding: 32px clamp(20px, 4vw, 40px); }
.stripe-field-label { font-size: 12px; color: #30313d; margin: 14px 0 5px; font-weight: 500; }
.stripe-field-label:first-child { margin-top: 0; }
.stripe-input { border: 1px solid #e6e9ec; border-radius: 5px; padding: 10px 12px; font-size: 13.5px; color: #30313d; background: #fff; }
.stripe-input.placeholder { color: #a3acb9; }
.stripe-card-row { display: grid; grid-template-columns: 1fr 70px 60px; gap: 8px; }
.stripe-card-row .stripe-input:not(:first-child) { text-align: center; }
.stripe-pay-btn { width: 100%; background: #635bff; color: #fff; border: none; border-radius: 999px; padding: 13px; font-size: 15px; font-weight: 600; margin-top: 22px; cursor: pointer; }
.stripe-pay-btn:hover { background: #564fe0; }
.stripe-secured { display: flex; align-items: center; gap: 6px; justify-content: center; margin-top: 16px; font-size: 11.5px; color: #8792a2; }

/* "this is a real, external Google Form" — same reasoning: kept in Google's own look. */
.gform-frame { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.gform-chrome { background: #e8eaed; padding: 8px 12px; display: flex; align-items: center; gap: 8px; }
.gform-chrome .dots { display: flex; gap: 5px; }
.gform-chrome .dots i { width: 8px; height: 8px; border-radius: 50%; background: #c4c7c5; display: inline-block; }
.gform-chrome .url { flex: 1; background: #fff; border-radius: 12px; padding: 4px 12px; font-size: 11px; color: #5f6368; font-family: Arial, sans-serif; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.gform-body { background: #f0ebf8; padding: 20px clamp(14px, 3vw, 28px) 32px; font-family: Arial, sans-serif; }
.gform-card { max-width: 640px; margin: 0 auto; background: #fff; border-radius: 8px; box-shadow: 0 1px 3px rgba(60,64,67,0.15); overflow: hidden; }
.gform-header { border-top: 10px solid #673ab7; padding: 20px 24px; border-bottom: 1px solid #e0e0e0; }
.gform-header h5 { margin: 0 0 6px; font-size: 20px; color: #202124; font-weight: 400; font-family: Arial, sans-serif; }
.gform-header p { margin: 0; font-size: 13px; color: #5f6368; max-width: none; }
.gform-q { padding: 18px 24px; border-bottom: 1px solid #e9e9e9; }
.gform-q label { display: block; font-size: 13.5px; color: #202124; margin-bottom: 10px; }
.gform-q label .req { color: #d93025; margin-left: 2px; }
.gform-input { border: none; border-bottom: 1px solid #dadce0; padding: 4px 0; font-size: 13px; color: #202124; min-height: 18px; }
.gform-input.prefill { color: #5f6368; background: repeating-linear-gradient(45deg, #fafafa, #fafafa 6px, #f3f3f3 6px, #f3f3f3 12px); padding: 6px 8px; border: 1px dashed #dadce0; border-radius: 3px; font-family: monospace; font-size: 11.5px; }
.gform-radio { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #202124; margin-top: 6px; }
.gform-radio i { width: 16px; height: 16px; border: 1.5px solid #5f6368; border-radius: 50%; display: inline-block; }
.gform-submit-row { padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; }
.gform-submit-row button { background: #673ab7; color: #fff; border: none; border-radius: 4px; padding: 9px 22px; font-size: 13px; cursor: not-allowed; opacity: 0.9; }
.gform-note { font-size: 10.5px; color: #5f6368; padding: 0 24px 16px; }

/* access / faq */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); }
@media (max-width: 760px) { .info-grid { grid-template-columns: 1fr; } }
.info-grid h3 { font-size: 18px; margin-bottom: 16px; }
dl.facts { margin: 0; }
dl.facts div { display: flex; gap: 14px; padding: 12px 0; border-top: 1px solid var(--line); font-size: 13px; }
dl.facts div:last-child { border-bottom: 1px solid var(--line); }
dl.facts dt { width: 84px; flex-shrink: 0; color: var(--ink-faint); font-size: 11px; padding-top: 2px; }
dl.facts dd { margin: 0; color: var(--ink-soft); }
.map-frame { margin-top: 20px; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); height: clamp(220px, 26vw, 300px); }
.map-frame iframe { display: block; width: 100%; height: 100%; }
.faq-item { padding: 16px 0; border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { font-family: var(--serif); font-size: 14.5px; font-weight: 600; margin-bottom: 6px; }
.faq-a { font-size: 13px; margin: 0; }

footer.site { padding: 44px 0 40px; border-top: 1px solid var(--line); }
.foot-row { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 18px; }
.foot-brand { font-family: var(--serif); font-size: 16px; letter-spacing: 0.08em; color: var(--matcha-deep); }
.foot-meta { font-size: 11px; color: var(--ink-faint); text-align: right; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
