:root {
  --bg: #10100f;
  --bg-soft: #171717;
  --panel: #1d1d20;
  --panel-strong: #242426;
  --text: #f7f5ee;
  --muted: #c7c3b8;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #43d9ad;
  --accent-2: #ffcc66;
  --accent-3: #f46d75;
  --light: #fbf7ec;
  --ink: #171a22;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(67, 217, 173, 0.1), transparent 28rem),
    radial-gradient(circle at 86% 12%, rgba(255, 204, 102, 0.1), transparent 24rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

p {
  margin: 0 0 1rem;
}

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

h1 {
  max-width: 780px;
  font-size: clamp(2.65rem, 6vw, 6.25rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

h3 {
  font-size: 1.2rem;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 20;
  width: auto;
  height: auto;
  clip: auto;
  top: 12px;
  left: 12px;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--accent-2);
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(16, 16, 15, 0.76);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(16, 16, 15, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: var(--ink);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(67, 217, 173, 0.18);
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(67, 217, 173, 0.18);
}

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

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

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

.site-nav a {
  border-radius: 999px;
  padding: 0.6rem 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background: var(--hero-image) center / cover no-repeat;
  transform: scale(1.03);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(16, 16, 15, 0.9), rgba(16, 16, 15, 0.54) 52%, rgba(16, 16, 15, 0.78)), linear-gradient(0deg, var(--bg) 0%, transparent 34%);
}

.hero-content {
  padding: 8rem 0 7rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--accent-2);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before {
  width: 32px;
  height: 2px;
  content: "";
  background: currentColor;
}

.lead {
  max-width: 680px;
  margin-top: 1.25rem;
  color: #e8e2d4;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.13);
}

.button.primary {
  color: var(--ink);
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section.light {
  color: var(--ink);
  background: var(--light);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-header p {
  max-width: 560px;
  color: var(--muted);
}

.light .section-header p,
.light .muted,
.light .feature-card p,
.light .feedback-card p {
  color: #5c5b55;
}

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

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

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

.feature-card,
.feedback-card,
.legal-card,
.contact-card,
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.feature-card,
.feedback-card,
.legal-card,
.contact-card {
  padding: 1.35rem;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-card:hover,
.feedback-card:hover {
  transform: translateY(-4px);
  border-color: rgba(67, 217, 173, 0.4);
  background: rgba(255, 255, 255, 0.09);
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--accent-2);
  font-weight: 900;
}

.light .feature-card,
.light .feedback-card,
.light .legal-card,
.light .contact-card,
.light .form-panel {
  border-color: rgba(23, 26, 34, 0.12);
  background: #fffdf7;
  box-shadow: 0 18px 50px rgba(23, 26, 34, 0.1);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 1rem;
  align-items: end;
}

.image-stack img,
.gallery img,
.wide-image img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  aspect-ratio: 4 / 5;
}

.image-stack img:last-child {
  aspect-ratio: 1 / 1.15;
  margin-bottom: 2rem;
}

.wide-image img {
  aspect-ratio: 16 / 8;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 1rem;
}

.gallery figure {
  margin: 0;
}

.gallery img {
  height: 100%;
  min-height: 260px;
}

.gallery figcaption {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.stat {
  padding: 1.35rem;
  background: var(--panel);
}

.stat strong {
  display: block;
  color: var(--accent);
  font-size: 2rem;
  line-height: 1;
}

.page-hero {
  padding: 7rem 0 4rem;
  background:
    linear-gradient(90deg, rgba(16, 16, 15, 0.88), rgba(16, 16, 15, 0.68)),
    var(--page-image) center / cover no-repeat;
}

.page-hero .lead {
  max-width: 760px;
}

.list-check {
  display: grid;
  gap: 0.85rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.list-check li {
  position: relative;
  padding-left: 1.9rem;
}

.list-check li::before {
  position: absolute;
  left: 0;
  top: 0.12rem;
  width: 1.25rem;
  height: 1.25rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  content: ">";
  color: var(--ink);
  background: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.example-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.example-list span {
  border: 1px solid rgba(23, 26, 34, 0.12);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  color: var(--ink);
  background: rgba(67, 217, 173, 0.12);
  font-size: 0.92rem;
  font-weight: 800;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-panel {
  padding: 1.4rem;
}

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

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(23, 26, 34, 0.18);
  border-radius: var(--radius);
  padding: 0.85rem 0.9rem;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(67, 217, 173, 0.18);
}

.form-note,
.alert {
  grid-column: 1 / -1;
}

.alert {
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  font-weight: 800;
}

.alert.success {
  color: #073f2f;
  background: #d9faec;
}

.alert.error {
  color: #6a1520;
  background: #ffe2e5;
}

.map-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.75rem;
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.legal-content {
  display: grid;
  gap: 1rem;
}

.legal-card h2 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #090c12;
  padding: 3rem 0 1.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
}

.footer-grid h2 {
  margin-bottom: 0.85rem;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.site-footer a:not(.brand) {
  color: var(--muted);
}

.footer-links a:hover,
.site-footer a:not(.brand):hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.muted {
  color: var(--muted);
}

@media (max-width: 940px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.6rem;
    background: rgba(16, 16, 15, 0.98);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    border-radius: var(--radius);
  }

  .split,
  .grid.two,
  .grid.three,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-header,
  .footer-bottom {
    display: block;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding: 5rem 0 5rem;
  }

  .page-hero {
    padding: 5rem 0 3rem;
  }

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

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

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

  .brand small {
    display: none;
  }
}
