/* =========================================================
   文京整骨院（山口県宇部市） — Warm Premium Design
   ========================================================= */

:root {
  --c-bg: #f8f4ee;
  --c-bg-alt: #efe6d9;
  --c-ink: #2c241e;
  --c-ink-soft: #463a30;
  --c-mute: #8a7a6b;
  --c-line: #e4d8c7;
  --c-accent: #b1492f;
  --c-accent-2: #8f3823;
  --c-gold: #b08a4a;
  --c-dark: #2d231b;
  --c-dark-alt: #3a2d22;
  --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.4s ease-in-out infinite; }
.loader-text { font-family: var(--ff-en); letter-spacing: .24em; font-size: 11px; color: rgba(255,255,255,.45); font-weight: 600; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: .95; } 50% { transform: scale(.86); 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(45,35,27,.95); 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: 30px; 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: .18em; 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: .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,.12); }
.nav-en { font-family: var(--ff-en); font-size: 9px; font-weight: 700; letter-spacing: .12em; 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 22px; 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-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(177,73,47,.38); }
.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,.22); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline-light:hover { background: rgba(255,255,255,.14); }
.btn-lg { padding: 15px 30px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-col { flex-direction: column; gap: 1px; }
.btn-col small { font-size: 11px; font-weight: 500; opacity: .9; }
.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,.08); }
.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; }
.hero-stage { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.06); transition: opacity 1.4s var(--ease), transform 6s linear; }
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(45,35,27,.88) 26%, rgba(45,35,27,.62) 60%, rgba(45,35,27,.32)); }
.hero-content { position: relative; z-index: 1; max-width: 720px; color: #fff; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: .12em; color: #fff; background: rgba(177,73,47,.92); padding: 6px 16px; border-radius: 30px; margin-bottom: 26px; }
.hero-title { font-family: var(--ff-serif); font-size: clamp(34px, 6vw, 64px); font-weight: 600; line-height: 1.28; letter-spacing: .02em; margin-bottom: 26px; }
.hl-1 { display: block; }
.hl-2 { display: block; }
.hl-2 em { font-style: normal; color: #e6b98a; }
.hero-sub { font-family: var(--ff-en); font-size: clamp(11px, 1.3vw, 13px); font-weight: 600; letter-spacing: .14em; color: #e6b98a; margin-bottom: 16px; }
.hero-lead { font-size: 15px; line-height: 1.95; color: rgba(255,255,255,.8); margin-bottom: 42px; }
.hero-lead strong { color: #fff; font-weight: 700; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-pager { position: absolute; bottom: 30px; right: var(--pad-x); display: flex; gap: 8px; z-index: 1; }
.hp-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.4); transition: background .3s, transform .3s; padding: 0; }
.hp-dot.is-active { background: var(--c-accent); transform: scale(1.25); }
.hero-scroll { position: absolute; bottom: 40px; 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: 52px; 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%); } }

/* ---- Section base ---- */
.section { padding: 100px var(--pad-x); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.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: .02em; color: var(--c-ink); }
.title-ja .accent { color: var(--c-accent); }
.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,.72); }

/* ---- About ---- */
.about { background: var(--c-white); }
.about-grid { max-width: var(--w-max); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.about-photo { border-radius: 16px; overflow: hidden; box-shadow: 0 24px 54px rgba(45,35,27,.16); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.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; }
.about-meta { display: flex; gap: 26px; margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--c-line); }
.about-meta .am { display: flex; flex-direction: column; }
.about-meta .am-num { font-family: var(--ff-serif); font-size: 30px; font-weight: 600; color: var(--c-accent); line-height: 1.1; }
.about-meta .am-num small { font-size: 14px; }
.about-meta .am-label { font-size: 12px; color: var(--c-mute); }

/* ---- Reasons (8 features) ---- */
.reasons { background: var(--c-bg); }
.reasons-grid { max-width: var(--w-max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.reason-card { background: var(--c-white); border: 1px solid var(--c-line); border-radius: 14px; padding: 30px 24px; transition: transform .3s var(--ease), box-shadow .3s; }
.reason-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(45,35,27,.1); }
.reason-no { font-family: var(--ff-en); font-size: 11px; font-weight: 700; letter-spacing: .12em; color: var(--c-accent); }
.reason-ico { width: 52px; height: 52px; border-radius: 12px; background: var(--c-bg-alt); display: flex; align-items: center; justify-content: center; color: var(--c-accent); margin: 12px 0 16px; }
.reason-card h3 { font-size: 16px; font-weight: 700; color: var(--c-ink); margin-bottom: 10px; line-height: 1.5; }
.reason-card p { font-size: 13px; line-height: 1.85; color: var(--c-mute); }

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

/* ---- Recommend ---- */
.recommend { position: relative; overflow: hidden; }
.recommend-bg { position: absolute; inset: 0; background: linear-gradient(150deg, var(--c-dark), var(--c-dark-alt)); }
.recommend-bg::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 80% 30%, rgba(177,73,47,.26), transparent 60%); }
.recommend-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; text-align: center; color: #fff; }
.recommend-medal { width: 70px; height: 70px; border-radius: 50%; background: rgba(176,138,74,.2); display: flex; align-items: center; justify-content: center; color: var(--c-gold); margin: 0 auto 24px; }
.recommend-inner .rec-en { font-family: var(--ff-en); font-size: 11px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 16px; }
.recommend-inner h2 { font-family: var(--ff-serif); font-size: clamp(22px,3.2vw,32px); font-weight: 600; line-height: 1.5; margin-bottom: 22px; }
.recommend-inner h2 em { font-style: normal; color: #e6b98a; }
.recommend-inner p { font-size: 15px; line-height: 1.95; color: rgba(255,255,255,.72); }

/* ---- Price ---- */
.price { background: var(--c-bg); }
.price-wrap { max-width: 880px; margin: 0 auto; }
.price-hero { background: var(--c-white); border: 2px solid var(--c-accent); border-radius: 16px; padding: 0; overflow: hidden; box-shadow: 0 20px 50px rgba(177,73,47,.12); }
.price-hero-head { background: var(--c-accent); color: #fff; text-align: center; padding: 14px; font-size: 15px; font-weight: 700; letter-spacing: .06em; }
.price-hero-body { padding: 40px clamp(24px,4vw,48px); text-align: center; }
.price-hero-body .ph-name { font-family: var(--ff-serif); font-size: 22px; font-weight: 600; color: var(--c-ink); margin-bottom: 18px; }
.price-amount { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; margin-bottom: 16px; }
.price-amount .pa-old { font-size: 16px; color: var(--c-mute); text-decoration: line-through; }
.price-amount .pa-new { font-family: var(--ff-serif); font-size: clamp(40px,7vw,58px); font-weight: 700; color: var(--c-accent); line-height: 1; }
.price-amount .pa-new small { font-size: 20px; }
.price-hero-body .ph-note { font-size: 13px; color: var(--c-mute); }
.price-hero-body .ph-tag { display: inline-block; margin-top: 18px; background: var(--c-bg-alt); color: var(--c-accent); font-size: 13px; font-weight: 700; padding: 7px 18px; border-radius: 24px; }
.price-foot { max-width: 880px; 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; }

/* ---- Flow ---- */
.flow { background: var(--c-white); }
.flow-steps { max-width: var(--w-max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; }
.flow-steps::before { content: ''; position: absolute; top: 38px; left: 12%; right: 12%; height: 1px; background: repeating-linear-gradient(to right, var(--c-line) 0 6px, transparent 6px 12px); z-index: 0; }
.flow-step { text-align: center; position: relative; z-index: 1; }
.flow-ico { width: 76px; height: 76px; border-radius: 50%; background: var(--c-bg); border: 1px solid var(--c-line); margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; color: var(--c-accent); position: relative; }
.flow-num { position: absolute; top: -6px; right: -6px; width: 26px; height: 26px; border-radius: 50%; background: var(--c-accent); color: #fff; font-family: var(--ff-en); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.flow-step h4 { font-size: 15px; font-weight: 700; color: var(--c-ink); margin-bottom: 8px; }
.flow-step p { font-size: 12px; line-height: 1.7; color: var(--c-mute); }

/* ---- Voice ---- */
.voice { background: var(--c-bg); }
.voice-grid { max-width: var(--w-max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.voice-card { background: var(--c-white); border-radius: 14px; 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-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-ink); 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: 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: 12px; 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, background .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; }
.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; }

/* ---- 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-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: 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: 110px 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(177,73,47,.3), 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: #e6b98a; 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,.72); margin-bottom: 38px; }
.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,.09); }
.footer-brand { flex-shrink: 0; max-width: 340px; }
.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: #e6b98a; font-weight: 600; 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: .18em; 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(45,35,27,.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: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .symptoms-grid { grid-template-columns: 1fr 1fr; }
  .flow-steps { grid-template-columns: 1fr 1fr; gap: 28px 12px; }
  .flow-steps::before { display: none; }
  .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: 78px 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%; }
  .reasons-grid { grid-template-columns: 1fr; }
  .symptoms-grid { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: 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; }
  .about-meta { gap: 18px; }
}
