/* Sakura Clinic demo — visual system inspired by workplace-messaging (Slack-like) design language.
   Deep aubergine primary, cream-lavender pastel-mesh canvases, 90px pill buttons,
   blue inline links, sakura pink as the clinic's sub-accent. */

:root {
  --aubergine: #4a154b;        /* primary CTA / footer band / wordmark */
  --aubergine-press: #611f69;  /* pressed / hover lift */
  --aubergine-tint: #592466;   /* borders on aubergine surfaces */
  --ink: #1d1d1d;
  --ink-mute: #696969;
  --link: #1264a3;             /* inline link blue */
  --link-hover: #3860be;
  --white: #ffffff;
  --cream: #f4ede4;            /* warm hero / band canvas */
  --lavender: #f9f0ff;         /* pale lavender band / secondary pill */
  --hairline: #e6e6e6;
  --on-aub-mute: #d9bdde;      /* secondary text on aubergine */
  --success: #007a5a;
  --error: #cc4117;
  --sakura: #e01e5a;           /* sakura sub-accent (logo-quartet pink) */
  --sakura-soft: #fce8ef;
  --acc-blue: #36c5f0;
  --acc-green: #2eb67d;
  --acc-yellow: #ecb22e;
  --pill: 90px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --shadow-1: rgba(0, 0, 0, 0.1) 0 5px 20px 0;
  --shadow-2: rgba(0, 0, 0, 0.1) 0 0 32px 0;
  --font-sans: "Lato", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, 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.55;
  color: var(--ink);
  background: var(--white);
  -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; background: none; border: none; color: inherit; }
.hidden { display: none !important; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

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

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

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

.section-title {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
}
@media (min-width: 768px) { .section-title { font-size: 42px; letter-spacing: -0.02em; } }

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

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

.link-inline {
  color: var(--link);
  font-weight: 700;
}
.link-inline:hover { color: var(--link-hover); text-decoration: underline; }

/* ---------- buttons: 90px pill, over-padded ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--pill);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  padding: 14px 28px;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary {
  background: var(--aubergine);
  color: var(--white);
}
.btn-primary:hover { background: var(--aubergine-press); }
.btn-outline {
  background: var(--white);
  color: var(--aubergine);
  box-shadow: inset 0 0 0 1px var(--aubergine);
}
.btn-outline:hover { box-shadow: inset 0 0 0 2px var(--aubergine); }
.btn-sm { padding: 10px 22px; font-size: 14px; }
.btn-lg { padding: 17px 34px; font-size: 17px; }
.btn-block { width: 100%; }

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

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 768px) { .header-bar { height: 76px; } }

.brand { display: flex; align-items: center; gap: 10px; }
.brand svg { flex-shrink: 0; }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name .en {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--aubergine);
}
.brand-name .sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--sakura);
  margin-top: 4px;
}
@media (min-width: 768px) { .brand-name .en { font-size: 22px; } }

.main-nav { display: none; }
@media (min-width: 1024px) {
  .main-nav { display: flex; align-items: center; gap: 32px; }
  .main-nav > a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
  }
  .main-nav > a:hover { color: var(--aubergine-press); }
  .main-nav > a.btn { color: var(--white); }
}

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

.mobile-nav { border-top: 1px solid var(--hairline); padding: 12px 0 20px; }
.mobile-nav nav { display: flex; flex-direction: column; }
.mobile-nav nav > a { padding: 12px 0; font-size: 15px; font-weight: 500; color: var(--ink); }
.mobile-nav nav > a:hover { color: var(--aubergine-press); }
.mobile-nav nav > a.btn { margin-top: 10px; color: var(--white); }
@media (min-width: 1024px) { .mobile-nav { display: none; } }

/* ---------- pastel mesh canvases ---------- */

.mesh-cream {
  background:
    radial-gradient(44% 52% at 10% 16%, rgba(249, 240, 255, 0.95), transparent 70%),
    radial-gradient(40% 48% at 90% 10%, rgba(252, 232, 239, 0.9), transparent 70%),
    radial-gradient(46% 54% at 80% 88%, rgba(217, 238, 229, 0.85), transparent 70%),
    var(--cream);
}

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

.hero { padding: 104px 0 64px; overflow: hidden; }
@media (min-width: 768px) { .hero { padding: 140px 0 88px; } }

.hero-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 7fr 5fr; gap: 56px; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--pill);
  background: var(--white);
  border: 1px solid var(--hairline);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--aubergine);
  margin-bottom: 28px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sakura); }

.hero-title {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-title em { font-style: normal; color: var(--aubergine); white-space: nowrap; }
@media (min-width: 640px) { .hero-title { font-size: 46px; } }
@media (min-width: 1024px) { .hero-title { font-size: 56px; letter-spacing: -0.024em; } }

.hero-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-mute);
  max-width: 560px;
  margin-bottom: 32px;
}

.trust-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--pill);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--shadow-1);
}
.trust-badges .ic-blue { color: var(--acc-blue); }
.trust-badges .ic-green { color: var(--acc-green); }
.trust-badges .ic-pink { color: var(--sakura); }

.hero-cta { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 640px) { .hero-cta { flex-direction: row; } }

/* hero visual: photo floats above the mesh, info card overlaps */

.hero-visual { position: relative; }
.hero-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 2; }

.info-card {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-2);
  padding: 24px;
  margin: -48px 16px 0;
  position: relative;
}
@media (min-width: 640px) { .info-card { padding: 28px; margin: -64px 28px 0; } }

.info-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
  color: var(--aubergine);
}
.info-card-head h2 { font-size: 16px; font-weight: 700; color: var(--ink); }

.info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}
.info-row .label { font-size: 13px; color: var(--ink-mute); }
.info-row .value { font-size: 17px; font-weight: 900; letter-spacing: -0.01em; color: var(--aubergine); }
.info-row.bordered { border-top: 1px solid var(--hairline); margin-top: 8px; padding-top: 14px; }

.chip-open {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--pill);
  background: var(--sakura-soft);
  color: var(--sakura);
  font-size: 11px;
  font-weight: 700;
}
.chip-open .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sakura); animation: pulse 1.6s ease infinite; }
@keyframes pulse { 50% { opacity: 0.35; } }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  text-align: center;
}
.stat-strip .num {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--aubergine);
}
.stat-strip .num small { font-size: 11px; font-weight: 700; }
.stat-strip .cap { font-size: 10px; letter-spacing: 0.08em; color: var(--ink-mute); margin-top: 2px; }

/* ---------- concept: 4 policies ---------- */

.section { padding: 72px 0; }
@media (min-width: 768px) { .section { padding: 104px 0; } }

.band-lavender { background: var(--lavender); }
.band-cream { background: var(--cream); }

.policy-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .policy-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }

.policy-card {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border-radius: var(--r-xl);
  padding: 32px;
}
@media (min-width: 768px) { .policy-card { padding: 40px; } }
.policy-card .ghost-num {
  position: absolute;
  top: -28px; right: -8px;
  font-size: 108px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(74, 21, 75, 0.07);
  line-height: 1;
  user-select: none;
}
.policy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: var(--r-lg);
  color: var(--white);
  margin-bottom: 22px;
}
.policy-icon.c1 { background: var(--acc-blue); }
.policy-icon.c2 { background: var(--acc-green); }
.policy-icon.c3 { background: var(--acc-yellow); }
.policy-icon.c4 { background: var(--sakura); }
.policy-card h3 {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin-bottom: 12px;
}
@media (min-width: 768px) { .policy-card h3 { font-size: 23px; } }
.policy-card p { font-size: 15px; color: var(--ink-mute); }

/* ---------- services ---------- */

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

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.service-card:hover { box-shadow: var(--shadow-2); }
.service-photo { aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream); }
.service-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-photo img { transform: scale(1.04); }

.service-body { display: flex; flex-direction: column; flex: 1; padding: 26px; }
.service-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.service-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.service-cat.c1 { color: var(--acc-blue); }
.service-cat.c2 { color: var(--acc-green); }
.service-cat.c3 { color: var(--sakura); }
.service-time { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--ink-mute); }
.service-card h3 { font-size: 21px; font-weight: 900; letter-spacing: -0.01em; margin-bottom: 4px; }
.service-sub { font-size: 12px; font-weight: 700; color: var(--aubergine); margin-bottom: 16px; }
.service-desc { font-size: 14px; color: var(--ink-mute); margin-bottom: 20px; flex: 1; }

.tag-list { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.tag-list li {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: var(--pill);
  background: var(--cream);
  color: var(--ink);
}

.service-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
}
.service-price { font-size: 22px; font-weight: 900; letter-spacing: -0.01em; color: var(--aubergine); }
.service-score { text-align: right; }
.service-score .cap { font-size: 11px; color: var(--ink-mute); margin-bottom: 2px; }
.service-score .num { font-size: 22px; font-weight: 900; color: var(--ink); }
.service-score .num small { font-size: 13px; }

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

/* ---------- hours ---------- */

.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: 48px; } }

.hours-table-wrap {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.hours-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.hours-table thead { background: var(--cream); }
.hours-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aubergine);
}
.hours-table th:last-child { text-align: right; }
.hours-table td { padding: 12px 16px; border-top: 1px solid var(--hairline); color: var(--ink); }
.hours-table td.day { font-weight: 700; }
.hours-table td.note { text-align: right; font-size: 12px; color: var(--ink-mute); }
.hours-table tr.closed td { color: var(--ink-mute); opacity: 0.7; }
.hours-table .sm-hide { display: none; }
@media (min-width: 640px) { .hours-table .sm-hide { display: table-cell; } }

.hours-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 20px; font-size: 14px; }

/* emergency: aubergine band card */

.emergency-card {
  background: var(--aubergine);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: 28px;
}
@media (min-width: 768px) { .emergency-card { padding: 34px; } }
.emergency-cap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--on-aub-mute);
  margin-bottom: 14px;
}
.emergency-card h3 { font-size: 20px; font-weight: 900; letter-spacing: -0.01em; margin-bottom: 14px; }
.emergency-card p { font-size: 14px; line-height: 1.7; color: var(--on-aub-mute); margin-bottom: 22px; }
.emergency-tel {
  display: block;
  border: 1px solid var(--aubergine-tint);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  transition: background 0.15s ease;
}
.emergency-tel:hover { background: rgba(255, 255, 255, 0.12); }
.emergency-tel .cap { font-size: 10px; letter-spacing: 0.2em; color: var(--on-aub-mute); margin-bottom: 4px; }
.emergency-tel .num { font-size: 22px; font-weight: 900; letter-spacing: 0.01em; }

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

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

.staff-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-2);
  margin-bottom: 22px;
}
.staff-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.staff-card:hover .staff-photo img { transform: scale(1.04); }
.staff-photo-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(29, 29, 29, 0.82), rgba(29, 29, 29, 0.25) 65%, transparent);
  color: var(--white);
}
.staff-photo-overlay .en { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 6px; }
.staff-photo-overlay .role-cap { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--on-aub-mute); }

.staff-card h3 { font-size: 23px; font-weight: 900; letter-spacing: -0.01em; margin-bottom: 4px; }
.staff-role { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; color: var(--aubergine); margin-bottom: 14px; }
.staff-bio { font-size: 14px; color: var(--ink-mute); margin-bottom: 22px; }

.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 + div { border-left: 1px solid var(--hairline); }
.staff-stats dt { font-size: 10px; letter-spacing: 0.1em; color: var(--ink-mute); margin-bottom: 4px; }
.staff-stats dd { font-size: 19px; font-weight: 900; letter-spacing: -0.01em; color: var(--aubergine); }
.staff-stats dd small { font-size: 11px; }

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

.flow-list { position: relative; max-width: 760px; margin: 0 auto; }
.flow-line {
  position: absolute;
  left: 25px;
  top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--on-aub-mute), var(--lavender));
}
@media (min-width: 640px) { .flow-line { left: 29px; } }

.flow-item { position: relative; padding-left: 72px; padding-bottom: 32px; }
.flow-item:last-child { padding-bottom: 0; }
@media (min-width: 640px) { .flow-item { padding-left: 84px; } }

.flow-num {
  position: absolute;
  left: 0; top: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--aubergine);
  color: var(--aubergine);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  box-shadow: var(--shadow-1);
}
@media (min-width: 640px) { .flow-num { width: 60px; height: 60px; font-size: 18px; } }

.flow-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 22px 24px;
}
.flow-card h3 { font-size: 18px; font-weight: 900; letter-spacing: -0.01em; margin-bottom: 8px; }
.flow-card p { font-size: 14px; color: var(--ink-mute); }

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

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-item:hover { box-shadow: var(--shadow-1); }
.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: flex-start; gap: 14px; }
.faq-q .mark { font-weight: 900; font-size: 17px; color: var(--aubergine); flex-shrink: 0; }
.faq-q .txt { font-size: 15px; font-weight: 700; line-height: 1.6; padding-top: 1px; }
.faq-chevron { color: var(--aubergine); flex-shrink: 0; transition: transform 0.25s ease; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-a {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 24px;
  padding: 16px 0 22px;
  border-top: 1px solid var(--hairline);
}
.faq-a .mark { font-weight: 900; font-size: 17px; color: var(--sakura); flex-shrink: 0; }
.faq-a p { font-size: 14px; color: var(--ink-mute); padding-top: 2px; }

/* ---------- 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 {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xl);
  border: 1px solid var(--hairline);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.map-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--aubergine);
  color: var(--white);
  box-shadow: var(--shadow-1);
  margin-bottom: 16px;
}
.map-card h3 { font-size: 17px; font-weight: 900; margin-bottom: 4px; }
.map-card .addr { font-size: 12px; color: var(--ink-mute); margin-bottom: 14px; }
.map-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; }

.access-info { display: flex; flex-direction: column; gap: 16px; }
.access-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 20px;
}
.access-cap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--aubergine);
  margin-bottom: 10px;
}
.access-card p { font-size: 14px; line-height: 1.7; }
.access-rows { padding: 0; }
.access-rows .access-cap { margin-bottom: 0; }
.access-rows > div { padding: 16px 20px; }
.access-rows > div + div { border-top: 1px solid var(--hairline); }
.access-rows .cap-sm { font-size: 12px; color: var(--ink-mute); margin-bottom: 4px; }
.access-rows .row { display: flex; align-items: center; justify-content: space-between; }
.access-rows .row p { font-size: 14px; }
.access-rows .row .val { font-size: 13px; font-weight: 700; color: var(--aubergine); text-align: right; }

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

.reserve-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-2);
  padding: 24px;
  max-width: 880px;
  margin: 0 auto;
}
@media (min-width: 768px) { .reserve-card { padding: 40px; } }

.form-step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--aubergine);
  margin-bottom: 18px;
}
.form-step span { font-size: 17px; font-weight: 900; letter-spacing: -0.01em; color: var(--ink); }

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

.time-slot {
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: var(--white);
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.time-slot:hover:not(.disabled):not(.selected) { border-color: var(--aubergine); }
.time-slot.selected {
  background: var(--aubergine);
  border-color: var(--aubergine);
  color: var(--white);
}
.time-slot.selected .cap, .time-slot.selected .avail { color: var(--on-aub-mute); }
.time-slot.disabled { background: var(--cream); color: var(--ink-mute); opacity: 0.6; cursor: not-allowed; }

.date-btn { padding: 10px 2px 8px; }
.date-btn .cap { font-size: 10px; color: var(--ink-mute); margin-bottom: 2px; }
.date-btn .num { font-size: 19px; font-weight: 900; letter-spacing: -0.01em; }
.date-btn .avail { font-size: 8px; letter-spacing: 0.06em; color: var(--success); margin-top: 3px; }
.date-btn.disabled .avail { color: var(--ink-mute); }

.time-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 34px; }
@media (min-width: 640px) { .time-grid { grid-template-columns: repeat(7, 1fr); gap: 8px; } }
.time-btn { padding: 13px 0; font-size: 14px; font-weight: 700; }

.reserve-form { border-top: 1px solid var(--hairline); padding-top: 30px; }
.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 .full { grid-column: 1 / -1; }

.field { display: block; }
.field .label { display: block; font-size: 12px; font-weight: 700; margin-bottom: 8px; }
.field .req { color: var(--error); }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  padding: 11px 12px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { resize: none; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--aubergine);
  box-shadow: 0 0 0 3px rgba(74, 21, 75, 0.12);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--ink-mute);
  margin: 18px 0 22px;
}
.consent input { margin-top: 2px; accent-color: var(--aubergine); }
.consent a { color: var(--link); text-decoration: underline; }
.consent a:hover { color: var(--link-hover); }

.demo-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--ink-mute);
  text-align: center;
}

.form-success { text-align: center; padding: 48px 0; }
.form-success .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--lavender);
  color: var(--success);
  margin-bottom: 22px;
}
.form-success h3 { font-size: 23px; font-weight: 900; letter-spacing: -0.01em; margin-bottom: 10px; }
.form-success p { font-size: 14px; color: var(--ink-mute); }

.contact-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 720px;
  margin: 32px auto 0;
}
@media (min-width: 640px) { .contact-links { grid-template-columns: repeat(3, 1fr); } }
.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--pill);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  transition: border-color 0.15s ease;
}
.contact-links a:hover { border-color: var(--aubergine); }

/* ---------- footer: aubergine band ---------- */

.site-footer {
  background: var(--aubergine);
  color: var(--white);
  padding: 64px 0 32px;
}
@media (min-width: 768px) { .site-footer { padding: 80px 0 36px; } }

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

.footer-brand .brand-name .en { color: var(--white); }
.footer-brand .brand-name .sub { color: var(--on-aub-mute); }
.footer-brand > p { font-size: 14px; line-height: 1.7; color: var(--on-aub-mute); margin-top: 18px; }

.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--aubergine-tint);
  color: var(--on-aub-mute);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.footer-social a:hover { color: var(--white); border-color: var(--white); }

.footer-col h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; font-size: 14px; color: var(--on-aub-mute); }
.footer-col ul a:hover { color: var(--white); text-decoration: underline; }
.footer-col .with-icon { display: flex; align-items: flex-start; gap: 10px; }
.footer-col .with-icon svg { flex-shrink: 0; margin-top: 3px; color: var(--on-aub-mute); }
.footer-col .small { display: block; font-size: 11px; margin-top: 6px; line-height: 1.7; }

.footer-bottom {
  border-top: 1px solid var(--aubergine-tint);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.footer-disclaimer { font-size: 11px; line-height: 1.7; color: var(--on-aub-mute); }
.footer-copy-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--on-aub-mute);
}
@media (min-width: 640px) {
  .footer-copy-row { flex-direction: row; justify-content: space-between; width: 100%; }
}
.footer-copy-row .wordmark { font-weight: 900; letter-spacing: 0.2em; }

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

.floating-cta {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--aubergine);
  color: var(--white);
  border-radius: var(--pill);
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-2);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.15s ease;
}
.floating-cta.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.floating-cta:hover { background: var(--aubergine-press); }

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

.legal-main { padding: 112px 0 80px; }
@media (min-width: 768px) { .legal-main { padding: 140px 0 104px; } }
.legal-wrap { max-width: 760px; margin: 0 auto; }
.legal-head { text-align: center; margin-bottom: 40px; }
.legal-title { font-size: 30px; font-weight: 900; letter-spacing: -0.015em; }
@media (min-width: 768px) { .legal-title { font-size: 38px; } }
.legal-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.8;
}
@media (min-width: 768px) { .legal-card { padding: 44px 48px; } }
.legal-card section { margin-top: 32px; }
.legal-card h2 {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--ink);
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  margin-bottom: 12px;
}
.legal-card ul { list-style: disc; padding-left: 22px; }
.legal-card ul li { margin: 4px 0; }
.legal-updated { margin-top: 36px; font-size: 12px; }

.legal-table { border: 1px solid var(--hairline); border-radius: var(--r-xl); overflow: hidden; background: var(--white); }
.legal-table .lrow { display: grid; grid-template-columns: 1fr; gap: 4px; padding: 18px 22px; }
.legal-table .lrow + .lrow { border-top: 1px solid var(--hairline); }
@media (min-width: 640px) { .legal-table .lrow { grid-template-columns: 1fr 3fr; gap: 12px; padding: 20px 26px; } }
.legal-table dt { font-size: 13px; font-weight: 700; color: var(--aubergine); }
.legal-table dd { font-size: 14px; color: var(--ink-mute); line-height: 1.7; }

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

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

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