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

:root {
  --navy: #12324a;
  --navy-deep: #0c2436;
  --ink: #193041;
  --muted: #6a7b88;
  --line: #dce8ed;
  --soft: #f4f9fa;
  --mint: #2f9e96;
  --mint-dark: #197a75;
  --mint-pale: #e6f5f2;
  --sky: #e8f2fb;
  --gold: #c9944f;
  --coral: #e68264;
  --white: #fff;
  --shadow: 0 22px 55px rgba(18, 50, 74, .10);
  --shadow-soft: 0 14px 34px rgba(18, 50, 74, .075);
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans KR", Pretendard, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  word-break: keep-all;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; width: 100%; max-width: 100%; }
svg { display: block; }
:focus-visible { outline: 3px solid #f0b464; outline-offset: 4px; }
.wrap { width: min(var(--wrap), calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: absolute; left: 12px; top: -70px; z-index: 100; padding: 10px 14px; border-radius: 10px; color: #fff; background: var(--navy); }
.skip-link:focus { top: 12px; }

/* Shared navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(220, 232, 237, .88);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 76px; display: flex; align-items: center; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px 14px 14px 4px; color: #fff; background: linear-gradient(145deg, var(--mint), var(--navy)); box-shadow: 0 8px 20px rgba(47, 158, 150, .22); }
.brand-mark svg { width: 25px; height: 25px; }
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { color: var(--navy-deep); font-size: 17px; font-weight: 900; letter-spacing: -.045em; }
.brand-copy span { margin-top: 4px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .07em; }
.desktop-nav { display: flex; align-items: stretch; justify-content: flex-end; gap: 4px; margin-left: auto; }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-link { display: inline-flex; align-items: center; gap: 5px; min-height: 44px; padding: 0 11px; border-radius: 10px; color: #48616f; font-size: 13px; font-weight: 800; white-space: nowrap; transition: color .2s ease, background .2s ease; }
.nav-link svg { width: 13px; height: 13px; transition: transform .2s ease; }
.nav-link:hover, .nav-link[aria-current="page"], .nav-item:focus-within > .nav-link, .nav-item:hover > .nav-link { color: var(--mint-dark); background: var(--mint-pale); }
.nav-item:hover > .nav-link svg, .nav-item:focus-within > .nav-link svg { transform: rotate(180deg); }
.nav-popover {
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  width: 520px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 55px rgba(12, 36, 54, .15);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-popover.vouchers { width: 560px; }
.nav-item:hover .nav-popover, .nav-item:focus-within .nav-popover { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-popover::before { content: ""; position: absolute; left: 0; right: 0; top: -9px; height: 10px; }
.nav-popover-head { display: flex; justify-content: space-between; gap: 12px; padding: 8px 9px 11px; border-bottom: 1px solid var(--line); }
.nav-popover-head strong { color: var(--navy); font-size: 13px; }
.nav-popover-head span { color: var(--muted); font-size: 11px; }
.nav-popover-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 3px; padding-top: 8px; }
.nav-popover a { display: flex; align-items: center; gap: 9px; padding: 8px 9px; border-radius: 9px; color: #4d6573; font-size: 12px; font-weight: 700; }
.nav-popover a::before { content: ""; width: 5px; height: 5px; flex: 0 0 auto; border-radius: 50%; background: #a9c9cc; }
.nav-popover a:hover, .nav-popover a[aria-current="page"] { color: var(--navy); background: var(--soft); }
.nav-popover a:hover::before, .nav-popover a[aria-current="page"]::before { background: var(--mint); }
.header-cta { display: inline-flex; align-items: center; justify-content: center; gap: 7px; min-height: 42px; padding: 10px 15px; border-radius: 999px; color: #fff; background: var(--navy); font-size: 12px; font-weight: 900; white-space: nowrap; transition: transform .2s ease, box-shadow .2s ease; }
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(18, 50, 74, .18); }
.header-cta svg { width: 15px; height: 15px; }
.menu-button { display: none; width: 42px; height: 42px; margin-left: auto; border: 1px solid var(--line); border-radius: 12px; color: var(--navy); background: #fff; cursor: pointer; }
.menu-button svg { width: 21px; height: 21px; margin: auto; }
.mobile-nav { display: none; max-height: calc(100vh - 76px); padding-bottom: 16px; overflow-y: auto; }
.mobile-nav.open { display: block; }
.mobile-nav > a, .mobile-nav summary { display: flex; align-items: center; justify-content: space-between; min-height: 48px; padding: 10px 4px; border-bottom: 1px solid var(--line); color: var(--navy); font-size: 14px; font-weight: 900; cursor: pointer; list-style: none; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary::after { content: "+"; color: var(--mint-dark); font-size: 20px; font-weight: 400; }
.mobile-nav details[open] summary::after { content: "−"; }
.mobile-subnav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px; padding: 9px 0 13px; }
.mobile-subnav a { padding: 9px 10px; border-radius: 8px; color: #526b78; background: var(--soft); font-size: 12px; font-weight: 700; }

/* Page hero */
.page-hero { position: relative; isolation: isolate; overflow: hidden; padding: 78px 0 70px; background: linear-gradient(118deg, #eff8f7 0%, #fff 58%, #f5f9fd 100%); }
.page-hero::before, .page-hero::after { content: ""; position: absolute; z-index: -1; border-radius: 50%; }
.page-hero::before { width: 430px; height: 430px; right: -150px; top: -210px; background: rgba(47, 158, 150, .13); }
.page-hero::after { width: 210px; height: 210px; left: -120px; bottom: -130px; border: 1px solid rgba(201, 148, 79, .25); }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 26px; color: #6e838e; font-size: 12px; font-weight: 700; }
.breadcrumb a:hover { color: var(--mint-dark); }
.breadcrumb span { color: #a9b8bf; }
.hero-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(350px, .76fr); gap: 70px; align-items: center; }
.hero-kicker { display: flex; align-items: center; gap: 10px; margin: 0 0 14px; color: var(--mint-dark); font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.hero-kicker::before { content: ""; width: 28px; height: 2px; background: var(--gold); }
.page-hero h1 { margin: 0; color: var(--navy-deep); font-family: "Noto Serif KR", serif; font-size: clamp(38px, 5vw, 62px); font-weight: 700; letter-spacing: -.065em; line-height: 1.15; }
.hero-lede { max-width: 660px; margin: 22px 0 0; color: #506a78; font-size: clamp(17px, 2vw, 21px); font-weight: 500; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 31px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 49px; padding: 12px 18px; border: 1px solid transparent; border-radius: 12px; font-size: 13px; font-weight: 900; transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(18, 50, 74, .12); }
.button svg { width: 17px; height: 17px; }
.button-primary { color: #fff; background: var(--navy); }
.button-secondary { color: var(--navy); border-color: var(--line); background: #fff; }
.hero-art { position: relative; min-height: 390px; }
.hero-photo { height: 390px; object-fit: cover; border: 11px solid #fff; border-radius: 34px 34px 9px 34px; box-shadow: var(--shadow); }
.hero-photo-card { position: absolute; left: -24px; bottom: 22px; max-width: 240px; padding: 17px 19px; border: 1px solid rgba(255, 255, 255, .8); border-radius: 17px; background: rgba(255, 255, 255, .94); box-shadow: var(--shadow-soft); backdrop-filter: blur(12px); }
.hero-photo-card span { color: var(--mint-dark); font-size: 10px; font-weight: 900; letter-spacing: .13em; }
.hero-photo-card strong { display: block; margin-top: 5px; color: var(--navy); font-family: "Noto Serif KR", serif; font-size: 16px; line-height: 1.5; }
.hero-symbol { width: 100%; min-height: 360px; display: grid; place-items: center; border: 1px solid rgba(184, 213, 217, .75); border-radius: 34px 34px 9px 34px; background: rgba(255, 255, 255, .72); box-shadow: var(--shadow); }
.hero-symbol svg { width: 140px; height: 140px; color: var(--mint-dark); stroke-width: 1.05; }

/* Horizontal page rail */
.page-rail { padding: 22px 0; background: var(--navy-deep); }
.rail-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 12px; color: #fff; }
.rail-head strong { font-size: 11px; letter-spacing: .17em; }
.rail-head span { color: #a9c1cc; font-size: 11px; }
.rail-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 25%); gap: 10px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline proximity; scrollbar-width: thin; scrollbar-color: #65808c transparent; }
.rail-card { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 15px 17px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 12px; color: var(--navy); background: #fff; scroll-snap-align: start; transition: transform .2s ease, background .2s ease; }
.rail-card:hover, .rail-card[aria-current="page"] { transform: translateY(-3px); background: var(--mint-pale); }
.rail-card small { display: block; color: var(--gold); font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.rail-card strong { display: block; margin-top: 4px; font-size: 13px; letter-spacing: -.035em; }
.rail-arrow { width: 25px; height: 25px; display: grid; flex: 0 0 auto; place-items: center; border: 1px solid #bfd1d9; border-radius: 50%; color: var(--mint-dark); font-size: 12px; transition: color .2s ease, background .2s ease; }
.rail-card:hover .rail-arrow { color: #fff; background: var(--mint); border-color: var(--mint); }

/* Content */
.section { padding: 96px 0; }
.section-soft { background: var(--soft); }
.section-kicker { margin: 0 0 10px; color: var(--mint-dark); font-size: 12px; font-weight: 900; letter-spacing: .14em; }
.section-title { margin: 0; color: var(--navy-deep); font-family: "Noto Serif KR", serif; font-size: clamp(29px, 4vw, 43px); font-weight: 700; letter-spacing: -.065em; line-height: 1.35; }
.section-lede { margin: 20px 0 0; color: var(--muted); font-size: 16px; line-height: 1.9; }
.intro-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(380px, 1.08fr); gap: 78px; align-items: start; }
.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.feature-card { min-height: 150px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #fff; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.feature-card:hover { transform: translateY(-4px); border-color: #a8d9d3; box-shadow: var(--shadow-soft); }
.feature-icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 17px; border-radius: 13px; color: var(--mint-dark); background: var(--mint-pale); }
.feature-icon svg { width: 21px; height: 21px; }
.feature-card h3 { margin: 0 0 6px; color: var(--navy); font-size: 15px; letter-spacing: -.035em; }
.feature-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.section-heading { max-width: 750px; margin: 0 auto 40px; text-align: center; }
.section-heading .section-lede { max-width: 620px; margin-inline: auto; }
.check-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.check-card { position: relative; min-height: 145px; padding: 25px 22px 20px; border: 1px solid var(--line); border-radius: 17px; background: #fff; overflow: hidden; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.check-card::before { content: ""; position: absolute; right: -32px; bottom: -36px; width: 95px; height: 95px; border: 1px solid #d8e7e9; border-radius: 50%; transition: transform .25s ease, background .25s ease; }
.check-card:hover { transform: translateY(-4px); border-color: #a8d9d3; box-shadow: var(--shadow-soft); }
.check-card:hover::before { transform: scale(1.2); background: var(--mint-pale); }
.check-no { display: block; margin-bottom: 17px; color: var(--gold); font-size: 10px; font-weight: 900; letter-spacing: .13em; }
.check-card p { position: relative; z-index: 1; margin: 0; color: var(--navy); font-size: 14px; font-weight: 800; line-height: 1.65; }
.notice { display: flex; align-items: flex-start; gap: 13px; margin-top: 30px; padding: 17px 19px; border: 1px solid #c8e6e2; border-radius: 14px; color: #346c69; background: var(--mint-pale); font-size: 12px; font-weight: 700; line-height: 1.7; }
.notice svg { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 1px; }
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 13px; }
.process-card { position: relative; min-height: 210px; padding: 26px 22px; border: 1px solid var(--line); border-radius: 18px; background: #fff; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.process-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.process-number { display: inline-grid; width: 42px; height: 42px; place-items: center; border-radius: 13px; color: var(--mint-dark); background: var(--mint-pale); font-size: 11px; font-weight: 900; }
.process-card h3 { margin: 25px 0 8px; color: var(--navy); font-size: 17px; }
.process-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

/* Listing pages */
.listing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.listing-card { position: relative; min-height: 235px; display: flex; flex-direction: column; padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: #fff; overflow: hidden; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.listing-card::after { content: ""; position: absolute; right: -68px; bottom: -72px; width: 170px; height: 170px; border: 1px solid #d9e8eb; border-radius: 50%; transition: transform .25s ease, background .25s ease; }
.listing-card:hover { transform: translateY(-6px); border-color: #9fd5cf; box-shadow: 0 20px 42px rgba(18, 50, 74, .10); }
.listing-card:hover::after { transform: scale(1.12); background: var(--mint-pale); }
.listing-meta { position: relative; z-index: 1; color: var(--gold); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.listing-card h2 { position: relative; z-index: 1; margin: 38px 0 10px; color: var(--navy-deep); font-family: "Noto Serif KR", serif; font-size: 23px; letter-spacing: -.055em; }
.listing-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.listing-more { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 22px; color: var(--mint-dark); font-size: 12px; font-weight: 900; }
.listing-more span { width: 27px; height: 27px; display: grid; place-items: center; border: 1px solid #b8d1d6; border-radius: 50%; transition: color .2s ease, background .2s ease; }
.listing-card:hover .listing-more span { color: #fff; border-color: var(--mint); background: var(--mint); }

/* Vouchers and information pages */
.facts-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.fact-card { padding: 21px; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.fact-card small { display: block; margin-bottom: 8px; color: var(--mint-dark); font-size: 10px; font-weight: 900; letter-spacing: .1em; }
.fact-card strong { color: var(--navy); font-size: 15px; line-height: 1.6; }
.service-list { display: grid; gap: 10px; }
.service-row { display: grid; grid-template-columns: 45px 1fr; gap: 15px; align-items: start; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.service-row span { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 14px; color: var(--mint-dark); background: var(--mint-pale); font-size: 11px; font-weight: 900; }
.service-row h3 { margin: 1px 0 4px; color: var(--navy); font-size: 15px; }
.service-row p { margin: 0; color: var(--muted); font-size: 12px; }
.two-column { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.info-panel { padding: 29px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 10px 28px rgba(18, 50, 74, .04); }
.info-panel h2 { margin: 0 0 17px; color: var(--navy); font-family: "Noto Serif KR", serif; font-size: 23px; letter-spacing: -.05em; }
.info-panel p { margin: 0; color: var(--muted); font-size: 14px; }
.info-panel .button { margin-top: 22px; }
.bullet-list { display: grid; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; }
.bullet-list li { position: relative; padding-left: 19px; color: #4f6875; font-size: 13px; }
.bullet-list li::before { content: ""; position: absolute; left: 0; top: .72em; width: 7px; height: 7px; border-radius: 50%; background: var(--mint); }

/* Branch cards */
.branch-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.branch-card { position: relative; display: flex; flex-direction: column; padding: 31px; border: 1px solid var(--line); border-radius: 25px; background: #fff; box-shadow: 0 12px 30px rgba(18, 50, 74, .05); overflow: hidden; }
.branch-card::after { content: ""; position: absolute; right: -75px; top: -82px; width: 185px; height: 185px; border-radius: 50%; background: var(--sky); }
.branch-card.mint::after { background: var(--mint-pale); }
.branch-label { position: relative; z-index: 1; color: var(--gold); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.branch-card h2 { position: relative; z-index: 1; margin: 15px 0 21px; color: var(--navy-deep); font-family: "Noto Serif KR", serif; font-size: 24px; letter-spacing: -.055em; }
.branch-details { position: relative; z-index: 1; display: grid; gap: 10px; }
.detail-row { display: grid; grid-template-columns: 22px 1fr; gap: 11px; padding: 13px; border-radius: 12px; background: var(--soft); }
.detail-row svg { width: 18px; height: 18px; margin-top: 3px; color: var(--mint-dark); }
.detail-row strong { display: block; color: var(--navy); font-size: 12px; }
.detail-row span { display: block; color: var(--muted); font-size: 13px; line-height: 1.6; }
.branch-actions { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 22px; }
.branch-actions a { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 10px; border-radius: 10px; font-size: 12px; font-weight: 900; }
.branch-actions svg { width: 16px; height: 16px; }
.map-button { color: #fff; background: #2b9e63; }
.kakao-button { color: #3c2b1e; background: #f8df42; }
.phone-button { grid-column: 1 / -1; color: #fff; background: var(--navy); font-size: 17px !important; }

/* CTA, footer */
.final-cta { padding: 66px 0; color: #fff; background: linear-gradient(125deg, var(--navy-deep), #174762); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.final-cta h2 { margin: 0 0 8px; font-family: "Noto Serif KR", serif; font-size: clamp(27px, 4vw, 39px); letter-spacing: -.055em; }
.final-cta p { margin: 0; color: #bfd2db; }
.final-cta .button-secondary { flex: 0 0 auto; }
footer { padding: 56px 0 34px; color: #b8cbd4; background: #091d2b; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 46px; }
.footer-brand { color: #fff; font-family: "Noto Serif KR", serif; font-size: 20px; font-weight: 700; }
.footer-copy { max-width: 390px; margin: 12px 0 0; font-size: 13px; }
footer h3 { margin: 0 0 10px; color: #fff; font-size: 13px; }
footer p { margin: 0 0 8px; font-size: 12px; line-height: 1.7; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 18px; font-size: 11px; font-weight: 700; }
.footer-links a:hover { color: #fff; }
.copyright { margin-top: 34px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .09); font-size: 10px; }
.mobile-bar { display: none; }

/* Entrance motion */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .brand-copy span { display: none; }
  .desktop-nav { gap: 0; }
  .nav-link { padding-inline: 8px; font-size: 12px; }
}

@media (max-width: 960px) {
  .wrap { width: min(100% - 36px, var(--wrap)); }
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: block; }
  .hero-layout { grid-template-columns: 1fr; gap: 45px; }
  .hero-art { max-width: 650px; width: 100%; }
  .intro-grid { grid-template-columns: 1fr; gap: 42px; }
  .listing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .check-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rail-track { grid-auto-columns: minmax(215px, 38%); }
}

@media (max-width: 680px) {
  body { padding-bottom: 64px; font-size: 15px; }
  .wrap { width: min(100% - 28px, var(--wrap)); }
  .header-inner { min-height: 68px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-copy strong { font-size: 15px; }
  .mobile-nav { max-height: calc(100vh - 68px); }
  .page-hero { padding: 49px 0 53px; }
  .breadcrumb { margin-bottom: 20px; }
  .page-hero h1 { font-size: clamp(34px, 11vw, 48px); }
  .hero-lede { margin-top: 17px; font-size: 16px; }
  .hero-art { min-height: 280px; }
  .hero-photo { height: 285px; border-width: 8px; border-radius: 26px 26px 8px 26px; }
  .hero-photo-card { left: -5px; bottom: -18px; max-width: 210px; padding: 13px 15px; }
  .hero-symbol { min-height: 280px; }
  .hero-symbol svg { width: 105px; height: 105px; }
  .page-rail { padding: 17px 0; }
  .rail-head span { display: none; }
  .rail-track { grid-auto-columns: minmax(205px, 76%); }
  .rail-card { min-height: 70px; }
  .section { padding: 70px 0; }
  .section-heading { margin-bottom: 29px; text-align: left; }
  .section-heading .section-lede { margin-inline: 0; }
  .feature-grid, .listing-grid, .check-grid, .process-grid, .facts-grid, .two-column, .branch-grid, .footer-grid { grid-template-columns: 1fr; }
  .listing-card { min-height: 215px; }
  .check-card { min-height: 125px; }
  .process-card { min-height: 180px; }
  .final-cta-inner { display: grid; }
  .final-cta .button-secondary { width: 100%; }
  .footer-grid { gap: 30px; }
  .mobile-bar { position: fixed; z-index: 60; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1fr; min-height: 64px; color: #fff; background: var(--navy); box-shadow: 0 -8px 26px rgba(0, 0, 0, .16); }
  .mobile-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; font-weight: 900; }
  .mobile-bar a + a { color: #3c2b1e; background: #f8df42; }
  .mobile-bar svg { width: 18px; height: 18px; }
}

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