:root {
  --bg: #111418;
  --paper: #181d24;
  --paper-strong: #202834;
  --ink: #e6ecf2;
  --muted: #a1adb9;
  --accent: #7e9db2;
  --accent-soft: #5f7688;
  --highlight: #b7c8d6;
  --line: rgba(230, 237, 247, 0.16);
  --line-strong: rgba(230, 237, 247, 0.26);
  --shadow-soft: 0 10px 22px rgba(0, 0, 0, 0.24);
  --shadow-card: 0 12px 26px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--ink);
  background: var(--bg);
  font-family: "Roboto Sans", sans-serif;
  line-height: 1.6;
}

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

.background-texture {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 5vw;
  border-bottom: 1px solid var(--line);
  background: rgba(17, 20, 24, 0.9);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Roboto Sans", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  background: var(--accent);
  color: var(--bg);
  font-family: "Roboto Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  transform: none;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.95rem;
}

.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
  border-color: var(--line-strong);
}

.main-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--line-strong);
  padding: 0.52rem 0.78rem;
  background: transparent;
  color: var(--ink);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  color: var(--ink);
  border-color: var(--accent);
  background: rgba(126, 157, 178, 0.12);
}

main {
  width: min(1140px, 92vw);
  margin: 0 auto;
  padding: 0 0 6rem;
}

.hero,
.content-section,
.about-section,
.preview-section,
.booking-section {
  margin-top: 7rem;
}

.hero {
  margin-top: 0;
  min-height: min(760px, calc(100vh - 78px));
  padding: 6rem 0 3.5rem;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  align-items: center;
  gap: clamp(1.8rem, 6vw, 6.2rem);
}

.hero-copy,
.hero-visual,
.section-intro,
.offer-item,
.about-image,
.about-copy,
.preview-heading,
.gallery,
.gallery figure,
.booking-intro,
.booking-details {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.58rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 700;
}

.pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: none;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
}

h1 {
  margin-top: 1rem;
  max-width: 9ch;
  font-family: "Roboto Sans", sans-serif;
  font-size: clamp(3rem, 7.2vw, 6.2rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  font-weight: 800;
}

h2 {
  font-family: "Roboto Sans", sans-serif;
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h3 {
  font-family: "Roboto Sans", sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
}

h1 em,
h2 em {
  color: var(--accent);
  font-style: normal;
}

.lead {
  max-width: 44ch;
  margin: 1.55rem 0 2rem;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.05rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease;
}

.button-primary {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: none;
  background: rgba(126, 157, 178, 0.12);
  border-color: var(--accent);
}

.text-link {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 0.18rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 3rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.note-line {
  width: 3rem;
  height: 1px;
  background: var(--line-strong);
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  aspect-ratio: 0.94;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.08), transparent 45%, rgba(0, 0, 0, 0.12));
  pointer-events: none;
}

.hero-image-wrap img,
.about-image img,
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-image-wrap:hover img,
.gallery figure:hover img,
.about-image:hover img {
  transform: none;
}

.hero-stamp {
  display: none;
}

.image-caption {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-section,
.preview-section,
.booking-section {
  border-top: 1px solid var(--line);
  padding-top: 2.4rem;
}

.section-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: end;
  gap: 2rem;
}

.section-kicker {
  margin-bottom: 0.9rem;
}

.content-section h2 span,
.preview-heading h2 span {
  color: var(--muted);
}

.offer-grid {
  margin-top: 3.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.offer-item {
  min-height: 232px;
  padding: 1.3rem 1.4rem 1.5rem 0;
  border-right: 1px solid var(--line);
}

.offer-item + .offer-item {
  padding-left: 1.4rem;
}

.offer-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.offer-number {
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.offer-item h3 {
  margin: 3rem 0 0.7rem;
}

.offer-item p,
.about-copy p,
.booking-lead {
  margin: 0;
  color: var(--muted);
}

.offer-item p {
  max-width: 29ch;
  font-size: 0.94rem;
}

.featured-offer {
  background: rgba(126, 157, 178, 0.08);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(270px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
}

.about-image {
  position: relative;
  aspect-ratio: 0.86;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.about-image img {
  filter: saturate(0.92) contrast(1.03);
}

.vertical-label {
  position: absolute;
  top: 0.9rem;
  right: 0.85rem;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.about-copy h2 {
  max-width: 9ch;
  margin-bottom: 1.45rem;
}

.about-copy p {
  max-width: 50ch;
  margin-bottom: 0.95rem;
  font-size: 0.96rem;
}

.facts {
  display: flex;
  gap: 1.5rem;
  margin: 1.85rem 0 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.facts span {
  color: var(--muted);
  font-size: 0.69rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.facts strong {
  display: block;
  color: var(--accent);
  font-family: "Roboto Sans", sans-serif;
  font-size: 1.95rem;
  line-height: 1;
}

.preview-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
}

.preview-heading h2 {
  max-width: 9ch;
}

.gallery {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.72fr);
  gap: 1rem;
}

.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-strong);
}

.gallery-main {
  aspect-ratio: 1.58;
}

.gallery-side {
  aspect-ratio: 0.9;
}

.gallery figcaption {
  position: absolute;
  left: 0.85rem;
  bottom: 0.9rem;
  padding: 0.44rem 0.65rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(17, 19, 26, 0.82);
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.8rem, 4vw, 3.5rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}

.booking-intro h2 {
  max-width: 8.8ch;
}

.booking-lead {
  margin-top: 1.2rem;
  max-width: 36ch;
  font-size: 0.95rem;
}

.booking-details {
  padding: clamp(1.2rem, 3.2vw, 2rem);
  border: 1px solid var(--line-strong);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.booking-status {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: var(--highlight);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.69rem;
  font-weight: 800;
}

.booking-status .pulse-dot {
  width: 0.42rem;
  height: 0.42rem;
}

.booking-details p {
  margin: 0;
  max-width: 42ch;
  color: var(--muted);
  font-size: 0.94rem;
}

.booking-email {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.92rem 0;
  color: var(--ink);
  text-decoration: none;
  font-size: clamp(1.05rem, 2.5vw, 1.48rem);
  font-family: "Roboto Sans", sans-serif;
  font-weight: 700;
  word-break: break-word;
}

.booking-email span,
.text-link span {
  color: var(--accent);
}

.booking-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.booking-meta a {
  color: var(--ink);
  text-decoration: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding: 1.3rem 5vw 1.7rem;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 520ms ease-out forwards;
}

.hero.reveal {
  animation-delay: 80ms;
}

#leverer.reveal {
  animation-delay: 130ms;
}

#om-oss.reveal {
  animation-delay: 180ms;
}

#preview.reveal {
  animation-delay: 230ms;
}

#booking.reveal {
  animation-delay: 280ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

:where(a, button):focus {
  outline: none;
}

:where(a, button):focus-visible {
  outline: 2px solid rgba(196, 220, 230, 0.92);
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding-top: 4.8rem;
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }

  .hero-stamp {
    right: 0.5rem;
    bottom: 2.6rem;
  }

  .section-intro {
    grid-template-columns: 1fr;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    aspect-ratio: 1.12;
    max-height: 600px;
  }

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

  .gallery-side {
    aspect-ratio: 1.3;
  }

  .booking-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    padding: 0.95rem 4vw;
  }

  .main-nav {
    gap: 0.65rem;
  }

  .main-nav a:not(.nav-cta) {
    display: none;
  }

  main {
    width: 90vw;
    padding-bottom: 4rem;
  }

  h1 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(1.95rem, 10vw, 3.2rem);
  }

  .hero,
  .content-section,
  .about-section,
  .preview-section,
  .booking-section {
    margin-top: 5rem;
  }

  .hero {
    margin-top: 0;
  }

  .hero-note {
    margin-top: 2rem;
  }

  .hero-image-wrap {
    aspect-ratio: 1.04;
  }

  .hero-stamp {
    width: 5.5rem;
    height: 5.5rem;
    font-size: 0.58rem;
  }

  .offer-grid {
    margin-top: 2.2rem;
    grid-template-columns: 1fr;
  }

  .offer-item,
  .offer-item + .offer-item,
  .offer-item:last-child {
    min-height: 0;
    padding: 1.15rem 0 1.4rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .offer-item:last-child {
    border-bottom: 0;
  }

  .offer-item h3 {
    margin-top: 1.5rem;
  }

  .preview-heading {
    display: block;
  }

  .preview-heading h2 {
    margin-top: 0.55rem;
  }

  .booking-meta,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    padding-inline: 6vw;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
