:root {
  --black: #050807;
  --black-soft: #0b1110;
  --emerald: #00e28a;
  --emerald-dark: #008f5b;
  --chrome: #e8f2f0;
  --white: #ffffff;
  --muted: #aab8b4;
  --card: rgba(255, 255, 255, 0.06);
  --border: rgba(0, 226, 138, 0.28);
  --shadow: 0 24px 80px rgba(0, 226, 138, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(0, 226, 138, 0.18), transparent 34rem),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 30rem),
    var(--black);
  color: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 6%;
  background: rgba(5, 8, 7, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

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

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

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
  padding: 5rem 6%;
}

.eyebrow {
  color: var(--emerald);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

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

h1 {
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.35rem;
}

.hero-text,
.section-heading p,
.split p,
.booking p,
.contact-grid p {
  color: var(--muted);
  max-width: 640px;
}

.hero-buttons,
.booking-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.btn.primary {
  color: #001b10;
  background: linear-gradient(135deg, var(--emerald), #bffff0);
  box-shadow: 0 0 30px rgba(0, 226, 138, 0.35);
}

.btn.secondary {
  color: var(--white);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.hero-logo-card {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(0, 226, 138, 0.04));
  box-shadow: var(--shadow);
}

.hero-logo-card img {
  width: 100%;
  display: block;
  border-radius: 24px;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 6%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.trust-bar span {
  padding: 1rem;
  text-align: center;
  color: var(--chrome);
  background: rgba(5, 8, 7, 0.85);
  font-weight: 700;
}

.section {
  padding: 5rem 6%;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.card,
.contact-card,
.area-box {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 24px;
  background: var(--card);
}

.card.featured {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

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

.split,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.area-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.area-box span {
  padding: 0.8rem;
  border-radius: 999px;
  text-align: center;
  background: rgba(0, 226, 138, 0.10);
  border: 1px solid var(--border);
  color: var(--chrome);
  font-weight: 700;
}

.booking {
  text-align: center;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(0, 226, 138, 0.08), rgba(255, 255, 255, 0.03), rgba(0, 226, 138, 0.08));
}

.booking p {
  margin-inline: auto;
}

.booking-buttons {
  justify-content: center;
}

.small-note {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.contact-card a {
  color: var(--emerald);
}

.footer {
  padding: 2rem 6%;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .trust-bar,
  .cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav-links {
    display: none;
  }

  .area-box {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 3rem;
  }
}
