/* =========================================================
   岩崎整体・整骨院（山口県宇部市） — Soft Healing Design
   ========================================================= */

:root {
  --c-bg: #f6f3ec;
  --c-bg-alt: #ece5d6;
  --c-ink: #2a2e2b;
  --c-ink-soft: #43483f;
  --c-mute: #7e8478;
  --c-line: #e0d9c8;
  --c-accent: #15756b;
  --c-accent-2: #0f5d55;
  --c-gold: #c2913c;
  --c-dark: #143b37;
  --c-dark-alt: #1b4b45;
  --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-gold); 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(20,59,55,.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-gold); }
.brand-text { display: flex; flex-direction: column; }
.brand-en { font-family: var(--ff-en); font-size: 9px; font-weight: 700; letter-spacing: .18em; line-height: 1; opacity: .55; text-transform: uppercase; }
.brand-ja { font-family: var(--ff-serif); font-size: 16px; font-weight: 600; 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,.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: 30px; 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,117,107,.4); }
.btn-line { background: #06c755; color: #fff; border-color: #06c755; }
.btn-line:hover { background: #05a847; border-color: #05a847; box-shadow: 0 8px 24px rgba(6,199,85,.32); }
.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-gold); 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(194,145,60,.16), transparent 60%),
  radial-gradient(ellipse 50% 60% at 8% 92%, rgba(255,255,255,.05), transparent 60%),
  linear-gradient(155deg, #143b37 0%, #1d524b 52%, #143b37 100%); }
.hero-deco { position: absolute; inset: 0; overflow: hidden; }
.hero-leaf { position: absolute; color: rgba(255,255,255,.05); }
.hero-leaf.l1 { top: 12%; right: 6%; width: 300px; animation: floaty 11s ease-in-out infinite; }
.hero-leaf.l2 { bottom: 8%; right: 28%; width: 120px; color: rgba(194,145,60,.14); animation: floaty 14s ease-in-out infinite reverse; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-16px) rotate(6deg); } }
.hero-content { position: relative; z-index: 1; max-width: 740px; color: #fff; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: .1em; color: #fff; background: rgba(21,117,107,.92); padding: 6px 16px; border-radius: 30px; margin-bottom: 24px; }
.hero-title { font-family: var(--ff-serif); font-size: clamp(32px, 5.4vw, 56px); font-weight: 600; line-height: 1.38; letter-spacing: .03em; margin-bottom: 24px; }
.hero-title em { font-style: normal; color: #e5c98a; }
.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: 30px; }
.hero-tag svg { color: #e5c98a; 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; } }

/* ---- Ticker ---- */
.ticker { background: var(--c-accent); overflow: hidden; white-space: nowrap; padding: 11px 0; }
.ticker-track { display: inline-flex; gap: 30px; animation: ticker 40s 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: rgba(255,255,255,.22); padding: 2px 10px; border-radius: 2px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Stats bar ---- */
.stats { background: var(--c-white); border-bottom: 1px solid var(--c-line); }
.stats-inner { max-width: var(--w-max); margin: 0 auto; padding: 32px var(--pad-x); display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.stat { text-align: center; padding: 6px 18px; }
.stat + .stat { border-left: 1px solid var(--c-line); }
.stat-num { font-family: var(--ff-serif); font-size: clamp(28px,4vw,38px); font-weight: 600; line-height: 1.1; color: var(--c-accent); }
.stat-num small { font-size: 15px; font-weight: 500; margin-left: 2px; color: var(--c-ink); }
.stat-label { font-size: 13px; font-weight: 500; margin-top: 4px; color: var(--c-mute); }

/* ---- 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: .24em; text-transform: uppercase; color: var(--c-gold); 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-gold); }
.sec-deco::before, .sec-deco::after { content: ''; width: 36px; height: 1px; background: var(--c-gold); 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: 1fr 1.05fr; gap: 56px; align-items: center; }
.about-media { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-media img { width: 100%; border-radius: 12px; box-shadow: 0 18px 40px rgba(20,59,55,.12); }
.about-media img:first-child { grid-column: 1 / -1; }
.about-body .title-en { text-align: left; }
.about-lead { font-family: var(--ff-serif); font-size: clamp(21px,2.8vw,28px); 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; }

/* ---- Worries ---- */
.worries { background: var(--c-bg); }
.worries-box { max-width: var(--w-max); margin: 0 auto; background: var(--c-white); border-radius: 18px; 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: 50%; background: var(--c-bg-alt); color: var(--c-accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 4px; }
.worries-foot { text-align: center; margin-top: 34px; font-family: var(--ff-serif); font-size: clamp(18px,2.4vw,24px); font-weight: 600; color: var(--c-ink); }
.worries-foot .accent { color: var(--c-accent); }

/* ---- 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; overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s; display: flex; flex-direction: column; }
.reason:hover { transform: translateY(-5px); box-shadow: 0 18px 42px rgba(20,59,55,.12); }
.reason-photo { aspect-ratio: 16/10; overflow: hidden; background: var(--c-bg-alt); }
.reason-photo img { width: 100%; height: 100%; object-fit: cover; }
.reason-body { padding: 28px 28px 30px; flex: 1; }
.reason-no { font-family: var(--ff-en); font-size: 11px; font-weight: 700; letter-spacing: .12em; color: var(--c-gold); }
.reason-body h3 { font-family: var(--ff-serif); font-size: 18px; font-weight: 600; color: var(--c-ink); margin: 6px 0 12px; line-height: 1.5; }
.reason-body p { font-size: 14px; line-height: 1.9; color: var(--c-ink-soft); }
/* icon-only reason variant */
.reason.no-photo .reason-body { padding-top: 36px; }
.reason-ico { width: 56px; height: 56px; border-radius: 14px; background: var(--c-white); border: 1px solid var(--c-line); display: flex; align-items: center; justify-content: center; color: var(--c-accent); margin-bottom: 18px; }

/* ---- 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: 16px; }
.symptom { background: var(--c-white); border: 1px solid var(--c-line); border-radius: 12px; padding: 26px 18px; 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(20,59,55,.1); border-color: var(--c-accent); }
.symptom-ico { width: 54px; height: 54px; 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: 15px; font-weight: 700; color: var(--c-ink); }

/* ---- Greeting ---- */
.greeting { position: relative; overflow: hidden; }
.greeting-bg { position: absolute; inset: 0; background: linear-gradient(150deg, var(--c-dark), var(--c-dark-alt)); }
.greeting-bg::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 16% 30%, rgba(194,145,60,.18), transparent 60%); }
.greeting-grid { position: relative; z-index: 1; max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: center; color: #fff; }
.greeting-photo { border-radius: 14px; overflow: hidden; box-shadow: 0 22px 48px rgba(0,0,0,.32); }
.greeting-photo img { width: 100%; display: block; }
.greeting-body .g-en { font-family: var(--ff-en); font-size: 11px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: #e5c98a; margin-bottom: 14px; }
.greeting-body h2 { font-family: var(--ff-serif); font-size: clamp(22px,3vw,30px); font-weight: 600; margin-bottom: 8px; line-height: 1.5; }
.greeting-role { font-size: 14px; color: rgba(255,255,255,.7); margin-bottom: 20px; }
.greeting-role strong { font-size: 19px; color: #fff; font-weight: 700; margin-left: 6px; }
.greeting-body p { font-size: 14px; line-height: 1.95; color: rgba(255,255,255,.78); margin-bottom: 14px; }
.greeting-quals { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.greeting-quals span { font-size: 12px; font-weight: 600; color: #fff; border: 1px solid rgba(255,255,255,.28); padding: 6px 14px; border-radius: 30px; }

/* ---- Voice ---- */
.voice { background: var(--c-white); }
.voice-grid { max-width: var(--w-max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.voice-card { background: var(--c-bg); border-radius: 16px; padding: 32px 30px; border: 1px solid var(--c-line); position: relative; }
.voice-card .vq { position: absolute; top: 22px; right: 26px; color: var(--c-bg-alt); }
.voice-stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--c-gold); }
.voice-card h3 { font-family: var(--ff-serif); font-size: 17px; font-weight: 600; color: var(--c-ink); margin-bottom: 12px; line-height: 1.5; }
.voice-card p { font-size: 14px; line-height: 1.9; color: var(--c-ink-soft); margin-bottom: 14px; }
.voice-who { font-size: 13px; color: var(--c-mute); display: flex; align-items: center; gap: 8px; }
.voice-who::before { content: ''; width: 18px; height: 1px; background: var(--c-accent); }

/* ---- 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: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--c-gold); 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: var(--c-gold); font-weight: 700; font-size: 13px; }
.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: 16px; 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: 12px; 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; }
.ri-icon.line { background: #06c755; color: #fff; }
.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-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: 26px; 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 { border-radius: 16px; 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(194,145,60,.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: #e5c98a; 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-gold); 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: .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: #e5c98a; 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; grid-template-columns: 1fr 1fr; box-shadow: 0 -4px 18px rgba(20,59,55,.18); }
.float-cta a { display: flex; align-items: center; justify-content: center; gap: 7px; padding: 15px; font-size: 14px; font-weight: 700; color: #fff; }
.float-cta .f-tel { background: var(--c-accent); }
.float-cta .f-line { background: #06c755; }

/* ---- 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) {
  .reasons-grid { grid-template-columns: 1fr; max-width: 460px; }
  .symptoms-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-media { max-width: 460px; }
  .worries-list { grid-template-columns: 1fr; }
  .greeting-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .greeting-photo { max-width: 220px; margin: 0 auto; }
  .greeting-quals { justify-content: center; }
  .voice-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: 70px var(--pad-x); }
  .cta { padding: 76px var(--pad-x); }
  .hero { padding-top: 100px; min-height: 100svh; }
  .float-cta { display: grid; }
  body { padding-bottom: 54px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .stats-inner { grid-template-columns: 1fr; gap: 16px; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--c-line); padding-top: 16px; }
  .symptoms-grid { grid-template-columns: 1fr 1fr; }
  .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; }
}
