:root {
  --paper: #f7f4ed;
  --surface: #ffffff;
  --ink: #182224;
  --muted: #697172;
  --line: #d9ddd7;
  --sea: #0d6f73;
  --deep: #093f47;
  --sun: #e7b84b;
  --coral: #c84630;
  --mist: #e9f1ee;
  --shadow: 0 18px 50px rgba(24, 34, 36, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 6px;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(16px, 4vw, 48px);
  background: rgba(247, 244, 237, 0.92);
  border-bottom: 1px solid rgba(217, 221, 215, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: var(--deep);
  color: white;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  margin-top: -3px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 32px);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
}

.nav a:hover {
  color: var(--deep);
}

.lang-toggle,
.tab,
.photo-button,
.lightbox-close {
  font: inherit;
}

.lang-toggle {
  width: 46px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.hero {
  min-height: calc(100vh - 67px);
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(22px, 4vw, 54px);
}

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

.hero-media {
  height: min(680px, calc(100vh - 130px));
  min-height: 480px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #dce6e1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sea);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.18;
}

.lead {
  margin: 22px 0 0;
  max-width: 660px;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 850;
}

.button.primary {
  background: var(--sea);
  color: white;
}

.button.secondary {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
}

.signal-grid,
.quick-strip {
  display: grid;
  gap: 10px;
}

.signal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.signal-grid div,
.quick-strip div,
.intent-card,
.details-grid article,
.proof-main,
.quote-list,
.sources,
.map-wrap {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 8px;
}

.signal-grid div,
.quick-strip div {
  padding: 16px;
}

.signal-grid strong,
.quick-strip strong {
  display: block;
  font-size: 27px;
  line-height: 1;
}

.signal-grid span,
.quick-strip span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}

.quick-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 0 clamp(16px, 4vw, 54px) 54px;
}

.section {
  padding: clamp(56px, 8vw, 108px) clamp(16px, 4vw, 54px);
}

.visit,
.proof,
.details,
.map-section,
.sources {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.section-intro p:not(.eyebrow),
.details p,
.map-section p,
.sources li,
.proof-main p {
  color: var(--muted);
}

.visit-panel {
  min-width: 0;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.tab {
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
}

.tab.active {
  background: var(--deep);
  color: white;
  border-color: var(--deep);
}

.intent-card {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  overflow: hidden;
  min-height: 330px;
}

.intent-card img {
  min-height: 330px;
}

.intent-card div {
  padding: clamp(22px, 4vw, 42px);
}

.intent-card p {
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  color: var(--sea);
  font-weight: 900;
}

.atmosphere {
  background: var(--mist);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  grid-auto-rows: 210px;
  gap: 12px;
  margin-top: 28px;
}

.photo-button {
  border: 0;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #dfe6e0;
  cursor: pointer;
}

.photo-button.wide {
  grid-column: span 2;
}

.photo-button.tall {
  grid-row: span 2;
}

.photo-button img {
  transition: transform 180ms ease;
}

.photo-button:hover img {
  transform: scale(1.035);
}

.proof {
  background: var(--deep);
  color: white;
}

.proof-main,
.quote-list {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.proof-main {
  padding: clamp(24px, 5vw, 42px);
}

.proof-main h2 span {
  color: var(--sun);
}

.proof-main p {
  color: rgba(255, 255, 255, 0.78);
}

.quote-list {
  padding: 18px;
}

blockquote {
  margin: 0;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 20px;
}

blockquote:last-child {
  border-bottom: 0;
}

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

.details-grid article {
  padding: 20px;
}

.details-grid p {
  margin: 10px 0 0;
  font-size: 18px;
}

.map-section {
  background: #fffaf0;
}

.map-wrap {
  overflow: hidden;
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(13, 111, 115, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(13, 111, 115, 0.12) 1px, transparent 1px),
    #f4fbf7;
  background-size: 34px 34px;
}

.route-panel {
  width: min(360px, 100%);
  padding: 28px;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  text-align: center;
}

.route-panel p {
  color: var(--muted);
}

.route-dot {
  display: inline-block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--coral) 0 32%, rgba(200, 70, 48, 0.16) 34% 100%);
  margin-bottom: 14px;
}

.sources {
  align-items: center;
}

.sources ul {
  margin: 0;
  padding-left: 20px;
}

.sources li + li {
  margin-top: 12px;
}

.sources a {
  color: var(--sea);
  font-weight: 900;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 35;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  background: rgba(9, 63, 71, 0.94);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-cta.visible {
  display: grid;
}

.mobile-cta a {
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: white;
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
}

.mobile-cta a:first-child {
  background: var(--sun);
}

.lightbox {
  width: min(920px, calc(100vw - 28px));
  border: 0;
  padding: 0;
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.lightbox img {
  max-height: 76vh;
}

.lightbox p {
  margin: 0;
  padding: 14px 18px 18px;
  font-weight: 900;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-weight: 900;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .visit,
  .proof,
  .details,
  .map-section,
  .sources {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    height: 52vh;
    min-height: 340px;
    order: -1;
  }

  .quick-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intent-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .topbar {
    padding: 10px 12px;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding: 18px 12px 34px;
  }

  .hero-media {
    height: 38vh;
    min-height: 250px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .lead {
    font-size: 17px;
  }

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

  .signal-grid,
  .quick-strip,
  .details-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    padding: 0 12px 36px;
  }

  .section {
    padding: 50px 12px;
  }

  .intent-card img {
    min-height: 230px;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
  }

  .photo-button.wide,
  .photo-button.tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}
