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

:root {
  --scb-bg: #f5f4ef;
  --scb-surface: #ffffff;
  --scb-ink: #171b1a;
  --scb-muted: #5c6562;
  --scb-line: #d9dedb;
  --scb-primary: #176b62;
  --scb-primary-dark: #0d4943;
  --scb-accent: #c6a764;
  --scb-accent-soft: #eee5cf;
  --scb-error: #a93f36;
  --scb-shadow: 0 16px 42px rgba(23, 27, 26, 0.1);
  --scb-header: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--scb-ink);
  background: var(--scb-bg);
  font-family: Pretendard, "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  stroke-width: 1.8;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.25;
  letter-spacing: 0;
}

h1,
h2 {
  text-wrap: balance;
}

p {
  color: var(--scb-muted);
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--scb-primary-dark);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: 40px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--scb-header);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 222, 219, 0.85);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  gap: 11px;
  font-weight: 800;
}

.brand-mark {
  position: relative;
  width: 28px;
  height: 36px;
  flex: 0 0 auto;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 23px;
  border-radius: 50%;
  transform: rotate(34deg);
}

.brand-mark::before {
  top: 2px;
  left: 3px;
  background: var(--scb-primary);
}

.brand-mark::after {
  right: 2px;
  bottom: 2px;
  background: var(--scb-accent);
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-name {
  font-size: 19px;
  color: var(--scb-ink);
}

.brand-sub {
  margin-top: 3px;
  color: var(--scb-muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
  color: #343b39;
  font-size: 15px;
  font-weight: 650;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--scb-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 44px);
  padding: 3px;
  background: #eef0ee;
  border: 1px solid var(--scb-line);
  border-radius: 7px;
}

.language-switch button {
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--scb-muted);
  background: transparent;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.language-switch button[aria-pressed="true"] {
  color: var(--scb-ink);
  background: var(--scb-surface);
  box-shadow: 0 2px 7px rgba(23, 27, 26, 0.1);
}

.icon-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--scb-ink);
  background: var(--scb-surface);
  border: 1px solid var(--scb-line);
  border-radius: 7px;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 20px;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1.35;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: var(--scb-primary);
}

.button-primary:hover {
  background: var(--scb-primary-dark);
}

.button-light {
  color: var(--scb-ink);
  background: #ffffff;
}

.button-outline {
  color: var(--scb-ink);
  background: transparent;
  border-color: var(--scb-line);
}

.button-outline:hover {
  background: var(--scb-surface);
  border-color: #adb5b1;
}

.button-ghost-light {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
}

.button[disabled],
.button[aria-disabled="true"] {
  color: #737b78;
  background: #edf0ee;
  border-color: #dce1de;
  cursor: not-allowed;
  transform: none;
}

.header-cta {
  min-height: 44px;
  padding-inline: 16px;
  font-size: 14px;
}

.mobile-panel {
  position: fixed;
  inset: var(--scb-header) 0 auto 0;
  z-index: 95;
  max-height: calc(100svh - var(--scb-header));
  overflow-y: auto;
  color: var(--scb-ink);
  background: #ffffff;
  border-bottom: 1px solid var(--scb-line);
  box-shadow: var(--scb-shadow);
}

.mobile-panel-inner {
  padding-block: 16px 24px;
}

.mobile-nav {
  display: grid;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  border-bottom: 1px solid #edf0ee;
  font-weight: 700;
}

.mobile-panel .button {
  width: 100%;
  margin-top: 18px;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 640px;
  overflow: hidden;
  color: #ffffff;
  background: #1d2321;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.hero-overlay {
  background: rgba(11, 17, 15, 0.64);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  padding-block: 82px 92px;
}

.hero-kicker,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  color: var(--scb-primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-kicker {
  color: #ece1c8;
}

.hero-kicker::before,
.section-kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 20px;
  color: #ffffff;
  font-family: "Noto Serif KR", serif;
  font-size: 68px;
  font-weight: 600;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 650;
}

.signal-bar {
  color: var(--scb-ink);
  background: var(--scb-surface);
  border-bottom: 1px solid var(--scb-line);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.signal-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  min-height: 118px;
  padding: 22px 28px;
  gap: 14px;
  border-right: 1px solid var(--scb-line);
}

.signal-item:first-child {
  border-left: 1px solid var(--scb-line);
}

.signal-icon,
.feature-icon,
.flow-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--scb-primary);
  background: #e7f0ed;
  border-radius: 7px;
}

.signal-item strong,
.signal-item span {
  display: block;
}

.signal-item strong {
  font-size: 16px;
}

.signal-item span {
  margin-top: 2px;
  color: var(--scb-muted);
  font-size: 13px;
}

.section {
  padding-block: 108px;
}

.section-compact {
  padding-block: 74px;
}

.section-surface {
  background: var(--scb-surface);
}

.section-tint {
  background: #eaf0ed;
}

.section-dark {
  color: #ffffff;
  background: #141917;
}

.section-dark p,
.section-dark .section-kicker {
  color: rgba(255, 255, 255, 0.7);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.section-head > div {
  max-width: 760px;
}

.section-head h2,
.section-title {
  margin-bottom: 16px;
  font-size: 44px;
  font-weight: 750;
}

.section-head p:last-child,
.section-intro {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 7px;
  color: var(--scb-primary);
  font-weight: 800;
  white-space: nowrap;
}

.flow-grid,
.feature-grid,
.channel-grid,
.guide-grid,
.value-grid {
  display: grid;
  gap: 1px;
  background: var(--scb-line);
  border: 1px solid var(--scb-line);
}

.flow-grid {
  grid-template-columns: repeat(4, 1fr);
}

.flow-item,
.feature-card,
.channel-card,
.guide-card,
.value-card {
  background: var(--scb-surface);
}

.flow-item {
  min-height: 250px;
  padding: 30px;
}

.flow-number {
  color: var(--scb-ink);
  background: var(--scb-accent-soft);
  font-weight: 850;
}

.flow-item h3 {
  margin: 28px 0 10px;
  font-size: 21px;
}

.flow-item p {
  margin-bottom: 0;
  font-size: 15px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  min-height: 290px;
  padding: 34px;
}

.feature-card h3,
.guide-card h3,
.value-card h3 {
  margin: 24px 0 12px;
  font-size: 22px;
}

.feature-card p,
.guide-card p,
.value-card p {
  margin-bottom: 0;
}

.media-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: stretch;
  min-height: 560px;
}

.media-frame {
  position: relative;
  min-height: 440px;
  overflow: hidden;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-note {
  position: absolute;
  right: 16px;
  bottom: 16px;
  max-width: calc(100% - 32px);
  padding: 9px 12px;
  color: #ffffff;
  background: rgba(15, 20, 18, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.media-copy-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
  background: var(--scb-surface);
}

.media-copy-content h2 {
  margin-bottom: 20px;
  font-size: 42px;
}

.check-list,
.plain-list,
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 26px 0 30px;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: #343b39;
}

.check-list svg {
  width: 19px;
  color: var(--scb-primary);
}

.subhero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #17201e;
}

.subhero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  min-height: 390px;
  padding-block: 88px 72px;
}

.subhero-content {
  max-width: 780px;
}

.subhero h1 {
  margin-bottom: 17px;
  color: #ffffff;
  font-family: "Noto Serif KR", serif;
  font-size: 56px;
  font-weight: 600;
}

.subhero p {
  max-width: 670px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
}

.subhero-image {
  position: absolute;
  inset: 0;
}

.subhero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.subhero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 14, 0.26);
}

.route-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.route-sticky {
  position: sticky;
  top: 112px;
}

.route-sticky h2 {
  margin-bottom: 16px;
  font-size: 42px;
}

.route-list {
  display: grid;
  border-top: 1px solid var(--scb-line);
}

.route-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding-block: 28px;
  border-bottom: 1px solid var(--scb-line);
}

.route-item .flow-number {
  width: 46px;
  height: 46px;
}

.route-item h3 {
  margin-bottom: 7px;
  font-size: 21px;
}

.route-item p {
  margin-bottom: 0;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.65fr);
  gap: 64px;
  align-items: start;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  color: #303735;
  font-size: 14px;
  font-weight: 750;
}

.field .required {
  color: var(--scb-error);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--scb-ink);
  background: #ffffff;
  border: 1px solid #cbd2ce;
  border-radius: 6px;
  outline: none;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--scb-primary);
  box-shadow: 0 0 0 3px rgba(23, 107, 98, 0.14);
}

.field-hint {
  margin: 0;
  font-size: 12px;
}

.radio-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.radio-choice {
  position: relative;
}

.radio-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-choice span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 9px 12px;
  color: var(--scb-muted);
  background: #ffffff;
  border: 1px solid #cbd2ce;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
}

.radio-choice input:checked + span {
  color: var(--scb-primary-dark);
  background: #e7f0ed;
  border-color: var(--scb-primary);
}

.radio-choice input:focus-visible + span {
  outline: 3px solid rgba(23, 107, 98, 0.2);
  outline-offset: 2px;
}

.consent-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--scb-muted);
  font-size: 13px;
}

.consent-row input {
  width: 18px;
  min-height: 18px;
  margin: 3px 0 0;
  accent-color: var(--scb-primary);
}

.form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  gap: 14px;
  padding-top: 4px;
}

.form-status {
  margin: 0;
  font-size: 13px;
}

.booking-aside {
  position: sticky;
  top: 112px;
  padding-left: 34px;
  border-left: 1px solid var(--scb-line);
}

.booking-aside h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.aside-facts {
  display: grid;
  margin: 28px 0;
  border-top: 1px solid var(--scb-line);
}

.aside-fact {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  padding-block: 16px;
  border-bottom: 1px solid var(--scb-line);
}

.aside-fact svg {
  color: var(--scb-primary);
}

.aside-fact strong,
.aside-fact span {
  display: block;
}

.aside-fact span {
  color: var(--scb-muted);
  font-size: 13px;
}

.preview-notice {
  padding: 18px;
  color: #5a4a2e;
  background: var(--scb-accent-soft);
  border-left: 3px solid var(--scb-accent);
  font-size: 13px;
}

.preview-notice strong {
  display: block;
  margin-bottom: 4px;
  color: #3f321f;
}

.channel-grid {
  grid-template-columns: repeat(4, 1fr);
}

.channel-card {
  min-height: 205px;
  padding: 28px;
}

.channel-card svg {
  width: 28px;
  height: 28px;
  color: var(--scb-primary);
}

.channel-card h3 {
  margin: 22px 0 7px;
  font-size: 19px;
}

.channel-card p {
  margin-bottom: 19px;
  font-size: 13px;
}

.channel-card button {
  min-height: 44px;
  padding: 7px 0;
  color: var(--scb-muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 750;
}

.guide-grid {
  grid-template-columns: repeat(3, 1fr);
}

.guide-card,
.value-card {
  padding: 34px;
}

.guide-card .feature-icon,
.value-card .feature-icon {
  color: var(--scb-ink);
  background: var(--scb-accent-soft);
}

.faq-list {
  border-top: 1px solid var(--scb-line);
}

.faq-item {
  border-bottom: 1px solid var(--scb-line);
}

.faq-button {
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: center;
  width: 100%;
  min-height: 76px;
  padding: 19px 0;
  color: var(--scb-ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-weight: 750;
}

.faq-button svg {
  transition: transform 180ms ease;
}

.faq-button[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.faq-panel {
  max-width: 820px;
  padding: 0 42px 24px 0;
}

.faq-panel p {
  margin-bottom: 0;
}

.value-grid {
  grid-template-columns: repeat(3, 1fr);
}

.about-statement {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 72px;
}

.about-statement blockquote {
  margin: 0;
  font-family: "Noto Serif KR", serif;
  font-size: 37px;
  font-weight: 600;
  line-height: 1.45;
}

.about-copy p {
  font-size: 18px;
}

.cta-band {
  color: #ffffff;
  background: var(--scb-primary-dark);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 250px;
  gap: 36px;
}

.cta-inner h2 {
  margin-bottom: 11px;
  color: #ffffff;
  font-size: 38px;
}

.cta-inner p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  color: rgba(255, 255, 255, 0.75);
  background: #111513;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 64px;
  padding-block: 72px 54px;
}

.site-footer .brand-name,
.site-footer h2,
.site-footer h3 {
  color: #ffffff;
}

.site-footer .brand-sub,
.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.64);
}

.footer-brand p {
  max-width: 450px;
  margin: 24px 0 0;
}

.site-footer h3 {
  margin-bottom: 17px;
  font-size: 15px;
}

.footer-links {
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  min-width: 44px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.floating-booking {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  box-shadow: 0 12px 30px rgba(13, 73, 67, 0.32);
}

.dialog {
  width: min(500px, calc(100% - 36px));
  padding: 0;
  color: var(--scb-ink);
  background: #ffffff;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--scb-shadow);
}

.dialog::backdrop {
  background: rgba(7, 10, 9, 0.62);
}

.dialog-body {
  padding: 34px;
}

.dialog-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  color: var(--scb-primary);
  background: #e7f0ed;
  border-radius: 7px;
}

.dialog h2 {
  margin-bottom: 12px;
  font-size: 26px;
}

.dialog .button {
  width: 100%;
  margin-top: 15px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 150;
  width: min(420px, calc(100% - 32px));
  padding: 13px 16px;
  color: #ffffff;
  background: #202624;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  box-shadow: var(--scb-shadow);
  transform: translateX(-50%);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

:focus-visible {
  outline: 3px solid rgba(23, 107, 98, 0.42);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .container {
    padding-inline: 28px;
  }

  .desktop-nav {
    display: none;
  }

  .icon-button {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .hero h1 {
    font-size: 60px;
  }

  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid,
  .guide-grid,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .media-copy {
    grid-template-columns: 1fr 1fr;
  }

  .media-copy-content {
    padding: 46px;
  }

  .route-grid,
  .booking-layout {
    gap: 42px;
  }

  .channel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  :root {
    --scb-header: 68px;
  }

  .container {
    padding-inline: 24px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-sub {
    font-size: 9px;
  }

  .hero {
    min-height: 600px;
  }

  .hero-content {
    padding-block: 72px 82px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .signal-grid {
    grid-template-columns: 1fr;
  }

  .signal-item,
  .signal-item:first-child {
    min-height: 94px;
    border-right: 1px solid var(--scb-line);
    border-bottom: 1px solid var(--scb-line);
    border-left: 1px solid var(--scb-line);
  }

  .section {
    padding-block: 82px;
  }

  .section-compact {
    padding-block: 60px;
  }

  .section-head {
    display: block;
    margin-bottom: 36px;
  }

  .section-head h2,
  .section-title,
  .route-sticky h2 {
    font-size: 36px;
  }

  .section-head .text-link {
    margin-top: 16px;
  }

  .media-copy {
    grid-template-columns: 1fr;
  }

  .media-copy-content {
    padding: 48px 32px;
  }

  .subhero-inner {
    min-height: 360px;
  }

  .subhero h1 {
    font-size: 46px;
  }

  .subhero-image {
    inset: 0;
  }

  .subhero-image img {
    opacity: 0.28;
  }

  .floating-booking {
    display: none;
  }

  .route-grid,
  .booking-layout,
  .about-statement {
    grid-template-columns: 1fr;
  }

  .route-sticky,
  .booking-aside {
    position: static;
  }

  .booking-aside {
    padding: 32px 0 0;
    border-top: 1px solid var(--scb-line);
    border-left: 0;
  }

  .about-statement {
    gap: 36px;
  }

  .about-statement blockquote {
    font-size: 31px;
  }

  .cta-inner {
    display: block;
    padding-block: 54px;
  }

  .cta-inner .button {
    margin-top: 24px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .container {
    padding-inline: 20px;
  }

  .header-inner {
    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 24px;
    height: 32px;
  }

  .brand-mark::before,
  .brand-mark::after {
    width: 10px;
    height: 20px;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-sub {
    display: none;
  }

  .icon-button {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: 570px;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-content {
    padding-block: 62px 68px;
  }

  .hero-kicker,
  .section-kicker {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    gap: 10px;
    margin-top: 24px;
    padding-top: 18px;
  }

  .signal-item {
    padding-inline: 20px;
  }

  .section {
    padding-block: 68px;
  }

  .section-head h2,
  .section-title,
  .route-sticky h2,
  .media-copy-content h2 {
    font-size: 32px;
  }

  .section-head p:last-child,
  .section-intro {
    font-size: 16px;
  }

  .flow-grid,
  .feature-grid,
  .guide-grid,
  .value-grid,
  .channel-grid {
    grid-template-columns: 1fr;
  }

  .flow-item,
  .feature-card {
    min-height: auto;
  }

  .media-copy-content {
    padding: 40px 24px;
  }

  .media-frame {
    min-height: 360px;
  }

  .subhero-inner {
    min-height: 330px;
    padding-block: 66px 54px;
  }

  .subhero h1 {
    font-size: 40px;
  }

  .subhero p {
    font-size: 16px;
  }

  .route-item {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .route-item .flow-number {
    width: 42px;
    height: 42px;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .field-wide,
  .form-actions {
    grid-column: auto;
  }

  .form-actions,
  .form-actions .button {
    width: 100%;
  }

  .channel-card {
    min-height: auto;
  }

  .about-statement blockquote {
    font-size: 27px;
  }

  .cta-inner h2 {
    font-size: 32px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding-block: 56px 40px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    display: block;
    padding-block: 18px 90px;
  }

  .dialog-body {
    padding: 28px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
