:root {
  color-scheme: light;
  --ink: #17313b;
  --muted: #63727a;
  --sea: #0d4d64;
  --sea-dark: #082f40;
  --foam: #f5faf8;
  --paper: #fffdf8;
  --sun: #e7a451;
  --coral: #c85c42;
  --olive: #71865f;
  --line: rgba(23, 49, 59, 0.14);
  --shadow: 0 22px 70px rgba(8, 47, 64, 0.18);
}

* {
  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.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--sea-dark);
  padding: 10px 14px;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 15;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header.open {
  background: rgba(255, 253, 248, 0.96);
  color: var(--ink);
  box-shadow: 0 8px 30px rgba(8, 47, 64, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 50px;
  height: 38px;
  object-fit: contain;
  border-radius: 4px;
  background: rgba(255,255,255,0.9);
  padding: 3px;
}

.brand span {
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  font-size: 0.93rem;
  font-weight: 700;
}

.nav a {
  opacity: 0.9;
}

.nav a:hover {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.lang-toggle,
.menu-toggle,
.call-link {
  min-width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: 6px;
  background: rgba(255,255,255,0.13);
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.site-header.scrolled .lang-toggle,
.site-header.scrolled .menu-toggle,
.site-header.scrolled .call-link,
.site-header.open .lang-toggle,
.site-header.open .menu-toggle,
.site-header.open .call-link {
  border-color: var(--line);
  background: #fff;
}

.call-link {
  padding: 0 16px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  padding: 126px clamp(18px, 5vw, 76px) clamp(86px, 12vh, 120px);
  color: #fff;
  overflow: hidden;
}

.hero picture,
.hero picture img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 47, 64, 0.82), rgba(8, 47, 64, 0.34) 55%, rgba(8, 47, 64, 0.18)),
    linear-gradient(0deg, rgba(8, 47, 64, 0.62), rgba(8, 47, 64, 0.05) 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

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

.hero .eyebrow {
  color: #ffd58e;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-size: clamp(3.1rem, 8vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 4.7rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.hero-copy {
  max-width: 580px;
  margin-bottom: 30px;
  font-size: clamp(1.08rem, 2.1vw, 1.45rem);
  color: rgba(255,255,255,0.9);
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 6px;
  font-weight: 850;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--sun);
  color: #1d2428;
}

.button.secondary {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.42);
}

.visit .button.secondary,
.split-section .button.secondary {
  color: var(--sea);
  background: #fff;
  border-color: var(--line);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 76px);
  bottom: 30px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  max-width: min(780px, calc(100vw - 36px));
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel div {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-panel strong {
  display: block;
  margin-top: 7px;
  line-height: 1.25;
}

.band {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 76px);
}

.intro {
  background: var(--foam);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1.06fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
}

.intro-grid > div > p,
.split-copy > p,
.gallery-head > p,
.site-footer p {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sea);
  color: #fff;
  font-weight: 900;
  font-size: 0.8rem;
}

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

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 82px);
  align-items: center;
  padding: clamp(72px, 9vw, 120px) clamp(18px, 5vw, 76px);
}

.image-stack {
  position: relative;
  min-height: 620px;
}

.image-stack img {
  position: absolute;
  width: min(76%, 540px);
  height: 430px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  left: 0;
  top: 0;
}

.image-stack img:last-child {
  right: 0;
  bottom: 0;
  border: 10px solid var(--paper);
}

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

.offer-grid div {
  min-height: 142px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.offer-grid strong,
.offer-grid span {
  display: block;
}

.offer-grid span {
  margin-top: 9px;
  color: var(--muted);
}

.gallery {
  background: var(--sea-dark);
  color: #fff;
}

.gallery .section-kicker {
  color: #ffd58e;
}

.gallery-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.gallery-head p {
  color: rgba(255,255,255,0.72);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 420px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
}

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

.visit {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(18px, 4vw, 42px);
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 76px);
  background: var(--foam);
}

.visit-card,
.map-card {
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(8, 47, 64, 0.08);
}

.visit-card {
  padding: clamp(26px, 5vw, 48px);
}

.facts {
  margin: 26px 0 30px;
}

.facts div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.facts dt {
  color: var(--muted);
  font-weight: 800;
}

.facts dd {
  margin: 0;
  font-weight: 750;
}

.facts a {
  color: var(--sea);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-card {
  min-height: 560px;
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 76px) 86px;
  background: var(--sea-dark);
  color: #fff;
}

.site-footer p {
  max-width: 560px;
  margin: 8px 0 0;
  color: rgba(255,255,255,0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-content: start;
  justify-content: flex-end;
  font-weight: 800;
}

.footer-links a {
  color: #ffd58e;
}

.mobile-cta {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(5, 24, 32, 0.9);
}

.lightbox.open {
  display: grid;
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 6px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox img {
  width: min(1100px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
}

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

  .nav {
    position: fixed;
    inset: 72px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 10px;
  }

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

  .nav a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .call-link {
    display: none;
  }

  .hero {
    min-height: 90svh;
    padding-bottom: 210px;
  }

  .hero-panel {
    left: 18px;
    right: 18px;
    grid-template-columns: 1fr;
    bottom: 24px;
  }

  .hero-panel div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px 16px;
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .intro-grid,
  .split-section,
  .gallery-head,
  .visit {
    grid-template-columns: 1fr;
  }

  .image-stack {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .image-stack img {
    position: static;
    width: 100%;
    height: 360px;
  }

  .image-stack img:last-child {
    border: 0;
  }

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

  .gallery-item {
    min-height: 330px;
  }

  .map-card {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 14px;
    gap: 10px;
  }

  .brand img {
    width: 42px;
    height: 32px;
  }

  .brand span {
    max-width: 116px;
    white-space: normal;
    line-height: 1.08;
    font-size: 0.88rem;
  }

  .lang-toggle,
  .menu-toggle {
    min-width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 100svh;
    padding: 104px 18px 220px;
  }

  h1 {
    font-size: clamp(3.35rem, 17vw, 4.85rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.15rem);
  }

  .hero-copy {
    font-size: 1.03rem;
  }

  .hero-actions,
  .visit-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .band,
  .split-section,
  .visit {
    padding: 64px 18px;
  }

  .feature-list article {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .feature-list span {
    width: 36px;
    height: 36px;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img {
    height: 310px;
  }

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

  .offer-grid div {
    min-height: 116px;
  }

  .gallery-item {
    min-height: 320px;
  }

  .facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-footer {
    display: grid;
    padding-bottom: 104px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 14;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,253,248,0.96);
    box-shadow: 0 12px 34px rgba(8, 47, 64, 0.2);
    backdrop-filter: blur(12px);
    pointer-events: none;
    transform: translateY(140%);
    transition: transform 180ms ease;
  }

  body.cta-visible .mobile-cta {
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 44px;
    border-radius: 6px;
    background: var(--sea);
    color: #fff;
    font-weight: 900;
  }

  .mobile-cta a:last-child {
    background: var(--sun);
    color: #172126;
  }
}

@media (max-width: 640px) {
  .hero {
    align-items: start;
    min-height: auto;
    padding-bottom: 36px;
  }

  .hero-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    margin-top: 18px;
  }
}
