/* =========================================================
   江崎整骨院（大分県中津市） — Dignified Indigo & Gold Design
   ========================================================= */

:root {
  --c-bg: #f6f4ef;
  --c-bg-alt: #ece8dd;
  --c-ink: #25282f;
  --c-ink-soft: #3c404a;
  --c-mute: #79766c;
  --c-line: #e1dccd;
  --c-accent: #b3902f;
  --c-accent-2: #957420;
  --c-indigo: #1f2d4d;
  --c-indigo-2: #2a3c63;
  --c-dark: #1a2440;
  --c-dark-alt: #233152;
  --c-white: #ffffff;

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

  --w-max: 1120px;
  --pad-x: clamp(20px, 5vw, 60px);
  --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.9; 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.4; }
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; color: var(--c-accent); animation: pulse 1.5s ease-in-out infinite; }
.loader-text { font-family: var(--ff-en); letter-spacing: .26em; font-size: 11px; color: rgba(255,255,255,.5); font-weight: 600; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: .95; } 50% { transform: scale(.85); opacity: .45; } }

/* ---- Header ---- */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: transparent; transition: background .35s var(--ease), backdrop-filter .35s, padding .35s; padding: 14px 0; }
.header.is-scrolled { background: rgba(26,36,64,.96); 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: 28px; 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: .55; text-transform: uppercase; }
.brand-ja { font-family: var(--ff-serif); font-size: 17px; font-weight: 600; line-height: 1.2; letter-spacing: .05em; }
.nav { margin-left: auto; }
.nav-list { display: flex; gap: 2px; }
.nav-list a { display: flex; flex-direction: column; align-items: center; padding: 6px 11px; border-radius: 4px; transition: background .2s; }
.nav-list a:hover, .nav-list a.is-active { background: rgba(255,255,255,.13); }
.nav-en { font-family: var(--ff-en); font-size: 9px; font-weight: 700; letter-spacing: .1em; opacity: .55; 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; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: 4px; font-family: var(--ff-jp); font-weight: 700; font-size: 14px; letter-spacing: .04em; cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s, background .2s, border-color .2s; border: 2px solid transparent; white-space: nowrap; line-height: 1.3; }
.btn:hover { transform: translateY(-2px); }
.btn-accent { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }
.btn-accent:hover { background: var(--c-accent-2); border-color: var(--c-accent-2); box-shadow: 0 8px 24px rgba(179,144,47,.4); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.32); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }
.btn-lg { padding: 15px 32px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-col { flex-direction: column; gap: 1px; }
.btn-col small { font-size: 11px; font-weight: 500; opacity: .92; }
.header-cta { flex-shrink: 0; padding: 9px 18px; font-size: 13px; }

/* ---- Hamburger / Drawer ---- */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 23px; 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 { position: fixed; inset: 0; z-index: 99; visibility: hidden; background: rgba(0,0,0,.5); transition: visibility .35s; }
.drawer.is-open { visibility: visible; }
.drawer-inner { position: absolute; right: 0; top: 0; bottom: 0; width: min(304px, 86vw); background: var(--c-dark); padding: 84px 28px 40px; display: flex; flex-direction: column; gap: 16px; transform: translateX(100%); transition: transform .35s var(--ease-out); overflow-y: auto; }
.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,.1); }
.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-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }

/* ---- Hero ---- */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; padding: 130px var(--pad-x) 90px; background:
  radial-gradient(ellipse 60% 70% at 84% 26%, rgba(179,144,47,.18), transparent 60%),
  linear-gradient(155deg, #1a2440 0%, #243558 52%, #1a2440 100%); }
.hero-deco { position: absolute; inset: 0; overflow: hidden; }
.hero-deco::before { content: ''; position: absolute; width: 1px; height: 70%; top: 15%; left: 12%; background: linear-gradient(to bottom, transparent, rgba(179,144,47,.3), transparent); }
.hero-seal { position: absolute; top: 18%; right: 7%; width: 230px; height: 230px; border-radius: 50%; border: 1.5px solid rgba(179,144,47,.2); display: flex; align-items: center; justify-content: center; }
.hero-seal::before { content: ''; width: 180px; height: 180px; border-radius: 50%; border: 1px solid rgba(179,144,47,.14); }
.hero-content { position: relative; z-index: 1; max-width: 760px; color: #fff; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: .14em; color: #e0c281; margin-bottom: 24px; }
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--c-accent); }
.hero-title { font-family: var(--ff-serif); font-size: clamp(32px, 5.6vw, 58px); font-weight: 600; line-height: 1.4; letter-spacing: .04em; margin-bottom: 26px; }
.hero-title em { font-style: normal; color: #e0c281; }
.hero-lead { font-size: 15px; line-height: 1.95; color: rgba(255,255,255,.8); margin-bottom: 38px; }
.hero-lead strong { color: #fff; font-weight: 700; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 38px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 9px; 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,.4); }
.hsl-line { width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(255,255,255,.4), 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; } 50% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; } }

/* ---- Ticker ---- */
.ticker { background: var(--c-indigo); overflow: hidden; white-space: nowrap; padding: 11px 0; border-top: 1px solid rgba(179,144,47,.3); border-bottom: 1px solid rgba(179,144,47,.3); }
.ticker-track { display: inline-flex; gap: 30px; animation: ticker 42s linear infinite; font-size: 13px; font-weight: 500; color: #fff; padding-right: 30px; }
.ticker-tag { font-family: var(--ff-en); font-weight: 700; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; background: var(--c-accent); 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 { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.title-en { display: block; font-family: var(--ff-en); font-size: 12px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 12px; }
.title-ja { font-family: var(--ff-serif); font-size: clamp(24px, 3.6vw, 36px); font-weight: 600; letter-spacing: .03em; color: var(--c-ink); }
.title-ja .accent { color: var(--c-accent); }
.sec-deco { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 16px; color: var(--c-accent); }
.sec-deco::before, .sec-deco::after { content: ''; width: 36px; height: 1px; background: var(--c-accent); opacity: .5; }
.section-sub { font-size: 15px; color: var(--c-mute); margin-top: 18px; line-height: 1.9; }
.section-head-light .title-ja { color: #fff; }
.section-head-light .section-sub { color: rgba(255,255,255,.74); }

/* ---- About ---- */
.about { background: var(--c-white); }
.about-grid { max-width: var(--w-max); margin: 0 auto; display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.about-body .title-en { text-align: left; }
.about-lead { font-family: var(--ff-serif); font-size: clamp(22px,2.9vw,30px); font-weight: 600; line-height: 1.6; color: var(--c-ink); margin-bottom: 24px; }
.about-lead .accent { color: var(--c-accent); }
.about-body p { font-size: 15px; line-height: 1.95; color: var(--c-ink-soft); margin-bottom: 16px; }
.about-body p:last-child { margin-bottom: 0; }
.about-body strong { color: var(--c-accent); font-weight: 700; }
.about-highlight { background: var(--c-indigo); color: #fff; border-radius: 16px; padding: 44px 40px; text-align: center; position: relative; overflow: hidden; }
.about-highlight::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 80% 20%, rgba(179,144,47,.2), transparent 60%); }
.about-highlight-inner { position: relative; z-index: 1; }
.ah-label { font-size: 14px; color: #e0c281; margin-bottom: 10px; }
.ah-big { font-family: var(--ff-serif); font-size: clamp(32px,5vw,44px); font-weight: 600; line-height: 1.3; margin-bottom: 16px; }
.ah-big em { font-style: normal; color: #e0c281; }
.about-highlight p { font-size: 14px; line-height: 1.9; color: rgba(255,255,255,.78); }

/* ---- Symptoms ---- */
.symptoms { background: var(--c-bg); }
.symptoms-grid { max-width: var(--w-max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.symptom { background: var(--c-white); border: 1px solid var(--c-line); border-radius: 12px; padding: 30px 22px; text-align: center; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.symptom:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(26,36,64,.1); border-color: var(--c-accent); }
.symptom-ico { width: 60px; height: 60px; border-radius: 50%; background: var(--c-bg); display: flex; align-items: center; justify-content: center; color: var(--c-indigo); margin: 0 auto 14px; }
.symptom h3 { font-size: 16px; font-weight: 700; color: var(--c-ink); margin-bottom: 6px; }
.symptom p { font-size: 12px; line-height: 1.7; color: var(--c-mute); }

/* ---- Reasons ---- */
.reasons { background: var(--c-white); }
.reasons-grid { max-width: var(--w-max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.reason { background: var(--c-bg); border: 1px solid var(--c-line); border-radius: 16px; padding: 38px 30px; transition: transform .3s var(--ease), box-shadow .3s; }
.reason:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(26,36,64,.1); }
.reason-no { font-family: var(--ff-en); font-size: 12px; font-weight: 700; letter-spacing: .12em; color: var(--c-accent); }
.reason-ico { width: 60px; height: 60px; border-radius: 14px; background: var(--c-indigo); display: flex; align-items: center; justify-content: center; color: #e0c281; margin: 14px 0 18px; }
.reason h3 { font-family: var(--ff-serif); font-size: 19px; font-weight: 600; color: var(--c-ink); margin-bottom: 12px; line-height: 1.5; }
.reason p { font-size: 14px; line-height: 1.9; color: var(--c-ink-soft); }

/* ---- Trainer feature ---- */
.trainer { position: relative; overflow: hidden; }
.trainer-bg { position: absolute; inset: 0; background: linear-gradient(150deg, var(--c-dark), var(--c-dark-alt)); }
.trainer-bg::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 18% 28%, rgba(179,144,47,.2), transparent 60%); }
.trainer-inner { position: relative; z-index: 1; max-width: var(--w-max); margin: 0 auto; color: #fff; }
.trainer-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.trainer-head .title-en { color: var(--c-accent); }
.trainer-head h2 { font-family: var(--ff-serif); font-size: clamp(24px,3.4vw,34px); font-weight: 600; line-height: 1.45; }
.trainer-head h2 em { font-style: normal; color: #e0c281; }
.trainer-head p { font-size: 15px; line-height: 1.95; color: rgba(255,255,255,.76); margin-top: 18px; }
.trainer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trainer-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 28px 22px; text-align: center; }
.trainer-card .tc-ico { width: 52px; height: 52px; border-radius: 50%; background: rgba(179,144,47,.18); display: flex; align-items: center; justify-content: center; color: #e0c281; margin: 0 auto 14px; }
.trainer-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.trainer-card p { font-size: 12px; line-height: 1.7; color: rgba(255,255,255,.6); }

/* ---- Staff ---- */
.staff { background: var(--c-bg); }
.staff-grid { max-width: var(--w-max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.staff-card { background: var(--c-white); border: 1px solid var(--c-line); border-radius: 16px; padding: 36px 30px; text-align: center; transition: transform .3s var(--ease), box-shadow .3s; }
.staff-card:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(26,36,64,.1); }
.staff-card.is-head { border-color: var(--c-accent); border-width: 2px; }
.staff-avatar { width: 84px; height: 84px; border-radius: 50%; background: var(--c-indigo); display: flex; align-items: center; justify-content: center; color: #e0c281; margin: 0 auto 18px; font-family: var(--ff-serif); font-size: 26px; font-weight: 600; }
.staff-role { font-size: 11px; letter-spacing: .1em; color: var(--c-accent); font-weight: 700; margin-bottom: 4px; }
.staff-name { font-family: var(--ff-serif); font-size: 21px; font-weight: 600; color: var(--c-ink); margin-bottom: 14px; }
.staff-card p { font-size: 13px; line-height: 1.85; color: var(--c-ink-soft); }

/* ---- Hours ---- */
.hours { background: var(--c-white); }
.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; background: var(--c-white); border: 1px solid var(--c-line); border-radius: 12px; overflow: hidden; }
.htable th { background: var(--c-indigo); color: #fff; font-size: 12px; font-weight: 600; padding: 13px 6px; text-align: center; }
.htable th:first-child { text-align: left; padding-left: 18px; }
.htable td { padding: 15px 6px; 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: 18px !important; white-space: nowrap; }
.ho { color: var(--c-accent); font-weight: 700; font-size: 16px; }
.hs { color: var(--c-indigo); font-weight: 700; font-size: 12px; }
.hx { color: var(--c-line); }
.hours-note { display: flex; align-items: flex-start; gap: 6px; margin-top: 14px; font-size: 13px; color: var(--c-mute); line-height: 1.6; }
.hours-note svg { color: var(--c-accent); flex-shrink: 0; margin-top: 3px; }
.reserve-card { background: var(--c-bg); border-radius: 16px; padding: 28px 30px; }
.reserve-list { display: flex; flex-direction: column; gap: 12px; }
.reserve-item-link { display: flex; align-items: center; gap: 16px; padding: 14px 16px; border-radius: 8px; border: 1px solid var(--c-line); background: var(--c-white); transition: border-color .2s; }
.reserve-item-link:hover { border-color: var(--c-accent); }
.ri-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--c-bg); display: flex; align-items: center; justify-content: center; color: var(--c-accent); flex-shrink: 0; }
.reserve-item-link strong { display: block; font-size: 14px; font-weight: 700; color: var(--c-ink); margin-bottom: 2px; }
.reserve-item-link span { font-size: 13px; color: var(--c-mute); }
.ri-arrow { margin-left: auto; color: var(--c-mute); flex-shrink: 0; }
.reserve-note { margin-top: 16px; font-size: 12px; color: var(--c-mute); line-height: 1.8; }

/* ---- Access ---- */
.access { background: var(--c-bg); }
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: var(--w-max); margin: 0 auto; align-items: start; }
.access-photo { border-radius: 16px; overflow: hidden; aspect-ratio: 16/9; box-shadow: 0 18px 40px rgba(26,36,64,.14); }
.access-photo img { width: 100%; height: 100%; object-fit: cover; }
.access-info h3 { font-family: var(--ff-serif); font-size: 20px; font-weight: 600; color: var(--c-ink); margin-bottom: 14px; }
.access-info address { font-size: 15px; line-height: 1.8; color: var(--c-ink-soft); margin-bottom: 18px; }
.ac-tel { display: inline-flex; align-items: center; gap: 8px; font-family: var(--ff-en); font-size: 25px; font-weight: 700; color: var(--c-accent); margin-bottom: 18px; }
.ac-detail { display: flex; flex-direction: column; gap: 10px; }
.ac-detail li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--c-ink-soft); line-height: 1.6; }
.ac-detail li svg { color: var(--c-accent); flex-shrink: 0; margin-top: 3px; }
.access-map { grid-column: 1 / -1; border-radius: 16px; overflow: hidden; height: 340px; margin-top: 8px; }
.access-map iframe { width: 100%; height: 100%; border: none; display: block; }

/* ---- CTA ---- */
.cta { position: relative; overflow: hidden; padding: 104px var(--pad-x); text-align: center; }
.cta-bg { position: absolute; inset: 0; background: linear-gradient(140deg, var(--c-dark), var(--c-dark-alt)); }
.cta-bg::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 50% 40%, rgba(179,144,47,.2), transparent 70%); }
.cta-inner { position: relative; z-index: 1; color: #fff; max-width: 640px; margin: 0 auto; }
.cta-en { font-family: var(--ff-en); font-size: 10px; font-weight: 700; letter-spacing: .35em; text-transform: uppercase; color: #e0c281; margin-bottom: 20px; }
.cta h2 { font-family: var(--ff-serif); font-size: clamp(25px, 4vw, 38px); font-weight: 600; line-height: 1.45; margin-bottom: 20px; }
.cta-inner > p { font-size: 15px; line-height: 1.9; color: rgba(255,255,255,.74); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- Footer ---- */
.footer { background: var(--c-dark); color: rgba(255,255,255,.62); padding: 56px var(--pad-x) 0; }
.footer-inner { max-width: var(--w-max); margin: 0 auto; display: flex; gap: 60px; align-items: start; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { flex-shrink: 0; max-width: 360px; }
.footer-mark { display: block; color: var(--c-accent); margin-bottom: 14px; }
.footer-name { font-family: var(--ff-serif); font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.footer-en { font-family: var(--ff-en); font-size: 9px; font-weight: 700; letter-spacing: .2em; color: rgba(255,255,255,.3); margin-bottom: 16px; text-transform: uppercase; }
.footer-addr { font-size: 13px; margin-bottom: 6px; line-height: 1.7; }
.footer-tel a { color: #e0c281; font-weight: 700; font-size: 14px; }
.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: .16em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-cols ul { display: flex; flex-direction: column; gap: 10px; }
.footer-cols a { font-size: 13px; color: rgba(255,255,255,.6); }
.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,.35); }
.footer-totop { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: rgba(255,255,255,.55); 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; }
.float-cta a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 16px; font-size: 15px; font-weight: 700; color: #fff; background: var(--c-accent); }

/* ---- Reveal ---- */
.reveal { opacity: 0; transform: translateY(24px); 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: 1040px) {
  .symptoms-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid { grid-template-columns: 1fr; max-width: 480px; }
  .trainer-grid { grid-template-columns: 1fr 1fr; }
  .staff-grid { grid-template-columns: 1fr; max-width: 480px; }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .hours-grid { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .hero-seal { display: none; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 70px var(--pad-x); }
  .cta { padding: 76px var(--pad-x); }
  .hero { padding-top: 100px; min-height: 100svh; }
  .float-cta { display: block; }
  body { padding-bottom: 54px; }
}
@media (max-width: 560px) {
  .symptoms-grid { grid-template-columns: 1fr 1fr; }
  .trainer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; }
  .htable { font-size: 12px; }
  .footer-cols { flex-direction: column; gap: 22px; }
}
