﻿:root {
  color-scheme: light;
  --pine-900: #0f2b27;
  --pine-800: #15352f;
  --pine-700: #1b4a3a;
  --teal-700: #1f4d4a;
  --sienna-500: #b5743c;
  --sienna-400: #c58353;
  --lilac-200: #d7d2e6;
  --stone-100: #f4f2ed;
  --stone-200: #e6e1d8;
  --ink-900: #101918;
  --ink-700: #24312f;
  --shadow: rgba(16, 25, 24, 0.16);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --max-width: 1120px;
  --transition: 200ms ease;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Sora", sans-serif;
  color: var(--ink-900);
  background: radial-gradient(circle at top, #f6f4ef 0%, #ece7dc 45%, #e3dfd7 100%);
  line-height: 1.6;
}

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

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

a:hover {
  color: var(--sienna-500);
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 20px var(--shadow);
}

.skip-link:focus {
  left: 1rem;
  z-index: 10;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(244, 242, 237, 0.85);
  border-bottom: 1px solid rgba(15, 43, 39, 0.08);
}

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

.logo img {
  width: 120px;
  height: auto;
}

.primary-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(16, 25, 24, 0.2);
  background: #fff;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-family: inherit;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary {
  background: linear-gradient(120deg, var(--pine-800), var(--teal-700));
  color: #fff;
  box-shadow: 0 12px 20px rgba(21, 53, 47, 0.25);
}

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

.btn-outline {
  border-color: rgba(16, 25, 24, 0.3);
  background: transparent;
}

.btn-ghost {
  border-color: rgba(16, 25, 24, 0.1);
  background: rgba(255, 255, 255, 0.88);
  color: var(--pine-900);
  box-shadow: 0 10px 18px rgba(16, 25, 24, 0.12);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(16, 25, 24, 0.25);
}

.text-link {
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.hero {
  position: relative;
  padding: 5rem 0 3rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(140deg, rgba(15, 43, 39, 0.78), rgba(31, 77, 74, 0.62)),
    url("/images/hero.jpg"),
    url("/images/hero.png"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 300'%3E%3Cpath fill='%2315342f' fill-opacity='0.35' d='M0 240 L40 190 L80 230 L120 170 L160 230 L200 180 L240 220 L280 160 L320 230 L360 190 L400 230 L440 170 L480 220 L520 180 L560 230 L600 170 L640 230 L680 190 L720 240 L760 200 L800 240 L800 300 L0 300 Z'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-content {
  color: #f7f5f1;
}

.hero h1 {
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  margin: 0 0 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.75rem;
}

.hero-subhead {
  max-width: 540px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0 2.5rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  background: rgba(15, 25, 24, 0.5);
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.hero-meta ul {
  padding-left: 1.2rem;
}

.hero-meta li {
  margin-bottom: 0.5rem;
}

.trust {
  font-size: 0.95rem;
}

.section {
  padding: 4rem 0;
}

.section h2 {
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-top: 0;
}

.section p {
  color: var(--ink-700);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 40px var(--shadow);
}

.highlight {
  background: linear-gradient(120deg, rgba(217, 210, 230, 0.4), rgba(245, 242, 236, 0.9));
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.icon-grid h4 {
  margin-bottom: 0.5rem;
}

.page-hero {
  padding: 4rem 0 2rem;
  background: linear-gradient(120deg, rgba(21, 53, 47, 0.08), rgba(199, 195, 216, 0.25));
}

.details-list {
  list-style: none;
  padding: 0;
}

.details-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(16, 25, 24, 0.1);
}

.prose {
  max-width: 760px;
}

.footnote {
  font-size: 0.9rem;
  color: rgba(16, 25, 24, 0.65);
  margin-top: 1.5rem;
}

.site-footer {
  border-top: 1px solid rgba(16, 25, 24, 0.12);
  padding: 2rem 0;
  background: #f7f4ee;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.instagram-link img {
  width: 20px;
  height: 20px;
}

.section-intro {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.section-intro p {
  max-width: 720px;
}

.pill-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pill-group.is-scrollable {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.pill-group button {
  border: 1px solid rgba(16, 25, 24, 0.2);
  background: #fff;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.pill-group button.is-active {
  background: var(--pine-800);
  color: #fff;
  border-color: transparent;
}

.season-note {
  font-size: 0.95rem;
  color: var(--ink-700);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.card-grid .card {
  grid-column: span 4;
}

.card-grid .card h3 {
  margin-top: 0;
}

.card-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--ink-700);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(31, 77, 74, 0.1);
  color: var(--pine-800);
  font-size: 0.75rem;
  font-weight: 600;
}

.activity-card {
  transition: opacity var(--transition), transform var(--transition);
}

.activity-card.is-hidden {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.featured-row {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 40px var(--shadow);
  margin-bottom: 2.5rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.featured-grid .card {
  box-shadow: none;
  border: 1px solid rgba(16, 25, 24, 0.1);
}

.callout {
  background: linear-gradient(130deg, rgba(21, 53, 47, 0.12), rgba(181, 116, 60, 0.15));
}

.callout .price {
  font-weight: 700;
  color: var(--pine-900);
}

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

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

input,
textarea {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(16, 25, 24, 0.2);
  padding: 0.75rem 1rem;
  font: inherit;
}

input:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--sienna-500);
  outline-offset: 2px;
}

.checkbox {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-weight: 500;
}

.form-message {
  min-height: 1.5rem;
  color: var(--pine-700);
  font-weight: 600;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 15, 0.7);
}

.modal-card {
  position: relative;
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: calc(100% - 2rem);
  box-shadow: 0 30px 60px rgba(12, 18, 18, 0.35);
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

@media (max-width: 900px) {
  .header-inner {
    padding: 0.75rem 0;
  }

  .logo img {
    width: 96px;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 1.5rem;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 20px 40px var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity var(--transition), transform var(--transition);
  }

  body.nav-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .btn-outline {
    display: none;
  }

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

@media (max-width: 720px) {
  .hero {
    padding: 4rem 0 2rem;
  }

  .hero-meta {
    padding: 1.25rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
