/* Lueur Beaute demo — visual system inspired by photography-first discovery design.
   Single saturated red CTA, warm-cream chrome, 16px/32px two-radius vocabulary,
   masonry pin grid, pill chips, no card shadows. Fonts: Inter + Noto Sans JP. */

:root {
  --red: #e60023;            /* the only saturated accent: CTA / wordmark */
  --red-pressed: #cc001f;
  --ink: #000000;
  --body: #33332e;
  --charcoal: #262622;
  --mute: #62625b;
  --ash: #91918c;
  --stone: #c8c8c1;
  --hairline: #dadad3;
  --hairline-soft: #e5e5e0;
  --canvas: #ffffff;
  --surface-soft: #fbfbf9;   /* page wash */
  --surface-card: #f6f6f3;   /* cream card / chip fill */
  --secondary-bg: #e5e5e0;
  --secondary-pressed: #c8c8c1;
  --surface-dark: #262622;
  --on-dark: #ffffff;
  --on-dark-mute: rgba(255, 255, 255, 0.7);
  --accent-purple: #7e238b;  /* sparse editorial accent (stars, hero em) */
  --focus-outer: #435ee5;
  --r-md: 16px;
  --r-lg: 32px;
  --r-full: 9999px;
  --font-sans: "Inter", "Noto Sans JP", -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.4;
  color: var(--body);
  background: var(--surface-soft);
  -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; cursor: pointer; border: none; background: none; color: inherit; }

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

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

:is(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--focus-outer);
  outline-offset: 2px;
  border-radius: var(--r-md);
}

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

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 12px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1.2px;
  color: var(--ink);
}
@media (min-width: 768px) { .section-title { font-size: 36px; } }

.section-lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--mute);
  max-width: 620px;
  margin: 16px auto 0;
}

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

.section { padding: 48px 0; }
@media (min-width: 768px) { .section { padding: 64px 0; } }
@media (min-width: 1024px) { .section { padding: 80px 0; } }

.section-cream { background: var(--surface-card); }
.section-white { background: var(--canvas); }

/* ---------- buttons & chips ---------- */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 20px;
  background: var(--red);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  border-radius: var(--r-md);
  transition: background 0.15s ease;
}
.btn-primary:hover, .btn-primary:active { background: var(--red-pressed); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 20px;
  background: var(--secondary-bg);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  border-radius: var(--r-md);
  transition: background 0.15s ease;
}
.btn-secondary:hover, .btn-secondary:active { background: var(--secondary-pressed); }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--surface-card);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  border-radius: var(--r-full);
}
.chip-outline { background: var(--canvas); border: 1px solid var(--hairline); }

.pin-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: var(--canvas);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  border-radius: var(--r-full);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
}
@media (min-width: 1024px) { .header-inner { height: 72px; gap: 24px; } }

.brand { display: inline-flex; align-items: center; gap: 8px; color: var(--red); flex-shrink: 0; }
.brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.4px;
  white-space: nowrap;
}
.brand-sub {
  display: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--mute);
  margin-left: 4px;
}
@media (min-width: 640px) { .brand-sub { display: inline; } }

.nav-links { display: none; align-items: center; gap: 4px; }
@media (min-width: 1200px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 12px;
  border-radius: var(--r-full);
  white-space: nowrap;
  transition: background 0.15s ease;
}
.nav-links a:hover { background: var(--surface-card); }

.nav-search {
  display: none;
  flex: 1;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 15px;
  background: var(--surface-card);
  color: var(--mute);
  font-size: 15px;
  border-radius: var(--r-full);
  min-width: 0;
  transition: background 0.15s ease;
}
.nav-search:hover { background: var(--hairline-soft); }
.nav-search span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (min-width: 1024px) { .nav-search { display: flex; } }

.header-cta { margin-left: auto; display: flex; align-items: center; gap: 8px; }
@media (min-width: 1024px) { .header-cta { margin-left: 0; } }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  color: var(--ink);
}
.nav-toggle:hover { background: var(--surface-card); }
@media (min-width: 1200px) { .nav-toggle { display: none; } }

.mobile-nav { border-top: 1px solid var(--hairline-soft); padding: 8px 0 16px; }
.mobile-nav.hidden { display: none; }
.mobile-nav a {
  display: block;
  padding: 12px 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.hidden { display: none; }

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

.hero { background: var(--surface-soft); padding: 112px 0 0; overflow: hidden; }
@media (min-width: 1024px) { .hero { padding-top: 136px; } }

.hero-inner { text-align: center; }

.hero-est {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 24px;
}

.hero-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.2px;
  color: var(--ink);
  max-width: 880px;
  margin: 0 auto 20px;
}
@media (min-width: 640px) { .hero-title { font-size: 56px; } }
@media (min-width: 1024px) { .hero-title { font-size: 68px; } }
.hero-title em { font-style: normal; color: var(--accent-purple); }

.hero-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--mute);
  max-width: 620px;
  margin: 0 auto 28px;
}
@media (min-width: 640px) { .hero-lead { font-size: 18px; } }

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}
.hero-stats .chip-outline { font-weight: 400; color: var(--mute); font-size: 13px; }
.hero-stats .chip-outline strong { color: var(--ink); font-weight: 700; font-size: 14px; }

/* hero pin strip — staggered masonry columns */
.hero-pins {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  align-items: end;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) { .hero-pins { grid-template-columns: repeat(5, 1fr); padding: 0 24px; } }
@media (min-width: 1024px) { .hero-pins { grid-template-columns: repeat(7, 1fr); } }

.hero-pin { position: relative; border-radius: var(--r-md); overflow: hidden; background: var(--surface-card); }
.hero-pin img { width: 100%; height: 100%; object-fit: cover; }
.hero-pin .pin-pill { position: absolute; left: 8px; bottom: 8px; }
.hero-pin-1 { aspect-ratio: 3 / 4; }
.hero-pin-2 { aspect-ratio: 2 / 3; }
.hero-pin-3 { aspect-ratio: 4 / 5; }
.hero-pins .md-up { display: none; }
.hero-pins .lg-up { display: none; }
@media (min-width: 768px) { .hero-pins .md-up { display: block; } }
@media (min-width: 1024px) { .hero-pins .lg-up { display: block; } }

/* ---------- concerns ---------- */

.concern-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-width: 760px;
  margin: 0 auto;
}
@media (min-width: 640px) { .concern-list { grid-template-columns: 1fr 1fr; } }

.concern-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--canvas);
  border-radius: var(--r-md);
  padding: 24px;
}
.concern-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--surface-card);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--r-full);
}
.concern-item p { font-size: 15px; line-height: 1.6; color: var(--body); padding-top: 8px; }

.concern-close {
  text-align: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--charcoal);
}
.concern-close strong { color: var(--ink); font-weight: 700; }

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

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

.menu-card {
  background: var(--canvas);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.menu-media { position: relative; aspect-ratio: 4 / 3; background: var(--surface-card); }
.menu-media img { width: 100%; height: 100%; object-fit: cover; }
.menu-media .pin-pill { position: absolute; left: 12px; top: 12px; }
.menu-media .menu-time { position: absolute; right: 12px; top: 12px; }

.menu-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
@media (min-width: 1024px) { .menu-body { padding: 28px; } }

.menu-name { font-size: 22px; font-weight: 600; line-height: 1.25; letter-spacing: -0.3px; color: var(--ink); margin-bottom: 4px; }
.menu-tagline { font-size: 13px; font-weight: 500; color: var(--mute); margin-bottom: 14px; }
.menu-desc { font-size: 14px; line-height: 1.7; color: var(--body); margin-bottom: 18px; flex: 1; }

.menu-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.menu-tags li {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  background: var(--surface-card);
  color: var(--charcoal);
  border-radius: var(--r-full);
}

.menu-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline-soft);
}
.menu-price-note { font-size: 12px; color: var(--ash); text-decoration: line-through; margin-bottom: 4px; }
.menu-price { font-size: 26px; font-weight: 700; letter-spacing: -0.5px; color: var(--ink); line-height: 1; }
.menu-price .label { font-size: 12px; font-weight: 500; color: var(--mute); margin-right: 4px; letter-spacing: 0; }
.menu-repeat { text-align: right; }
.menu-repeat .label { display: block; font-size: 11px; color: var(--mute); margin-bottom: 4px; }
.menu-repeat .value { font-size: 20px; font-weight: 700; color: var(--ink); line-height: 1; }
.menu-repeat .value small { font-size: 12px; font-weight: 500; }

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

/* ---------- gallery (masonry pin grid) ---------- */

.masonry { columns: 2; column-gap: 8px; }
@media (min-width: 768px) { .masonry { columns: 3; } }

.masonry .pin { break-inside: avoid; margin-bottom: 8px; position: relative; border-radius: var(--r-md); overflow: hidden; background: var(--surface-card); }
.masonry .pin img { width: 100%; height: auto; }
.masonry .pin figcaption { position: absolute; left: 10px; bottom: 10px; right: 10px; display: flex; }
.masonry .pin-tall { aspect-ratio: 3 / 4; }
.masonry .pin-tall img, .masonry .pin-square img { height: 100%; object-fit: cover; }
.masonry .pin-square { aspect-ratio: 1 / 1; }
.masonry .pin-portrait { aspect-ratio: 4 / 5; }
.masonry .pin-portrait img { height: 100%; object-fit: cover; }

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

.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(--surface-card);
  border-radius: var(--r-md);
  padding: 32px;
}
.concept-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.concept-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--canvas);
  color: var(--ink);
  border-radius: var(--r-full);
}
.concept-num { font-size: 14px; font-weight: 700; color: var(--stone); letter-spacing: 0.1em; }
.concept-card h3 { font-size: 20px; font-weight: 600; line-height: 1.3; letter-spacing: -0.3px; color: var(--ink); margin-bottom: 10px; }
.concept-card p { font-size: 15px; line-height: 1.7; color: var(--body); }

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

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

.staff-photo { position: relative; aspect-ratio: 3 / 4; border-radius: var(--r-md); overflow: hidden; background: var(--surface-card); margin-bottom: 16px; }
.staff-photo img { width: 100%; height: 100%; object-fit: cover; }
.staff-photo .pin-pill { position: absolute; left: 10px; bottom: 10px; }

.staff-name { font-size: 22px; font-weight: 600; letter-spacing: -0.3px; color: var(--ink); }
.staff-name small { font-size: 12px; font-weight: 500; color: var(--mute); letter-spacing: 0.08em; margin-left: 8px; }
.staff-role { font-size: 13px; font-weight: 500; color: var(--mute); margin: 2px 0 12px; }
.staff-bio { font-size: 14px; line-height: 1.7; color: var(--body); margin-bottom: 16px; }

.staff-stats { display: flex; flex-wrap: wrap; gap: 6px; }
.staff-stats .chip-outline { font-weight: 400; color: var(--mute); font-size: 12px; padding: 7px 12px; }
.staff-stats .chip-outline strong { color: var(--ink); font-weight: 700; }

/* ---------- flow ---------- */

.flow-list { max-width: 720px; margin: 0 auto; position: relative; }
.flow-item { display: flex; gap: 16px; padding-bottom: 8px; position: relative; }
.flow-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 44px;
  bottom: -4px;
  width: 2px;
  background: var(--hairline-soft);
}
@media (min-width: 640px) {
  .flow-item { gap: 24px; }
  .flow-item:not(:last-child)::before { left: 23px; }
}
.flow-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--surface-dark);
  color: var(--on-dark);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--r-full);
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) { .flow-num { width: 48px; height: 48px; } }
.flow-body { background: var(--canvas); border-radius: var(--r-md); padding: 20px 24px; margin-bottom: 8px; flex: 1; }
.flow-body h3 { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.flow-body p { font-size: 14px; line-height: 1.7; color: var(--mute); }

/* ---------- voice ---------- */

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

.voice-card {
  background: var(--surface-card);
  border-radius: var(--r-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.voice-stars { display: flex; gap: 2px; color: var(--accent-purple); margin-bottom: 14px; }
.voice-card h3 { font-size: 17px; font-weight: 600; line-height: 1.4; color: var(--ink); margin-bottom: 12px; }
.voice-card > p { font-size: 14px; line-height: 1.7; color: var(--body); margin-bottom: 20px; flex: 1; }

.voice-person { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--hairline-soft); }
.voice-person img { width: 48px; height: 48px; border-radius: var(--r-full); object-fit: cover; }
.voice-person .name { font-size: 14px; font-weight: 700; color: var(--ink); }
.voice-person .meta { font-size: 12px; color: var(--mute); margin-top: 2px; }
.voice-person .course { font-size: 12px; font-weight: 500; color: var(--charcoal); margin-top: 2px; }

/* ---------- faq ---------- */

.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }

.faq-item { background: var(--canvas); border-radius: var(--r-md); overflow: hidden; }
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--r-full);
  background: var(--surface-card);
  color: var(--ink);
  transition: transform 0.2s ease;
}
.faq-item[open] summary .faq-arrow { transform: rotate(180deg); }
.faq-answer { padding: 0 24px 20px; }
.faq-answer p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--mute);
  padding-top: 16px;
  border-top: 1px solid var(--hairline-soft);
}

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

.reserve-card {
  background: var(--canvas);
  border-radius: var(--r-lg);
  padding: 24px;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.08);
}
@media (min-width: 640px) { .reserve-card { padding: 40px; } }

.reserve-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
}
.reserve-step .step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--surface-dark);
  color: var(--on-dark);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--r-full);
}

.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(--surface-card);
  border-radius: var(--r-md);
  padding: 12px 4px;
  text-align: center;
  transition: background 0.15s ease;
}
.date-btn:not(:disabled):hover { background: var(--hairline-soft); }
.date-btn .dow { font-size: 10px; color: var(--mute); margin-bottom: 4px; }
.date-btn .day { font-size: 19px; font-weight: 700; color: var(--ink); line-height: 1.1; }
.date-btn .slots { font-size: 9px; color: var(--mute); margin-top: 4px; letter-spacing: -0.08em; }
.date-btn:disabled { background: var(--surface-soft); cursor: default; }
.date-btn:disabled .day, .date-btn:disabled .dow, .date-btn:disabled .slots { color: var(--stone); }
.date-btn.selected { background: var(--ink); }
.date-btn.selected .dow, .date-btn.selected .day, .date-btn.selected .slots { color: var(--on-dark); }

.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(--surface-card);
  border-radius: var(--r-full);
  padding: 12px 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  transition: background 0.15s ease;
}
.time-btn:not(.disabled):hover { background: var(--hairline-soft); }
.time-btn.disabled { background: var(--surface-soft); color: var(--stone); cursor: default; text-decoration: line-through; }
.time-btn.selected { background: var(--ink); color: var(--on-dark); }

.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: 1 / -1; }

.field label, .field > span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.field .req { color: var(--red); }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 15px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--ash);
  border-radius: var(--r-md);
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
.field textarea { resize: none; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ash); }
.field :is(input, select, textarea):focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink), 0 0 0 3px #ffffff, 0 0 0 5px var(--focus-outer);
}

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

.reserve-submit { width: 100%; min-height: 52px; font-size: 16px; }

.reserve-success { text-align: center; padding: 48px 0; }
.reserve-success.hidden { display: none; }
.reserve-success .success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #c7f0da;
  color: #103c25;
  border-radius: var(--r-full);
  margin-bottom: 24px;
}
.reserve-success h3 { font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.reserve-success p { font-size: 14px; line-height: 1.7; color: var(--mute); }

.contact-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-width: 720px;
  margin: 32px auto 0;
}
@media (min-width: 640px) { .contact-row { grid-template-columns: repeat(3, 1fr); } }
.contact-row .btn-secondary { font-weight: 600; }

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

.site-footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: 48px 0 32px;
  color: var(--mute);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr 1fr; } }

.footer-brand .brand { margin-bottom: 16px; }
.footer-brand > p { font-size: 14px; line-height: 1.7; }

.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--surface-card);
  color: var(--ink);
  border-radius: var(--r-full);
  transition: background 0.15s ease;
}
.footer-social a:hover { background: var(--secondary-bg); }

.footer-col h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-col a:hover { color: var(--ink); }
.footer-col .addr { line-height: 1.6; }
.footer-note { font-size: 12px; color: var(--ash); display: block; margin-top: 4px; }

.footer-bottom {
  border-top: 1px solid var(--hairline-soft);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  color: var(--mute);
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer-wordmark { font-size: 14px; font-weight: 700; color: var(--red); letter-spacing: -0.2px; }
.footer-disclaimer { font-size: 12px; color: var(--ash); line-height: 1.6; margin-top: 16px; }

/* ---------- floating cta ---------- */

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.floating-cta.show { opacity: 1; transform: none; pointer-events: auto; }

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

.legal-main { padding: 112px 0 64px; }
.legal-main .container { max-width: 760px; }
.legal-title { text-align: center; margin-bottom: 40px; }

.legal-body {
  background: var(--canvas);
  border-radius: var(--r-lg);
  padding: 24px;
}
@media (min-width: 640px) { .legal-body { padding: 40px; } }
.legal-body > p { font-size: 14px; line-height: 1.8; color: var(--body); }
.legal-body section { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--hairline-soft); }
.legal-body h2 { font-size: 18px; font-weight: 600; letter-spacing: -0.2px; color: var(--ink); margin-bottom: 10px; }
.legal-body section p { font-size: 14px; line-height: 1.8; color: var(--body); }
.legal-body ul { list-style: disc; padding-left: 22px; display: flex; flex-direction: column; gap: 6px; font-size: 14px; line-height: 1.7; color: var(--body); }
.legal-updated { margin-top: 28px; font-size: 12px; color: var(--ash); }

.legal-table { display: flex; flex-direction: column; }
.legal-table > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline-soft);
}
.legal-table > div:last-child { border-bottom: none; }
@media (min-width: 640px) { .legal-table > div { grid-template-columns: 1fr 2.6fr; gap: 16px; } }
.legal-table dt { font-size: 14px; font-weight: 700; color: var(--ink); }
.legal-table dd { font-size: 14px; line-height: 1.7; color: var(--body); }

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

.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.06s; }
.delay-2 { transition-delay: 0.12s; }
.delay-3 { transition-delay: 0.18s; }
.delay-4 { transition-delay: 0.24s; }

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