/* ==========================================================================
   Cenit Home Upgrade — shared design system
   Typography-led, asymmetric, restrained brand color usage.
   Base surface: light grey (brand "paper" #F1F2F2), never pure white,
   with a subtle staggered shingle-course texture tinted toward brand orange.
   ========================================================================== */

:root {
  /* brand core (pulled from logo source files, not re-guessed) */
  --ink: #0b0b0a;
  --ink-soft: #33332f;
  --body: #55564f;
  --orange: #ff9700;
  --orange-deep: #d97e00;
  --green: #2fae75;
  --green-soft: #58e09b;
  --line: #c9c9c9;
  --paper: #f1f2f2;

  /* surfaces derived from paper, kept low-saturation */
  --surface-0: #eef0ef;      /* page base */
  --surface-1: #f6f6f5;      /* raised card */
  --surface-2: #ffffff;      /* highest raised (form fields) */
  --surface-ink: #17181a;    /* dark section background */
  --surface-ink-raised: #212226;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-card: 0 1px 2px rgba(11,11,10,.04), 0 12px 28px -12px rgba(11,11,10,.16);
  --shadow-pop: 0 2px 6px rgba(11,11,10,.06), 0 24px 48px -16px rgba(11,11,10,.24);

  --max: 1240px;
  --edge: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  background-color: var(--surface-0);
  background-image:
    linear-gradient(rgba(241,242,242,.94), rgba(241,242,242,.94)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='80' viewBox='0 0 240 80'%3E%3Cg fill='none' stroke='%23ff9700' stroke-opacity='0.09' stroke-width='1'%3E%3Cline x1='0' y1='0' x2='0' y2='40'/%3E%3Cline x1='80' y1='0' x2='80' y2='40'/%3E%3Cline x1='160' y1='0' x2='160' y2='40'/%3E%3Cline x1='240' y1='0' x2='240' y2='40'/%3E%3Cline x1='40' y1='40' x2='40' y2='80'/%3E%3Cline x1='120' y1='40' x2='120' y2='80'/%3E%3Cline x1='200' y1='40' x2='200' y2='80'/%3E%3C/g%3E%3Cg fill='none' stroke='%230b0b0a' stroke-opacity='0.045' stroke-width='1'%3E%3Cline x1='0' y1='40' x2='240' y2='40'/%3E%3Cline x1='0' y1='80' x2='240' y2='80'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-attachment: fixed;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0;
  font-weight: 600;
}
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

.shell { max-width: var(--max); margin: 0 auto; padding-left: var(--edge); padding-right: var(--edge); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--orange);
}

/* ---- buttons: rectangular, confident, not pill-shaped ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 15px; letter-spacing: -.005em;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--surface-1); }
.btn-primary:hover { background: var(--orange); color: var(--ink); box-shadow: var(--shadow-pop); transform: translateY(-1px); }
.btn-ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { border-color: var(--orange); background: rgba(255,151,0,.08); }
.btn-accent { background: var(--orange); color: var(--ink); }
.btn-accent:hover { background: var(--orange-deep); box-shadow: var(--shadow-pop); transform: translateY(-1px); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 18px; font-size: 13px; }
.btn[disabled] { opacity: .4; cursor: not-allowed; pointer-events: none; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(241,242,242,.86);
  backdrop-filter: blur(10px) saturate(1.1);
  border-bottom: 1px solid rgba(11,11,10,.08);
}
.header-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 20px; }
.brand-mark { display: flex; align-items: center; gap: 10px; flex: none; }
.brand-mark img { height: 26px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
  position: relative; padding: 4px 0;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a.active { color: var(--ink); }
.main-nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px; background: var(--orange);
}
.header-actions { display: flex; align-items: center; gap: 18px; }
.phone-link { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14.5px; color: var(--ink); }
.phone-link svg { width: 16px; height: 16px; }
.phone-link svg path { stroke: var(--orange); }
.nav-toggle { display: none; }
@media (max-width: 880px) {
  .main-nav { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border: 1px solid var(--ink); border-radius: var(--radius-sm);
    background: none; cursor: pointer;
  }
  .phone-link span.txt { display: none; }
}
.mobile-nav {
  display: none; flex-direction: column; gap: 2px;
  background: var(--surface-1); border-bottom: 1px solid var(--line);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a { padding: 14px var(--edge); font-weight: 600; font-size: 15px; border-top: 1px solid rgba(11,11,10,.06); }

/* ==========================================================================
   SECTION RHYTHM
   ========================================================================== */
section { padding: 96px 0; position: relative; }
section.tight { padding: 64px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); margin-top: 14px; }
.section-head p { color: var(--body); font-size: 17px; margin-top: 14px; }
.section-dark { background: var(--surface-ink); color: var(--surface-1); }
.section-dark .eyebrow { color: var(--green-soft); }
.section-dark h2, .section-dark h3 { color: var(--surface-1); }
.section-dark p { color: #b9bab6; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { padding: 56px 0 40px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 {
  font-size: clamp(36px, 5.6vw, 64px);
  margin-top: 20px;
  max-width: 15ch;
}
.hero h1 .accent { color: var(--orange); font-style: italic; }
.hero .lead { font-size: 19px; color: var(--body); max-width: 46ch; margin-top: 22px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 32px; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }
.trust-item .tick { width: 15px; height: 15px; flex: none; color: var(--green); }
.hero-scroll-cue { display: flex; align-items: center; gap: 10px; margin-top: 44px; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.hero-scroll-cue .line { width: 34px; height: 1px; background: var(--ink-soft); animation: pulseline 2.2s ease-in-out infinite; }
@keyframes pulseline { 0%,100% { opacity: .3; } 50% { opacity: 1; } }

/* ==========================================================================
   DISCOVERY FUNNEL (sliding cards)
   ========================================================================== */
.discovery {
  background: var(--surface-1);
  border: 1px solid rgba(11,11,10,.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
  overflow: hidden;
  position: sticky;
  top: 96px;
}
.discovery-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 0;
}
.discovery-kicker { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--body); }
.discovery-step-count { font-size: 11.5px; font-weight: 700; color: var(--ink-soft); }

.route-track { position: relative; height: 4px; margin: 14px 24px 0; background: rgba(11,11,10,.08); border-radius: 2px; overflow: hidden; }
.route-fill {
  position: absolute; top: 0; left: 0; height: 100%; width: 20%;
  background: linear-gradient(90deg, var(--orange), var(--green-soft));
  transition: width .5s var(--ease);
}
.route-pin {
  position: absolute; top: 50%; width: 10px; height: 10px; border-radius: 50%;
  background: var(--surface-2); border: 2px solid var(--orange);
  transform: translate(-50%, -50%); left: 20%;
  transition: left .5s var(--ease);
  box-shadow: 0 0 0 4px rgba(255,151,0,.15);
}

.card-viewport { position: relative; padding: 26px 24px 24px; min-height: 300px; }
.card-track { position: relative; }
.d-card {
  position: absolute; inset: 0;
  opacity: 0; transform: translateX(28px) scale(.985);
  pointer-events: none;
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.d-card.is-active { position: relative; opacity: 1; transform: translateX(0) scale(1); pointer-events: auto; }
.d-card.is-leaving { transform: translateX(-28px) scale(.985); }

.d-card h3 { font-size: 21px; margin-bottom: 6px; max-width: 26ch; }
.d-card .d-sub { font-size: 13.5px; color: var(--body); margin-bottom: 20px; }

.option-grid { display: grid; gap: 10px; }
.option-btn {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 15px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-md);
  background: var(--surface-2); cursor: pointer; text-align: left;
  transition: border-color .15s var(--ease), background .15s var(--ease), transform .1s var(--ease);
  font-size: 14.5px; font-weight: 600; color: var(--ink);
}
.option-btn:hover { border-color: var(--orange); background: rgba(255,151,0,.06); }
.option-btn:active { transform: scale(.99); }
.option-btn.is-selected { border-color: var(--orange); background: rgba(255,151,0,.09); }
.option-btn .arrow { width: 16px; height: 16px; flex: none; opacity: 0; transform: translateX(-4px); transition: opacity .15s, transform .15s; color: var(--orange); }
.option-btn:hover .arrow, .option-btn.is-selected .arrow { opacity: 1; transform: translateX(0); }

.field-row { display: grid; gap: 14px; }
.field-row.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 460px) { .field-row.two { grid-template-columns: 1fr; } }
.field label { display: block; font-size: 12.5px; font-weight: 700; margin-bottom: 7px; color: var(--ink-soft); }
.field input, .field select {
  width: 100%; padding: 13px 14px; border-radius: var(--radius-md); border: 1.5px solid var(--line);
  font-size: 15px; font-family: inherit; background: var(--surface-2); color: var(--ink);
}
.field input:focus, .field select:focus { outline: none; border-color: var(--orange); }

.d-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 22px; }
.d-back { font-size: 13px; font-weight: 600; color: var(--body); background: none; border: none; cursor: pointer; padding: 8px 0; }
.d-back:hover { color: var(--ink); }
.d-back[hidden] { visibility: hidden; }

/* ---- "building" / AI-style reveal animation ---- */
.build-sequence { display: flex; flex-direction: column; gap: 13px; padding: 6px 0 8px; }
.build-line {
  display: flex; align-items: center; gap: 11px;
  font-size: 14px; font-weight: 600; color: var(--body);
  opacity: 0; transform: translateY(6px);
}
.build-line.is-shown { animation: buildIn .45s var(--ease) forwards; }
.build-line.is-done { color: var(--ink); }
@keyframes buildIn { to { opacity: 1; transform: translateY(0); } }
.build-dot {
  width: 16px; height: 16px; border-radius: 50%; flex: none; position: relative;
  border: 2px solid var(--line);
}
.build-line.is-active .build-dot { border-color: var(--orange); animation: spin 900ms linear infinite; border-top-color: transparent; }
.build-line.is-done .build-dot { border-color: var(--green); background: var(--green); }
.build-line.is-done .build-dot::after {
  content: ""; position: absolute; left: 4px; top: 1px; width: 4px; height: 8px;
  border-right: 2px solid var(--surface-2); border-bottom: 2px solid var(--surface-2); transform: rotate(45deg);
}
@keyframes spin { to { transform: rotate(360deg); } }

.result-card {
  border: 1.5px solid var(--orange); border-radius: var(--radius-md);
  padding: 20px; background: linear-gradient(180deg, rgba(255,151,0,.08), rgba(255,151,0,0) 60%);
  margin-top: 4px;
}
.result-card .result-tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--orange-deep); margin-bottom: 8px;
}
.result-card h4 { font-family: 'Fraunces', serif; font-size: 19px; margin-bottom: 8px; }
.result-card p { font-size: 14px; color: var(--body); }

.disclaimer-note {
  font-size: 11.5px; color: var(--body); line-height: 1.5; padding: 14px 24px 20px;
  border-top: 1px solid rgba(11,11,10,.08); margin-top: 4px;
}

/* ==========================================================================
   OFFER CARDS (equal weight, no featured bias)
   ========================================================================== */
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 820px) { .offer-grid { grid-template-columns: 1fr; } }
.offer-card {
  background: var(--surface-1); border: 1px solid rgba(11,11,10,.08); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-card); position: relative;
}
.offer-index { font-family: 'Fraunces', serif; font-size: 13px; font-weight: 600; color: var(--body); margin-bottom: 18px; }
.offer-card h3 { font-size: 24px; margin-bottom: 14px; }
.offer-card p.desc { color: var(--body); font-size: 15px; margin-bottom: 20px; }
.offer-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.offer-list li { display: flex; gap: 10px; font-size: 14px; color: var(--ink-soft); }
.offer-list li .mk { color: var(--orange); font-weight: 700; flex: none; }
.offer-photo {
  aspect-ratio: 16/10; border-radius: var(--radius-md); background: repeating-linear-gradient(135deg, #e2e3e1, #e2e3e1 12px, #dadbd9 12px, #dadbd9 24px);
  display: flex; align-items: center; justify-content: center;
  color: var(--body); font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 20px; border: 1px dashed var(--line);
}

/* ==========================================================================
   PROCESS STEPS
   ========================================================================== */
.steps { display: flex; flex-direction: column; }
.step-row {
  display: grid; grid-template-columns: 60px 1fr; gap: 24px;
  padding: 28px 0; border-top: 1px solid rgba(11,11,10,.1);
}
.step-row:last-child { border-bottom: 1px solid rgba(11,11,10,.1); }
.step-num { font-family: 'Fraunces', serif; font-size: 28px; color: var(--orange); font-weight: 600; }
.step-row h3 { font-size: 19px; margin-bottom: 8px; }
.step-row p { color: var(--body); font-size: 15px; max-width: 60ch; }

/* ==========================================================================
   WHY US / STAT STRIP
   ========================================================================== */
.stat-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
@media (max-width: 720px) { .stat-strip { grid-template-columns: 1fr; } }
.stat-block { border-left: 2px solid var(--orange); padding-left: 18px; }
.stat-block .num { font-family: 'Fraunces', serif; font-size: 32px; color: var(--ink); }
.stat-block .lbl { font-size: 13.5px; color: var(--body); margin-top: 6px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid rgba(11,11,10,.12); }
.faq-item:last-child { border-bottom: 1px solid rgba(11,11,10,.12); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0; background: none; border: none; cursor: pointer; text-align: left;
  font-size: 17px; font-weight: 600; color: var(--ink); font-family: 'Fraunces', serif;
}
.faq-q .plus { flex: none; width: 20px; height: 20px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--ink); transition: transform .25s var(--ease); }
.faq-q .plus::before { left: 0; top: 50%; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-q .plus::after { top: 0; left: 50%; width: 2px; height: 100%; transform: translateX(-50%); }
.faq-item.is-open .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 0 24px; color: var(--body); font-size: 15px; max-width: 68ch; }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta { text-align: left; }
.final-cta-grid { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.final-cta h2 { font-size: clamp(30px, 4vw, 46px); max-width: 18ch; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer { background: var(--surface-ink); color: #b9bab6; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 { color: var(--surface-1); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; font-family: 'Inter', sans-serif; margin-bottom: 16px; }
.footer-grid ul { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-brand img { height: 24px; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-brand p { font-size: 13.5px; max-width: 34ch; color: #8b8c88; }
.footer-legal {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px; color: #82837f; line-height: 1.6;
}
.footer-legal .placeholder { color: var(--orange); }

.placeholder-tag {
  display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: .05em;
  color: var(--orange-deep); background: rgba(255,151,0,.12); padding: 2px 7px; border-radius: 3px;
  margin-left: 6px; vertical-align: middle;
}

/* ==========================================================================
   MOBILE STICKY CTA
   ========================================================================== */
.sticky-cta { display: none; }
@media (max-width: 780px) {
  .sticky-cta {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
    background: var(--surface-2); border-top: 1px solid var(--line);
    padding: 10px var(--edge); gap: 10px; box-shadow: 0 -8px 24px rgba(11,11,10,.1);
  }
  .sticky-cta a.btn-ghost { flex: none; width: 52px; padding: 12px; }
  .sticky-cta a.btn-accent { flex: 1; }
  body { padding-bottom: 74px; }
}

/* ==========================================================================
   PROCESS DIAGRAMS (how-it-works) — build-in-view illustrative animations
   ========================================================================== */
.process-diagram {
  aspect-ratio: 4/3; border-radius: var(--radius-md); border: 1px solid rgba(11,11,10,.1);
  background: var(--surface-1); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.process-diagram svg { width: 78%; height: 78%; }

/* diagram 1: scan */
.pd-scanline {
  stroke: var(--orange); stroke-width: 2; opacity: 0;
}
.process-diagram.in-view .pd-scanline {
  animation: scanSweep 2.4s var(--ease) .2s 1 forwards;
}
@keyframes scanSweep {
  0% { opacity: 0; transform: translateY(-40px); }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translateY(40px); }
}
.pd-point { opacity: 0; transform: scale(.4); transform-origin: center; }
.process-diagram.in-view .pd-point:nth-child(1) { animation: pointIn .3s var(--ease) .5s forwards; }
.process-diagram.in-view .pd-point:nth-child(2) { animation: pointIn .3s var(--ease) .9s forwards; }
.process-diagram.in-view .pd-point:nth-child(3) { animation: pointIn .3s var(--ease) 1.3s forwards; }
@keyframes pointIn { to { opacity: 1; transform: scale(1); } }

/* diagram 2: paperwork pulse */
.pd-track-line { stroke: var(--line); stroke-width: 2; }
.pd-track-fill { stroke: var(--orange); stroke-width: 2; stroke-dasharray: 220; stroke-dashoffset: 220; }
.process-diagram.in-view .pd-track-fill { animation: drawLine 1.6s var(--ease) .3s forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.pd-node circle { fill: var(--surface-2); stroke: var(--line); stroke-width: 2; }
.pd-node.is-a circle, .pd-node.is-b circle { transition: stroke .3s, fill .3s; }
.process-diagram.in-view .pd-node.is-a circle { stroke: var(--orange); }
.process-diagram.in-view .pd-node.is-b circle { animation: nodeLight .3s ease 1.1s forwards; }
.process-diagram.in-view .pd-node.is-c circle { animation: nodeLight .3s ease 1.9s forwards; }
@keyframes nodeLight { to { stroke: var(--green); } }

/* diagram 3: layers building */
.pd-layer { opacity: 0; transform: translateY(18px); }
.process-diagram.in-view .pd-layer:nth-child(1) { animation: layerUp .5s var(--ease) .2s forwards; }
.process-diagram.in-view .pd-layer:nth-child(2) { animation: layerUp .5s var(--ease) .55s forwards; }
.process-diagram.in-view .pd-layer:nth-child(3) { animation: layerUp .5s var(--ease) .9s forwards; }
@keyframes layerUp { to { opacity: 1; transform: translateY(0); } }

/* diagram 4: shield checkmark draw */
.pd-shield { stroke: var(--ink-soft); stroke-width: 2; fill: none; }
.pd-check { stroke: var(--green); stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; }
.process-diagram.in-view .pd-check { animation: drawLine 1s var(--ease) .6s forwards; }

/* ==========================================================================
   UTILITY
   ========================================================================== */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag-list span { font-size: 12px; font-weight: 700; padding: 6px 12px; border: 1px solid var(--line); border-radius: 20px; color: var(--ink-soft); }
