:root {
  --green-900: #0f2a1d;
  --green-700: #1f4a37;
  --green-500: #2d6b4c;
  --amber-500: #c98a3b;
  --amber-600: #b0762d;
  --cream: #f4ecdc;
  --paper: #ffffff;
  --ink: #12211a;
  --muted: #6b7268;
  --muted-light: #8e968c;
  --border: #e6e2d6;
  --border-light: #f0ede4;
  --shadow-sm: 0 2px 8px rgba(15,42,29,0.06);
  --shadow-md: 0 12px 32px -12px rgba(15,42,29,0.15);
  --shadow-lg: 0 24px 48px -16px rgba(15,42,29,0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Typography */
h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0;
}
h1 { font-size: clamp(2.75rem, 6vw, 5.25rem); line-height: 1.02; }
h2 { font-size: clamp(2rem, 3.6vw, 3.25rem); line-height: 1.08; }
h3 { font-size: 1.5rem; line-height: 1.2; }
h4 { font-family: "Inter", sans-serif; font-size: 1rem; margin: 0; font-weight: 600; letter-spacing: 0.02em; }
h5 { font-family: "Inter", sans-serif; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-700); margin: 0 0 14px; font-weight: 600; }

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green-700);
  font-weight: 700;
  margin: 0 0 24px;
}
.eyebrow--light { color: #cbb98a; }
.lede { color: var(--muted); font-size: 1.1rem; max-width: 54ch; line-height: 1.7; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}
.btn--primary { background: var(--amber-500); color: #fff; box-shadow: 0 2px 12px rgba(201,138,59,0.25); }
.btn--primary:hover { background: var(--amber-600); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(201,138,59,0.35); }
.btn--ghost { color: var(--green-900); border-color: var(--green-900); background: transparent; }
.btn--ghost:hover { background: var(--green-900); color: #fff; transform: translateY(-1px); }
.btn--lg { padding: 18px 32px; font-size: 0.95rem; }

/* Announcement */
.announce {
  background: var(--green-900);
  color: #f0ead9;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.announce__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 32px;
}
.announce p { margin: 0; }
.announce__cta { color: var(--amber-500); font-weight: 700; letter-spacing: 0.02em; }

/* Header */
.header { background: rgba(255,255,255,0.97); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 20; }
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 32px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: "Cormorant Garamond", serif; font-size: 1.65rem; font-weight: 700; letter-spacing: 0.08em; color: var(--green-900); }
.brand__sub { font-size: 0.6rem; letter-spacing: 0.35em; color: var(--green-500); margin-top: 4px; font-weight: 500; }
.brand--footer .brand__name { color: #f4ecdc; }
.brand--footer .brand__sub { color: #a5b3a5; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a { font-size: 0.88rem; font-weight: 500; color: var(--ink); letter-spacing: 0.03em; transition: color 0.2s ease; }
.nav a:hover { color: var(--green-700); }
.nav__signin { color: var(--muted-light); }
.nav .btn { padding: 10px 20px; font-size: 0.82rem; letter-spacing: 0.06em; }
.nav a[aria-current="page"] { color: var(--green-700); box-shadow: inset 0 -2px 0 var(--amber-500); }

/* Interior page hero */
.page-hero { background: var(--cream); padding: clamp(64px, 9vw, 112px) 0; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(2.25rem, 4.5vw, 3.75rem); margin-bottom: 20px; }
.page-hero .lede { font-size: 1.1rem; }

/* Forms */
.form-wrap { max-width: 520px; margin: 0 auto; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 48px; box-shadow: var(--shadow-sm); }
.form-wrap--wide { max-width: 720px; }
.form-wrap h2 { margin-bottom: 8px; }
.form-wrap p.lede { margin-bottom: 28px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--ink); letter-spacing: 0.06em; text-transform: uppercase; }
.field input, .field textarea, .field select {
  font: inherit; color: var(--ink);
  padding: 14px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:hover, .field textarea:hover, .field select:hover { border-color: #c9c2b0; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--amber-500); box-shadow: 0 0 0 3px rgba(201,138,59,0.12); }
.field textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-actions { margin-top: 16px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-meta { font-size: 0.85rem; color: var(--muted); text-align: center; margin-top: 24px; }
.form-meta a { color: var(--green-700); font-weight: 600; transition: color 0.2s; }
.form-meta a:hover { color: var(--amber-500); }
@media (max-width: 640px) {
  .form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
}

.nav__toggle { display: none; background: none; border: 0; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 82vh;
  background: var(--cream);
}
.hero__text {
  padding: clamp(48px, 8vw, 120px) clamp(32px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__text h1 { margin-bottom: 28px; }
.hero__ctas { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero__image {
  background-image: url("https://images.unsplash.com/photo-1516426122078-c23e76319801?auto=format&fit=crop&w=1400&q=75");
  background-size: cover;
  background-position: center;
}

/* Sections */
.section { padding: clamp(80px, 10vw, 140px) 0; }
.section--cream { background: var(--cream); }
.section__head { margin-bottom: 60px; max-width: 640px; }
.section--split .grid--2 { gap: 72px; }
.align-center { align-items: center; }

/* Grids */
.grid { display: grid; gap: 32px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--6 { grid-template-columns: repeat(6, 1fr); }

/* Cards */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: var(--shadow-sm);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #d4cdbc; }
.card__img { aspect-ratio: 4 / 5; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.card:hover .card__img { transform: scale(1.03); }
.card__body { padding: 24px; }
.card__body h3 { margin-bottom: 8px; }
.card__body p { color: var(--muted); font-size: 0.92rem; margin: 0 0 14px; line-height: 1.6; }
.link { color: var(--green-700); font-weight: 600; font-size: 0.9rem; transition: color 0.2s; }
.link:hover { color: var(--amber-500); }

/* Journeys */
.journey { background: #fff; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease, border-color 0.35s ease; box-shadow: var(--shadow-sm); }
.journey:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #d4cdbc; }
.journey__img { aspect-ratio: 16/11; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.journey:hover .journey__img { transform: scale(1.03); }
.journey__body { padding: 28px; }
.meta { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-700); margin: 0 0 10px; font-weight: 700; }
.journey__body h3 { margin-bottom: 10px; }
.journey__body p { color: var(--muted); margin: 0 0 16px; line-height: 1.6; }
.price { color: var(--ink); font-size: 0.9rem; letter-spacing: 0.02em; }
.price strong { font-family: "Cormorant Garamond", serif; font-size: 1.3rem; font-weight: 700; color: var(--green-900); }

/* Tiles */
.tiles { gap: 20px; }
.tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
  box-shadow: var(--shadow-sm);
}
.tile:hover { background: var(--green-900); color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tile:hover h4 { color: #fff; }
.tile span { display: block; font-size: 1.8rem; color: var(--amber-500); margin-bottom: 14px; transition: transform 0.3s ease; }
.tile:hover span { transform: scale(1.1); }

/* Split image */
.split__img { min-height: 460px; border-radius: var(--radius-md); background-size: cover; background-position: center; box-shadow: var(--shadow-sm); }
.split__img--portrait { aspect-ratio: 4/5; min-height: 0; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; padding-top: 36px; border-top: 1px solid var(--border); }
.stats strong { font-family: "Cormorant Garamond", serif; font-size: 2.8rem; font-weight: 700; color: var(--green-900); display: block; line-height: 1; letter-spacing: -0.02em; }
.stats span { font-size: 0.85rem; color: var(--muted-light); letter-spacing: 0.04em; }

/* Quote / testimonials */
.quote { margin: 0; background: #fff; border: 1px solid var(--border); padding: 32px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: box-shadow 0.3s ease, transform 0.3s ease; }
.quote:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.quote blockquote { margin: 0 0 16px; font-family: "Cormorant Garamond", serif; font-size: 1.35rem; line-height: 1.4; color: var(--ink); font-weight: 600; }
.quote figcaption { font-size: 0.85rem; color: var(--muted-light); letter-spacing: 0.03em; }
blockquote { margin: 28px 0 0; padding-left: 24px; border-left: 3px solid var(--amber-500); font-family: "Cormorant Garamond", serif; font-size: 1.4rem; color: var(--ink); font-weight: 600; line-height: 1.4; }
blockquote cite { display: block; margin-top: 14px; font-family: "Inter", sans-serif; font-size: 0.82rem; color: var(--muted); font-style: normal; letter-spacing: 0.03em; }

/* CTA band */
.cta { background: var(--green-900); color: #fff; padding: 88px 0; }
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta h2 { color: #fff; margin-top: 8px; font-weight: 700; }

/* Footer */
.footer { background: #0a1e14; color: #cbd3cb; padding: 88px 0 36px; }
.footer__grid { gap: 48px; }
.footer__blurb { color: #9aa79a; font-size: 0.92rem; margin-top: 16px; max-width: 34ch; line-height: 1.65; }
.footer ul li { padding: 8px 0; font-size: 0.9rem; }
.footer a { transition: color 0.2s ease; }
.footer a:hover { color: #fff; }
.footer__fine { display: flex; justify-content: space-between; padding-top: 32px; margin-top: 48px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.75rem; color: #8a978a; letter-spacing: 0.1em; text-transform: uppercase; }

/* Responsive */
@media (max-width: 900px) {
  .announce__inner { flex-direction: column; gap: 6px; text-align: center; }
  .nav__toggle { display: flex; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 16px 24px; gap: 4px; display: none;
  }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav .btn { margin-top: 12px; }
  .nav.is-open { display: flex; }
  .header__inner { position: relative; }

  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero__image { min-height: 320px; order: -1; }

  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .grid--6 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: 1fr; }
  .footer__fine { flex-direction: column; gap: 12px; text-align: center; }
  .cta__inner { flex-direction: column; align-items: flex-start; }
}

@media (min-width: 900px) and (max-width: 1100px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--6 { grid-template-columns: repeat(3, 1fr); }
}
