/*
 * Image assets live in assets/images/ and are intentionally centralized here.
 * Replace these variables with the company's licensed final photography before launch.
 */
:root {
  --ink: #112421;
  --ink-soft: #536864;
  --paper: #fbfcfa;
  --paper-soft: #f1f7f5;
  --jade: #0b4942;
  --jade-deep: #063a35;
  --jade-light: #d9efea;
  --coral: #ff765f;
  --coral-deep: #d95543;
  --sky: #dfeff8;
  --line: rgba(14, 65, 59, 0.14);
  --white: #ffffff;
  --shadow-sm: 0 12px 32px rgba(8, 48, 43, 0.08);
  --shadow-lg: 0 28px 80px rgba(4, 44, 40, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1200px;
  --header-height: 82px;

  --image-hero: url("assets/images/seoul-hero.webp");
  --image-seoul: url("assets/images/gyeongbokgung.webp");
  --image-jeju: url("assets/images/jeju-seongsan.webp");
  --image-food: url("assets/images/gwangjang-market.webp");
  --image-culture: url("assets/images/bukchon-hanok.webp");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Pretendard", "Noto Sans KR", "Noto Sans SC", "Microsoft YaHei",
    "Malgun Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

img {
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid rgba(255, 118, 95, 0.82);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(251, 252, 250, 0.93);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 252, 250, 0.98);
  box-shadow: 0 8px 28px rgba(8, 53, 48, 0.09);
}

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

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--coral);
  border-radius: 50% 50% 46% 46%;
  color: var(--coral-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 1.08rem;
  letter-spacing: 0.04em;
}

.brand-copy span {
  margin-top: 5px;
  color: #50645f;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
  margin-left: auto;
  font-size: 0.9rem;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding-block: 9px;
}

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

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #536864;
  font-size: 0.78rem;
}

.language-button {
  min-width: 30px;
  padding: 6px 3px;
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 700;
}

.language-button.is-active {
  color: var(--jade);
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button--small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.86rem;
}

.button--dark {
  background: var(--jade);
  color: var(--white);
}

.button--dark:hover {
  background: var(--jade-deep);
  box-shadow: 0 10px 24px rgba(5, 61, 55, 0.2);
}

.button--coral {
  background: var(--coral);
  color: #1f2a28;
  box-shadow: 0 12px 32px rgba(178, 70, 52, 0.22);
}

.button--coral:hover {
  background: #ff8a76;
  box-shadow: 0 16px 34px rgba(178, 70, 52, 0.28);
}

.button--glass {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button--glass:hover {
  background: rgba(255, 255, 255, 0.19);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  border-radius: 50%;
  background: var(--jade);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--white);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 99;
  inset: var(--header-height) 0 0;
  padding: 32px 24px 44px;
  background: var(--paper);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 6px;
  border-bottom: 1px solid var(--line);
  font-size: 1.08rem;
  font-weight: 800;
}

.mobile-menu a::after {
  color: var(--coral);
  content: "↗";
}

.hero {
  position: relative;
  min-height: 760px;
  padding-top: var(--header-height);
  background-color: #143f3c;
  background-image: var(--image-hero);
  background-position: 50% 54%;
  background-size: cover;
  color: var(--white);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 34, 32, 0.82) 0%, rgba(4, 34, 32, 0.45) 48%, rgba(4, 34, 32, 0.06) 76%),
    linear-gradient(0deg, rgba(4, 38, 35, 0.55) 0%, rgba(4, 38, 35, 0) 48%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 590px;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  align-items: center;
  gap: clamp(56px, 9vw, 128px);
  padding-block: 78px 92px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--jade);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #b9e5dc;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family:
    "Noto Serif KR", "Songti SC", SimSun, Georgia, serif;
  font-size: clamp(2.8rem, 5.3vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.07;
  text-wrap: balance;
}

.hero h1 > span {
  display: block;
}

.hero-accent {
  margin-top: 6px;
  color: #ffb3a6;
}

.hero-lead {
  max-width: 630px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.89);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.8;
}

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

.hero-note {
  align-self: end;
  margin-bottom: 42px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  background: rgba(5, 51, 47, 0.48);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.hero-note__index {
  color: #ffb3a6;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.hero-note__script {
  margin: 16px 0 6px;
  color: rgba(255, 255, 255, 0.74);
  font-family: Georgia, serif;
  font-size: 1rem;
  font-style: italic;
}

.hero-note strong {
  display: block;
  font-size: 1.18rem;
}

.hero-note > p:last-child {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
}

.service-dock-wrap {
  position: relative;
  z-index: 2;
}

.service-dock {
  position: absolute;
  right: 0;
  bottom: -59px;
  left: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.dock-item {
  display: flex;
  min-height: 118px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px 16px;
}

.dock-item + .dock-item {
  border-left: 1px solid var(--line);
}

.dock-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--jade-light);
  color: var(--jade);
  font-size: 1.2rem;
  font-weight: 900;
}

.dock-item > span:last-child {
  display: flex;
  flex-direction: column;
}

.dock-item strong {
  font-size: 0.9rem;
}

.dock-item small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.section {
  position: relative;
  padding-block: 112px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  align-items: end;
  gap: 56px;
  margin-bottom: 46px;
}

.section-heading h2,
.about-copy h2,
.faq-heading h2,
.contact-copy h2 {
  max-width: 760px;
  margin: 0;
  font-family:
    "Noto Serif KR", "Songti SC", SimSun, Georgia, serif;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  letter-spacing: -0.045em;
  line-height: 1.18;
  text-wrap: balance;
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.section--services {
  padding-top: 152px;
  background:
    linear-gradient(rgba(11, 73, 66, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 73, 66, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(8, 48, 43, 0.14);
}

.photo {
  background-color: #cbd9d5;
  background-position: center;
  background-size: cover;
}

.photo--seoul,
.photo--palace {
  background-image: var(--image-seoul);
}

.photo--jeju,
.photo--coast {
  background-image: var(--image-jeju);
}

.photo--food,
.photo--busan {
  background-image: var(--image-food);
}

.photo--culture,
.photo--hanok,
.photo--about {
  background-image: var(--image-culture);
}

.service-card__image {
  position: relative;
  height: 230px;
  background-position: center;
  transition: transform 500ms ease;
}

.service-card:hover .service-card__image {
  transform: scale(1.025);
}

.service-card__image::after,
.route-card__image::after,
.about-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(4, 32, 29, 0.42));
  content: "";
}

.image-label {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 14px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  background: rgba(7, 55, 50, 0.62);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

.service-card__body {
  position: relative;
  padding: 24px 22px 22px;
}

.card-number {
  position: absolute;
  top: 25px;
  right: 21px;
  color: #627a75;
  font-family: Georgia, serif;
  font-size: 0.76rem;
}

.service-card h3,
.route-card h3,
.process-step h3,
.reason-card h3 {
  margin: 0;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.service-card p {
  min-height: 76px;
  margin: 11px 0 22px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.text-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--jade);
  font-size: 0.8rem;
  font-weight: 900;
}

.text-link span:last-child {
  font-size: 1.08rem;
}

.section--routes {
  overflow: hidden;
  background: var(--jade);
  color: var(--white);
}

.section--routes::before {
  position: absolute;
  top: -240px;
  right: -180px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.025),
    0 0 0 160px rgba(255, 255, 255, 0.018);
  content: "";
}

.section-heading--routes .eyebrow {
  color: #9ad8cb;
}

.section-heading--routes > p {
  color: rgba(255, 255, 255, 0.68);
}

.route-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 18px;
}

.route-card {
  display: grid;
  min-height: 260px;
  grid-template-columns: minmax(210px, 0.9fr) 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  transition:
    background-color 220ms ease,
    transform 220ms ease;
}

.route-card:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-3px);
}

.route-card--large {
  grid-row: span 2;
  grid-template-columns: 1fr;
}

.route-card__image {
  position: relative;
  min-height: 238px;
}

.route-card--large .route-card__image {
  min-height: 330px;
}

.route-card__content {
  padding: 25px 24px;
}

.route-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: #a6d8ce;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-card h3 {
  font-family:
    "Noto Serif KR", "Songti SC", SimSun, Georgia, serif;
  font-size: 1.5rem;
}

.route-card p {
  margin: 12px 0 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-tags li {
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.7rem;
}

.quote-band {
  display: grid;
  min-height: 390px;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
}

.quote-band__image {
  min-height: 390px;
}

.quote-band__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: 56px clamp(34px, 7vw, 100px);
  background:
    linear-gradient(135deg, rgba(223, 239, 248, 0.8), rgba(251, 252, 250, 0.94)),
    var(--paper);
}

.quote-band__content::after {
  position: absolute;
  right: -64px;
  bottom: -92px;
  color: rgba(11, 73, 66, 0.05);
  content: "旅";
  font-family: Georgia, serif;
  font-size: 22rem;
  line-height: 1;
}

.quote-band blockquote {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0;
  color: var(--jade-deep);
  font-family:
    "Noto Serif KR", "Songti SC", SimSun, Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.25;
  text-wrap: balance;
}

.quote-band__content > p:last-child {
  position: relative;
  z-index: 1;
  margin: 23px 0 0;
  color: var(--ink-soft);
}

.section--process {
  background: var(--paper);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-step {
  position: relative;
  min-height: 255px;
  padding: 28px 30px 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step:first-child {
  border-left: 1px solid var(--line);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.process-step:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.process-step + .process-step {
  border-left: 1px solid var(--line);
}

.process-step:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -8px;
  width: 14px;
  height: 14px;
  border-top: 1px solid var(--jade);
  border-right: 1px solid var(--jade);
  background: var(--paper);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.process-number {
  color: var(--coral-deep);
  font-family: Georgia, serif;
  font-size: 0.8rem;
  font-weight: 700;
}

.process-symbol {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 22px 0 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--jade-light);
  color: var(--jade);
  font-size: 1.38rem;
  font-weight: 900;
}

.process-step p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.section--reasons {
  background: var(--paper-soft);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.reason-card {
  min-height: 222px;
  padding: 26px;
  border: 1px solid rgba(11, 73, 66, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
}

.reason-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid rgba(11, 73, 66, 0.22);
  border-radius: 16px;
  color: var(--jade);
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.reason-card:nth-child(2n) .reason-icon {
  border-color: rgba(255, 118, 95, 0.35);
  background: rgba(255, 118, 95, 0.08);
  color: var(--coral-deep);
}

.reason-card p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.section--about {
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 104px);
}

.about-image-wrap {
  position: relative;
}

.about-image {
  position: relative;
  min-height: 580px;
  border-radius: var(--radius-lg) var(--radius-lg) 120px var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-seal {
  position: absolute;
  right: -34px;
  bottom: 44px;
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  align-content: center;
  border: 8px solid var(--paper);
  border-radius: 50%;
  background: var(--coral);
  color: #16302d;
  box-shadow: var(--shadow-sm);
  transform: rotate(-7deg);
}

.about-seal span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 800;
}

.about-seal small {
  margin-top: 2px;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.about-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--ink-soft);
}

.about-copy > p + p:not(.eyebrow) {
  margin-top: 14px;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-facts > div {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
}

.about-facts > div + div {
  border-left: 1px solid var(--line);
}

.about-facts span {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.about-facts strong {
  margin-top: 5px;
  color: var(--jade);
  font-size: 0.9rem;
}

.section--faq {
  background: var(--paper-soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 8vw, 110px);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  align-self: start;
}

.faq-heading p:last-child {
  margin: 24px 0 0;
  color: var(--ink-soft);
}

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

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

.faq-list summary {
  position: relative;
  padding: 25px 58px 25px 0;
  font-size: 1.02rem;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 2px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--jade);
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.faq-list details[open] summary::after {
  background: var(--jade);
  color: var(--white);
  content: "−";
  transform: rotate(180deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -2px 56px 26px 0;
  color: var(--ink-soft);
}

.section--coupon-promo {
  padding-block: 48px;
  background: var(--paper-soft);
}

.coupon-promo {
  position: relative;
  display: grid;
  min-height: 230px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  overflow: hidden;
  padding: clamp(30px, 5vw, 54px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 183, 113, 0.24), transparent 32%),
    linear-gradient(135deg, #073631, #0b4942);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.coupon-promo::after {
  position: absolute;
  right: -90px;
  bottom: -150px;
  width: 310px;
  height: 310px;
  border: 62px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.coupon-promo__copy {
  position: relative;
  z-index: 1;
}

.coupon-promo__copy h2 {
  margin: 9px 0 0;
  font-family: Georgia, "Times New Roman", "Noto Serif SC", serif;
  font-size: clamp(1.8rem, 3.4vw, 3.25rem);
  line-height: 1.12;
}

.coupon-promo__copy > p:last-child {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.coupon-promo__code {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
}

.coupon-promo__code span {
  padding: 15px 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.coupon-promo__code span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.coupon-promo__code strong {
  display: block;
  margin-top: 2px;
  color: #ffcf91;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  letter-spacing: 0;
}

.coupon-promo__cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--coral);
  color: #1d302d;
  font-size: 0.8rem;
  font-weight: 900;
  white-space: nowrap;
}

.coupon-promo:hover .coupon-promo__cta {
  background: #ff9a87;
  transform: translateY(-2px);
}

.section--contact {
  padding-block: 88px;
  background:
    linear-gradient(rgba(7, 54, 49, 0.92), rgba(7, 54, 49, 0.92)),
    var(--image-hero) center 58% / cover;
  color: var(--white);
}

@media (max-width: 800px) {
  .coupon-promo {
    grid-template-columns: 1fr;
  }

  .coupon-promo__code {
    width: min(100%, 330px);
  }

  .coupon-promo__cta {
    justify-self: start;
  }
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(44px, 8vw, 96px);
  align-items: center;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 30px;
  color: #bfe4dc;
  font-size: 0.84rem;
}

.contact-note > span:first-child {
  color: var(--coral);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-detail {
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
}

.contact-detail__label {
  display: block;
  color: #bfe4dc;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.contact-detail strong,
.contact-detail address {
  display: block;
  margin-top: 3px;
  color: var(--white);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.contact-detail__link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  margin-top: 9px;
  color: #ffc1b6;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-detail__link:hover {
  color: var(--white);
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 9px;
}

.social-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.social-link strong {
  display: inline;
  margin: 0;
  color: var(--white);
  font-size: inherit;
}

.social-link:hover {
  border-color: rgba(255, 193, 182, 0.64);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field--wide,
.form-submit,
.form-status {
  grid-column: 1 / -1;
}

.form-field label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
}

.form-field select,
.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  outline: 0;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.form-field select,
.form-field input {
  min-height: 50px;
  padding: 10px 13px;
}

.form-field textarea {
  min-height: 94px;
  padding: 13px;
  resize: vertical;
}

.form-field select:focus,
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 118, 95, 0.2);
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-status {
  min-height: 24px;
  margin: -3px 0 0;
  color: #caeee7;
  font-size: 0.82rem;
}

.site-footer {
  padding-block: 66px 28px;
  background: #052e2a;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.55fr 0.95fr;
  gap: 72px;
}

.brand--footer {
  color: var(--white);
}

.brand-mark--footer {
  border-color: rgba(255, 255, 255, 0.48);
  color: #ff9b88;
}

.brand--footer .brand-copy span {
  color: rgba(255, 255, 255, 0.54);
}

.footer-tagline {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.83rem;
}

.footer-column strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.footer-column a:hover {
  color: #ffad9e;
}

.footer-column a[target="_blank"] {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.34);
  text-underline-offset: 4px;
}

.footer-address {
  max-width: 330px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.73rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.will-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.will-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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

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

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

  .route-card--large {
    grid-row: auto;
    grid-template-columns: minmax(280px, 0.9fr) 1fr;
  }

  .route-card--large .route-card__image {
    min-height: 270px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 810px;
    background-position: 61% center;
  }

  .hero-grid {
    min-height: 650px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 28px;
    padding-block: 68px 108px;
  }

  .hero-note {
    display: none;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(3, 31, 29, 0.82), rgba(3, 31, 29, 0.32)),
      linear-gradient(0deg, rgba(3, 31, 29, 0.62), transparent 55%);
  }

  .service-dock {
    bottom: -104px;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-color: rgba(11, 73, 66, 0.35) transparent;
  }

  .dock-item {
    flex: 0 0 33.333%;
    min-height: 82px;
    flex-direction: column;
    gap: 5px;
    padding: 12px 8px;
    scroll-snap-align: start;
    text-align: center;
  }

  .dock-item:nth-child(4),
  .dock-item:nth-child(5) {
    display: flex;
  }

  .dock-item > span:last-child {
    display: block;
  }

  .dock-item small {
    display: none;
  }

  .dock-icon {
    width: 32px;
    height: 32px;
    font-size: 0.94rem;
  }

  .section {
    padding-block: 84px;
  }

  .section--services {
    padding-top: 148px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 34px;
  }

  .quote-band {
    grid-template-columns: 1fr;
  }

  .quote-band__image {
    min-height: 290px;
  }

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

  .process-step:nth-child(2) {
    border-right: 1px solid var(--line);
    border-radius: 0 var(--radius-md) 0 0;
  }

  .process-step:nth-child(3) {
    border-left: 1px solid var(--line);
    border-radius: 0 0 0 var(--radius-md);
  }

  .process-step:last-child {
    border-radius: 0 0 var(--radius-md) 0;
  }

  .process-step:nth-child(-n + 2) {
    border-bottom: 0;
  }

  .process-step:nth-child(2)::after {
    display: none;
  }

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

  .about-image {
    min-height: 460px;
  }

  .about-seal {
    right: 22px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .faq-heading {
    position: static;
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 32px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 0.96rem;
  }

  .brand-copy span {
    font-size: 0.57rem;
  }

  .language-switch {
    gap: 1px;
  }

  .language-button {
    min-width: 28px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 740px;
    background-position: 63% center;
  }

  .hero-grid {
    min-height: 575px;
    padding-block: 58px 86px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  .hero-lead {
    max-width: 94%;
    margin-top: 22px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 28px;
  }

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

  .service-dock {
    bottom: -91px;
  }

  .dock-item {
    min-height: 80px;
  }

  .dock-item strong {
    font-size: 0.75rem;
  }

  .section {
    padding-block: 68px;
  }

  .section--services {
    padding-top: 132px;
  }

  .section-heading h2,
  .about-copy h2,
  .faq-heading h2,
  .contact-copy h2 {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
  }

  .service-cards,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .service-card__image {
    height: 250px;
  }

  .route-card,
  .route-card--large {
    grid-template-columns: 1fr;
  }

  .route-card__image,
  .route-card--large .route-card__image {
    min-height: 235px;
  }

  .quote-band__image {
    min-height: 250px;
  }

  .quote-band__content {
    padding: 48px 24px;
  }

  .quote-band blockquote {
    font-size: 2rem;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step:first-child,
  .process-step:nth-child(2),
  .process-step:nth-child(3),
  .process-step:last-child {
    min-height: auto;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 0;
  }

  .process-step:first-child {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  .process-step:last-child {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .process-step + .process-step {
    border-top: 0;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .process-symbol {
    float: left;
    width: 44px;
    height: 44px;
    margin: 17px 16px 8px 0;
  }

  .process-step h3 {
    padding-top: 18px;
  }

  .process-step p {
    clear: both;
  }

  .about-image {
    min-height: 390px;
    border-radius: var(--radius-md) var(--radius-md) 80px var(--radius-md);
  }

  .about-seal {
    width: 94px;
    height: 94px;
    right: 12px;
    bottom: 24px;
    border-width: 6px;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .about-facts > div {
    min-height: 86px;
  }

  .about-facts > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .faq-list summary {
    padding-right: 48px;
  }

  .faq-list details p {
    margin-right: 12px;
  }

  .section--contact {
    padding-block: 68px;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }

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

  .contact-socials {
    align-items: stretch;
    flex-direction: column;
  }

  .social-link {
    justify-content: space-between;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .header-inner {
    gap: 8px;
  }

  .brand {
    gap: 8px;
  }

  .brand-copy span {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal,
  .reveal.will-reveal {
    opacity: 1;
    transform: none;
  }
}
