/* Komorebi Cafe demo — visual system inspired by warm retail-flagship cafe design.
   Four-tier green palette, cream canvas, 12px cards, 50px pill buttons, whisper shadows. */

:root {
  --green: #006241;          /* brand headings */
  --green-accent: #00754A;   /* filled CTA */
  --house: #1E3932;          /* dark bands, footer */
  --uplift: #2b5148;         /* decorative mid-dark */
  --mint: #d4e9e2;           /* pale green wash */
  --cream: #f2f0eb;          /* page canvas */
  --ceramic: #edebe9;        /* zone separator wash */
  --white: #ffffff;
  --ink: rgba(0, 0, 0, 0.87);
  --ink-soft: rgba(0, 0, 0, 0.58);
  --white-soft: rgba(255, 255, 255, 0.7);
  --input-border: #d6dbde;
  --hairline: #e7e7e7;
  --card-radius: 12px;
  --pill: 50px;
  --card-shadow: 0 0 0.5px rgba(0, 0, 0, 0.14), 0 1px 1px rgba(0, 0, 0, 0.24);
  --nav-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.06), 0 0 2px rgba(0, 0, 0, 0.07);
  --frap-shadow: 0 0 6px rgba(0, 0, 0, 0.24), 0 8px 12px rgba(0, 0, 0, 0.14);
  --font-sans: "Manrope", "Noto Sans JP", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; letter-spacing: inherit; cursor: pointer; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 40px; } }

section { scroll-margin-top: 88px; }

/* ---------- typography helpers ---------- */

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.16px;
  color: var(--green);
}
@media (min-width: 768px) { .section-title { font-size: 36px; } }

.section-lead {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 16px auto 0;
}

.section-head { text-align: center; margin-bottom: 48px; }
@media (min-width: 768px) { .section-head { margin-bottom: 64px; } }

/* ---------- buttons: universal 50px pill + scale(0.95) press ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--pill);
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  padding: 12px 24px;
  transition: all 0.2s ease;
}
.btn:active { transform: scale(0.95); }

.btn-primary { background: var(--green-accent); border-color: var(--green-accent); color: #fff; }
.btn-primary:hover { background: #008248; border-color: #008248; }

.btn-outline { background: transparent; border-color: var(--green-accent); color: var(--green-accent); }
.btn-outline:hover { background: rgba(0, 117, 74, 0.06); }

.btn-black { background: #000; border-color: #000; color: #fff; font-size: 14px; padding: 8px 16px; }
.btn-black:hover { background: rgba(0, 0, 0, 0.8); }

.btn-white { background: #fff; border-color: #fff; color: var(--green-accent); }
.btn-white:hover { background: var(--mint); border-color: var(--mint); }

.btn-outline-light { background: transparent; border-color: #fff; color: #fff; }
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.1); }

.btn-block { width: 100%; padding: 16px 32px; font-size: 16px; }

/* ---------- header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: var(--nav-shadow);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 768px) { .header-bar { height: 80px; } }

.brand { display: flex; align-items: center; gap: 10px; }
.brand svg { color: var(--green); }
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name .en {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.16px;
  color: var(--ink);
}
.brand-name .sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--green-accent);
  margin-top: 4px;
}

.main-nav { display: none; }
@media (min-width: 1024px) {
  .main-nav { display: flex; align-items: center; gap: 32px; }
}
.main-nav > a:not(.btn) {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s ease;
}
.main-nav > a:not(.btn):hover { color: var(--green-accent); }

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: none;
  border: 0;
  color: var(--ink);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.mobile-nav { border-top: 1px solid var(--hairline); padding: 8px 0 16px; }
.mobile-nav nav { display: flex; flex-direction: column; }
.mobile-nav a:not(.btn) {
  padding: 12px 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.mobile-nav .btn { margin-top: 8px; }
.hidden { display: none !important; }

/* ---------- hero ---------- */

.hero { padding-top: 64px; background: var(--cream); }
@media (min-width: 768px) { .hero { padding-top: 80px; } }

.hero-inner { display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 11fr 9fr; min-height: 560px; }
  .hero-content { order: 1; }
  .hero-media { order: 2; }
}

.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  max-height: 420px;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .hero-media img { max-height: none; height: 100%; }
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 16px 48px;
}
@media (min-width: 768px) { .hero-content { padding: 56px 24px; } }
@media (min-width: 1024px) { .hero-content { padding: 64px 48px 64px 40px; } }
@media (min-width: 1280px) { .hero-content { padding-left: calc((100vw - 1200px) / 2 + 40px); } }

.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.16px;
  color: var(--green);
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; }
@media (min-width: 768px) { .hero h1 { font-size: 48px; } }
@media (min-width: 1280px) { .hero h1 { font-size: 54px; } }

.hero-lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 32px;
}
@media (min-width: 768px) { .hero-lead { font-size: 18px; } }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-actions .btn { min-width: 180px; }

/* stats band (dark-green bookend) */
.hero-stats { background: var(--house); color: #fff; }
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
  padding: 24px 0;
}
.hero-stats .stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-soft);
  margin-bottom: 6px;
}
.hero-stats .stat-value { font-size: 24px; font-weight: 700; letter-spacing: -0.16px; }
.hero-stats .stat-unit { font-size: 12px; font-weight: 400; color: var(--white-soft); margin-left: 2px; }

/* ---------- section washes ---------- */

.section { padding: 64px 0; }
@media (min-width: 768px) { .section { padding: 96px 0; } }
.wash-white { background: var(--white); }
.wash-ceramic { background: var(--ceramic); }

/* ---------- concept cards ---------- */

.concept-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .concept-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }

.concept-card {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 28px 24px;
}
@media (min-width: 768px) { .concept-card { padding: 36px 32px; } }

.concept-top { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.concept-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  flex-shrink: 0;
}
.concept-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--green-accent);
  border: 1px solid var(--green-accent);
  border-radius: var(--pill);
  padding: 3px 12px;
}
.concept-card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.16px;
  color: var(--ink);
  margin-bottom: 10px;
}
.concept-card p { font-size: 15px; color: var(--ink-soft); }

/* ---------- menu cards ---------- */

.menu-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 900px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }

.menu-card {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.menu-card-media { aspect-ratio: 4 / 3; overflow: hidden; }
.menu-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.menu-card:hover .menu-card-media img { transform: scale(1.05); }

.menu-card-body { display: flex; flex-direction: column; flex: 1; padding: 24px; }
.menu-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.menu-card-meta .slot {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-accent);
}
.menu-card-meta .when {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-soft);
}
.menu-card h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.16px; margin-bottom: 4px; }
.menu-card .hours-note { font-size: 12px; font-weight: 600; color: var(--green); margin-bottom: 14px; }
.menu-card .desc { font-size: 14px; color: var(--ink-soft); flex: 1; margin-bottom: 18px; }

.tag-list { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.tag-list li {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  background: var(--mint);
  border-radius: var(--pill);
  padding: 4px 12px;
}
.menu-card-foot {
  border-top: 1px solid var(--hairline);
  padding-top: 16px;
}
.price { font-size: 26px; font-weight: 700; letter-spacing: -0.16px; color: var(--green); }

.menu-note { margin-top: 40px; text-align: center; font-size: 13px; color: var(--ink-soft); }

/* ---------- seasonal gallery (physical-card tiles) ---------- */

.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 900px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }

.gallery-card {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}
.gallery-card.feature { grid-column: span 2; grid-row: span 2; }
.gallery-media { aspect-ratio: 1 / 1; overflow: hidden; }
.gallery-card.feature .gallery-media { height: calc(100% - 58px); aspect-ratio: auto; }
.gallery-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.gallery-card:hover .gallery-media img { transform: scale(1.05); }
.gallery-caption { padding: 10px 14px 12px; }
.gallery-caption .cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-accent);
}
.gallery-caption .name { font-size: 13px; font-weight: 600; color: var(--ink); margin-top: 2px; }
@media (min-width: 900px) {
  .gallery-caption { padding: 12px 16px 14px; }
  .gallery-caption .name { font-size: 14px; }
}

/* ---------- staff ---------- */

.staff-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 900px) { .staff-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

.staff-card {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}
.staff-media { aspect-ratio: 3 / 4; overflow: hidden; position: relative; }
.staff-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.staff-card:hover .staff-media img { transform: scale(1.05); }
.staff-badge {
  position: absolute;
  left: 12px; bottom: 12px;
  background: var(--house);
  color: #fff;
  border-radius: var(--pill);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.staff-body { padding: 24px; }
.staff-en {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 6px;
}
.staff-body h3 { font-size: 21px; font-weight: 700; letter-spacing: -0.16px; }
.staff-role { font-size: 13px; font-weight: 600; color: var(--green); margin: 2px 0 14px; }
.staff-bio { font-size: 14px; color: var(--ink-soft); margin-bottom: 20px; }

.staff-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  border-top: 1px solid var(--hairline);
  padding-top: 16px;
}
.staff-stats > div:nth-child(2) { border-left: 1px solid var(--hairline); border-right: 1px solid var(--hairline); }
.staff-stats dt { font-size: 10px; letter-spacing: 0.1em; color: var(--ink-soft); margin-bottom: 4px; min-height: 15px; }
.staff-stats dd { font-size: 18px; font-weight: 700; color: var(--ink); }
.staff-stats dd span { font-size: 11px; font-weight: 400; color: var(--ink-soft); }

/* ---------- hours + notice band ---------- */

.hours-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
@media (min-width: 1024px) { .hours-grid { grid-template-columns: 3fr 2fr; gap: 40px; } }

.hours-card {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}
.hours-card table { width: 100%; border-collapse: collapse; font-size: 14px; }
.hours-card thead { background: var(--mint); color: var(--green); }
.hours-card th {
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 12px 16px;
}
.hours-card th:last-child { text-align: right; }
.hours-card td { padding: 12px 16px; border-top: 1px solid var(--hairline); }
.hours-card td:first-child { font-weight: 700; }
.hours-card td:last-child { text-align: right; font-size: 12px; color: var(--ink-soft); }
.col-note { display: none; }
@media (min-width: 640px) { .col-note { display: table-cell; } }

.hours-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-accent);
}
.hours-link:hover { text-decoration: underline; }

.notice-panel {
  background: var(--house);
  color: #fff;
  border-radius: var(--card-radius);
  padding: 28px;
}
.notice-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white-soft);
  margin-bottom: 14px;
}
.notice-panel h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.16px; margin-bottom: 12px; }
.notice-panel p { font-size: 14px; color: var(--white-soft); margin-bottom: 20px; }
.notice-tel {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--card-radius);
  padding: 14px 18px;
  transition: background 0.2s ease;
}
.notice-tel:hover { background: rgba(255, 255, 255, 0.1); }
.notice-tel .tel-label { font-size: 10px; letter-spacing: 0.2em; color: var(--white-soft); margin-bottom: 4px; }
.notice-tel .tel-number { font-size: 22px; font-weight: 700; letter-spacing: -0.16px; }

/* ---------- voices ---------- */

.voice-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 900px) { .voice-grid { grid-template-columns: repeat(3, 1fr); } }

.voice-card {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.voice-stars { display: flex; gap: 2px; color: var(--green-accent); margin-bottom: 16px; }
.voice-card h3 { font-size: 16px; font-weight: 700; letter-spacing: -0.16px; margin-bottom: 12px; }
.voice-card .quote { font-size: 14px; color: var(--ink-soft); flex: 1; margin-bottom: 20px; }
.voice-person {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--hairline);
  padding-top: 18px;
}
.voice-person img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.voice-person .who { font-size: 14px; font-weight: 700; }
.voice-person .meta { font-size: 11px; color: var(--ink-soft); }
.voice-person .visits { font-size: 11px; font-weight: 600; color: var(--green-accent); margin-top: 2px; }

/* ---------- FAQ ---------- */

.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { display: flex; align-items: baseline; gap: 12px; }
.faq-q .q-mark { font-size: 16px; font-weight: 800; color: var(--green); }
.faq-q .q-text { font-size: 15px; font-weight: 600; }
.faq-chevron { color: var(--green-accent); flex-shrink: 0; transition: transform 0.3s var(--ease-out); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-a {
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-top: 1px solid var(--hairline);
  margin: 0 24px;
  padding: 16px 0 22px;
}
.faq-a .a-mark { font-size: 16px; font-weight: 800; color: var(--green-accent); }
.faq-a p { font-size: 14px; color: var(--ink-soft); }

/* ---------- access ---------- */

.access-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 1024px) { .access-grid { grid-template-columns: 3fr 2fr; gap: 40px; } }

.map-card {
  background: var(--mint);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.map-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green-accent);
  color: #fff;
  box-shadow: var(--frap-shadow);
  margin-bottom: 16px;
}
.map-card h3 { font-size: 18px; font-weight: 700; color: var(--green); margin-bottom: 4px; }
.map-card .addr { font-size: 13px; color: var(--ink-soft); margin-bottom: 12px; }
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-accent);
}
.map-link:hover { text-decoration: underline; }

.access-info { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 20px;
}
.info-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--green-accent);
  margin-bottom: 10px;
}
.info-card p { font-size: 14px; }
.route-row { padding: 14px 0; border-top: 1px solid var(--hairline); }
.route-row:first-of-type { border-top: 0; padding-top: 4px; }
.route-row .station { font-size: 12px; color: var(--ink-soft); margin-bottom: 2px; }
.route-line { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.route-line .line { font-size: 14px; }
.route-line .time { font-size: 14px; font-weight: 700; color: var(--green); white-space: nowrap; }

/* ---------- reservation ---------- */

.reserve-card {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 24px;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 768px) { .reserve-card { padding: 40px; } }

.step-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.step-label .step-icon { color: var(--green-accent); display: inline-flex; }
.step-label span { font-size: 17px; font-weight: 700; letter-spacing: -0.16px; }

.date-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-bottom: 32px; }
@media (min-width: 640px) { .date-grid { gap: 8px; } }

.date-btn {
  background: var(--white);
  border: 1px solid var(--input-border);
  border-radius: var(--card-radius);
  padding: 10px 2px;
  text-align: center;
  transition: all 0.2s ease;
}
.date-btn .dow { font-size: 10px; color: var(--ink-soft); margin-bottom: 2px; }
.date-btn .day { font-size: 19px; font-weight: 700; letter-spacing: -0.16px; }
.date-btn .avail { font-size: 9px; color: var(--green-accent); margin-top: 3px; letter-spacing: -0.05em; }
.date-btn:not(.disabled):hover { border-color: var(--green-accent); }
.date-btn:not(.disabled):active { transform: scale(0.95); }
.date-btn.selected {
  border: 2px solid var(--green-accent);
  background: var(--mint);
  padding: 9px 1px;
}
.date-btn.disabled { opacity: 0.45; cursor: not-allowed; }
.date-btn.disabled .avail { color: var(--ink-soft); }

.time-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 32px; }
@media (min-width: 640px) { .time-grid { grid-template-columns: repeat(7, 1fr); gap: 8px; } }

.time-btn {
  background: var(--white);
  border: 1px solid var(--input-border);
  border-radius: var(--pill);
  padding: 10px 4px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.time-btn:not(.disabled):hover { border-color: var(--green-accent); color: var(--green-accent); }
.time-btn:not(.disabled):active { transform: scale(0.95); }
.time-btn.selected {
  border: 2px solid var(--green-accent);
  background: var(--mint);
  color: var(--green);
  padding: 9px 3px;
}
.time-btn.disabled { opacity: 0.45; cursor: not-allowed; text-decoration: line-through; }

.reserve-form { border-top: 1px solid var(--hairline); padding-top: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .span-2 { grid-column: span 2; }
}
.field { display: block; }
.field-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.field-label .req { color: #c82014; }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--input-border);
  border-radius: 4px;
  padding: 12px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field textarea { resize: none; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-accent);
  background: rgba(212, 233, 226, 0.33);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--ink-soft);
  margin: 20px 0 24px;
}
.consent input { margin-top: 2px; accent-color: var(--green-accent); }
.consent a { color: var(--green-accent); font-weight: 600; text-decoration: underline; }

.reserve-success { text-align: center; padding: 48px 0; }
.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  margin-bottom: 24px;
}
.reserve-success h3 { font-size: 22px; font-weight: 700; color: var(--green); margin-bottom: 12px; }
.reserve-success p { font-size: 14px; color: var(--ink-soft); }

.contact-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 760px;
  margin: 32px auto 0;
}
@media (min-width: 640px) { .contact-row { grid-template-columns: repeat(3, 1fr); } }
.contact-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--input-border);
  border-radius: var(--pill);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.contact-pill:hover { border-color: var(--green-accent); color: var(--green-accent); }
.contact-pill:active { transform: scale(0.95); }

/* ---------- footer ---------- */

.site-footer {
  background: var(--house);
  color: var(--white-soft);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px; }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr; } }

.footer-brand .brand-name .en { color: #fff; }
.footer-brand .brand-name .sub { color: var(--mint); }
.footer-brand svg { color: var(--mint); }
.footer-brand p { font-size: 14px; margin-top: 16px; }

.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white-soft);
  transition: all 0.2s ease;
}
.footer-social a:hover { border-color: #fff; color: #fff; }

.footer-col h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-col a { transition: color 0.2s ease; }
.footer-col a:hover { color: #fff; }
.footer-col .with-icon { display: flex; align-items: flex-start; gap: 10px; }
.footer-col .with-icon svg { flex-shrink: 0; margin-top: 2px; color: var(--mint); }
.footer-col .small { font-size: 11px; display: block; margin-top: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom .wordmark { font-weight: 700; letter-spacing: 0.2em; }

/* ---------- floating CTA (signature elevated pill) ---------- */

.floating-cta {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 56px;
  padding: 0 24px;
  background: var(--green-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: var(--pill);
  box-shadow: var(--frap-shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
}
.floating-cta.show { opacity: 1; transform: none; pointer-events: auto; }
.floating-cta:active {
  transform: scale(0.95);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.24), 0 8px 12px rgba(0, 0, 0, 0);
}

/* ---------- legal pages ---------- */

.legal-main { padding: 112px 0 80px; }
.legal-wrap { max-width: 760px; margin: 0 auto; }
.legal-head { text-align: center; margin-bottom: 40px; }
.legal-title { font-size: 28px; font-weight: 600; letter-spacing: -0.16px; color: var(--green); }
@media (min-width: 768px) { .legal-title { font-size: 34px; } }

.legal-card {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 28px 24px;
}
@media (min-width: 768px) { .legal-card { padding: 40px; } }

.legal-card section + section,
.legal-card > p + section { margin-top: 28px; }
.legal-card h2 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.16px;
  color: var(--green);
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
  margin-bottom: 10px;
}
.legal-card p, .legal-card li { font-size: 14px; color: var(--ink-soft); }
.legal-card ul { list-style: disc; padding-left: 24px; display: flex; flex-direction: column; gap: 4px; }
.legal-updated { font-size: 12px; color: var(--ink-soft); margin-top: 24px; }

.legal-dl > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 16px 0;
  border-top: 1px solid var(--hairline);
}
.legal-dl > div:first-child { border-top: 0; padding-top: 0; }
@media (min-width: 640px) { .legal-dl > div { grid-template-columns: 1fr 2.5fr; gap: 16px; } }
.legal-dl dt { font-size: 14px; font-weight: 700; color: var(--green); }
.legal-dl dd { font-size: 14px; color: var(--ink-soft); }

/* ---------- reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .floating-cta { transition: none; }
}
