:root {
  --ink: #162329;
  --muted: #5c686d;
  --paper: #f8f5ef;
  --white: #ffffff;
  --sea: #0f6b73;
  --sea-dark: #08434b;
  --coral: #d85f42;
  --sand: #e3d4bd;
  --line: rgba(22, 35, 41, 0.14);
  --shadow: 0 22px 70px rgba(3, 31, 38, 0.2);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(4, 22, 27, 0.72), rgba(4, 22, 27, 0));
}

.brand,
.nav-links,
.language-toggle {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}

.nav-links {
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 700;
}

.language-toggle {
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.lang-button {
  min-width: 38px;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.lang-button.active {
  color: var(--sea-dark);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 25, 30, 0.88) 0%, rgba(2, 25, 30, 0.62) 42%, rgba(2, 25, 30, 0.08) 100%),
    linear-gradient(0deg, rgba(2, 25, 30, 0.8), rgba(2, 25, 30, 0.08) 48%);
}

.hero-content {
  width: min(720px, calc(100% - 36px));
  margin: 0 0 clamp(150px, 18vh, 210px) clamp(18px, 7vw, 86px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 10vw, 8.8rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 4.5rem);
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2.2vw, 1.45rem);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 900;
}

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

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

.hero-facts {
  position: absolute;
  right: clamp(18px, 5vw, 56px);
  bottom: 28px;
  left: clamp(18px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-facts div {
  padding: 18px;
  background: rgba(2, 25, 30, 0.34);
}

.hero-facts span,
.info-row span,
.contact-card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts strong,
.info-row strong,
.contact-card strong {
  display: block;
  margin-top: 6px;
  font-size: 1.06rem;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 11vw, 120px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 7vw, 82px);
  align-items: start;
}

.intro p {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.info-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.info-row {
  padding: 20px;
  background: var(--white);
}

.info-row span,
.contact-card span {
  color: var(--muted);
}

.visit-band {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--sea-dark);
}

.visit-copy {
  max-width: 780px;
}

.visit-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.action-tile {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.action-tile span {
  color: var(--coral);
  font-weight: 900;
}

.action-tile strong {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.08;
}

.action-tile em {
  color: rgba(255, 255, 255, 0.74);
  font-style: normal;
}

.action-tile.muted {
  background: rgba(255, 255, 255, 0.04);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 7vw, 82px);
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  font-style: normal;
}

.contact-card a,
.contact-card p {
  margin: 0;
  padding: 22px;
  background: var(--white);
}

.contact-card p {
  color: var(--muted);
}

.footer {
  padding: 28px clamp(18px, 4vw, 56px) 86px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer p {
  max-width: 880px;
  margin: 0;
}

.mobile-actions {
  position: fixed;
  inset: auto 12px 12px 12px;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mobile-actions a {
  display: grid;
  min-height: 48px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--coral);
  font-weight: 900;
  box-shadow: 0 12px 34px rgba(3, 31, 38, 0.28);
}

.mobile-actions a + a {
  background: var(--sea);
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px 14px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(2, 25, 30, 0.9), rgba(2, 25, 30, 0.4) 52%, rgba(2, 25, 30, 0.12)),
      linear-gradient(90deg, rgba(2, 25, 30, 0.62), rgba(2, 25, 30, 0.08));
  }

  .hero-content {
    margin: 0 18px 230px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 5.5rem);
  }

  .hero-actions {
    display: none;
  }

  .hero-facts,
  .intro-grid,
  .visit-actions,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    bottom: 76px;
  }

  .hero-facts div {
    padding: 14px 16px;
  }

  .action-tile {
    min-height: 170px;
  }

  .footer {
    padding-bottom: 84px;
  }

  .mobile-actions {
    display: grid;
  }
}

@media (max-width: 430px) {
  .brand span:last-child {
    max-width: 128px;
    line-height: 1.05;
  }

  .hero-content {
    margin-bottom: 248px;
  }

  .hero-facts strong {
    font-size: 0.98rem;
  }

  .button {
    width: 100%;
  }
}
