:root {
  /* ── Core Palette ── */
  --color-earth:    #1a2018;   /* deep forest — near black green */
  --color-forest:   #2d3d29;   /* mid forest green */
  --color-moss:     #4a5e42;   /* muted moss accent */
  --color-sage:     #7c8f74;   /* soft sage — muted green */
  --color-sand:     #c8b99a;   /* warm sand */
  --color-taupe:    #a89880;   /* taupe mid */
  --color-cream:    #f0eade;   /* warm cream — page bg */
  --color-bone:     #e4ddd0;   /* slightly deeper cream */
  --color-charcoal: #2e2b27;   /* warm charcoal — text */
  --color-mist:     #6b6459;   /* warm grey — muted text */
  --color-border:   #d6cec2;   /* warm stone border */

  /* ── Typography ── */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Jost', -apple-system, sans-serif;

  /* ── Layout ── */
  --max-width: 1200px;
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
  --space-2xl: 11rem;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--color-cream);
  color: var(--color-charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  background-color: var(--color-earth);
  position: relative;
  overflow: hidden;
}

/* Atmospheric texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(74,94,66,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 85% 20%, rgba(45,61,41,0.5) 0%, transparent 55%);
  pointer-events: none;
}

/* Grain texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: var(--space-xl) clamp(2rem, 8vw, 7rem);
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-sand);
  opacity: 0.8;
  margin-bottom: var(--space-lg);
}

.hero-wordmark {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--color-sand);
  display: block;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--color-cream);
  margin-bottom: var(--space-md);
  max-width: 14ch;
}

.hero-title em {
  font-style: italic;
  color: var(--color-sand);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 300;
  color: rgba(240,234,222,0.55);
  line-height: 1.85;
  letter-spacing: 0.03em;
  max-width: 42ch;
  margin-bottom: var(--space-xl);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-earth);
  background: var(--color-sand);
  padding: 1rem 2.4rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.hero-btn:hover {
  background: var(--color-cream);
}

.hero-btn-arrow {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.hero-btn:hover .hero-btn-arrow {
  transform: translateX(5px);
}

.hero-scroll-line {
  position: absolute;
  bottom: var(--space-lg);
  left: clamp(2rem, 8vw, 7rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240,234,222,0.3);
  z-index: 1;
}

.hero-scroll-line::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(240,234,222,0.25);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION LABELS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.section-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-sage);
  display: block;
  margin-bottom: var(--space-md);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   OFFERINGS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.offerings {
  padding: var(--space-2xl) clamp(2rem, 8vw, 7rem);
  background-color: var(--color-cream);
}

.offerings-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.offerings-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-md);
  margin-bottom: var(--space-xl);
}

.offerings-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-charcoal);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.offering-card {
  padding: var(--space-lg) var(--space-lg) var(--space-lg) 0;
  border-top: 1px solid var(--color-border);
  position: relative;
}

.offering-card + .offering-card {
  padding-left: var(--space-lg);
  border-left: 1px solid var(--color-border);
}

.offering-number {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--color-taupe);
  display: block;
  margin-bottom: var(--space-lg);
}

.offering-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: var(--space-sm);
  color: var(--color-charcoal);
}

.offering-text {
  font-size: 0.92rem;
  color: var(--color-mist);
  line-height: 1.85;
  max-width: 320px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DESTINATIONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.destinations {
  padding: var(--space-2xl) clamp(2rem, 8vw, 7rem);
  background-color: var(--color-bone);
}

.destinations-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--space-2xl);
  align-items: start;
}

.destinations-sticky {
  position: sticky;
  top: var(--space-xl);
}

.destinations-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-charcoal);
  margin-bottom: var(--space-md);
}

.destinations-body {
  font-size: 0.92rem;
  color: var(--color-mist);
  max-width: 38ch;
  line-height: 1.85;
}

.destinations-list {
  display: flex;
  flex-direction: column;
}

.destination-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--color-border);
  gap: var(--space-md);
  transition: opacity 0.2s ease;
  cursor: default;
}

.destination-item:first-child {
  border-top: 1px solid var(--color-border);
}

.destination-item:hover {
  opacity: 0.7;
}

.destination-name {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 400;
  color: var(--color-charcoal);
  letter-spacing: 0.01em;
}

.destination-detail {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--color-taupe);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PHILOSOPHY
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.philosophy {
  padding: var(--space-2xl) clamp(2rem, 8vw, 7rem);
  background-color: var(--color-forest);
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(26,32,24,0.6) 0%, transparent 70%);
  pointer-events: none;
}

.philosophy-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.philosophy-content {
  text-align: center;
}

.philosophy-content .section-label {
  color: var(--color-sand);
  opacity: 0.7;
}

.philosophy-divider {
  width: 1px;
  height: 60px;
  background: rgba(200,185,154,0.25);
  margin: var(--space-lg) auto;
}

.philosophy-quote {
  margin: 0 0 var(--space-xl);
  padding: 0;
  border: none;
}

.philosophy-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--color-cream);
}

.philosophy-quote em {
  color: var(--color-sand);
  font-style: italic;
}

.philosophy-text {
  font-size: 0.92rem;
  color: rgba(240,234,222,0.55);
  line-height: 1.9;
  margin-bottom: var(--space-md);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.philosophy-closer {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(240,234,222,0.75);
  font-style: italic;
  margin-top: var(--space-lg);
  display: block;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   INQUIRY
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.inquiry {
  padding: var(--space-2xl) clamp(2rem, 8vw, 7rem);
  background-color: var(--color-earth);
  position: relative;
}

.inquiry-inner {
  max-width: 820px;
  margin: 0 auto;
}

.inquiry-header {
  margin-bottom: var(--space-xl);
  border-top: 1px solid rgba(200,185,154,0.15);
  padding-top: var(--space-md);
}

.inquiry-header .section-label {
  color: var(--color-sand);
  opacity: 0.7;
}

.inquiry-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-cream);
  margin-bottom: var(--space-md);
}

.inquiry-body {
  font-size: 0.92rem;
  color: rgba(240,234,222,0.5);
  max-width: 48ch;
  line-height: 1.85;
}

/* ── Form ── */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,234,222,0.4);
}

.form-optional {
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.72rem;
  opacity: 0.7;
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-cream);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(200,185,154,0.2);
  padding: 0.85rem 0;
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(240,234,222,0.22);
}

/* select options readability (system-rendered) */
.form-select option {
  background: var(--color-earth);
  color: var(--color-cream);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-sand);
}

.form-select-wrap {
  position: relative;
}

.form-select {
  cursor: pointer;
  padding-right: 2rem;
  color: rgba(240,234,222,0.6);
}

.select-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  color: rgba(240,234,222,0.3);
  pointer-events: none;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.75;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-sm);
  flex-wrap: wrap;
  border-top: 1px solid rgba(200,185,154,0.1);
  margin-top: var(--space-sm);
}

.form-submit {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-earth);
  background: var(--color-sand);
  border: 1px solid var(--color-sand);
  padding: 1rem 2.2rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.form-submit:hover:not(:disabled) {
  background: var(--color-cream);
  border-color: var(--color-cream);
}

.form-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.submit-arrow {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.form-submit:hover:not(:disabled) .submit-arrow {
  transform: translateX(4px);
}

.form-note {
  font-size: 0.76rem;
  color: rgba(240,234,222,0.3);
  line-height: 1.6;
}

/* ── Success State ── */
.inquiry-success {
  display: none;
  padding: var(--space-xl) 0;
  text-align: center;
}

.success-inner {
  max-width: 380px;
  margin: 0 auto;
}

.success-mark {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-sand);
  display: block;
  margin-bottom: var(--space-md);
}

.success-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-cream);
  margin-bottom: var(--space-sm);
}

.success-text {
  font-size: 0.92rem;
  color: rgba(240,234,222,0.5);
  line-height: 1.85;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-footer {
  padding: var(--space-xl) clamp(2rem, 8vw, 7rem) var(--space-lg);
  background-color: var(--color-charcoal);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: var(--space-lg);
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  color: var(--color-cream);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.75rem;
  color: rgba(240,234,222,0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact {
  text-align: right;
}

.footer-contact p {
  font-size: 0.85rem;
  color: rgba(240,234,222,0.45);
  line-height: 2;
  letter-spacing: 0.02em;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: var(--space-lg);
  margin-top: var(--space-sm);
  border-top: 1px solid rgba(240,234,222,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(240,234,222,0.25);
  letter-spacing: 0.05em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 900px) {
  .offerings-grid {
    grid-template-columns: 1fr;
  }

  .offering-card + .offering-card {
    padding-left: 0;
    border-left: none;
  }

  .offering-card {
    padding: var(--space-md) 0;
  }

  .destinations-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .destinations-sticky {
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    text-align: left;
  }
}

@media (max-width: 600px) {
  :root {
    --space-2xl: 5rem;
    --space-xl:  3rem;
    --space-lg:  2.5rem;
  }

  .hero-inner {
    padding: var(--space-xl) var(--space-md);
  }

  .hero-scroll-line {
    display: none;
  }

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

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

  .destination-item {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .offerings-header {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .footer-inner {
    gap: var(--space-md);
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MICRO-ANIMATIONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (prefers-reduced-motion: no-preference) {
  .hero-wordmark,
  .hero-eyebrow,
  .hero-title,
  .hero-subtitle,
  .hero-cta {
    animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero-eyebrow   { animation-delay: 0.05s; }
  .hero-wordmark  { animation-delay: 0.15s; }
  .hero-title     { animation-delay: 0.25s; }
  .hero-subtitle  { animation-delay: 0.35s; }
  .hero-cta       { animation-delay: 0.45s; }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
