:root {
  --ink: #10283b;
  --ink-deep: #0d2231;
  --paper: #f7f1e8;
  --paper-soft: #fbf8f2;
  --line: #d8cdbd;
  --muted: #6e756f;
  --orange: #f26e3d;
  --sea: #cfe3e3;
  --app-font-sans: "DM Sans", sans-serif;
  --app-font-serif: "Fraunces", Georgia, serif;
  --app-font-mono: "Space Mono", monospace;
  --shadow-card: 0 18px 50px rgba(24, 48, 65, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--app-font-sans); -webkit-font-smoothing: antialiased; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
::selection { background: rgba(242, 110, 61, .23); }
.site-shell {
  min-height: 100%;
}
.container-wide { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--orange); font: 700 11px/1 var(--app-font-mono); letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.serif { font-family: var(--app-font-serif); }
.section { padding: 50px 0; position: relative; }
.section-heading { max-width: 660px; }
.section-title { margin: 18px 0 0; color: var(--ink); font: 600 clamp(38px, 5vw, 68px)/.99 var(--app-font-serif); letter-spacing: -.045em; }
.section-copy { color: var(--muted); font-size: 17px; line-height: 1.7; }
.reveal-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal-on-scroll.in-view { opacity: 1; transform: translateY(0); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 30; color: var(--paper); transition: background .35s ease, color .35s ease, box-shadow .35s ease; }
.site-header.scrolled { background: rgba(247, 241, 232, .94); color: var(--ink); box-shadow: 0 1px 0 rgba(216, 205, 189, .85); backdrop-filter: blur(16px); }
.header-inner { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { color: inherit; text-decoration: none; font: 600 25px/1 var(--app-font-serif); letter-spacing: -.04em; white-space: nowrap; }
.brand span { color: var(--orange); }
.desktop-nav { display: none; align-items: center; gap: clamp(14px, 2vw, 28px); }
.nav-link { border: 0; background: transparent; color: inherit; cursor: pointer; padding: 9px 0; text-decoration: none; font-size: 12px; font-weight: 700; letter-spacing: .02em; opacity: .82; transition: opacity .2s ease, color .2s ease; }
.nav-link:hover, .nav-link.active { color: var(--orange); opacity: 1; }
.phone-button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid var(--orange); background: var(--orange); color: var(--paper); border-radius: 999px; padding: 12px 16px; text-decoration: none; font-size: 12px; font-weight: 700; white-space: nowrap; transition: transform .2s ease, background .2s ease, color .2s ease; }
.phone-button:hover { transform: translateY(-2px); background: var(--paper); color: var(--orange); }
.phone-button.small { padding: 10px 14px; font-size: 11px; }
.menu-button { border: 1px solid currentColor; background: transparent; color: inherit; display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; cursor: pointer; font-size: 18px; line-height: 1; }
.mobile-menu { display: none; position: absolute; left: 20px; right: 20px; top: 76px; background: var(--paper-soft); color: var(--ink); border: 1px solid var(--line); border-radius: 18px; padding: 14px; box-shadow: 0 30px 80px rgba(24, 48, 65, .18); }
.mobile-menu.is-open { display: block; animation: menu-in .22s ease both; }
.mobile-menu .nav-link { display: block; width: 100%; text-align: left; padding: 13px 12px; }
.mobile-menu .phone-button { width: 100%; margin-top: 8px; }
@keyframes menu-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

.hero { min-height: 570px; height: min(700px, 78svh); position: relative; color: var(--paper); background: var(--ink); isolation: isolate; }
.hero-image { position: absolute; inset: 0; background-position: center; background-size: cover; animation: slow-pan 14s ease-in-out infinite alternate; transition: opacity .8s ease; will-change: transform, opacity; }
.hero-image.is-changing { animation: image-in .9s ease both, slow-pan 14s ease-in-out infinite alternate; }
@keyframes slow-pan { from { transform: scale(1); } to { transform: scale(1.055); } }
@keyframes image-in { from { opacity: .45; } to { opacity: 1; } }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14, 33, 47, .88) 0%, rgba(14, 33, 47, .57) 48%, rgba(14, 33, 47, .14) 100%), linear-gradient(0deg, rgba(14, 33, 47, .66), transparent 40%); }
.hero-content { z-index: 1; position: relative; height: 100%; display: flex; flex-direction: column; justify-content: center; padding-top: 66px; padding-bottom: 94px; }
.hero-kicker { color: rgba(247, 241, 232, .86); }
.hero-copy-wrap { transition: opacity .55s ease, transform .55s ease; }
.hero-copy-wrap.is-changing { animation: copy-in .65s ease both; }
@keyframes copy-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.hero-title { max-width: 660px; margin: 18px 0 0; font: 600 clamp(46px, 7vw, 84px)/.95 var(--app-font-serif); letter-spacing: -.06em; text-wrap: balance; }
.hero-title em { color: #ff8963; font-style: normal; }
.hero-copy { max-width: 470px; margin: 21px 0 0; color: rgba(247, 241, 232, .82); font-size: clamp(15px, 1.7vw, 17px); line-height: 1.55; text-wrap: balance; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 33px; }
.primary-button, .quiet-button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border-radius: 999px; padding: 15px 21px; border: 1px solid transparent; cursor: pointer; text-decoration: none; font-size: 13px; font-weight: 700; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.primary-button { background: var(--orange); color: var(--paper); }
.primary-button:hover { transform: translateY(-3px); background: #ff8258; color: var(--paper); }
.quiet-button { color: var(--paper); border-color: rgba(247, 241, 232, .5); background: rgba(247, 241, 232, .09); }
.quiet-button:hover { transform: translateY(-3px); border-color: var(--paper); background: rgba(247, 241, 232, .18); color: var(--paper); }
.hero-bottom { position: absolute; z-index: 2; left: 0; right: 0; bottom: 28px; }
.hero-meta { display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.slide-label { display: flex; align-items: center; gap: 12px; color: rgba(247, 241, 232, .85); font: 11px var(--app-font-mono); letter-spacing: .08em; text-transform: uppercase; }
.slide-label strong { color: var(--orange); font-weight: 700; }
.slider-controls { display: flex; gap: 8px; }
.circle-control { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(247, 241, 232, .5); color: var(--paper); background: rgba(14, 33, 47, .18); cursor: pointer; transition: background .2s ease, transform .2s ease; }
.circle-control:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }
.slider-dots { display: flex; gap: 6px; margin-top: 16px; }
.slider-dot { border: 0; height: 3px; width: 28px; border-radius: 2px; background: rgba(247, 241, 232, .34); cursor: pointer; padding: 0; transition: width .2s ease, background .2s ease; }
.slider-dot.active { background: var(--orange); width: 52px; }
.hero-index { font: 13px var(--app-font-mono); color: rgba(247, 241, 232, .7); margin-top: 5px; text-align: right; }
.hero-progress { width: 78px; height: 2px; margin-top: 10px; background: rgba(247, 241, 232, .25); overflow: hidden; }
.hero-progress span { display: block; height: 100%; background: var(--orange); transition: width .45s ease; }

.trust-ribbon { background: var(--ink); color: var(--paper); padding: 17px 0; }
.trust-ribbon-inner { display: flex; gap: 24px; justify-content: space-between; align-items: center; overflow: auto; }
.trust-ribbon p { white-space: nowrap; margin: 0; font: 11px var(--app-font-mono); letter-spacing: .08em; text-transform: uppercase; opacity: .78; }
.trust-ribbon p::before { content: ""; display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); margin: 0 10px 2px 0; }
.enquiry-section { padding-top: 50px; }
.enquiry-card { display: grid; background: var(--paper-soft); border: 1px solid var(--line); box-shadow: var(--shadow-card); border-radius: 24px; overflow: hidden; }
.enquiry-copy { padding: 36px 26px 30px; background: rgba(207, 227, 227, .56); }
.enquiry-copy h2 { margin: 17px 0 16px; max-width: 480px; font: 600 clamp(37px, 5vw, 61px)/.98 var(--app-font-serif); letter-spacing: -.05em; }
.enquiry-copy p { margin: 0; max-width: 410px; color: var(--muted); line-height: 1.65; }
.enquiry-note { margin-top: 29px; color: var(--ink); font-size: 12px; font-weight: 700; }
.enquiry-form { padding: 32px 26px 34px; }
.form-grid { display: grid; gap: 15px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label { color: var(--ink); font: 700 11px var(--app-font-mono); letter-spacing: .08em; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid var(--line); border-radius: 9px; background: var(--paper); color: var(--ink); padding: 13px 14px; outline: none; transition: border .2s ease, box-shadow .2s ease; }
.form-field textarea { min-height: 86px; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(110, 117, 111, .68); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242, 110, 61, .13); }
.form-submit { width: 100%; margin-top: 18px; }
.form-status { display: none; gap: 10px; align-items: flex-start; padding: 13px; border-radius: 10px; margin-top: 15px; color: #28603e; background: #d9efdf; font-size: 13px; line-height: 1.45; }
.form-status.visible { display: block; }
.form-status.error { color: #a23b2c; background: rgba(200, 66, 50, .1); }

.destination-head { display: flex; flex-direction: column; gap: 20px; justify-content: space-between; }
.destination-head .section-copy { max-width: 390px; margin: 0; }
.destination-grid { display: grid; gap: 15px; margin-top: 50px; }
.destination-card {
  min-height: 390px;
  overflow: hidden;
  position: relative;
  border-radius: 18px;
  color: var(--paper);

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  transition: transform .35s ease, box-shadow .35s ease;
}

.destination-card.featured {
  min-height: 480px;
}

.destination-card:hover { transform: translateY(-8px); box-shadow: 0 22px 44px rgba(24, 48, 65, .18); }
.destination-content { position: absolute; z-index: 1; inset: auto 24px 23px; }
.destination-region { color: #ff9875; font: 10px var(--app-font-mono); letter-spacing: .12em; text-transform: uppercase; }
.destination-content h3 { margin: 9px 0 0; font: 600 32px/1 var(--app-font-serif); letter-spacing: -.04em; }
.destination-content p { color: rgba(247, 241, 232, .74); font-size: 13px; line-height: 1.4; margin: 10px 0 0; max-width: 250px; }
.destination-arrow { position: absolute; right: 0; bottom: 0; width: 34px; height: 34px; display: grid; place-items: center; color: var(--orange); border: 1px solid var(--orange); border-radius: 50%; }
.benefits-section { background: var(--ink); color: var(--paper); margin-top: 30px;}
.benefits-section .section-title { color: var(--paper); }
.benefits-section .section-copy { color: rgba(247, 241, 232, .67); }
.benefits-layout { display: grid; gap: 55px; }
.benefit-list { margin-top: 48px; }
.benefit-item { display: grid; grid-template-columns: 50px 1fr; gap: 16px; padding: 22px 0; border-top: 1px solid rgba(247, 241, 232, .16); }
.benefit-number { color: var(--orange); font: 12px var(--app-font-mono); padding-top: 3px; }
.benefit-item h3 { margin: 0; font-size: 18px; font-weight: 700; }
.benefit-item p { margin: 8px 0 0; color: rgba(247, 241, 232, .61); line-height: 1.55; font-size: 14px; }
.benefit-photo { min-height: 440px; position: relative; border-radius: 22px; overflow: hidden; background: linear-gradient(0deg, rgba(14, 33, 47, .45), rgba(14, 33, 47, .04)), url("../assets/hero-jasper.jpg") center/cover; }
.benefit-photo::before { content: ""; position: absolute; inset: 15px; border: 1px solid rgba(247, 241, 232, .5); border-radius: 15px; }
.photo-caption { position: absolute; left: 30px; right: 30px; bottom: 28px; color: var(--paper); font-size: 14px; line-height: 1.5; }
.photo-caption strong { display: block; font: 600 27px/1 var(--app-font-serif); margin-bottom: 7px; }
.process-section { background: rgba(216, 205, 189, .26); }
.process-intro { display: flex; flex-direction: column; gap: 18px; }
.process-intro .section-copy { max-width: 420px; margin: 0; }
.process-grid { display: grid; gap: 1px; background: var(--line); margin-top: 54px; border: 1px solid var(--line); }
.process-step { background: var(--paper); padding: 30px 25px 34px; min-height: 220px; }
.process-icon { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 50%; background: var(--sea); color: var(--ink); font: 12px var(--app-font-mono); }
.process-step h3 { margin: 30px 0 9px; font: 600 24px var(--app-font-serif); }
.process-step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.seasonal-section { padding-bottom: 40px; }
.seasonal-wrap { position: relative; min-height: 500px; border-radius: 22px; overflow: hidden; background: linear-gradient(90deg, rgba(14, 33, 47, .88), rgba(14, 33, 47, .18)), url("../assets/seasonal-autumn.jpg") center/cover; color: var(--paper); }
.seasonal-content { position: relative; z-index: 1; max-width: 550px; padding: 55px 27px; }
.seasonal-content h2 { font: 600 clamp(42px, 5vw, 70px)/.94 var(--app-font-serif); letter-spacing: -.05em; margin: 18px 0; }
.seasonal-content p { color: rgba(247, 241, 232, .77); line-height: 1.6; max-width: 420px; }
.seasonal-tag { color: #ff9875; font: 11px var(--app-font-mono); text-transform: uppercase; letter-spacing: .09em; }
.faq-layout { display: grid; gap: 50px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { display: flex; justify-content: space-between; align-items: center; gap: 15px; width: 100%; border: 0; background: transparent; color: var(--ink); cursor: pointer; text-align: left; padding: 21px 0; font-size: 16px; font-weight: 700; }
.faq-question span { color: var(--orange); font-size: 20px; transition: transform .25s ease; }
.faq-item.open .faq-question span { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-answer { max-height: 180px; }
.faq-answer p { color: var(--muted); line-height: 1.7; font-size: 14px; padding: 0 42px 20px 0; margin: 0; }
.faq-aside { background: rgba(207, 227, 227, .56); border-radius: 18px; padding: 28px; align-self: start; margin-top: 28px; }
.faq-aside p { color: var(--muted); line-height: 1.6; font-size: 14px; }
.text-link { color: var(--ink); font-size: 13px; font-weight: 700; text-decoration-color: var(--orange); text-underline-offset: 5px; }
.policy-section { padding-top: 40px; }
.policy-section .process-grid { margin-top: 0; }
.contact-section { background: var(--orange); color: var(--paper); padding: 88px 0; }
.contact-grid { display: grid; gap: 34px; align-items: end; }
.contact-section .eyebrow { color: rgba(247, 241, 232, .78); }
.contact-section .section-title { color: var(--paper); max-width: 740px; }
.contact-copy { color: rgba(247, 241, 232, .76); line-height: 1.55; max-width: 405px; margin: 22px 0 0; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.contact-actions .primary-button { background: var(--ink); color: var(--paper); }
.contact-actions .primary-button:hover { background: #1d3d54; }
.site-footer { background: var(--ink); color: var(--paper); padding: 48px 0 28px; }
.footer-top { display: flex; flex-direction: column; gap: 30px; justify-content: space-between; padding-bottom: 45px; border-bottom: 1px solid rgba(247, 241, 232, .16); }
.footer-brand-copy { color: rgba(247, 241, 232, .55); max-width: 255px; font-size: 13px; line-height: 1.6; margin: 16px 0 0; }
.footer-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 24px; }
.footer-nav a { color: rgba(247, 241, 232, .65); text-decoration: none; text-align: left; font-size: 12px; transition: color .2s ease; }
.footer-nav a:hover { color: var(--orange); }
.footer-bottom { display: flex; flex-direction: column; gap: 12px; padding-top: 21px; color: rgba(247, 241, 232, .4); font: 10px var(--app-font-mono); letter-spacing: .04em; }
.footer-bottom p { margin: 0; }
.footer-mark { color: rgba(247, 241, 232, .82); font-size: 13px; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

/* .page-hero { min-height: 490px; position: relative; display: flex; align-items: end; color: var(--paper); background: linear-gradient(90deg, rgba(14,33,47,.9), rgba(14,33,47,.32)), var(--page-image) center/cover; } */

.page-hero {
  min-height: 490px;
  position: relative;
  display: flex;
  align-items: end;
  color: var(--paper);

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #0e2130;

  isolation: isolate;
}

/* Light dark overlay over background image */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 33, 48, 0.30);
  z-index: -1;
}

.page-hero-content { padding: 150px 0 72px; position: relative; z-index: 1; }
.page-hero h1 { max-width: 780px; margin: 18px 0 0; font: 600 clamp(52px, 8vw, 102px)/.94 var(--app-font-serif); letter-spacing: -.06em; }
.page-hero p { max-width: 560px; margin: 24px 0 0; color: rgba(247,241,232,.78); font-size: 18px; line-height: 1.6; }
.page-main { padding: 90px 0 110px; }
.page-intro { max-width: 720px; margin-bottom: 58px; }
.page-intro h2 { margin: 18px 0; font: 600 clamp(38px, 5vw, 64px)/1 var(--app-font-serif); letter-spacing: -.05em; }
.page-intro p { color: var(--muted); font-size: 17px; line-height: 1.75; }
.route-list { display: grid; gap: 16px; }
.route-panel { display: grid; grid-template-columns: minmax(130px, .32fr) 1fr auto; gap: 24px; align-items: center; padding: 28px; border: 1px solid var(--line); background: var(--paper-soft); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.route-panel:hover { transform: translateX(7px); border-color: var(--orange); box-shadow: var(--shadow-card); }
.route-panel .route-number { color: var(--orange); font: 13px var(--app-font-mono); }
.route-panel h3 { margin: 0; font: 600 28px var(--app-font-serif); }
.route-panel p { margin: 6px 0 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.route-panel .route-arrow { color: var(--orange); font-size: 27px; }
.page-split { display: grid; gap: 44px; align-items: center; margin-top: 100px; }
/* .page-photo { min-height: 470px; border-radius: 22px; background: linear-gradient(0deg, rgba(14,33,47,.35), rgba(14,33,47,.02)), var(--page-image) center/cover; } */

.page-photo {
  min-height: 470px;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


.info-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 60px; }
.info-card { padding: 30px 26px; background: var(--paper); }
.info-card h3 { margin: 0 0 12px; font: 600 26px var(--app-font-serif); }
.info-card p, .info-card li { color: var(--muted); line-height: 1.7; font-size: 14px; }
.policy-content { max-width: 850px; }
.policy-content h2 { margin: 48px 0 12px; font: 600 34px var(--app-font-serif); letter-spacing: -.03em; }
.policy-content h2:first-child { margin-top: 0; }
.policy-content p, .policy-content li { color: var(--muted); line-height: 1.8; font-size: 15px; }
.policy-content ul { padding-left: 20px; }
.policy-aside { margin-top: 54px; padding: 28px; border-left: 3px solid var(--orange); background: rgba(207,227,227,.56); }
.policy-aside p { margin: 0; color: var(--ink); font-weight: 600; line-height: 1.6; }
.contact-page-grid { display: grid; gap: 46px; align-items: start; }
.contact-details { display: grid; gap: 14px; margin-top: 32px; }
.contact-detail { padding: 20px 0; border-top: 1px solid var(--line); }
.contact-detail strong { display: block; font: 600 23px var(--app-font-serif); }
.contact-detail span { display: block; margin-top: 5px; color: var(--muted); font-size: 14px; }
.contact-form-card { padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: var(--paper-soft); box-shadow: var(--shadow-card); }
.contact-form-card h2 { margin: 0 0 24px; font: 600 36px var(--app-font-serif); letter-spacing: -.04em; }
.contact-form-card .form-field { margin-bottom: 16px; }
.contact-form-card .form-submit { margin-top: 4px; }

@media (min-width: 680px) {
  .container-wide { width: min(1180px, calc(100% - 72px)); }
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .form-field.full { grid-column: 1 / -1; }
  .destination-grid { grid-template-columns: 1.15fr .85fr; }
  .destination-card:nth-child(3) { grid-column: 1 / -1; min-height: 290px; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-step { min-height: 265px; }
  .footer-nav { grid-template-columns: repeat(3, 1fr); }
  .info-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 920px) {
  .desktop-nav { display: flex; }
  .menu-button, .mobile-menu { display: none; }
  .header-inner { height: 94px; }
  .phone-button { padding-inline: 18px; }
  .enquiry-card { grid-template-columns: 1fr 1.08fr; }
  .enquiry-copy { padding: 64px 57px; }
  .enquiry-form { padding: 58px 57px; }
  .destination-head, .process-intro { flex-direction: row; align-items: end; }
  .destination-grid { grid-template-columns: 1.06fr .94fr .94fr; }
  .destination-card, .destination-card.featured, .destination-card:nth-child(3) { min-height: 460px; grid-column: auto; }
  .destination-card.featured { min-height: 520px; }
  .benefits-layout { grid-template-columns: 1fr .84fr; align-items: center; gap: 90px; }
  .benefit-photo { min-height: 630px; }
  .faq-layout { grid-template-columns: .75fr 1.25fr; gap: 100px; }
  .faq-aside { margin-top: 17px; }
  .contact-grid { grid-template-columns: 1.2fr .8fr; }
  .footer-top { flex-direction: row; align-items: start; }
  .footer-nav { width: 420px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .page-split { grid-template-columns: 1fr 1fr; gap: 90px; }
  .contact-page-grid { grid-template-columns: .85fr 1.15fr; gap: 100px; }
  .hero-content { padding-right: 18%; }
  .hero { min-height: 570px; }
}
@media (max-width: 679px) {
  .hero { min-height: 540px; height: 70svh; }
  .hero-content { padding-top: 60px; padding-bottom: 112px; }
  .hero-title { max-width: 360px; font-size: clamp(42px, 12.5vw, 58px); }
  .hero-copy { max-width: 340px; font-size: 15px; }
  .slide-label { display: block; max-width: 220px; line-height: 1.55; }
  .slide-label span { margin-left: 7px; }
  .route-panel { grid-template-columns: 38px 1fr; gap: 14px; }
  .route-panel .route-arrow { grid-column: 2; }
  .page-hero-content { padding-bottom: 58px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}


/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(14, 33, 47, .86) 0%,
      rgba(14, 33, 47, .56) 50%,
      rgba(14, 33, 47, .18) 100%
    ),
    var(--page-image);
}

.contact-hero::before {
  display: none;
}

.contact-hero h1 em {
  color: #ff8963;
  font-style: normal;
}

.contact-main {
  background: var(--paper);
}


/* LEFT CONTACT INFORMATION */

.contact-information {
  max-width: 520px;
}

.contact-information .section-title {
  margin-bottom: 22px;
}

.contact-information .section-title em {
  color: var(--orange);
  font-style: normal;
}

.contact-information .section-copy {
  max-width: 480px;
}


/* CONTACT DETAILS */

.contact-details {
  display: grid;
  gap: 0;
  margin-top: 38px;
}

.contact-detail.contact-detail-icon {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.contact-detail-icon-box {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sea);
  color: var(--ink);
  font-size: 17px;
}

.contact-label {
  display: block;
  margin-bottom: 4px;
  color: var(--orange) !important;
  font: 700 10px var(--app-font-mono) !important;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-detail strong {
  display: block;
  font: 600 21px/1.2 var(--app-font-serif);
}

.contact-detail strong a {
  text-decoration: none;
}

.contact-detail strong a:hover {
  color: var(--orange);
}

.contact-detail span:last-child {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}


/* QUICK ACTION BUTTONS */

.contact-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 32px;
}

.quiet-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
  padding: 15px 21px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition:
    transform .2s ease,
    background .2s ease,
    border-color .2s ease;
}

.quiet-contact-button:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  color: var(--orange);
  background: var(--paper-soft);
}


/* FORM CARD */

.contact-form-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper-soft);
  box-shadow: var(--shadow-card);
}

.contact-form-header {
  margin-bottom: 30px;
}

.contact-form-header .eyebrow {
  margin-bottom: 16px;
}

.contact-form-card h2 {
  margin: 0;
  color: var(--ink);
  font: 600 clamp(38px, 5vw, 56px)/.98 var(--app-font-serif);
  letter-spacing: -.05em;
}

.contact-form-header p {
  max-width: 480px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}


/* FORM GRID */

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.contact-form-grid .form-field {
  margin: 0;
}

.contact-form-grid .form-field.full {
  grid-column: 1 / -1;
}

.contact-form-grid input,
.contact-form-grid select,
.contact-form-grid textarea {
  min-height: 49px;
}

.contact-form-grid textarea {
  min-height: 145px;
}

.contact-form-grid select {
  appearance: none;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 21px,
    calc(100% - 14px) 21px;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.form-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}


/* HELP / CALL SECTION */

.contact-help-section {
  margin-top: 90px;
}

.contact-help-card {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 60px;
  align-items: center;
  padding: 55px;
  border-radius: 22px;
  background: var(--ink);
  color: var(--paper);
}

.contact-help-card h2 {
  max-width: 600px;
  margin: 17px 0 0;
  color: var(--paper);
  font: 600 clamp(38px, 5vw, 62px)/.96 var(--app-font-serif);
  letter-spacing: -.05em;
}

.contact-help-copy p {
  margin: 0 0 22px;
  color: rgba(247, 241, 232, .68);
  font-size: 15px;
  line-height: 1.7;
}

.contact-help-copy .text-link {
  color: var(--paper);
  text-decoration-color: var(--orange);
}


/* CONTACT HERO MOBILE */

@media (max-width: 679px) {

  .contact-hero {
    min-height: 560px;
  }

  .contact-hero h1 {
    font-size: clamp(48px, 13vw, 66px);
  }

  .contact-hero p {
    font-size: 16px;
  }

  .contact-page-grid {
    gap: 55px;
  }

  .contact-form-card {
    padding: 25px 20px;
    border-radius: 18px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-form-grid .form-field.full {
    grid-column: auto;
  }

  .contact-form-card h2 {
    font-size: 39px;
  }

  .contact-detail.contact-detail-icon {
    grid-template-columns: 42px 1fr;
    gap: 13px;
  }

  .contact-detail-icon-box {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .contact-quick-actions {
    flex-direction: column;
  }

  .contact-quick-actions a {
    width: 100%;
  }

  .contact-help-section {
    margin-top: 60px;
  }

  .contact-help-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 32px 25px;
    border-radius: 18px;
  }

  .contact-help-card h2 {
    font-size: 42px;
  }
}


/* TABLET */

@media (min-width: 680px) and (max-width: 919px) {

  .contact-page-grid {
    gap: 55px;
  }

  .contact-form-card {
    padding: 35px;
  }

  .contact-help-card {
    grid-template-columns: 1fr 1fr;
    padding: 40px;
  }
}


/* DESKTOP */

@media (min-width: 920px) {

  .contact-page-grid {
    grid-template-columns: .85fr 1.15fr;
    gap: 100px;
  }

  .contact-form-card {
    padding: 42px;
  }

  .contact-information {
    position: sticky;
    top: 125px;
  }
}