:root {
  --ink: #0a1110;
  --ink-soft: #12201d;
  --paper: #f0eadc;
  --paper-deep: #ded3bd;
  --jade: #5fd1b2;
  --jade-dark: #1c806b;
  --copper: #d97b58;
  --brass: #c8aa70;
  --white: #fffdf7;
  --muted: #aeb9b5;
  --line: rgba(240, 234, 220, .2);
  --line-dark: rgba(10, 17, 16, .17);
  --stage: min(1240px, calc(100vw - 80px));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 5%, rgba(95, 209, 178, .1), transparent 24rem),
    var(--ink);
  font-family: Pretendard, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  word-break: keep-all;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  opacity: .2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}
body::after {
  content: "";
  position: fixed;
  width: 42vw;
  height: 42vw;
  right: -14vw;
  top: 20vh;
  z-index: -3;
  border: 1px solid rgba(95, 209, 178, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(95, 209, 178, .025), 0 0 0 14vw rgba(95, 209, 178, .015);
  animation: ambient-breathe 10s ease-in-out infinite alternate;
  pointer-events: none;
}

::selection { color: var(--ink); background: var(--jade); }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { max-width: 100%; display: block; }
svg { display: block; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--jade);
  transition: top .2s;
}
.skip-link:focus { top: 16px; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; border: 0 !important; }
.stage { width: var(--stage); margin-inline: auto; }
.display { font-family: Georgia, "Noto Serif KR", "Batang", serif; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--jade);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.body-copy { overflow-wrap: break-word; text-wrap: pretty; }
.display-heading { overflow-wrap: break-word; text-wrap: balance; }

.progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 120;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--jade));
  box-shadow: 0 0 18px rgba(95, 209, 178, .7);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 90;
  padding: 24px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 20px; font-weight: 900; letter-spacing: -.05em; }
.brand-mark { position: relative; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; inset: 7px; border: 1px solid var(--jade); border-radius: 50% 50% 50% 4px; transform: rotate(45deg); }
.brand-mark::after { inset: 12px; border-color: var(--copper); transform: rotate(225deg); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-link { color: #d5dcd8; font-size: 14px; padding: 10px 6px; }
.nav-link:hover { color: var(--jade); }
.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 17px;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(10,17,16,.36);
  backdrop-filter: blur(14px);
  font-size: 14px;
  font-weight: 800;
  transition: border-color .25s, background .25s, transform .25s;
}
.nav-call:hover { border-color: var(--jade); background: rgba(95,209,178,.12); transform: translateY(-2px); }
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(10,17,16,.62);
}

.hero {
  position: relative;
  min-height: 860px;
  display: grid;
  align-items: center;
  padding: 138px 0 90px;
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: "TOUCH TODAK";
  position: absolute;
  left: -1vw;
  bottom: 1vh;
  z-index: -2;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(240,234,220,.09);
  font-family: Georgia, serif;
  font-size: clamp(80px, 14vw, 220px);
  letter-spacing: -.08em;
}
.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: -5;
  background:
    radial-gradient(circle at 16% 35%, rgba(217,123,88,.14), transparent 30%),
    radial-gradient(circle at 68% 22%, rgba(95,209,178,.12), transparent 26%),
    linear-gradient(115deg, #08100e, #0c1815 58%, #07100f);
}
.hero-atmosphere::after {
  content: "";
  position: absolute;
  inset: -35%;
  opacity: .5;
  background: repeating-radial-gradient(ellipse at 75% 45%, transparent 0 44px, rgba(95,209,178,.12) 45px 46px, transparent 47px 64px);
  transform: rotate(-8deg);
  animation: contour-drift 18s linear infinite alternate;
}
.hero-layout { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(370px, .74fr); gap: clamp(40px, 7vw, 110px); align-items: center; }
.hero-copy { position: relative; z-index: 3; max-width: 720px; }
.hero-route { margin: 20px 0 15px; color: var(--brass); font-family: Georgia, serif; font-size: 13px; letter-spacing: .14em; }
.hero h1 { margin: 0; font-size: clamp(54px, 6.7vw, 102px); line-height: .98; letter-spacing: -.075em; font-weight: 500; }
.hero h1 span { display: block; }
.hero h1 .accent { color: var(--jade); font-style: italic; padding-left: .82em; }
.hero-lead { max-width: 600px; margin: 28px 0 0; color: #c4ceca; font-size: 17px; line-height: 1.85; }
.hero-actions { display: flex; align-items: center; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.primary-action, .secondary-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-weight: 900;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.primary-action { color: #06100d; background: var(--jade); box-shadow: 0 18px 44px rgba(95,209,178,.18); }
.primary-action::before { content: ""; position: absolute; inset: -60% auto -60% -30%; width: 22%; transform: rotate(18deg); background: rgba(255,255,255,.62); filter: blur(5px); animation: shimmer 4.8s ease-in-out infinite; }
.secondary-action { color: var(--paper); border-color: rgba(240,234,220,.28); background: rgba(255,255,255,.025); }
.primary-action:hover, .secondary-action:hover { transform: translateY(-3px); box-shadow: 0 20px 55px rgba(0,0,0,.28); }
.secondary-action:hover { border-color: var(--copper); }
.hero-facts { display: flex; gap: 22px; margin: 33px 0 0; padding: 0; list-style: none; color: #aeb9b5; font-size: 13px; }
.hero-facts li { display: flex; align-items: center; gap: 9px; }
.hero-facts li::before { content: ""; width: 5px; height: 5px; background: var(--copper); transform: rotate(45deg); }
.hero-media { position: relative; min-height: 610px; }
.hero-image-wrap {
  position: absolute;
  inset: 0 0 0 8%;
  overflow: hidden;
  clip-path: polygon(12% 0, 100% 5%, 91% 100%, 0 87%);
  background: var(--ink-soft);
  box-shadow: 0 50px 120px rgba(0,0,0,.46);
}
.hero-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,16,14,.05), rgba(8,16,14,.44)); pointer-events: none; }
.hero-image { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) sepia(.08) contrast(1.04); transform: scale(1.04); }
.hero-compass { position: absolute; right: -24px; top: 8%; z-index: 3; width: 112px; height: 112px; border: 1px solid rgba(240,234,220,.35); border-radius: 50%; animation: slow-spin 22s linear infinite; }
.hero-compass::before, .hero-compass::after { content: ""; position: absolute; left: 50%; top: 50%; background: rgba(240,234,220,.45); transform: translate(-50%,-50%); }
.hero-compass::before { width: 1px; height: 132%; }
.hero-compass::after { width: 132%; height: 1px; }
.hero-compass span { position: absolute; inset: 13px; display: grid; place-items: center; border: 1px solid var(--copper); border-radius: 50%; color: var(--paper); font: 11px Georgia, serif; letter-spacing: .12em; }
.hero-caption { position: absolute; left: -10px; bottom: 54px; z-index: 4; width: 200px; padding: 16px 18px; color: var(--ink); background: var(--paper); box-shadow: 0 25px 60px rgba(0,0,0,.25); }
.hero-caption small { display: block; margin-bottom: 7px; color: var(--jade-dark); font-weight: 900; letter-spacing: .12em; }
.hero-caption strong { display: block; font-family: Georgia, "Batang", serif; font-size: 18px; line-height: 1.45; }
.layout-2 .hero-layout { grid-template-columns: minmax(360px,.78fr) minmax(0,1.05fr); }
.layout-2 .hero-copy { order: 2; }
.layout-2 .hero-media { order: 1; }
.layout-2 .hero-image-wrap { inset: 5% 8% 0 0; clip-path: polygon(0 7%, 84% 0, 100% 91%, 10% 100%); }
.layout-2 .hero h1 .accent { padding-left: 0; }
.layout-3 .hero-layout { grid-template-columns: minmax(0,1fr) minmax(330px,.62fr); }
.layout-3 .hero-image-wrap { inset: 9% 0 8% 0; clip-path: ellipse(48% 50% at 50% 50%); }
.layout-3 .hero-compass { right: 50%; top: 0; transform: translateX(50%); }

.paper-stage { position: relative; z-index: 3; color: var(--ink); background: var(--paper); border-radius: 46px 46px 0 0; overflow: clip; }
.paper-stage::before { content: ""; position: absolute; inset: 0; opacity: .4; pointer-events: none; background-image: linear-gradient(rgba(10,17,16,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(10,17,16,.03) 1px, transparent 1px); background-size: 46px 46px; }
.paper-stage > * { position: relative; }
.section { padding: clamp(78px, 9vw, 132px) 0; }
.section-head { display: grid; grid-template-columns: minmax(0,.8fr) minmax(400px,1.2fr); gap: 60px; align-items: end; margin-bottom: 44px; }
.section-head h2 { margin: 12px 0 0; font-size: clamp(40px, 5vw, 70px); line-height: 1.05; letter-spacing: -.06em; font-weight: 500; }
.section-head p { margin: 0; max-width: 620px; color: #47534f; font-size: 16px; line-height: 1.85; }
.section .eyebrow { color: var(--jade-dark); }

.search-shell { position: relative; padding: 34px; border: 1px solid var(--line-dark); background: rgba(255,253,247,.6); box-shadow: 0 34px 100px rgba(42,53,48,.08); }
.search-row { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; border-bottom: 2px solid var(--ink); padding: 10px 0 18px; }
.search-row svg { width: 28px; color: var(--jade-dark); }
.region-search { width: 100%; border: 0; outline: 0; color: var(--ink); background: transparent; font-family: Georgia, "Noto Serif KR", "Batang", serif; font-size: clamp(23px, 3vw, 42px); letter-spacing: -.04em; }
.region-search::placeholder { color: #9c9a90; }
.search-clear { border: 0; color: #5c6662; background: transparent; cursor: pointer; padding: 10px; }
.search-clear:hover { color: var(--ink); }
.search-status { min-height: 24px; margin: 16px 0 0; color: #68736e; font-size: 13px; }
.search-results { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; margin-top: 18px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.search-results:empty { display: none; }
.search-result { position: relative; min-height: 96px; padding: 18px; background: var(--paper); transition: background .22s, color .22s; }
.search-result:hover, .search-result:focus-visible { color: var(--white); background: var(--ink-soft); outline: 0; }
.search-result small { display: block; margin-bottom: 12px; color: var(--jade-dark); font: 10px Georgia, serif; letter-spacing: .16em; }
.search-result:hover small { color: var(--jade); }
.search-result strong { font-size: 15px; }
.featured-regions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.featured-regions a { padding: 9px 14px; border: 1px solid var(--line-dark); font-size: 13px; transition: background .2s, color .2s; }
.featured-regions a:hover { color: var(--paper); background: var(--ink); }

.route-section { border-top: 1px solid var(--line-dark); }
.route-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.route-card { position: relative; min-height: 230px; padding: 26px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); overflow: hidden; isolation: isolate; transition: color .35s var(--ease); }
.route-card::before { content: ""; position: absolute; inset: auto 0 0; z-index: -2; height: 0; background: var(--ink-soft); transition: height .45s var(--ease); }
.route-card::after { content: ""; position: absolute; right: -36px; bottom: -36px; z-index: -1; width: 110px; height: 110px; border: 1px solid rgba(28,128,107,.3); border-radius: 50%; box-shadow: 0 0 0 18px rgba(28,128,107,.04), 0 0 0 34px rgba(28,128,107,.03); transition: transform .5s var(--ease); }
.route-card:hover { color: var(--paper); }
.route-card:hover::before { height: 100%; }
.route-card:hover::after { transform: scale(1.35); border-color: rgba(95,209,178,.45); }
.route-index { display: flex; justify-content: space-between; color: var(--jade-dark); font: 11px Georgia, serif; letter-spacing: .15em; }
.route-card:hover .route-index { color: var(--jade); }
.route-card h3 { max-width: 230px; margin: 54px 0 10px; font: 500 clamp(21px,2vw,30px)/1.25 Georgia, "Noto Serif KR", "Batang", serif; letter-spacing: -.04em; }
.route-card p { margin: 0; color: #64706b; font-size: 13px; line-height: 1.65; }
.route-card:hover p { color: #b8c5c0; }
.route-card.cta-card { display: flex; flex-direction: column; justify-content: space-between; color: var(--paper); background: var(--jade-dark); }
.route-card.cta-card::before, .route-card.cta-card::after { display: none; }
.route-card.cta-card p { color: rgba(255,255,255,.74); }
.route-card.cta-card strong { font: 500 28px/1.3 Georgia, "Batang", serif; }

.local-story { color: var(--paper); background: var(--ink-soft); }
.story-grid { display: grid; grid-template-columns: minmax(260px,.7fr) minmax(0,1.3fr); gap: clamp(60px,9vw,140px); }
.story-sticky { position: sticky; top: 70px; align-self: start; }
.story-sticky h2 { margin: 14px 0 22px; font-size: clamp(42px,5.2vw,76px); line-height: 1; letter-spacing: -.065em; font-weight: 500; }
.story-sticky p { color: #aeb9b5; line-height: 1.8; }
.route-line { margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--brass); font: 12px Georgia, serif; letter-spacing: .15em; }
.story-list { counter-reset: story; }
.story-item { position: relative; min-height: 190px; padding: 6px 0 46px 88px; border-bottom: 1px solid var(--line); counter-increment: story; }
.story-item + .story-item { padding-top: 44px; }
.story-item::before { content: "0" counter(story); position: absolute; left: 0; top: 5px; color: var(--jade); font: italic 30px Georgia, serif; }
.story-item + .story-item::before { top: 43px; }
.story-item h3 { margin: 0 0 15px; font: 500 28px/1.35 Georgia, "Noto Serif KR", "Batang", serif; }
.story-item p { margin: 0; color: #aeb9b5; font-size: 15px; line-height: 1.85; }

.course-section { background: var(--paper-deep); }
.course-ledger { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.course { position: relative; min-height: 340px; padding: 30px; border-right: 1px solid rgba(10,17,16,.36); }
.course:last-child { border-right: 0; }
.course-no { color: var(--jade-dark); font: 12px Georgia, serif; letter-spacing: .18em; }
.course-time { margin: 48px 0 4px; font: 500 clamp(58px,6vw,86px)/1 Georgia, serif; letter-spacing: -.07em; }
.course-time span { font: 14px Pretendard, sans-serif; letter-spacing: 0; }
.course-price { color: var(--copper); font-size: 21px; font-weight: 900; }
.course p { position: absolute; left: 30px; right: 30px; bottom: 30px; margin: 0; color: #4d5853; font-size: 14px; line-height: 1.7; }
.course-note { margin: 22px 0 0; color: #59645f; font-size: 13px; text-align: right; }

.principles { color: var(--paper); background: #091210; }
.principle-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.principle { position: relative; min-height: 260px; padding: 38px; background: #091210; overflow: hidden; }
.principle::after { content: attr(data-symbol); position: absolute; right: 22px; bottom: -22px; color: transparent; -webkit-text-stroke: 1px rgba(95,209,178,.17); font: 110px Georgia, serif; }
.principle small { color: var(--jade); font: 11px Georgia, serif; letter-spacing: .17em; }
.principle h3 { margin: 60px 0 12px; font: 500 30px/1.25 Georgia, "Batang", serif; }
.principle p { max-width: 430px; margin: 0; color: #aeb9b5; line-height: 1.75; }

.faq-list { border-top: 1px solid var(--line-dark); }
.faq-list details { border-bottom: 1px solid var(--line-dark); }
.faq-list summary { display: grid; grid-template-columns: 70px 1fr auto; gap: 20px; align-items: center; min-height: 104px; cursor: pointer; list-style: none; font: 500 21px/1.45 Georgia, "Noto Serif KR", "Batang", serif; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-no { color: var(--jade-dark); font: 12px Georgia, serif; letter-spacing: .14em; }
.faq-icon { position: relative; width: 28px; height: 28px; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 1px; background: var(--ink); transition: transform .3s; }
.faq-icon::after { transform: rotate(90deg); }
details[open] .faq-icon::after { transform: rotate(0); }
.faq-answer { max-width: 760px; padding: 0 70px 34px 90px; color: #55615c; font-size: 15px; line-height: 1.85; }

.legal-copy { max-width: 900px; }
.legal-copy h2 { margin: 50px 0 16px; font: 500 30px/1.3 Georgia, "Batang", serif; }
.legal-copy p, .legal-copy li { color: #4f5b56; line-height: 1.9; }
.legal-copy ul { padding-left: 20px; }

.final-cta { position: relative; padding: clamp(90px,10vw,150px) 0; overflow: hidden; text-align: center; }
.final-cta::before { content: ""; position: absolute; width: 520px; height: 520px; left: 50%; top: 50%; transform: translate(-50%,-50%); border: 1px solid rgba(95,209,178,.18); border-radius: 50%; box-shadow: 0 0 0 80px rgba(95,209,178,.025), 0 0 0 160px rgba(95,209,178,.015); }
.final-cta .eyebrow { justify-content: center; }
.final-cta h2 { position: relative; max-width: 920px; margin: 20px auto 24px; font-size: clamp(48px,7vw,100px); line-height: .98; letter-spacing: -.075em; font-weight: 500; }
.final-cta p { position: relative; color: var(--muted); line-height: 1.8; }
.final-actions { position: relative; display: flex; justify-content: center; gap: 12px; margin-top: 30px; }

.site-footer { padding: 48px 0 110px; border-top: 1px solid var(--line); color: #97a5a0; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 50px; }
.footer-brand { color: var(--paper); font-size: 20px; font-weight: 900; }
.site-footer p { max-width: 660px; font-size: 13px; line-height: 1.75; }
.footer-links { display: flex; gap: 15px; flex-wrap: wrap; justify-content: flex-end; font-size: 13px; }
.footer-links a:hover { color: var(--jade); }

.mobile-contact { position: fixed; left: 50%; bottom: 18px; z-index: 100; width: min(640px,calc(100% - 28px)); transform: translateX(-50%); display: none; grid-template-columns: .85fr 1.15fr; border: 1px solid rgba(255,255,255,.25); box-shadow: 0 20px 70px rgba(0,0,0,.42); backdrop-filter: blur(18px); }
.mobile-contact a { min-height: 60px; display: grid; place-items: center; color: var(--paper); background: rgba(8,16,14,.86); font-weight: 900; }
.mobile-contact a:last-child { color: var(--ink); background: var(--jade); }

.js [data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.js .hero-copy > * { opacity: 0; transform: translateY(24px); animation: intro-up .9s var(--ease) forwards; }
.js .hero-copy > *:nth-child(2) { animation-delay: .08s; }
.js .hero-copy > *:nth-child(3) { animation-delay: .16s; }
.js .hero-copy > *:nth-child(4) { animation-delay: .24s; }
.js .hero-copy > *:nth-child(5) { animation-delay: .32s; }
.js .hero-copy > *:nth-child(6) { animation-delay: .4s; }
.js .hero-image-wrap { clip-path: polygon(50% 48%,50% 48%,50% 52%,50% 52%); animation: image-unfold 1.4s .18s var(--ease) forwards; }
.js .layout-2 .hero-image-wrap { animation-name: image-unfold-2; }
.js .layout-3 .hero-image-wrap { animation-name: image-unfold-3; }

@keyframes intro-up { to { opacity: 1; transform: none; } }
@keyframes image-unfold { to { clip-path: polygon(12% 0,100% 5%,91% 100%,0 87%); } }
@keyframes image-unfold-2 { to { clip-path: polygon(0 7%,84% 0,100% 91%,10% 100%); } }
@keyframes image-unfold-3 { to { clip-path: ellipse(48% 50% at 50% 50%); } }
@keyframes slow-spin { to { transform: rotate(360deg); } }
@keyframes ambient-breathe { to { transform: scale(1.08); opacity: .75; } }
@keyframes contour-drift { to { transform: translate3d(4%,2%,0) rotate(-5deg) scale(1.04); } }
@keyframes shimmer { 0%,55% { left: -30%; } 78%,100% { left: 125%; } }

@media (max-width: 1040px) {
  :root { --stage: calc(100vw - 42px); }
  .nav-link { display: none; }
  .hero-layout, .layout-2 .hero-layout, .layout-3 .hero-layout { grid-template-columns: minmax(0,1fr) minmax(320px,.7fr); gap: 42px; }
  .layout-2 .hero-copy { order: 1; }
  .layout-2 .hero-media { order: 2; }
  .hero h1 { font-size: clamp(54px,7vw,74px); }
  .search-results, .route-grid { grid-template-columns: repeat(3,1fr); }
  .section-head { grid-template-columns: 1fr 1fr; gap: 38px; }
}

@media (max-width: 760px) {
  :root { --stage: calc(100vw - 28px); }
  body::after { width: 80vw; height: 80vw; right: -45vw; }
  .site-header { padding: 16px 0; }
  .nav-call { display: none; }
  .mobile-contact { display: grid; }
  .menu-button { display: grid; place-items: center; }
  .nav-actions { position: relative; }
  .nav-links {
    position: absolute;
    top: 52px;
    right: 0;
    width: 210px;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(8,16,14,.96);
    box-shadow: 0 30px 70px rgba(0,0,0,.35);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: .22s;
  }
  .nav-links.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links .nav-link { display: block; padding: 13px; }
  .hero { min-height: 900px; padding: 104px 0 72px; align-items: start; }
  .hero-layout, .layout-2 .hero-layout, .layout-3 .hero-layout { display: flex; flex-direction: column; gap: 38px; }
  .hero-copy, .layout-2 .hero-copy { order: 2; margin-top: -96px; }
  .hero-media, .layout-2 .hero-media { order: 1; width: 100%; min-height: 470px; }
  .hero-image-wrap, .layout-2 .hero-image-wrap, .layout-3 .hero-image-wrap { inset: 0; clip-path: polygon(8% 0,100% 3%,94% 100%,0 90%); }
  .js .hero-image-wrap, .js .layout-2 .hero-image-wrap, .js .layout-3 .hero-image-wrap { animation-name: image-unfold-mobile; }
  .hero-copy { padding: 26px 18px 0; background: linear-gradient(180deg,rgba(10,17,16,0),rgba(10,17,16,.92) 22%,rgba(10,17,16,0)); }
  .hero h1 { font-size: clamp(48px,15vw,68px); line-height: .96; }
  .hero h1 .accent { padding-left: .28em; }
  .hero-lead { font-size: 15px; line-height: 1.75; }
  .hero-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }
  .hero-caption { left: 8px; bottom: 96px; width: 174px; padding: 13px; }
  .hero-compass { right: -8px; width: 86px; height: 86px; }
  .paper-stage { border-radius: 28px 28px 0 0; }
  .section { padding: 76px 0; }
  .section-head { display: block; margin-bottom: 32px; }
  .section-head h2 { font-size: 44px; margin-bottom: 24px; }
  .search-shell { padding: 20px; }
  .search-row { grid-template-columns: auto 1fr; }
  .search-clear { display: none; }
  .region-search { font-size: 23px; }
  .search-results { grid-template-columns: 1fr 1fr; }
  .search-result { min-height: 82px; padding: 14px; }
  .route-grid { grid-template-columns: 1fr 1fr; }
  .route-card { min-height: 200px; padding: 20px; }
  .route-card h3 { margin-top: 40px; font-size: 22px; }
  .story-grid { display: block; }
  .story-sticky { position: static; margin-bottom: 60px; }
  .story-item { padding-left: 58px; }
  .course-ledger { grid-template-columns: 1fr; }
  .course { min-height: 245px; border-right: 0; border-bottom: 1px solid rgba(10,17,16,.36); }
  .course:last-child { border-bottom: 0; }
  .course-time { margin-top: 30px; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle { min-height: 230px; padding: 28px; }
  .principle h3 { margin-top: 44px; }
  .faq-list summary { grid-template-columns: 48px 1fr auto; gap: 10px; min-height: 92px; font-size: 17px; }
  .faq-answer { padding: 0 20px 28px 58px; }
  .final-cta h2 { font-size: clamp(48px,14vw,68px); }
  .final-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 440px) {
  .brand { font-size: 18px; }
  .hero { min-height: 890px; }
  .hero-copy { padding-inline: 8px; }
  .hero h1 { font-size: 49px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .primary-action, .secondary-action { width: 100%; }
  .hero-facts { font-size: 12px; }
  .search-results, .route-grid { grid-template-columns: 1fr; }
  .route-card { min-height: 180px; }
  .route-card h3 { margin-top: 34px; }
  .mobile-contact { bottom: 10px; }
  .mobile-contact a { min-height: 56px; font-size: 14px; }
}

@keyframes image-unfold-mobile { to { clip-path: polygon(8% 0,100% 3%,94% 100%,0 90%); } }

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