/* =========================================================
   鈴木接骨院（福島県いわき市） — Modern Confident Design
   ========================================================= */

:root {
  --c-bg: #f3f5f6;
  --c-bg-alt: #e6eaec;
  --c-ink: #1f242c;
  --c-ink-soft: #353c45;
  --c-mute: #6c7682;
  --c-line: #dde2e6;
  --c-accent: #15a892;
  --c-accent-2: #0f8676;
  --c-dark: #1a1e25;
  --c-dark-alt: #232a33;
  --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: 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.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.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.4s 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: 700; }
@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,30,37,.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: 800; letter-spacing: .2em; line-height: 1; opacity: .6; 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 11px; border-radius: 4px; transition: background .2s; }
.nav-list a:hover, .nav-list a.is-active { background: rgba(255,255,255,.12); }
.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: 6px; 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(21,168,146,.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 82% 24%, rgba(21,168,146,.24), transparent 60%),
  linear-gradient(150deg, #1a1e25 0%, #232b34 54%, #181c22 100%); }
.hero-deco { position: absolute; inset: 0; overflow: hidden; }
.hero-deco::before { content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%; border: 1.5px solid rgba(21,168,146,.12); top: 6%; right: 2%; }
.hero-deco::after { content: ''; position: absolute; width: 260px; height: 260px; border-radius: 50%; border: 1.5px solid rgba(21,168,146,.08); bottom: 8%; right: 22%; }
.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: 700; letter-spacing: .1em; color: #fff; background: var(--c-accent); padding: 6px 16px; border-radius: 30px; margin-bottom: 24px; }
.hero-title { font-size: clamp(33px, 6vw, 64px); font-weight: 900; line-height: 1.24; letter-spacing: -.01em; margin-bottom: 24px; }
.hero-title .small { display: block; font-size: .42em; font-weight: 700; color: rgba(255,255,255,.78); margin-bottom: 12px; letter-spacing: .02em; }
.hero-title em { font-style: normal; color: #4fdcc6; }
.hero-lead { font-size: 15px; line-height: 1.95; color: rgba(255,255,255,.82); margin-bottom: 34px; }
.hero-lead strong { color: #fff; font-weight: 700; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; }
.hero-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: #fff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); padding: 7px 14px; border-radius: 6px; }
.hero-tag svg { color: #4fdcc6; flex-shrink: 0; }
.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; } }

/* ---- Stats bar ---- */
.stats { background: var(--c-accent); }
.stats-inner { max-width: var(--w-max); margin: 0 auto; padding: 28px var(--pad-x); display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.stat { text-align: center; color: #fff; padding: 4px 14px; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,.25); }
.stat-num { font-family: var(--ff-en); font-size: clamp(22px,2.8vw,30px); font-weight: 800; line-height: 1.15; }
.stat-num small { font-family: var(--ff-jp); font-size: 13px; font-weight: 700; margin-left: 2px; }
.stat-label { font-size: 12px; font-weight: 500; margin-top: 4px; opacity: .95; line-height: 1.5; }

/* ---- Section base ---- */
.section { padding: 96px 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: 800; letter-spacing: .24em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 12px; }
.title-ja { font-size: clamp(24px, 3.6vw, 36px); font-weight: 800; letter-spacing: .01em; color: var(--c-ink); }
.title-ja .accent { color: var(--c-accent); }
.section-sub { font-size: 15px; color: var(--c-mute); margin-top: 16px; line-height: 1.9; }
.section-head-light .title-ja { color: #fff; }
.section-head-light .section-sub { color: rgba(255,255,255,.72); }

/* ---- Worries ---- */
.worries { background: var(--c-white); }
.worries-box { max-width: var(--w-max); margin: 0 auto; background: var(--c-bg); border-radius: 16px; padding: 50px clamp(24px,4vw,56px); border: 1px solid var(--c-line); }
.worries-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 36px; }
.worry { display: flex; align-items: flex-start; gap: 13px; font-size: 15px; color: var(--c-ink); }
.worry-ico { width: 24px; height: 24px; border-radius: 6px; background: var(--c-accent); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 4px; }
.worries-foot { text-align: center; margin-top: 34px; font-size: clamp(17px,2.4vw,22px); font-weight: 700; color: var(--c-ink); }
.worries-foot .accent { color: var(--c-accent); }

/* ---- Concept ---- */
.concept { position: relative; overflow: hidden; }
.concept-bg { position: absolute; inset: 0; background: linear-gradient(150deg, var(--c-dark), var(--c-dark-alt)); }
.concept-bg::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 84% 26%, rgba(21,168,146,.24), transparent 60%); }
.concept-inner { position: relative; z-index: 1; max-width: var(--w-max); margin: 0 auto; color: #fff; }
.concept-head { max-width: 760px; }
.concept-head .title-en { color: var(--c-accent); }
.concept-head h2 { font-size: clamp(24px,3.6vw,36px); font-weight: 800; line-height: 1.45; }
.concept-head h2 em { font-style: normal; color: #4fdcc6; }
.concept-head p { font-size: 15px; line-height: 1.95; color: rgba(255,255,255,.78); margin-top: 20px; }
.concept-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.concept-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 30px 26px; }
.cc-ico { width: 52px; height: 52px; border-radius: 12px; background: rgba(21,168,146,.18); display: flex; align-items: center; justify-content: center; color: #4fdcc6; margin-bottom: 18px; }
.concept-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.concept-card p { font-size: 13px; line-height: 1.85; color: rgba(255,255,255,.62); }

/* ---- Symptoms ---- */
.symptoms { background: var(--c-bg); }
.symptoms-grid { max-width: var(--w-max); margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.symptom { background: var(--c-white); border: 1px solid var(--c-line); border-radius: 12px; padding: 24px 14px; text-align: center; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.symptom:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(26,30,37,.1); border-color: var(--c-accent); }
.symptom-ico { width: 52px; height: 52px; border-radius: 50%; background: var(--c-bg); display: flex; align-items: center; justify-content: center; color: var(--c-accent); margin: 0 auto 12px; }
.symptom h3 { font-size: 13px; font-weight: 700; color: var(--c-ink); line-height: 1.4; }
.symptom.is-key { background: var(--c-dark); border-color: var(--c-dark); }
.symptom.is-key .symptom-ico { background: rgba(21,168,146,.2); color: #4fdcc6; }
.symptom.is-key h3 { color: #fff; }
.symptom.is-key .sk-tag { display: block; font-size: 10px; color: #4fdcc6; font-weight: 700; margin-top: 4px; }

/* ---- Reasons ---- */
.reasons { background: var(--c-white); }
.reasons-grid { max-width: var(--w-max); margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.reason { background: var(--c-bg); border: 1px solid var(--c-line); border-radius: 16px; padding: 36px 32px; display: flex; gap: 22px; transition: transform .3s var(--ease), box-shadow .3s; }
.reason:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(26,30,37,.1); }
.reason-num { font-family: var(--ff-en); font-size: 30px; font-weight: 800; color: var(--c-accent); line-height: 1; flex-shrink: 0; opacity: .9; }
.reason-body h3 { font-size: 18px; font-weight: 700; color: var(--c-ink); margin-bottom: 10px; line-height: 1.5; }
.reason-body p { font-size: 14px; line-height: 1.9; color: var(--c-ink-soft); }

/* ---- Director / message ---- */
.message { background: var(--c-bg); }
.message-card { max-width: 880px; margin: 0 auto; background: var(--c-white); border-radius: 18px; padding: clamp(36px,5vw,60px); border: 1px solid var(--c-line); box-shadow: 0 18px 50px rgba(26,30,37,.06); text-align: center; }
.message-mark { color: var(--c-accent); margin: 0 auto 22px; }
.message-big { font-size: clamp(22px,3.2vw,32px); font-weight: 800; line-height: 1.5; color: var(--c-ink); margin-bottom: 24px; }
.message-big .accent { color: var(--c-accent); }
.message-card p { font-size: 15px; line-height: 1.95; color: var(--c-ink-soft); margin-bottom: 16px; }
.message-sign { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--c-line); }
.message-sign .ms-role { font-size: 12px; color: var(--c-mute); }
.message-sign .ms-name { font-size: 20px; font-weight: 700; color: var(--c-ink); margin-top: 4px; }
.message-sign .ms-name small { font-size: 13px; color: var(--c-mute); margin-left: 8px; }

/* ---- Price ---- */
.price { background: var(--c-white); }
.price-grid { max-width: var(--w-max); margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.price-card { background: var(--c-bg); border: 1px solid var(--c-line); border-radius: 14px; padding: 32px; }
.price-card h3 { font-size: 17px; font-weight: 700; color: var(--c-ink); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.price-card h3 svg { color: var(--c-accent); }
.price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--c-line); }
.price-row:last-child { border-bottom: none; padding-bottom: 0; }
.price-row .pr-key { font-size: 14px; color: var(--c-ink-soft); }
.price-row .pr-val { font-family: var(--ff-en); font-size: 22px; font-weight: 700; color: var(--c-accent); white-space: nowrap; }
.price-row .pr-val small { font-family: var(--ff-jp); font-size: 12px; font-weight: 500; color: var(--c-mute); margin-left: 2px; }
.price-foot { max-width: var(--w-max); margin: 22px auto 0; font-size: 12px; line-height: 1.8; color: var(--c-mute); display: flex; align-items: flex-start; gap: 8px; }
.price-foot svg { color: var(--c-accent); flex-shrink: 0; margin-top: 3px; }

/* ---- Hours ---- */
.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: 800; 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-dark); 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: #c08020; 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-white); border-radius: 12px; padding: 28px 30px; border: 1px solid var(--c-line); }
.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-bg); transition: border-color .2s, background .2s; }
.reserve-item-link:hover { border-color: var(--c-accent); background: var(--c-white); }
.ri-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--c-white); 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-white); }
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: var(--w-max); margin: 0 auto; align-items: start; }
.access-info h3 { font-size: 19px; font-weight: 700; 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: 26px; font-weight: 800; 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 { border-radius: 14px; overflow: hidden; height: 100%; min-height: 320px; }
.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(21,168,146,.26), 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: 800; letter-spacing: .35em; text-transform: uppercase; color: #4fdcc6; margin-bottom: 20px; }
.cta h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 900; line-height: 1.4; 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-size: 18px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.footer-en { font-family: var(--ff-en); font-size: 9px; font-weight: 800; letter-spacing: .18em; 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: #4fdcc6; 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: 800; 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) {
  .concept-cards { grid-template-columns: 1fr; max-width: 460px; }
  .symptoms-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .worries-list { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr; }
  .access-map { min-height: 300px; }
  .footer-inner { flex-direction: column; gap: 32px; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 68px 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: 600px) {
  .symptoms-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 18px 0; }
  .stat:nth-child(3) { border-left: 0; }
  .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; }
  .reason { flex-direction: column; gap: 12px; }
}
