/* =========================================================
   古川接骨院 — Medical Clinic Premium Design
   ========================================================= */

:root {
  --c-bg: #f5f6f8;
  --c-bg-alt: #ebeff4;
  --c-ink: #0f1923;
  --c-ink-soft: #1e2d3d;
  --c-mute: #5a6a7a;
  --c-line: #d0d5dc;
  --c-accent: #1a6ec7;
  --c-accent-2: #0f4d8f;
  --c-dark: #0b1520;
  --c-dark-alt: #0f1e30;
  --c-white: #ffffff;

  --ff-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  --ff-en: "Inter", "Helvetica Neue", Arial, sans-serif;

  --w-max: 1100px;
  --pad-x: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,.84,.3,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-jp);
  font-weight: 400;
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.85;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.3; }
p { margin: 0; }
address { font-style: normal; }

/* =========================================================
   Loader
   ========================================================= */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--c-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s var(--ease), visibility .8s;
}
.loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-icon {
  display: block;
  margin: 0 auto 16px;
  animation: crossPulse 1.4s ease-in-out infinite;
  opacity: .9;
}
.loader-text {
  font-family: var(--ff-en);
  letter-spacing: .25em;
  font-size: 11px;
  color: rgba(255,255,255,.5);
  font-weight: 600;
}
@keyframes crossPulse {
  0%, 100% { opacity: .9; transform: scale(1); }
  50% { opacity: .4; transform: scale(.85); }
}

/* =========================================================
   Header
   ========================================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11,21,32,.0);
  transition: background .35s var(--ease), backdrop-filter .35s, padding .35s;
  padding: 14px 0;
}
.header.is-scrolled {
  background: rgba(11,21,32,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 8px 0;
}
.header-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 6px var(--pad-x);
  display: flex; align-items: center; gap: 32px;
  color: #fff;
}

.brand {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
  color: #fff;
}
.brand-mark { display: flex; align-items: center; color: var(--c-accent); }
.brand-text { display: flex; flex-direction: column; }
.brand-en {
  font-family: var(--ff-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1;
  opacity: .5;
  text-transform: uppercase;
}
.brand-ja {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .04em;
}

.nav { margin-left: auto; }
.nav-list { display: flex; gap: 2px; }
.nav-list a {
  display: flex; flex-direction: column; align-items: center;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background .2s;
}
.nav-list a:hover,
.nav-list a.is-active { background: rgba(255,255,255,.1); }
.nav-en {
  font-family: var(--ff-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  opacity: .5;
  line-height: 1;
  text-transform: uppercase;
}
.nav-ja { font-size: 11px; font-weight: 500; line-height: 1.6; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  border-radius: 4px;
  font-family: var(--ff-jp);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, border-color .2s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
}
.btn-primary:hover {
  background: var(--c-accent-2);
  border-color: var(--c-accent-2);
  box-shadow: 0 8px 24px rgba(26,110,199,.35);
}
.btn-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.25);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-outline-light:hover { background: rgba(255,255,255,.12); }
.btn-lg { padding: 15px 32px; font-size: 15px; }
.btn-block { width: 100%; justify-content: center; }

.header-cta {
  flex-shrink: 0;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--ff-en);
  letter-spacing: .06em;
  gap: 6px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Drawer
   ========================================================= */
.drawer {
  position: fixed; inset: 0; z-index: 99;
  visibility: hidden;
  background: rgba(0,0,0,.5);
  transition: visibility .35s, background .35s;
}
.drawer.is-open { visibility: visible; }
.drawer-inner {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: min(300px, 85vw);
  background: var(--c-dark);
  padding: 80px 28px 40px;
  display: flex; flex-direction: column; gap: 20px;
  transform: translateX(100%);
  transition: transform .35s var(--ease-out);
}
.drawer.is-open .drawer-inner { transform: translateX(0); }
.drawer-list { display: flex; flex-direction: column; }
.drawer-list a {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 0;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.drawer-list em {
  font-style: normal;
  font-family: var(--ff-en);
  font-size: 10px;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: .12em;
}
.drawer-note {
  text-align: center;
  color: rgba(255,255,255,.35);
  font-size: 12px;
  margin-top: -8px;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 120px var(--pad-x) 100px;
}
.hero-stage {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.hero-slide.is-active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(11,21,32,.8) 35%, rgba(11,21,32,.45));
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 680px;
  color: #fff;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ff-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  flex-shrink: 0;
}
.hero-eyebrow em { font-style: normal; }

.hero-title {
  font-size: clamp(52px, 9vw, 96px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 28px;
}
.hl-1 { display: block; opacity: .65; }
.hl-2 { display: block; color: #fff; }

.hero-sub {
  font-family: var(--ff-en);
  font-size: clamp(11px, 1.3vw, 14px);
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--c-accent);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.hero-lead {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,.65);
  margin-bottom: 44px;
}
.hero-lead strong { color: #fff; font-weight: 700; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-side {
  position: absolute;
  right: var(--pad-x);
  top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 36px;
  z-index: 1;
  text-align: right;
}
.hero-side-num { color: #fff; }
.hsn-label {
  display: block;
  font-family: var(--ff-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  color: rgba(255,255,255,.35);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.hsn-value {
  display: block;
  font-family: var(--ff-en);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1;
}
.hsn-value small {
  font-size: 13px;
  font-family: var(--ff-jp);
  font-weight: 500;
  vertical-align: baseline;
  margin-left: 3px;
}

.hero-scroll {
  position: absolute;
  bottom: 44px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 1;
}
.hero-scroll span {
  font-family: var(--ff-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .25em;
  color: rgba(255,255,255,.3);
}
.hsl-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  49%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* =========================================================
   Ticker
   ========================================================= */
.ticker {
  background: var(--c-accent);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}
.ticker-track {
  display: inline-flex; gap: 32px;
  animation: ticker 28s linear infinite;
  font-family: var(--ff-jp);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  padding-right: 32px;
}
.ticker-tag {
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: rgba(255,255,255,.2);
  padding: 2px 10px;
  border-radius: 2px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   Section base
   ========================================================= */
.section { padding: 100px var(--pad-x); }

.section-head {
  display: flex; align-items: flex-start; gap: 20px;
  max-width: var(--w-max);
  margin: 0 auto 64px;
}
.section-head-light .section-num { color: rgba(26,110,199,.8); }
.section-head-light .title-en { color: rgba(255,255,255,.4); }
.section-head-light .title-ja { color: #fff; }
.section-head-light .section-sub { color: rgba(255,255,255,.55); }

.section-num {
  font-family: var(--ff-en);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: .12em;
  margin-top: 8px;
  flex-shrink: 0;
}
.section-title { display: flex; flex-direction: column; gap: 4px; }
.title-en {
  font-family: var(--ff-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.title-ja {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--c-ink);
}
.section-sub {
  font-size: 14px;
  color: var(--c-mute);
  margin-top: 10px;
}

/* =========================================================
   About
   ========================================================= */
.about { background: var(--c-white); }
.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: var(--w-max); margin: 0 auto;
  align-items: start;
}
.about-lead {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 28px;
  color: var(--c-ink);
}
.about-lead em { font-style: normal; color: var(--c-accent); }
.about-text p {
  font-size: 15px;
  line-height: 1.95;
  color: var(--c-ink-soft);
  margin-bottom: 16px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--c-ink); font-weight: 700; }

.about-info {
  background: var(--c-bg);
  border-radius: 8px;
  padding: 32px;
}
.about-info > div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-line);
}
.about-info > div:first-child { padding-top: 0; }
.about-info > div:last-child { border-bottom: none; padding-bottom: 0; }
.about-info dt {
  font-size: 11px;
  font-weight: 700;
  color: var(--c-mute);
  letter-spacing: .06em;
  padding-top: 3px;
  font-family: var(--ff-en);
}
.about-info dd {
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-ink);
  margin: 0;
}
.about-info dd a { color: var(--c-accent); font-weight: 700; }
.about-info dd a:hover { text-decoration: underline; }

/* =========================================================
   Treatment
   ========================================================= */
.treatment { position: relative; overflow: hidden; }
.treatment-bg {
  position: absolute; inset: 0;
  background: linear-gradient(140deg, var(--c-dark) 0%, var(--c-dark-alt) 100%);
}
.treatment-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 90% 50%, rgba(26,110,199,.12) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 10% 20%, rgba(26,110,199,.06) 0%, transparent 50%);
}
.treatment .section-head { position: relative; z-index: 1; }

.treatment-list {
  position: relative; z-index: 1;
  max-width: var(--w-max); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.treatment-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  padding: 32px 24px;
  color: #fff;
  transition: background .3s, border-color .3s, transform .3s var(--ease);
}
.treatment-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(26,110,199,.45);
  transform: translateY(-4px);
}
.tc-img {
  margin: -32px -24px 24px;
  height: 160px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.tc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.treatment-card:hover .tc-img img { transform: scale(1.04); }

.tc-num {
  font-family: var(--ff-en);
  font-size: 10px;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: .15em;
  display: block;
  margin-bottom: 18px;
}
.tc-icon {
  color: var(--c-accent);
  margin-bottom: 16px;
}
.tc-en {
  font-family: var(--ff-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 8px;
}
.treatment-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
  line-height: 1.4;
}
.treatment-card p {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(255,255,255,.55);
}

.treatment-more {
  position: relative; z-index: 1;
  max-width: var(--w-max); margin: 48px auto 0;
  text-align: center;
}
.tm-label {
  font-family: var(--ff-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  color: rgba(255,255,255,.3);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.tm-tags {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
}
.tm-tags span {
  padding: 6px 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 100px;
  color: rgba(255,255,255,.55);
  font-size: 13px;
  font-weight: 500;
  transition: border-color .2s, color .2s;
}
.tm-tags span:hover { border-color: rgba(26,110,199,.6); color: rgba(255,255,255,.85); }

/* =========================================================
   Hours & Insurance
   ========================================================= */
.hours { background: var(--c-bg); }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  max-width: var(--w-max); margin: 0 auto;
  align-items: start;
}
.block-label {
  font-family: var(--ff-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 20px;
}

.htable {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--c-white);
  border-radius: 8px;
  overflow: hidden;
}
.htable th {
  background: var(--c-ink);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 13px 8px;
  text-align: center;
  letter-spacing: .04em;
}
.htable th:first-child { text-align: left; padding-left: 20px; }
.htable td {
  padding: 14px 8px;
  text-align: center;
  border-bottom: 1px solid var(--c-line);
  font-size: 13px;
  font-weight: 500;
}
.htable tbody tr:last-child td { border-bottom: none; }
.hrow-label {
  text-align: left !important;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-ink-soft);
  padding-left: 20px !important;
  white-space: nowrap;
}
.ho { color: var(--c-accent); font-weight: 700; font-size: 16px; }
.hx { color: var(--c-line); }

.hours-note {
  display: flex; align-items: center; gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--c-mute);
}
.hours-note svg { color: var(--c-accent); flex-shrink: 0; }

.insurance-block {
  background: var(--c-white);
  border-radius: 8px;
  padding: 28px 32px;
}
.ins-list { display: flex; flex-direction: column; }
.ins-list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--c-line);
}
.ins-list li:first-child { padding-top: 0; }
.ins-list li:last-child { border-bottom: none; padding-bottom: 0; }
.ins-icon { color: var(--c-accent); flex-shrink: 0; margin-top: 2px; }
.ins-list strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 4px;
}
.ins-list span { font-size: 12px; color: var(--c-mute); }

/* =========================================================
   Access
   ========================================================= */
.access { background: var(--c-white); }
.access-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  max-width: var(--w-max); margin: 0 auto;
  align-items: start;
}
.access-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 12px;
}
.access-info address {
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-ink-soft);
  margin-bottom: 20px;
}
.ac-tel {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--ff-en);
  font-size: 28px;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: -.01em;
  margin-bottom: 24px;
  transition: color .2s;
}
.ac-tel:hover { color: var(--c-accent-2); }
.ac-sns { display: flex; gap: 10px; flex-wrap: wrap; }
.ac-sns a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--c-line);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-ink-soft);
  transition: border-color .2s, color .2s;
}
.ac-sns a:hover { border-color: var(--c-accent); color: var(--c-accent); }

.access-map {
  border-radius: 8px;
  overflow: hidden;
  height: 360px;
  background: var(--c-bg-alt);
}
.access-map iframe { width: 100%; height: 100%; border: none; display: block; }

/* =========================================================
   CTA
   ========================================================= */
.cta {
  position: relative;
  overflow: hidden;
  padding: 120px var(--pad-x);
  text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(140deg, var(--c-dark) 0%, var(--c-dark-alt) 100%);
}
.cta-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(26,110,199,.18) 0%, transparent 70%);
}
.cta-inner {
  position: relative; z-index: 1;
  color: #fff;
  max-width: 600px; margin: 0 auto;
}
.cta-en {
  font-family: var(--ff-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 20px;
}
.cta h2 {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 20px;
}
.cta > .cta-inner > p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,.6);
  margin-bottom: 40px;
}
.cta-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta-sns { display: flex; gap: 24px; justify-content: center; }
.cta-sns a {
  font-family: var(--ff-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  transition: color .2s;
}
.cta-sns a:hover { color: #fff; }

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--c-dark);
  color: rgba(255,255,255,.55);
  padding: 56px var(--pad-x) 0;
}
.footer-inner {
  max-width: var(--w-max); margin: 0 auto;
  display: flex; gap: 64px; align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand { flex-shrink: 0; }
.footer-mark { display: block; color: var(--c-accent); margin-bottom: 14px; }
.footer-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .03em;
  margin-bottom: 4px;
}
.footer-en {
  font-family: var(--ff-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  color: rgba(255,255,255,.25);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.footer-addr { font-size: 13px; margin-bottom: 6px; line-height: 1.6; }
.footer-tel a { color: var(--c-accent); font-weight: 600; font-size: 13px; }

.footer-cols {
  margin-left: auto;
  display: flex; gap: 48px;
}
.footer-cols h4 {
  font-family: var(--ff-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}
.footer-cols ul { display: flex; flex-direction: column; gap: 10px; }
.footer-cols a {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-cols a:hover { color: #fff; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  max-width: var(--w-max); margin: 0 auto;
}
.footer-bottom small { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-totop {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: rgba(255,255,255,.5);
  transition: border-color .2s, color .2s;
}
.footer-totop:hover { border-color: #fff; color: #fff; }

/* =========================================================
   Float CTA (mobile)
   ========================================================= */
.float-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  grid-template-columns: 1fr 1fr;
}
.float-cta-tel,
.float-cta-contact {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
}
.float-cta-tel { background: var(--c-accent); color: #fff; }
.float-cta-contact { background: var(--c-ink); color: #fff; }

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px) {
  .treatment-list { grid-template-columns: repeat(2, 1fr); }
  .hero-side { display: none; }
}
@media (max-width: 900px) {
  .about-body { grid-template-columns: 1fr; gap: 40px; }
  .hours-grid { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-cols { flex-direction: column; gap: 24px; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 72px var(--pad-x); }
  .cta { padding: 80px var(--pad-x); }
  .hero { padding-top: 90px; min-height: 100svh; }
  .treatment-list { grid-template-columns: 1fr; }
  .float-cta { display: grid; }
  body { padding-bottom: 56px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .htable { font-size: 12px; }
  .hrow-label { font-size: 11px; padding-left: 10px !important; }
  .htable th:first-child { padding-left: 10px; }
  .section-head { flex-direction: column; gap: 8px; }
}
