/* =========================================================
   さいとう整骨院 — Premium Design
   ========================================================= */

:root {
  --c-bg: #f4f6fa;
  --c-bg-alt: #e8ecf6;
  --c-ink: #060c18;
  --c-ink-soft: #0e1828;
  --c-mute: #405080;
  --c-line: #c8d0e8;
  --c-accent: #1852c8;
  --c-accent-2: #1040a0;
  --c-dark: #060c18;
  --c-dark-alt: #0a1428;
  --c-white: #ffffff;

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

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

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

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

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

.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(6,12,24,.0); transition: background .35s var(--ease), backdrop-filter .35s, padding .35s; padding: 14px 0; }
.header.is-scrolled { background: rgba(6,12,24,.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); padding: 8px 0; }
.header-inner { max-width: 1400px; margin: 0 auto; padding: 6px var(--pad-x); display: flex; align-items: center; gap: 32px; color: #fff; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; color: #fff; }
.brand-mark { display: flex; align-items: center; color: var(--c-accent); }
.brand-text { display: flex; flex-direction: column; }
.brand-en { font-family: var(--ff-en); font-size: 9px; font-weight: 700; letter-spacing: .18em; line-height: 1; opacity: .45; text-transform: uppercase; }
.brand-ja { font-size: 15px; font-weight: 700; line-height: 1.2; letter-spacing: .04em; }
.nav { margin-left: auto; }
.nav-list { display: flex; gap: 2px; }
.nav-list a { display: flex; flex-direction: column; align-items: center; padding: 6px 12px; border-radius: 4px; transition: background .2s; }
.nav-list a:hover, .nav-list a.is-active { background: rgba(255,255,255,.1); }
.nav-en { font-family: var(--ff-en); font-size: 9px; font-weight: 700; letter-spacing: .12em; opacity: .45; line-height: 1; text-transform: uppercase; }
.nav-ja { font-size: 11px; font-weight: 500; line-height: 1.6; }

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

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

.drawer { 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(300px, 85vw); background: var(--c-dark); padding: 80px 28px 40px; display: flex; flex-direction: column; gap: 20px; transform: translateX(100%); transition: transform .35s var(--ease-out); }
.drawer.is-open .drawer-inner { transform: translateX(0); }
.drawer-list { display: flex; flex-direction: column; }
.drawer-list a { display: flex; align-items: center; gap: 14px; padding: 13px 0; color: #fff; font-size: 15px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.07); }
.drawer-list em { font-style: normal; font-family: var(--ff-en); font-size: 10px; font-weight: 700; color: var(--c-accent); letter-spacing: .12em; }
.drawer-note { text-align: center; color: rgba(255,255,255,.35); font-size: 12px; margin-top: -8px; }

.hero { min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; padding: 120px var(--pad-x) 100px; }
.hero-stage { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s var(--ease); }
.hero-slide.is-active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(6,12,24,.85) 35%, rgba(6,12,24,.5)); }
.hero-pager { position: absolute; bottom: 32px; right: var(--pad-x); display: flex; gap: 8px; z-index: 1; }
.hp-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); transition: background .3s, transform .3s; padding: 0; }
.hp-dot.is-active { background: var(--c-accent); transform: scale(1.2); }

.hero-content { position: relative; z-index: 1; max-width: 680px; color: #fff; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; font-family: var(--ff-en); font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 28px; }
.hero-eyebrow .dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--c-accent); flex-shrink: 0; }
.hero-eyebrow em { font-style: normal; }
.hero-title { font-size: clamp(46px, 8vw, 88px); font-weight: 900; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 28px; }
.hl-1 { display: block; opacity: .65; }
.hl-2 { display: block; color: #fff; }
.hero-sub { font-size: clamp(11px, 1.2vw, 13px); font-weight: 600; letter-spacing: .14em; color: var(--c-accent); margin-bottom: 18px; }
.hero-lead { font-size: 15px; line-height: 1.9; color: rgba(255,255,255,.65); margin-bottom: 44px; }
.hero-lead strong { color: #fff; font-weight: 700; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

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

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

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

.section { padding: 100px var(--pad-x); }
.section-head { display: flex; align-items: flex-start; gap: 20px; max-width: var(--w-max); margin: 0 auto 64px; }
.section-head-light .section-num { color: rgba(24,82,200,.8); }
.section-head-light .title-en { color: rgba(255,255,255,.4); }
.section-head-light .title-ja { color: #fff; }
.section-head-light .section-sub { color: rgba(255,255,255,.55); }
.section-num { font-family: var(--ff-en); font-size: 12px; font-weight: 700; color: var(--c-accent); letter-spacing: .12em; margin-top: 8px; flex-shrink: 0; }
.section-title { display: flex; flex-direction: column; gap: 4px; }
.title-en { font-family: var(--ff-en); font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--c-mute); }
.title-ja { font-size: clamp(22px, 3.5vw, 34px); font-weight: 700; letter-spacing: -.01em; color: var(--c-ink); }
.section-sub { font-size: 14px; color: var(--c-mute); margin-top: 10px; }

.about { background: var(--c-white); }
.about-body { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; max-width: var(--w-max); margin: 0 auto; align-items: start; }
.about-lead { font-size: clamp(22px, 3vw, 30px); font-weight: 700; line-height: 1.45; margin-bottom: 28px; }
.about-lead em { font-style: normal; color: var(--c-accent); }
.about-text p { font-size: 15px; line-height: 1.95; color: var(--c-ink-soft); margin-bottom: 16px; }
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--c-ink); font-weight: 700; }
.about-imgs { display: flex; flex-direction: column; gap: 8px; }
.about-img-main { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; }
.about-img-sub { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.about-img-sub img { width: 100%; height: 130px; object-fit: cover; border-radius: 8px; }
.about-info { background: var(--c-bg); border-radius: 8px; padding: 28px; }
.about-info > div { display: grid; grid-template-columns: 72px 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--c-line); }
.about-info > div:first-child { padding-top: 0; }
.about-info > div:last-child { border-bottom: none; padding-bottom: 0; }
.about-info dt { font-size: 11px; font-weight: 700; color: var(--c-mute); letter-spacing: .06em; padding-top: 3px; font-family: var(--ff-en); }
.about-info dd { font-size: 13px; line-height: 1.75; color: var(--c-ink); margin: 0; }
.about-info dd small { font-size: 11px; color: var(--c-mute); }
.about-info dd a { color: var(--c-accent); font-weight: 700; }
.about-info dd a:hover { text-decoration: underline; }

.treatment { position: relative; overflow: hidden; }
.treatment-bg { position: absolute; inset: 0; background: linear-gradient(140deg, var(--c-dark) 0%, var(--c-dark-alt) 100%); }
.treatment-bg::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 85% 50%, rgba(24,82,200,.25) 0%, transparent 60%); }
.treatment .section-head { position: relative; z-index: 1; }
.treatment-list { position: relative; z-index: 1; max-width: var(--w-max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.treatment-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: 8px; overflow: hidden; color: #fff; transition: background .3s, border-color .3s, transform .3s var(--ease); display: flex; flex-direction: column; }
.treatment-card:hover { background: rgba(255,255,255,.08); border-color: rgba(24,82,200,.5); transform: translateY(-4px); }
.tc-img { width: 100%; height: 160px; overflow: hidden; flex-shrink: 0; background: rgba(255,255,255,.06); }
.tc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.treatment-card:hover .tc-img img { transform: scale(1.04); }
.treatment-card > *:not(.tc-img) { padding-left: 24px; padding-right: 24px; }
.tc-num { font-family: var(--ff-en); font-size: 10px; font-weight: 700; color: var(--c-accent); letter-spacing: .15em; display: block; padding-top: 22px !important; margin-bottom: 10px; }
.tc-en { font-family: var(--ff-en); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 8px; }
.treatment-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 12px; color: #fff; line-height: 1.4; }
.treatment-card p { font-size: 13px; line-height: 1.85; color: rgba(255,255,255,.55); flex: 1; padding-bottom: 24px !important; }

.hours { background: var(--c-bg); }
.hours-grid { display: grid; grid-template-columns: 1fr 360px; gap: 48px; max-width: var(--w-max); margin: 0 auto; align-items: start; }
.block-label { font-family: var(--ff-en); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 20px; }
.htable { width: 100%; border-collapse: collapse; background: var(--c-white); border-radius: 8px; overflow: hidden; }
.htable th { background: var(--c-ink); color: #fff; font-size: 12px; font-weight: 600; padding: 13px 8px; text-align: center; }
.htable th:first-child { text-align: left; padding-left: 20px; }
.htable td { padding: 14px 8px; text-align: center; border-bottom: 1px solid var(--c-line); font-size: 13px; font-weight: 500; }
.htable tbody tr:last-child td { border-bottom: none; }
.hrow-label { text-align: left !important; font-size: 13px; font-weight: 600; color: var(--c-ink-soft); padding-left: 20px !important; white-space: nowrap; }
.ho { color: var(--c-accent); font-weight: 700; font-size: 16px; }
.hs { color: #c08020; 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: 8px; padding: 28px 32px; }
.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); transition: border-color .2s, background .2s; }
.reserve-item-link:hover { border-color: var(--c-accent); background: var(--c-bg); }
.info-item { display: flex; align-items: flex-start; gap: 16px; padding: 14px 16px; border-radius: 8px; border: 1px solid var(--c-line); background: var(--c-bg); }
.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; }
.info-item .ri-icon { background: var(--c-white); }
.reserve-item-link strong, .info-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--c-ink); margin-bottom: 2px; }
.reserve-item-link span { font-size: 12px; color: var(--c-mute); font-family: var(--ff-en); }
.info-item span { font-size: 12px; color: var(--c-mute); font-family: var(--ff-jp); }
.ri-arrow { margin-left: auto; color: var(--c-mute); flex-shrink: 0; }

.access { background: var(--c-white); }
.access-grid { display: grid; grid-template-columns: 300px 1fr; gap: 48px; max-width: var(--w-max); margin: 0 auto; align-items: start; }
.access-info h3 { font-size: 18px; font-weight: 700; color: var(--c-ink); margin-bottom: 12px; }
.access-info address { font-size: 15px; line-height: 1.8; color: var(--c-ink-soft); margin-bottom: 20px; }
.ac-tel { display: flex; align-items: center; gap: 8px; font-family: var(--ff-en); font-size: 26px; font-weight: 700; color: var(--c-accent); letter-spacing: -.01em; margin-bottom: 20px; transition: color .2s; }
.ac-tel:hover { color: var(--c-accent-2); }
.ac-detail { display: flex; flex-direction: column; gap: 8px; }
.ac-detail li { display: flex; align-items: flex-start; gap: 7px; font-size: 13px; 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: 8px; overflow: hidden; height: 360px; }
.access-map iframe { width: 100%; height: 100%; border: none; display: block; }

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

.footer { background: var(--c-dark); color: rgba(255,255,255,.55); padding: 56px var(--pad-x) 0; }
.footer-inner { max-width: var(--w-max); margin: 0 auto; display: flex; gap: 64px; align-items: start; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-brand { flex-shrink: 0; }
.footer-mark { display: block; color: var(--c-accent); margin-bottom: 14px; }
.footer-name { font-size: 17px; font-weight: 700; 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,.25); margin-bottom: 18px; text-transform: uppercase; }
.footer-addr { font-size: 13px; margin-bottom: 6px; line-height: 1.6; }
.footer-tel a { color: var(--c-accent); font-weight: 600; font-size: 13px; }
.footer-cols { margin-left: auto; display: flex; gap: 48px; }
.footer-cols h4 { font-family: var(--ff-en); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer-cols ul { display: flex; flex-direction: column; gap: 10px; }
.footer-cols a { font-size: 13px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-cols a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; max-width: var(--w-max); margin: 0 auto; }
.footer-bottom small { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-totop { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: rgba(255,255,255,.5); transition: border-color .2s, color .2s; }
.footer-totop:hover { border-color: #fff; color: #fff; }

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

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

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