@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@600;700&display=swap');

:root {
  --bg: #fbf8f5;
  --surface: #ffffff;
  --ink: #13251d;
  --muted: #667069;
  --line: #dfe4df;
  --primary: #1d4533;
  --primary-deep: #123226;
  --accent: #5e3122;
  --warm-soft: #f7eae0;
  --warm-highlight: #f9d2ba;
  --success: #2c654b;
  --error: #a33a2d;
  --shadow-sm: 0 10px 28px rgba(19, 37, 29, 0.08);
  --shadow-lg: 0 24px 70px rgba(19, 37, 29, 0.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Pretendard, "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  word-break: keep-all;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--warm-highlight); outline-offset: 3px; }
.container { max-width: 1200px; margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
.section { padding-block: 120px; }
.section--warm { background: var(--warm-soft); }
.section--surface { background: var(--surface); }
.section--dark { background: var(--primary-deep); color: var(--surface); }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.section-label::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.section-title {
  margin: 18px 0 18px;
  font-family: "Noto Serif KR", serif;
  font-size: clamp(36px, 4vw, 50px);
  line-height: 1.22;
  letter-spacing: -0.045em;
}
.section-lead { max-width: 700px; margin: 0; color: var(--muted); }
.section--dark .section-lead { color: #d5ded9; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 800; }
.text-link svg { transition: transform 180ms ease; }
.text-link:hover svg { transform: translateX(4px); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 84px;
  display: flex;
  align-items: center;
  background: rgba(251, 248, 245, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.site-header__inner { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand-lockup { display: inline-flex; flex-direction: column; line-height: 1.05; font-weight: 900; letter-spacing: 0.08em; }
.brand-lockup small { margin-top: 6px; color: var(--muted); font-size: 10px; letter-spacing: 0.18em; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 700; }
.site-nav a { position: relative; padding-block: 10px; }
.site-nav a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 2px; background: var(--primary); transition: right 180ms ease; }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { right: 0; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); align-items: center; justify-content: center; cursor: pointer; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { display: block; width: 20px; height: 2px; background: var(--ink); transition: transform 180ms ease, opacity 180ms ease; }
.nav-toggle::before, .nav-toggle::after { content: ""; position: absolute; }
.nav-toggle::before { transform: translateY(-6px); }
.nav-toggle::after { transform: translateY(6px); }
.nav-open .nav-toggle span { opacity: 0; }
.nav-open .nav-toggle::before { transform: rotate(45deg); }
.nav-open .nav-toggle::after { transform: rotate(-45deg); }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--primary); color: var(--surface); }
.button--primary:hover { background: var(--primary-deep); }
.button--secondary { border-color: var(--primary); color: var(--primary); background: transparent; }
.button--secondary:hover { background: var(--primary); color: var(--surface); }
.button--warm { background: var(--warm-highlight); color: var(--accent); }
.button--light { background: var(--surface); color: var(--primary); }
.button[disabled] { cursor: not-allowed; opacity: .52; transform: none; }
.button.is-loading { pointer-events: none; opacity: .72; }

.hero-home { padding-block: 52px 42px; }
.hero-shell {
  min-height: 610px;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 76px 62px 92px; }
.hero-copy h1 { margin: 18px 0 24px; font-family: "Noto Serif KR", serif; font-size: clamp(52px, 5.3vw, 72px); line-height: 1.1; letter-spacing: -0.055em; }
.hero-copy p { max-width: 590px; margin: 0; color: #4b5a52; font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-media { position: relative; min-height: 610px; background: var(--primary-deep); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.placeholder-badge { position: absolute; right: 18px; bottom: 18px; padding: 9px 13px; border-radius: 999px; background: var(--warm-soft); color: var(--accent); font-size: 12px; font-weight: 800; box-shadow: var(--shadow-sm); }
.action-dock { position: relative; z-index: 3; width: calc(100% - 96px); margin: -58px auto 0; display: grid; grid-template-columns: 1fr 1fr auto; align-items: stretch; overflow: hidden; background: var(--primary); color: var(--surface); border-radius: 14px; box-shadow: var(--shadow-lg); }
.action-dock__choice { padding: 26px 28px; border-right: 1px solid rgba(255,255,255,.2); }
.action-dock__choice small { display: block; color: var(--warm-highlight); font-size: 12px; font-weight: 800; margin-bottom: 8px; }
.action-dock__choice strong { display: block; font-size: 18px; }
.action-dock__submit { min-width: 210px; margin: 16px; }

.service-grid { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: 1fr 1fr; gap: 20px; margin-top: 46px; }
.service-card { position: relative; overflow: hidden; min-height: 280px; padding: 34px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); }
.service-card:first-child { grid-row: 1 / span 2; min-height: 580px; display: flex; flex-direction: column; justify-content: flex-end; color: var(--surface); }
.service-card:first-child img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.43) saturate(.72); }
.service-card:first-child::after { content: ""; position: absolute; inset: 0; background: rgba(18, 50, 38, .18); }
.service-card__content { position: relative; z-index: 2; }
.service-card__index { color: var(--accent); font-size: 12px; font-weight: 800; }
.service-card:first-child .service-card__index { color: var(--warm-highlight); }
.service-card h3 { margin: 14px 0 12px; font-family: "Noto Serif KR", serif; font-size: 30px; line-height: 1.3; }
.service-card p { margin: 0 0 22px; color: var(--muted); }
.service-card:first-child p { color: #e8edea; }
.service-card:first-child .text-link { color: var(--surface); }

.standard-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; margin-top: 48px; }
.standard-intro { position: sticky; top: 120px; }
.standard-list { border-top: 1px solid var(--line); }
.standard-item { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.standard-item__icon { width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; border-radius: 50%; background: var(--primary); color: var(--surface); line-height: 0; }
.standard-item__icon > svg { display: block; width: 22px; height: 22px; margin: 0; }
.standard-item h3 { margin: 0 0 8px; font-size: 22px; }
.standard-item p { margin: 0; color: var(--muted); }
.source-note { margin-top: 26px; padding: 18px 20px; border-left: 3px solid var(--accent); background: var(--surface); color: var(--muted); font-size: 14px; }

.journey { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 46px; }
.journey-step { position: relative; min-height: 260px; padding: 28px 24px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-md); }
.journey-step small { color: var(--warm-highlight); font-weight: 800; }
.journey-step h3 { margin: 36px 0 12px; font-size: 23px; }
.journey-step p { color: #d5ded9; margin: 0; font-size: 15px; }
.journey-step:not(:last-child)::after { content: "→"; position: absolute; right: -14px; top: 50%; color: var(--warm-highlight); font-weight: 900; z-index: 2; }
.metric-strip { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }
.metric-pill { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 999px; background: rgba(249,210,186,.12); border: 1px solid rgba(249,210,186,.32); color: #f7eae0; font-size: 14px; }
.metric-pill strong { color: var(--warm-highlight); }

.care-split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 48px; }
.care-card { overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); }
.care-card img { width: 100%; height: 330px; object-fit: cover; }
.care-card__copy { padding: 32px; }
.care-card__copy h3 { margin: 0 0 12px; font-family: "Noto Serif KR", serif; font-size: 28px; }
.care-card__copy p { margin: 0 0 22px; color: var(--muted); }

.proof-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 44px; }
.proof-card { min-height: 250px; padding: 26px; border: 1px dashed #b9c5bd; border-radius: var(--radius-md); background: var(--surface); }
.proof-card__status { display: inline-flex; padding: 7px 10px; border-radius: 999px; background: var(--warm-soft); color: var(--accent); font-size: 11px; font-weight: 800; }
.proof-card h3 { margin: 42px 0 10px; font-size: 20px; }
.proof-card p { margin: 0; color: var(--muted); font-size: 15px; }

.faq-list { margin-top: 42px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 18px 0; border: 0; background: transparent; text-align: left; font-weight: 800; cursor: pointer; }
.faq-question svg { flex: 0 0 auto; transition: transform 180ms ease; }
.faq-item.is-open .faq-question svg { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 220ms ease; }
.faq-answer > div { overflow: hidden; color: var(--muted); }
.faq-answer p { margin: 0; padding: 0 56px 24px 0; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

.form-shell { display: grid; grid-template-columns: .74fr 1.26fr; gap: 52px; padding: 46px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.form-intro h2 { margin: 14px 0 18px; font-family: "Noto Serif KR", serif; font-size: 40px; line-height: 1.3; }
.form-intro p { color: var(--muted); }
.form-benefits { display: grid; gap: 12px; margin-top: 28px; }
.form-benefits span { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.form-benefits svg { color: var(--primary); flex: 0 0 auto; }
.inquiry-tabs { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 22px; }
.inquiry-tab { min-height: 48px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg); font-weight: 800; cursor: pointer; }
.inquiry-tab[aria-pressed="true"] { background: var(--primary); color: var(--surface); border-color: var(--primary); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 800; }
.field label span { color: var(--error); }
.field input, .field select, .field textarea { width: 100%; min-height: 52px; padding: 13px 14px; border: 1px solid #cfd7d1; border-radius: 10px; background: var(--surface); color: var(--ink); }
.field textarea { min-height: 124px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); outline: 3px solid rgba(29,69,51,.12); }
.inquiry-panel[hidden] { display: none; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 20px 0; color: var(--muted); font-size: 14px; }
.consent input { width: 18px; height: 18px; margin-top: 3px; }
.form-status { min-height: 28px; margin: 12px 0 0; font-size: 14px; color: var(--success); }
.form-note { margin-top: 12px; color: var(--muted); font-size: 13px; }

.subhero { position: relative; padding: 92px 0 74px; overflow: hidden; background: var(--primary-deep); color: var(--surface); }
.subhero__grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 60px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; color: #c9d5cf; font-size: 13px; }
.subhero h1 { margin: 22px 0 22px; font-family: "Noto Serif KR", serif; font-size: clamp(44px, 5vw, 64px); line-height: 1.15; letter-spacing: -0.05em; }
.subhero p { max-width: 640px; color: #d6dfda; font-size: 18px; }
.subhero__media { position: relative; min-height: 430px; border-radius: var(--radius-md); overflow: hidden; }
.subhero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.story-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.story-quote { position: sticky; top: 130px; padding: 34px; background: var(--primary); color: var(--surface); border-radius: var(--radius-md); }
.story-quote p { margin: 0; font-family: "Noto Serif KR", serif; font-size: 28px; line-height: 1.55; }
.story-copy h2 { font-family: "Noto Serif KR", serif; font-size: 40px; line-height: 1.3; }
.story-copy p { color: var(--muted); }
.principle-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 42px; }
.principle-card { padding: 30px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); }
.principle-card svg { width: 30px; height: 30px; color: var(--primary); }
.principle-card h3 { margin: 28px 0 10px; }
.principle-card p { margin: 0; color: var(--muted); }
.location-shell { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); }
.map-placeholder { min-height: 390px; display: grid; place-items: center; padding: 30px; background: #e9eee9; text-align: center; color: var(--muted); }
.location-copy { padding: 48px; }

.vehicle-gallery { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: 230px 230px; gap: 14px; margin-top: 42px; }
.vehicle-gallery figure { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius-md); background: var(--primary-deep); }
.vehicle-gallery figure:first-child { grid-row: 1 / span 2; }
.vehicle-gallery img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-gallery figcaption { position: absolute; left: 14px; bottom: 14px; padding: 8px 12px; border-radius: 999px; background: var(--surface); color: var(--accent); font-size: 12px; font-weight: 800; }
.process-list { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 44px; }
.process-card { min-height: 280px; padding: 28px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); }
.process-card small { color: var(--accent); font-weight: 900; }
.process-card h3 { margin: 46px 0 12px; }
.process-card p { margin: 0; color: var(--muted); }

.need-selector { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 40px; }
.need-card { min-height: 190px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); cursor: pointer; transition: transform 180ms ease, border-color 180ms ease; }
.need-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.need-card svg { color: var(--primary); }
.need-card h3 { margin: 34px 0 8px; font-size: 19px; }
.need-card p { margin: 0; color: var(--muted); font-size: 14px; }
.catalog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 42px; }
.catalog-card { overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); }
.catalog-card img { width: 100%; height: 240px; object-fit: cover; }
.catalog-card__copy { padding: 28px; }
.catalog-card h3 { margin: 0 0 12px; font-family: "Noto Serif KR", serif; font-size: 26px; }
.catalog-card ul { padding-left: 20px; color: var(--muted); }

.next-steps { counter-reset: step; display: grid; gap: 16px; margin-top: 38px; }
.next-step { counter-increment: step; display: grid; grid-template-columns: 48px 1fr; gap: 18px; align-items: start; padding: 22px 0; border-bottom: 1px solid var(--line); }
.next-step::before { content: counter(step, decimal-leading-zero); width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--primary); color: var(--surface); font-size: 13px; font-weight: 800; }
.next-step h3 { margin: 0 0 6px; }
.next-step p { margin: 0; color: var(--muted); }

.site-footer { padding: 68px 0 40px; background: var(--primary-deep); color: var(--surface); }
.footer-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 48px; }
.footer-brand p { max-width: 420px; color: #cbd6d0; }
.footer-title { margin: 0 0 16px; color: var(--warm-highlight); font-size: 13px; letter-spacing: .12em; }
.footer-list { display: grid; gap: 8px; color: #d7e0db; font-size: 14px; }
.footer-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); color: #bfcac4; font-size: 13px; }
.demo-notice { padding: 14px 20px; background: #ece6df; color: #5c5752; font-size: 12px; line-height: 1.55; text-align: center; }
.mobile-quickbar { display: none; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60; grid-template-columns: repeat(3,1fr); padding: 6px; background: var(--primary-deep); border-radius: 14px; box-shadow: var(--shadow-lg); }
.mobile-quickbar a { min-height: 48px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; color: var(--surface); font-size: 11px; font-weight: 800; border-right: 1px solid rgba(255,255,255,.18); }
.mobile-quickbar a:last-child { border-right: 0; background: var(--warm-highlight); color: var(--accent); border-radius: 9px; }
.mobile-quickbar svg { width: 18px; height: 18px; }

.reveal { opacity: 1; transform: none; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .site-nav { gap: 18px; }
  .site-nav a:not(.button) { display: none; }
  .hero-shell, .subhero__grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 60px 46px 72px; }
  .hero-media { min-height: 520px; }
  .service-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .service-card:first-child { grid-column: 1 / -1; grid-row: auto; min-height: 500px; }
  .standard-layout { grid-template-columns: 1fr; gap: 32px; }
  .standard-intro { position: static; }
  .journey, .process-list { grid-template-columns: 1fr 1fr; }
  .journey-step:nth-child(2)::after { display: none; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .form-shell { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .story-quote { position: static; }
  .need-selector { grid-template-columns: 1fr 1fr; }
  .catalog-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  body { font-size: 16px; padding-bottom: 82px; }
  .section { padding-block: 76px; }
  .site-header { height: 72px; }
  .nav-toggle { display: inline-flex; position: relative; }
  .site-nav { position: fixed; inset: 72px 0 0; display: grid; align-content: start; gap: 0; padding: 26px 20px; background: var(--bg); visibility: hidden; opacity: 0; pointer-events: none; transition: opacity 220ms ease, visibility 220ms ease; }
  .nav-open .site-nav { visibility: visible; opacity: 1; pointer-events: auto; }
  .site-nav a:not(.button) { display: block; min-height: 56px; padding: 15px 8px; border-bottom: 1px solid var(--line); font-size: 17px; }
  .site-nav .button { margin-top: 18px; }
  .hero-home { padding: 20px 0 12px; }
  .hero-shell { min-height: 0; }
  .hero-copy { padding: 42px 28px 52px; }
  .hero-copy h1 { font-size: 42px; }
  .hero-copy p { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-media { min-height: 380px; }
  .action-dock { width: auto; margin: 18px 20px 0; grid-template-columns: 1fr; }
  .action-dock__choice { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .action-dock__submit { margin-top: 0; }
  .service-grid, .care-split, .principle-grid, .location-shell, .catalog-grid, .footer-grid { grid-template-columns: 1fr; }
  .service-card:first-child { grid-column: auto; min-height: 460px; }
  .journey, .process-list { grid-template-columns: 1fr; }
  .journey-step:not(:last-child)::after { display: none; }
  .proof-grid { grid-template-columns: 1fr; }
  .form-shell { padding: 26px 20px; gap: 26px; }
  .form-intro h2 { font-size: 34px; }
  .inquiry-tabs { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .subhero { padding: 60px 0 52px; }
  .subhero__media { min-height: 340px; }
  .vehicle-gallery { grid-template-columns: 1fr; grid-template-rows: 330px 220px 220px; }
  .vehicle-gallery figure:first-child { grid-row: auto; }
  .need-selector { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .mobile-quickbar { display: grid; }
  .placeholder-badge { right: 10px; bottom: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
