@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --pearl: #F4F2ED;
  --pearl-alt: #EDEAE3;
  --surface: #FFFFFF;
  --surface-dark: #1A1D24;
  --border: #D4D0C5;
  --border-light: #E5E2DA;
  --ink: #14171F;
  --ink-soft: #2A2D35;
  --muted: #6B6E75;
  --muted-light: #9A9CA3;
  --accent: #1E4D6B;
  --accent-deep: #153851;
  --accent-light: #2E6B8F;
  --warm: #B85C3C;
  --warm-light: #D98A6F;
  --bronze: #A8895C;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 0;
  --radius-sm: 2px;
  --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --container: 1280px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 80px;
  overflow-x: clip;
}

body {
  font-family: var(--font-sans);
  background-color: var(--pearl);
  color: var(--ink);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1 0 auto;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.75rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); }
h4 { font-size: 1.35rem; }
h5 { font-size: 1.1rem; font-family: var(--font-sans); font-weight: 500; letter-spacing: 0; }

em, .italic {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--warm);
}

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

.site-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  align-self: stretch;
  background-color: rgba(244, 242, 237, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 18px 0;
}

@media (min-width: 769px) {
  .site-header {
    position: sticky;
    top: 0;
  }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}

.logo-mark img {
  width: 50px;
  height: 50px;
  border-radius: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font-serif);
}

.logo-line1, .logo-line2 {
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.logo-line2 {
  font-style: italic;
  color: var(--accent);
}

.main-nav {
  position: relative;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-list a {
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding: 6px 0;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-list a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--ink);
  transition: var(--transition);
}

.hero {
  position: relative;
  padding: 80px 0 80px;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.85);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(26, 29, 36, 0.85) 0%, rgba(30, 77, 107, 0.55) 50%, rgba(184, 92, 60, 0.3) 100%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.hero-decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero-decor-lines {
  top: 50%;
  left: 40px;
  width: 2px;
  height: 200px;
  background: repeating-linear-gradient(to bottom, rgba(244, 242, 237, 0.3) 0, rgba(244, 242, 237, 0.3) 8px, transparent 8px, transparent 16px);
  transform: translateY(-50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-grid > * {
  min-width: 0;
  max-width: 100%;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(244, 242, 237, 0.85);
  font-weight: 500;
}

.hero-left .hero-meta {
  justify-content: flex-start;
}

.page-hero-content .hero-meta {
  justify-content: center;
}

.meta-diamond {
  color: var(--warm-light);
  font-size: 0.6rem;
}

.hero-title {
  margin-bottom: 28px;
  color: var(--pearl);
}

.title-line {
  display: block;
  color: var(--pearl);
}

.title-line.italic {
  font-style: italic;
  color: rgba(244, 242, 237, 0.9);
  font-weight: 300;
  padding-left: 24px;
}

.title-line.accent {
  color: var(--warm-light);
}

.hero-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(244, 242, 237, 0.85);
  max-width: 560px;
  margin-bottom: 48px;
}

.hero-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(244, 242, 237, 0.2);
}

.pillar-numeral {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--warm-light);
  font-style: italic;
  min-width: 40px;
}

.pillar h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  color: var(--pearl);
}

.pillar p {
  font-size: 0.9rem;
  color: rgba(244, 242, 237, 0.75);
  line-height: 1.5;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(244, 242, 237, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(244, 242, 237, 0.25);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--pearl);
}

.hbadge i {
  color: var(--warm-light);
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 60px rgba(20, 23, 31, 0.3);
}

.form-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--warm), transparent);
}

.form-header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.form-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--warm);
  margin-bottom: 10px;
}

.form-header h3 {
  font-size: 1.65rem;
  margin-bottom: 6px;
}

.form-sub {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  padding: 14px 16px;
  background: var(--pearl-alt);
  border: 1px solid var(--border);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition);
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.form-check input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  accent-color: var(--accent);
}

.form-check label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.82rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1.5;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  padding: 18px 32px;
  background: var(--ink);
  color: var(--pearl);
  border: none;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--accent);
  transition: width 0.5s ease;
  z-index: 0;
}

.btn-primary span, .btn-primary i {
  position: relative;
  z-index: 1;
}

.btn-primary:hover::after {
  width: 100%;
}

.btn-primary:hover {
  color: var(--pearl);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  background: transparent;
  color: var(--pearl);
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--pearl);
  color: var(--ink);
  border-color: var(--pearl);
}

.metrics {
  padding: 64px 0;
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.metric {
  position: relative;
  padding-left: 0;
}

.metric-index {
  position: absolute;
  top: -6px;
  right: 0;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--border);
  font-size: 2rem;
}

.metric-value {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.metric-unit {
  font-size: 1.5rem;
  color: var(--warm);
  margin-left: 4px;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.metric-dot {
  position: absolute;
  top: 14px;
  left: -24px;
  width: 4px;
  height: 4px;
  background: var(--warm);
  transform: rotate(45deg);
}

section {
  padding: 80px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-head-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--warm);
  display: inline-block;
}

.diamond-sep {
  color: var(--accent);
  font-size: 0.5rem;
}

.section-title {
  margin-bottom: 24px;
}

.section-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

.signature {
  background: var(--pearl);
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.route-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}

.route-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(20, 23, 31, 0.1);
  border-color: var(--accent);
}

.route-visual {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.route-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.route-card:hover .route-visual img {
  transform: scale(1.08);
}

.route-coords {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--pearl);
  background: rgba(20, 23, 31, 0.6);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
}

.route-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 5px 12px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.route-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.route-route {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.route-from, .route-to {
  font-weight: 500;
  color: var(--accent);
}

.route-arrow {
  color: var(--warm);
  font-size: 0.8rem;
}

.route-body h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  font-family: var(--font-serif);
}

.route-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 16px;
  flex: 1;
}

.route-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.meta-item i {
  color: var(--warm);
  font-size: 0.75rem;
}

.route-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.route-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
}

.route-link {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
}

.route-link:hover {
  color: var(--warm);
  gap: 10px;
}

.custom-banner {
  position: relative;
  padding: 56px 48px;
  background: linear-gradient(135deg, var(--surface-dark) 0%, var(--accent-deep) 100%);
  color: var(--pearl);
  text-align: center;
  overflow: hidden;
}

.custom-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(184, 92, 60, 0.15), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(46, 107, 143, 0.2), transparent 40%);
}

.banner-decor {
  position: absolute;
  color: var(--warm);
  font-size: 1.5rem;
  opacity: 0.4;
  z-index: 2;
}

.banner-decor-left { top: 24px; left: 24px; }
.banner-decor-right { bottom: 24px; right: 24px; }

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.banner-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--warm-light);
  margin-bottom: 18px;
}

.custom-banner h3 {
  color: var(--pearl);
  margin-bottom: 16px;
}

.custom-banner p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(244, 242, 237, 0.85);
  margin-bottom: 32px;
}

.fleet {
  background: var(--surface);
}

.fleet-showcase {
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 21/9;
}

.showcase-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-overlay {
  position: absolute;
  bottom: 32px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(244, 242, 237, 0.9);
  backdrop-filter: blur(10px);
}

.showcase-model {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ink);
}

.showcase-sep {
  color: var(--warm);
}

.showcase-class {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}

.fleet-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.spec {
  padding: 28px 24px;
  background: var(--pearl);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
}

.spec:hover {
  border-color: var(--accent);
  background: var(--pearl-alt);
}

.spec-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--pearl);
  margin-bottom: 20px;
  font-size: 1rem;
}

.spec-body h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 8px;
}

.spec-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1;
}

.spec-value span {
  font-size: 1rem;
  color: var(--warm);
}

.spec-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.fleet-audit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 48px;
  background: var(--pearl);
  border: 1px solid var(--border-light);
  align-items: center;
}

.audit-left h3 {
  margin-bottom: 16px;
}

.audit-left p {
  color: var(--muted);
  line-height: 1.7;
}

.audit-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.audit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

.audit-diamond {
  color: var(--warm);
  font-size: 0.6rem;
}

.services {
  background: var(--surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service {
  padding: 36px 28px;
  background: var(--pearl);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--warm));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service:hover::before {
  transform: scaleX(1);
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.service-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--warm);
  line-height: 1;
}

.service-badges {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}

.sbadge {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  padding: 3px 8px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.service-icon {
  font-size: 1.75rem;
  color: var(--ink);
  margin-bottom: 20px;
  display: flex;
  width: 56px;
  height: 56px;
  background: var(--surface);
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
}

.service h4 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

.destinations {
  background: var(--pearl-alt);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 24px;
}

.dest-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  padding: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.dest-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.dest-wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0;
  align-items: stretch;
}

.dest-image {
  overflow: hidden;
  aspect-ratio: 16/10;
}

.dest-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.dest-card:hover .dest-image img {
  transform: scale(1.05);
}

.dest-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dest-wide .dest-body {
  padding: 48px;
}

.dest-region {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--warm);
  margin-bottom: 10px;
}

.dest-body h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.dest-body p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.dest-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dbadge {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 5px 10px;
  background: var(--pearl);
  border: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.voices {
  background: var(--surface-dark);
  color: var(--pearl);
}

.voices .section-title,
.voices h2,
.voices .section-eyebrow {
  color: var(--pearl);
}

.voices .section-eyebrow {
  color: var(--warm-light);
}

.voices .diamond-sep {
  color: var(--warm-light);
}

.voices .section-lead {
  color: rgba(244, 242, 237, 0.7);
}

.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.voice {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.voice:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--warm-light);
}

.voice-stars {
  color: var(--warm);
  margin-bottom: 18px;
  display: flex;
  gap: 4px;
  font-size: 0.8rem;
}

.voice p {
  color: rgba(244, 242, 237, 0.9);
  font-size: 0.98rem;
  line-height: 1.7;
  font-family: var(--font-serif);
  font-style: italic;
  margin-bottom: 28px;
  flex: 1;
}

.voice-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.voice-avatar {
  width: 44px;
  height: 44px;
  background: var(--warm);
  color: var(--pearl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
}

.voice-author h5 {
  color: var(--pearl);
  font-size: 1rem;
  margin-bottom: 0;
}

.site-footer {
  background: var(--ink);
  color: var(--pearl);
  padding: 0;
  font-size: 0.92rem;
  margin-top: auto;
  position: relative;
}

.footer-decor-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-decor-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
}

.footer-decor-diamond {
  color: var(--warm);
  font-size: 0.8rem;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 48px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-row .logo {
  flex-shrink: 0;
}

.footer-brand-row .logo-line1,
.footer-brand-row .logo-line2 {
  color: var(--pearl);
}

.footer-tagline {
  flex: 1;
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(244, 242, 237, 0.75);
  font-size: 1.15rem;
  line-height: 1.5;
  max-width: 600px;
  padding-left: 48px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-section-label {
  flex-shrink: 0;
  width: 180px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--warm-light);
  padding-top: 4px;
  position: relative;
}

.footer-section-label::before {
  content: '◆';
  color: var(--warm);
  margin-right: 8px;
  font-size: 0.5rem;
}

.footer-section-content {
  flex: 1;
}

.footer-section-content ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  align-items: center;
}

.footer-section-content li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-nav-row a,
.footer-legal-row a {
  color: rgba(244, 242, 237, 0.8);
  font-size: 0.92rem;
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}

.footer-nav-row a::after,
.footer-legal-row a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--warm-light);
  transition: var(--transition);
}

.footer-nav-row a:hover,
.footer-legal-row a:hover {
  color: var(--warm-light);
}

.footer-nav-row a:hover::after,
.footer-legal-row a:hover::after {
  width: 100%;
}

.footer-nav-row li::after,
.footer-legal-row li::after {
  content: '—';
  color: rgba(244, 242, 237, 0.3);
  margin-left: 32px;
}

.footer-nav-row li:last-child::after,
.footer-legal-row li:last-child::after {
  content: '';
  margin-left: 0;
}

.footer-contact-row .contact-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
}

.footer-contact-row .contact-list li {
  color: rgba(244, 242, 237, 0.8);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-row .contact-list li i {
  color: var(--warm);
  font-size: 0.85rem;
  width: 16px;
}

.contact-list li::after {
  content: '';
}

.footer-disclaimer {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-disclaimer p {
  color: rgba(244, 242, 237, 0.5);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 1100px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(244, 242, 237, 0.6);
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom-sep {
  color: var(--warm);
  font-size: 0.6rem;
}

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--ink);
  color: var(--pearl);
  border: 1px solid var(--border);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  transition: var(--transition);
}

.back-to-top:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.back-to-top.visible {
  display: flex;
}

.page-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.7);
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(26, 29, 36, 0.85) 0%, rgba(30, 77, 107, 0.6) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero-content h1 {
  color: var(--pearl);
  margin-bottom: 24px;
}

.page-hero-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(244, 242, 237, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

.routes-detail {
  background: var(--pearl);
}

.route-detail-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  margin-bottom: 80px;
  align-items: center;
}

.route-detail-block.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.route-detail-block.reverse .route-detail-visual {
  order: 2;
}

.route-detail-block:last-child {
  margin-bottom: 0;
}

.route-detail-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.route-detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-detail-coords {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 10px 16px;
  background: rgba(20, 23, 31, 0.8);
  backdrop-filter: blur(10px);
  color: var(--pearl);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
}

.route-detail-content h2 {
  margin-bottom: 20px;
}

.route-detail-content p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.route-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
}

.fact {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.fact i {
  width: 40px;
  height: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.fact h5 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 4px;
}

.fact p {
  font-size: 0.92rem;
  color: var(--ink);
  margin: 0;
  line-height: 1.4;
}

.custom-cta {
  background: var(--pearl-alt);
}

.origin-story {
  background: var(--pearl-alt);
}

.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.origin-frame {
  position: relative;
  overflow: hidden;
}

.origin-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.origin-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--surface);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.tag-diamond {
  color: var(--warm);
}

.origin-caption {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.85rem;
  font-style: italic;
  font-family: var(--font-serif);
}

.origin-caption svg {
  color: var(--warm);
}

.origin-content .section-eyebrow {
  margin-bottom: 16px;
}

.origin-content h2 {
  margin-bottom: 28px;
}

.origin-content p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.origin-signature {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--muted);
}

.signature-line {
  width: 60px;
  height: 1px;
  background: var(--warm);
}

.philosophy {
  background: var(--surface);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.philosophy-frame {
  position: relative;
  overflow: hidden;
}

.philosophy-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.philosophy-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--surface);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.pb-diamond {
  color: var(--warm);
}

.philosophy-caption {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.85rem;
  font-style: italic;
  font-family: var(--font-serif);
}

.philosophy-content .section-eyebrow {
  margin-bottom: 16px;
}

.philosophy-content h2 {
  margin-bottom: 28px;
}

.philosophy-content p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.philosophy-values {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.value-item i {
  width: 44px;
  height: 44px;
  background: var(--pearl);
  border: 1px solid var(--border);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.value-item h5 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink);
  margin-bottom: 4px;
}

.value-item p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.5;
}

.team-quotes {
  background: var(--pearl);
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.quote-card {
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  position: relative;
  transition: var(--transition);
}

.quote-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.quote-avatar {
  width: 56px;
  height: 56px;
  background: var(--warm);
  color: var(--pearl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.quote-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.quote-card cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.quote-role {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.milestones {
  background: var(--surface);
}

.timeline {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: repeating-linear-gradient(to bottom, var(--accent) 0, var(--accent) 6px, transparent 6px, transparent 12px);
}

.timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-marker {
  width: 40px;
  height: 40px;
  background: var(--ink);
  color: var(--pearl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}

.timeline-marker span {
  color: var(--pearl);
}

.timeline-content {
  padding-top: 8px;
}

.timeline-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--warm);
  margin-bottom: 8px;
}

.timeline-content h3 {
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.gallery-section {
  background: var(--pearl-alt);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.gallery-item {
  background: var(--surface);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
}

.gallery-item:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.gallery-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.05);
}

.gallery-caption {
  padding: 32px;
}

.gallery-caption h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.gallery-caption p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.gallery-author {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: normal;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info-block h2 {
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border-light);
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-item i {
  width: 44px;
  height: 44px;
  background: var(--ink);
  color: var(--pearl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item h5 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-item p {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
}

.contact-hours {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border-light);
}

.contact-hours h5 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 12px;
}

.contact-hours p {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.7;
  margin: 0;
}

.additional-contacts {
  background: var(--surface);
}

.additional-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  min-width: 0;
  width: 100%;
}

.additional-grid > * {
  min-width: 0;
  max-width: 100%;
}

.additional-card {
  padding: 36px 32px;
  background: var(--pearl);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  min-width: 0;
  overflow-wrap: break-word;
}

.additional-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.additional-icon {
  width: 56px;
  height: 56px;
  background: var(--ink);
  color: var(--pearl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 24px;
}

.additional-card h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.additional-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.additional-email {
  display: inline-block;
  font-size: 0.92rem;
  color: var(--accent);
  font-weight: 500;
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  max-width: 100%;
  word-break: break-all;
  box-sizing: border-box;
}

.faq-section {
  background: var(--pearl-alt);
}

.faq-block {
  max-width: 900px;
  margin: 0 auto;
}

.faq {
  background: var(--surface);
  border: 1px solid var(--border-light);
  margin-bottom: 10px;
  transition: var(--transition);
}

.faq[open] {
  border-color: var(--accent);
}

.faq summary {
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.98rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  position: relative;
  padding-right: 50px;
}

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

.faq summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--warm);
  transition: var(--transition);
  font-weight: 300;
}

.faq[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq p {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pearl) 0%, var(--pearl-alt) 100%);
  padding: 60px 24px;
  position: relative;
  min-height: 80vh;
}

.thanks-container {
  position: relative;
  text-align: center;
  max-width: 720px;
  width: 100%;
  background: var(--surface);
  padding: 64px 56px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(20, 23, 31, 0.12);
}

.thanks-container::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 32px;
  right: 32px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--warm), transparent);
}

.thanks-decor {
  position: absolute;
  pointer-events: none;
}

.thanks-decor-top {
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: var(--warm);
  color: var(--pearl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 32px;
  position: relative;
}

.thanks-icon::after {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 1px solid var(--warm);
  opacity: 0.3;
}

.thanks-container h1 {
  font-size: 2.75rem;
  margin-bottom: 8px;
}

.thanks-sub {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--warm);
  font-size: 1.15rem;
  margin-bottom: 32px;
}

#thanks-text {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.75;
  text-align: left;
  padding: 28px;
  background: var(--pearl-alt);
  border-left: 3px solid var(--warm);
  margin-bottom: 40px;
}

.thanks-next {
  margin-bottom: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.thanks-next h3 {
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.thanks-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.thanks-step {
  position: relative;
  padding-left: 48px;
}

.thanks-step-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  background: var(--ink);
  color: var(--pearl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.95rem;
}

.thanks-step p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.thanks-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--ink);
  color: var(--pearl);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
}

.thanks-back:hover {
  background: var(--accent);
  color: var(--pearl);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 32px;
  word-break: break-word;
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.legal-content .update-date {
  color: var(--muted);
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 1.75rem;
  margin: 40px 0 16px;
}

.legal-content h3 {
  font-size: 1.3rem;
  margin: 32px 0 12px;
  font-family: var(--font-sans);
  font-weight: 600;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: none;
  margin: 1rem 0;
  padding-left: 0;
}

.legal-content li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--ink-soft);
  line-height: 1.6;
}

.legal-content li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--warm);
  font-size: 0.6rem;
  top: 12px;
}

[data-aos] {
  opacity: 1;
  transform: none;
  transition: all 0.8s ease-out;
}

@media (max-width: 1024px) {
  .hero-grid,
  .origin-grid,
  .philosophy-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .services-grid,
  .voices-grid,
  .metrics-grid,
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dest-wide {
    grid-column: span 2;
  }

  .fleet-audit {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .footer-brand-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-tagline {
    padding-left: 0;
    border-left: none;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }

  .footer-section-row {
    flex-direction: column;
    gap: 16px;
  }

  .footer-section-label {
    width: auto;
  }

  .route-detail-block,
  .route-detail-block.reverse {
    grid-template-columns: 1fr;
  }

  .route-detail-block.reverse .route-detail-visual {
    order: 0;
  }

  .quotes-grid,
  .additional-grid {
    grid-template-columns: repeat(2, 1fr);
    min-width: 0;
  }

  .thanks-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

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

  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .main-nav {
    width: 100%;
  }

  .nav-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
  }

  .nav-list a {
    font-size: 0.8rem;
    padding: 4px 0;
  }

  section { padding: 60px 0; }

  .routes-grid,
  .services-grid,
  .voices-grid,
  .metrics-grid,
  .fleet-specs,
  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .dest-wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

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

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

  .custom-banner { padding: 40px 24px; }

  .fleet-audit { padding: 32px 24px; }
  .audit-list { grid-template-columns: 1fr; }

  .hero-decor { display: none; }

  .metrics-grid { gap: 32px; }
  .metric-dot { display: none; }

  .footer-bottom { flex-direction: column; gap: 8px; }
  .footer-bottom-sep { display: none; }

  .footer-nav-row li::after,
  .footer-legal-row li::after {
    content: '';
    margin-left: 0;
  }

  .footer-section-content ul {
    flex-direction: column;
    gap: 12px;
  }

  .footer-contact-row .contact-list {
    flex-direction: column;
    gap: 12px;
  }

  .footer-top { padding: 40px 0; }
  .footer-decor-top { padding: 16px 20px; }

  .quotes-grid,
  .additional-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    min-width: 0;
  }

  .additional-card {
    padding: 24px 16px;
  }

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

  .page-hero {
    min-height: 50vh;
    padding: 100px 0 60px;
  }
}

@media (max-width: 900px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .hero-grid > *,
  .origin-grid > *,
  .philosophy-grid > *,
  .contact-grid > * {
    min-width: 0;
    max-width: 100%;
  }
}

[data-aos="fade-right"]:not(.aos-animate) {
  transform: translate3d(-32px, 0, 0) !important;
}

[data-aos="fade-left"]:not(.aos-animate) {
  transform: translate3d(32px, 0, 0) !important;
}

@media (max-width: 640px) {
  .logo a {
    flex-direction: column;
  }

  .logo-text {
    word-break: break-all;
    min-width: 0;
    flex: 1;
  }

  .footer-col {
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .form-card { padding: 28px 20px; }
  .thanks-container { padding: 40px 24px; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
}

.thanks-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--warm) 0%, var(--accent) 100%);
  color: var(--pearl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 32px;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 10px 40px rgba(184, 92, 60, 0.3);
}

.thanks-icon::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid var(--warm);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.thanks-contact-hint {
  padding: 24px;
  background: var(--pearl-alt);
  border-left: 3px solid var(--warm);
  margin-bottom: 32px;
  text-align: left;
}

.thanks-contact-hint p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}

.thanks-contact-hint strong {
  color: var(--accent);
  font-weight: 600;
}

.thanks-step h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink);
  margin-bottom: 8px;
}

.company-history {
  background: var(--pearl);
}

.history-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

.history-intro h2 {
  margin-bottom: 24px;
}

.history-intro p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.history-card {
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.history-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--warm));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.history-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.history-card:hover::before {
  transform: scaleX(1);
}

.history-year {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--warm);
  line-height: 1;
  margin-bottom: 16px;
  font-style: italic;
}

.history-card h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--ink);
}

.history-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.philosophy-visual {
  position: relative;
}

.philosophy-frame {
  position: relative;
  overflow: hidden;
}

.philosophy-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.philosophy-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--surface);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.pb-diamond {
  color: var(--warm);
}

.philosophy-caption {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.85rem;
  font-style: italic;
  font-family: var(--font-serif);
}

.philosophy-content .section-eyebrow {
  margin-bottom: 16px;
}

.philosophy-content h2 {
  margin-bottom: 28px;
}

.philosophy-content p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.philosophy-values {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.value-item i {
  width: 44px;
  height: 44px;
  background: var(--pearl);
  border: 1px solid var(--border);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.value-item h5 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink);
  margin-bottom: 4px;
}

.value-item p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.5;
}

.team-quotes {
  background: var(--pearl-alt);
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.quote-card {
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  position: relative;
  transition: var(--transition);
}

.quote-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.quote-avatar {
  width: 56px;
  height: 56px;
  background: var(--warm);
  color: var(--pearl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.quote-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.quote-card cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.quote-role {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.company-values {
  background: var(--surface);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  padding: 36px 32px;
  background: var(--pearl);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  text-align: center;
}

.value-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  background: var(--pearl-alt);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: var(--ink);
  color: var(--pearl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 24px;
}

.value-card h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--ink);
}

.value-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .history-grid,
  .quotes-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .philosophy-values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .history-grid,
  .quotes-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .history-card,
  .quote-card,
  .value-card {
    padding: 28px 24px;
  }

  .history-year {
    font-size: 2rem;
  }
}