:root {
  color-scheme: dark;
  --bg: #0d0d0d;
  --panel: #161616;
  --panel-strong: #1f1f1f;
  --text: #f5f5f5;
  --muted: #c5c5c5;
  --accent: #ff7a18;
  --accent-soft: #ffb347;
  --accent-health: #2ee6a8;
  --accent-olive: #7b8f4b;
  --accent-white: #ffffff;
  --border: #2b2b2b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-block {
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 10px 28px;
  display: inline-block;
}

.logo {
  width: 120px;
  height: auto;
  border-radius: 0;
}

.logo-full {
  width: min(260px, 70vw);
  border-radius: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 1.6rem;
  color: var(--accent-white);
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 1.2rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #0d0d0d;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 20px rgba(255, 122, 24, 0.25);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--accent);
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
  box-shadow: none;
}

.btn-health {
  background: var(--accent-health);
  color: #0d0d0d;
  box-shadow: 0 10px 20px rgba(46, 230, 168, 0.25);
}

.hero {
  padding: 90px 0 70px;
  background: radial-gradient(circle at 10% 10%, rgba(255, 122, 24, 0.16), transparent 55%),
    radial-gradient(circle at 90% 20%, rgba(46, 230, 168, 0.12), transparent 60%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.06), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(123, 143, 75, 0.18), transparent 60%);
}

.hero-grid {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.05rem;
  color: var(--accent);
  font-weight: 700;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 12px 0 16px;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  margin: 12px 0 18px;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0 24px;
}

.hero-meta {
  display: grid;
  gap: 12px;
  font-size: 0.95rem;
}

.meta-label {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 1.6px;
  color: var(--accent);
  display: block;
}

.meta-value {
  color: var(--text);
  font-weight: 600;
}

.hero-art {
  display: grid;
  gap: 20px;
}

.body-outline {
  width: min(260px, 70vw);
  margin: 0 auto;
  padding: 24px;
  border-radius: 24px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.hero-logo {
  display: grid;
  place-items: center;
  padding: 10px;
}

.hero-logo img {
  width: min(340px, 80vw);
  height: auto;
}

.nature-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--panel);
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.nature-card img {
  width: 83%;
  max-width: 304px;
  height: auto;
  border-radius: 14px;
  display: block;
  margin: 0 auto;
}

.hero-card {
  background: var(--panel-strong);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.hero-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.section {
  padding: 70px 0;
}

.section-head {
  max-width: 640px;
}

.cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 30px;
}

.card {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--panel);
}

.highlight {
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.08), rgba(123, 143, 75, 0.12) 55%, transparent 70%);
}

.split {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.stats {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.stat-number {
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
}

.stat-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.panel {
  background: var(--panel-strong);
  padding: 26px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.panel ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.assets .panel {
  display: grid;
  gap: 16px;
}

.download-list {
  display: grid;
  gap: 12px;
}

.muted {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact {
  background: var(--panel);
}

.contact-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.contact-details {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.contact-card {
  background: var(--panel-strong);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 26px;
  text-align: center;
}

.map-embed {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 16px 0;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.booking {
  background: linear-gradient(135deg, rgba(46, 230, 168, 0.06), rgba(123, 143, 75, 0.12) 55%, transparent 75%);
}

.pricing {
  background: rgba(123, 143, 75, 0.08);
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 800;
  margin: 12px 0;
  color: var(--accent-olive);
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

.booking-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.booking-form {
  display: grid;
  gap: 16px;
  background: var(--panel-strong);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.booking-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  background: #0f0f0f;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text);
  font: inherit;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 122, 24, 0.2);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  background: #0b0b0b;
}

.footer-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: center;
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-outline {
    width: 100%;
  }

  .hero {
    padding-top: 60px;
  }
}
