:root {
  --bg: #f4f6fb;
  --surface: #ffffff;
  --surface-strong: #121926;
  --surface-soft: #e8eef9;
  --text: #182133;
  --text-soft: #55627a;
  --border: rgba(18, 25, 38, 0.08);
  --accent: #fc6b3f;
  --accent-dark: #d5522d;
  --shadow: 0 24px 60px rgba(18, 25, 38, 0.14);
  --radius: 24px;
  --radius-sm: 16px;
  --container: min(1120px, calc(100vw - 2rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(252, 107, 63, 0.18), transparent 28%),
    linear-gradient(180deg, #f7f9fd 0%, #eef3fb 100%);
  color: var(--text);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

a {
  color: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(244, 246, 251, 0.72);
  border-bottom: 1px solid rgba(18, 25, 38, 0.06);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  text-decoration: none;
}

.logo span {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.logo small {
  color: var(--text-soft);
}

.header-nav {
  display: none;
  align-items: center;
  gap: 1rem;
}

.header-nav a {
  text-decoration: none;
  color: var(--text-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

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

.button-primary {
  background: var(--accent);
  color: white;
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--border);
  color: var(--text);
}

.hero {
  padding: 3rem 0 2rem;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-copy,
.hero-media,
.access-card,
.contact-form,
.testimonial-placeholder,
.package-card,
.benefit-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero-copy {
  padding: 1.75rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

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

h1 {
  font-size: clamp(2.25rem, 6vw, 4.75rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  max-width: 16ch;
}

h3 {
  font-size: 1.2rem;
}

.hero-subtitle,
.lead,
.hero-secondary,
.section-heading .lead,
.contact-copy p,
.prose p {
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-meta span,
.package-kicker,
.package-price {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(18, 25, 38, 0.06);
  padding: 0.45rem 0.8rem;
}

.hero-media {
  position: relative;
  overflow: hidden;
  padding: 1rem;
}

.hero-card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: min(320px, calc(100% - 2rem));
  padding: 1rem;
  border-radius: 20px;
  background: rgba(18, 25, 38, 0.88);
  color: #eef3fb;
}

.hero-card-title {
  margin: 0 0 0.45rem;
  font-weight: 700;
}

.hero-card ul {
  margin: 0.75rem 0 0;
  padding-left: 1rem;
}

.notice-band {
  padding: 0.5rem 0 0;
}

.notice-band p {
  margin: 0;
  padding: 1rem 1.25rem;
  background: rgba(252, 107, 63, 0.12);
  color: #7d321f;
  border: 1px solid rgba(252, 107, 63, 0.18);
  border-radius: 18px;
}

.section {
  padding: 1.5rem 0 0;
}

.section-soft {
  padding-bottom: 0.25rem;
}

.section-heading {
  margin-bottom: 1.25rem;
}

.section-heading .lead {
  max-width: 70ch;
}

.benefits-grid,
.activity-grid,
.package-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.benefit-card,
.package-card,
.testimonial-placeholder,
.contact-form {
  padding: 1.4rem;
}

.icon-wrap {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 1rem;
  background: rgba(252, 107, 63, 0.12);
  color: var(--accent);
}

.icon-wrap svg {
  width: 1.4rem;
  height: 1.4rem;
}

.access-card {
  margin-top: 1rem;
  padding: 1.5rem;
}

.distance-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1.2rem 0 0;
}

.distance-list div {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(18, 25, 38, 0.04);
}

.distance-list dt {
  color: var(--text-soft);
}

.distance-list dd {
  margin: 0.35rem 0 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.activity-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--border);
}

.activity-copy {
  padding: 1.25rem;
}

.package-grid ul,
.contact-points {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.package-price {
  margin: 0.75rem 0;
  color: var(--accent-dark);
  background: rgba(252, 107, 63, 0.12);
}

.package-card .button {
  margin-top: 1rem;
}

.contact-grid {
  align-items: start;
}

.contact-copy {
  padding-top: 0.5rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

label span {
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(18, 25, 38, 0.12);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

textarea {
  resize: vertical;
}

.checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.75rem;
}

.checkbox input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.22rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-feedback {
  min-height: 1.5rem;
  margin: 0;
  font-weight: 600;
}

.form-feedback[data-state="success"] {
  color: #0a7a48;
}

.form-feedback[data-state="error"] {
  color: #af2e2e;
}

.form-feedback[data-state="pending"] {
  color: var(--text-soft);
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-grid {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: #121926;
  color: #eef3fb;
}

.footer-brand {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 800;
}

.footer-nav {
  display: grid;
  gap: 0.5rem;
}

.footer-nav a {
  color: #eef3fb;
  text-decoration: none;
}

.legal-page {
  padding: 2rem 0 4rem;
}

.prose {
  max-width: 70ch;
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
}

.back-link {
  display: inline-block;
  margin-bottom: 1rem;
}

@media (min-width: 720px) {
  .header-nav {
    display: flex;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-grid,
  .contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .hero-actions {
    flex-direction: row;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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