:root {
  --bg: #08141d;
  --bg-2: #0d202c;
  --surface: rgba(16, 41, 56, 0.72);
  --surface-strong: rgba(12, 31, 43, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f6f3ee;
  --muted: #acc0cc;
  --accent: #e64939;
  --accent-deep: #a9281e;
  --aqua: #84d2dd;
  --sand: #ebd9b0;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  --max: 1180px;
  --radius: 24px;
  --radius-sm: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(132, 210, 221, 0.18), transparent 28rem),
    radial-gradient(circle at top right, rgba(230, 73, 57, 0.15), transparent 20rem),
    linear-gradient(180deg, #08141d 0%, #0b1e2b 48%, #08141d 100%);
  line-height: 1.6;
}

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

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

button,
a.button,
.mobile-book a,
.site-nav a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  opacity: 0.52;
}

.page-shell::before {
  top: 12rem;
  right: -9rem;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(132, 210, 221, 0.24), transparent 70%);
}

.page-shell::after {
  left: -8rem;
  bottom: 10rem;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 217, 176, 0.12), transparent 72%);
}

.shell {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(8, 20, 29, 0.5);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 20, 29, 0.82);
  border-color: var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  color: var(--sand);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav > a:not(.button) {
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav > a:hover,
.site-nav > a:focus-visible {
  color: var(--text);
}

.lang-link {
  display: inline-grid;
  place-items: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 3.3rem;
  height: 3.3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-radius: 999px;
  padding: 0;
}

.nav-toggle-line {
  position: absolute;
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-line:nth-child(1) {
  transform: translateY(-0.34rem);
}

.nav-toggle-line:nth-child(2) {
  transform: translateY(0);
}

.nav-toggle-line:nth-child(3) {
  transform: translateY(0.34rem);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 18px 42px rgba(230, 73, 57, 0.3);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.hero-section {
  padding: 3rem 0 3.2rem;
}

.hero-stack {
  display: grid;
  gap: 1.5rem;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-stage-site {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(16rem, 0.34fr);
  grid-template-rows: auto auto;
  min-height: 38rem;
  background: #07131b;
}

.hero-stage-site::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 18, 26, 0.12) 0%, rgba(7, 18, 26, 0.72) 76%, rgba(7, 18, 26, 0.92) 100%),
    linear-gradient(90deg, rgba(7, 18, 26, 0.84) 0%, rgba(7, 18, 26, 0.24) 54%, rgba(7, 18, 26, 0.06) 100%);
  z-index: 1;
}

.hero-stage-media,
.hero-stage-filmstrip figure {
  margin: 0;
}

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

.hero-stage-media img,
.hero-stage-filmstrip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stage-panel {
  position: relative;
  z-index: 2;
  grid-column: 1;
  align-self: center;
  max-width: 46rem;
  padding: 2.2rem 3rem 1.6rem;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 0.8rem;
  color: var(--aqua);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-stage-panel h1,
.content-section h2,
.preview-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero-stage-panel h1 {
  max-width: 12ch;
  font-size: clamp(3.45rem, 5.2vw, 5.4rem);
}

.hero-stage-copy {
  max-width: 38rem;
  margin: 0.85rem 0 0;
  color: rgba(246, 243, 238, 0.84);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.hero-stage-filmstrip {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  gap: 0.55rem;
  padding: 0.55rem 0.55rem 0.55rem 0;
}

.hero-stage-filmstrip figure {
  overflow: hidden;
  border-radius: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stage-meta {
  position: relative;
  z-index: 2;
  grid-column: 1 / span 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.4rem;
  align-items: center;
  padding: 0 3rem 2rem;
}

.hero-stage-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(246, 243, 238, 0.9);
}

.hero-stage-meta span::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--sand);
}

.hero-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.hero-summary article {
  padding-left: 1.1rem;
  border-left: 1px solid rgba(132, 210, 221, 0.28);
}

.hero-summary span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--sand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-summary p {
  margin: 0;
  color: var(--muted);
}

.preview-tile,
.gallery-card,
.contact-card,
.faq-list details {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.preview-section {
  padding: 1rem 0 4.2rem;
}

.preview-layout {
  display: grid;
  gap: 1.4rem;
}

.preview-copy {
  max-width: 44rem;
}

.preview-copy h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  margin-bottom: 0.8rem;
}

.preview-copy p,
.section-head p,
.route-card p,
.journey-step p,
.faq-copy p,
.contact-copy p,
.contact-meta {
  margin: 0;
  color: var(--muted);
}

.preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.preview-note {
  margin-top: 1rem !important;
}

.preview-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 12rem;
  gap: 1rem;
  align-items: stretch;
}

.preview-tile {
  position: relative;
  overflow: hidden;
  border-radius: 1.7rem;
}

.preview-tile img {
  height: 100%;
  object-fit: cover;
}

.preview-tile-large {
  grid-row: span 2;
}

.preview-tile-tall {
  grid-row: span 2;
}

.preview-tile-wide {
  grid-column: span 2;
}

.content-section {
  padding: 0 0 4.7rem;
  scroll-margin-top: 7rem;
}

.section-head {
  max-width: 44rem;
  margin-bottom: 1.8rem;
}

.content-section h2 {
  font-size: clamp(2.1rem, 4vw, 3.55rem);
  margin-bottom: 0.7rem;
}

.journey-grid {
  display: grid;
  gap: 1rem;
}

.service-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 2rem;
}

.service-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.15rem;
  align-items: start;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item span,
.journey-step span {
  display: inline-grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  grid-row: span 2;
  border-radius: 50%;
  color: var(--sand);
  font-size: 0.86rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.service-item h3,
.journey-step h3,
.route-note-item h3 {
  margin: 0 0 0.38rem;
  font-size: 1.06rem;
}

.service-item p {
  margin: 0;
  grid-column: 2;
  color: var(--muted);
}

.route-atlas,
.gallery-layout,
.faq-grid,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem;
  align-items: start;
}

.route-atlas-copy,
.gallery-copy {
  max-width: 34rem;
}

.route-atlas-copy p,
.gallery-copy p,
.route-note-item p,
.gallery-caption span {
  color: var(--muted);
}

.route-atlas-copy .button,
.gallery-copy .button {
  margin-top: 1.4rem;
}

.route-atlas-visual,
.gallery-frame-media {
  position: relative;
  overflow: hidden;
  border-radius: 1.65rem;
}

.route-atlas-visual {
  min-height: 29rem;
}

.route-atlas-visual img,
.gallery-frame-media img {
  height: 100%;
  object-fit: cover;
}

.route-atlas-visual figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-radius: 1rem;
  color: var(--text);
  background: rgba(6, 15, 22, 0.72);
  backdrop-filter: blur(16px);
}

.route-notes,
.route-listing {
  grid-column: 1 / -1;
}

.route-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.route-note-item {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.route-label {
  margin: 0 0 0.55rem;
  color: var(--aqua);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.route-listing {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 0.85rem;
}

.route-listing span {
  display: inline-flex;
  align-items: center;
  min-height: 2.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.journey-step,
.contact-card {
  padding: 1.35rem;
  border-radius: 1.45rem;
}

.journey-step {
  border: 1px solid rgba(132, 210, 221, 0.14);
  background: linear-gradient(180deg, rgba(132, 210, 221, 0.09), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

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

.gallery-editorial {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.gallery-frame {
  display: grid;
  gap: 0.75rem;
}

.gallery-frame-media {
  min-height: 17rem;
}

.gallery-frame-wide {
  grid-column: span 2;
}

.gallery-frame-wide .gallery-frame-media {
  min-height: 25rem;
}

.gallery-frame-tall .gallery-frame-media {
  min-height: 34rem;
}

.gallery-caption {
  display: grid;
  gap: 0.2rem;
  padding-left: 0.2rem;
}

.gallery-caption strong {
  font-size: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-list details {
  padding: 0.3rem 1rem 0.95rem;
  border-radius: 1.25rem;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-weight: 700;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--aqua);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  color: var(--muted);
}

.contact-panel {
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 0.25rem);
  background:
    linear-gradient(135deg, rgba(230, 73, 57, 0.08), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-card {
  background: rgba(7, 18, 26, 0.78);
}

.contact-label {
  margin: 0;
  color: var(--aqua);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-link {
  display: inline-block;
  margin: 0.55rem 0 0.25rem;
  font-size: clamp(1.7rem, 5vw, 2.55rem);
  font-weight: 800;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.site-footer {
  padding: 1rem 0 5.7rem;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.footer-row p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
}

.mobile-book {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 18;
  display: none;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(8, 20, 29, 0), rgba(8, 20, 29, 0.9) 28%, rgba(8, 20, 29, 0.95));
}

.mobile-book a {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  min-height: 3.35rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 18px 42px rgba(230, 73, 57, 0.3);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(132, 210, 221, 0.85);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .hero-stage-site,
  .route-atlas,
  .gallery-layout,
  .faq-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-stage-site {
    min-height: auto;
  }

  .hero-stage-panel,
  .hero-stage-meta {
    grid-column: 1;
  }

  .hero-stage-panel {
    max-width: 42rem;
    padding: 2.6rem 2.2rem 1.4rem;
  }

  .hero-stage-panel h1 {
    max-width: 11ch;
  }

  .hero-stage-filmstrip {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 2.2rem 1.2rem;
  }

  .hero-stage-filmstrip figure {
    min-height: 14rem;
  }

  .hero-stage-meta {
    padding: 0 2.2rem 1.9rem;
  }

  .hero-summary {
    grid-template-columns: 1fr;
  }

  .route-notes,
  .journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-frame-wide .gallery-frame-media {
    min-height: 21rem;
  }

  .preview-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 11rem;
  }

  .preview-tile-large,
  .preview-tile-wide {
    grid-column: span 2;
  }

  .preview-tile-tall {
    grid-row: span 1;
  }
}

@media (max-width: 820px) {
  .header-row {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    padding: 0.75rem 0 0.1rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a:not(.button) {
    padding: 0.7rem 0;
  }

  .nav-cta {
    margin-top: 0.35rem;
  }

  .hero-section {
    padding-top: 3.2rem;
  }

  .hero-stage-panel h1 {
    font-size: clamp(2.8rem, 15vw, 4.5rem);
  }

  .service-ledger,
  .journey-grid,
  .route-notes,
  .gallery-editorial {
    grid-template-columns: 1fr;
  }

  .route-listing {
    gap: 0.65rem;
  }

  .gallery-frame-wide {
    grid-column: auto;
  }

  .gallery-frame-wide .gallery-frame-media,
  .gallery-frame-tall .gallery-frame-media {
    min-height: 17rem;
  }

  .hero-stage-panel {
    padding: 2rem 1rem 1rem;
  }

  .hero-stage-filmstrip {
    padding: 0 1rem 1rem;
  }

  .hero-stage-meta {
    gap: 0.7rem 1rem;
    padding: 0 1rem 1.2rem;
  }

  .hero-summary article {
    padding-left: 0.85rem;
  }

  .preview-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 13rem;
  }

  .preview-tile-large,
  .preview-tile-wide {
    grid-column: auto;
  }

  .preview-tile-tall {
    grid-row: span 1;
  }

  .preview-actions {
    gap: 0.7rem;
  }

  .content-section {
    padding-bottom: 4rem;
  }

  .site-footer {
    padding-bottom: 6.8rem;
  }

  .mobile-book {
    display: block;
  }
}

@media (max-width: 580px) {
  .shell {
    width: min(calc(100% - 1.2rem), var(--max));
  }

  .hero-stage-panel {
    padding: 1.4rem 0.95rem 0.9rem;
  }

  .hero-stage-filmstrip {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 0 0.95rem 0.85rem;
  }

  .hero-stage-filmstrip figure {
    min-height: 12rem;
  }

  .hero-stage-meta {
    gap: 0.45rem 0.85rem;
    padding: 0 0.95rem 1rem;
  }

  .hero-stage-meta span {
    font-size: 0.82rem;
  }

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

  .hero-stage-copy,
  .section-head p,
  .faq-copy p,
  .contact-copy p {
    font-size: 0.98rem;
  }

  .preview-gallery {
    grid-auto-rows: 11rem;
  }

  .contact-panel {
    padding: 1.2rem;
  }

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

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
