:root {
  --cream: #F8F4ED;
  --cream-deep: #F1EBDF;
  --paper: #FFFCF7;
  --sage: #525C3F;
  --sage-deep: #3F4730;
  --sage-soft: #828B6E;
  --coral: #DD8268;
  --coral-deep: #C66A52;
  --hairline: #E2D9C6;
  --hairline-soft: #ECE4D2;
  --shadow: 0 24px 60px -28px rgba(63, 71, 48, 0.22);
  --shadow-soft: 0 12px 32px -22px rgba(63, 71, 48, 0.18);
  --max: 1240px;
  --serif: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--sage-deep);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}
img { max-width: 100%; display: block; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

/* ── Type ─────────────────────────────────── */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 18px;
}
.eyebrow.on-photo { color: #F4D8C9; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--sage-deep);
  letter-spacing: -0.005em;
  margin: 0;
}
h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  line-height: 1.04;
  font-weight: 500;
}
h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.12;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 600;
  color: var(--sage);
  margin-bottom: 14px;
}
h4 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  margin-bottom: 12px;
  line-height: 1.25;
}
p { color: var(--sage); margin: 0 0 14px; }
.lead {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.5;
  color: var(--sage-deep);
  font-weight: 400;
}
em { font-style: italic; }

/* ── Header ───────────────────────────────── */
header.site {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(248, 244, 237, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--hairline-soft);
}
.nav {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--sage-deep);
  letter-spacing: 0.005em;
  line-height: 1;
}
.brand-loc {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 500;
  display: none;
}
@media (min-width: 720px) { .brand-loc { display: inline; } }
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}
.nav-links a { transition: color 160ms ease; }
.nav-links a:hover, .nav-links a.active { color: var(--coral); }

.lang-switch {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-left: 4px;
  padding-left: 18px;
  border-left: 1px solid var(--hairline);
  color: var(--sage-soft);
}
.lang-switch a {
  color: var(--sage-soft);
  padding: 0 6px;
  transition: color 160ms ease;
  text-decoration: none;
}
.lang-switch a:hover { color: var(--coral); }
.lang-switch a.active { color: var(--sage-deep); font-weight: 600; }
.lang-switch .sep { color: var(--hairline); margin: 0 2px; }

/* ── Buttons ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn.primary { background: var(--coral); color: var(--paper); }
.btn.primary:hover { background: var(--coral-deep); transform: translateY(-1px); }
.btn.ghost { border-color: rgba(248, 244, 237, 0.6); color: var(--paper); }
.btn.ghost:hover { background: rgba(248, 244, 237, 0.12); }
.btn.outline { border-color: var(--sage); color: var(--sage-deep); }
.btn.outline:hover { background: var(--sage); color: var(--paper); }
.btn.large { padding: 18px 36px; font-size: 0.92rem; }

/* ── Section primitives ───────────────────── */
section { padding: clamp(56px, 8vw, 110px) 0; position: relative; }
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }

/* ── Index hero ───────────────────────────── */
.index-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(20, 24, 14, 0.50) 0%, rgba(20, 24, 14, 0.66) 100%),
    url('https://landian-remake-production.s3.us-east-2.amazonaws.com/images/propertysearch/3f442671-7601-4332-b74a-8dc223e32820/99977ce0-c154-4f9c-a150-3eb02ce322fb.jpeg') center/cover no-repeat;
  color: var(--paper);
  text-align: center;
  padding: clamp(80px, 12vw, 140px) 20px;
}
.index-hero h1 {
  color: var(--paper);
  max-width: 18ch;
  margin: 0 auto;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
}
.index-hero .lead {
  color: rgba(252, 248, 240, 0.94);
  max-width: 60ch;
  margin: 22px auto 0;
}

/* ── Intro block ──────────────────────────── */
.intro-block {
  background: var(--paper);
  border-bottom: 1px solid var(--hairline-soft);
  padding: clamp(60px, 8vw, 96px) 0;
  text-align: center;
}
.intro-block .wrap { max-width: 760px; }
.intro-block .lead { font-size: clamp(1.15rem, 1.7vw, 1.4rem); }
.intro-byline {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-soft);
  margin: 28px 0 0;
}

/* ── Activity groups ──────────────────────── */
.guide { background: var(--cream); }
.guide-block { margin-top: clamp(56px, 7vw, 96px); }
.guide-block:first-of-type { margin-top: 0; }
.guide-heading {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-bottom: 36px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--hairline);
}
.guide-heading .eyebrow { margin: 0; }
.guide-heading h3 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  letter-spacing: -0.005em;
  text-transform: none;
  font-weight: 500;
  color: var(--sage-deep);
  margin: 0;
  flex: 1 1 60%;
}
.guide-heading .group-blurb {
  flex: 1 1 100%;
  margin: 4px 0 0;
  color: var(--sage);
  max-width: 64ch;
  font-size: 0.98rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.feature-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--paper);
  border: 1px solid var(--hairline-soft);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.feature-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-deep);
}
.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}
.feature-card:hover .feature-img img { transform: scale(1.05); }
.feature-meta { padding: 20px 22px 24px; }
.feature-meta .pretitle {
  display: block;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 8px;
}
.feature-meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 500;
  color: var(--sage-deep);
  margin-bottom: 6px;
  line-height: 1.22;
}
.feature-meta span.blurb {
  display: block;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--sage);
}
.feature-meta .arrow {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
}

/* ── Activity (detail page) hero ──────────── */
.activity-hero {
  position: relative;
  min-height: 64vh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  color: var(--paper);
  padding: clamp(80px, 10vw, 140px) 0 clamp(48px, 6vw, 80px);
}
.activity-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.activity-hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 24, 14, 0.35) 0%, rgba(20, 24, 14, 0.72) 100%);
  z-index: -1;
}
.activity-hero .crumbs {
  margin-bottom: 22px;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(252, 248, 240, 0.86);
}
.activity-hero .crumbs a:hover { color: var(--coral); }
.activity-hero .crumbs .sep { margin: 0 10px; opacity: 0.5; }
.activity-hero h1 {
  color: var(--paper);
  max-width: 20ch;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
}
.activity-hero .subtitle {
  color: rgba(252, 248, 240, 0.94);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  max-width: 58ch;
  margin: 16px 0 0;
}

/* ── Activity body layout ─────────────────── */
.activity-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.activity-body .copy h2 { margin-bottom: 14px; }
.activity-body .copy h2:not(:first-of-type) { margin-top: clamp(40px, 5vw, 56px); }
.activity-body .copy p { font-size: 1.04rem; }
.activity-body .copy ul { padding-left: 0; list-style: none; margin: 12px 0 14px; }
.activity-body .copy ul li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 0.98rem;
  color: var(--sage);
  border-bottom: 1px dashed var(--hairline-soft);
}
.activity-body .copy ul li:last-child { border-bottom: none; }
.activity-body .copy ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.activity-body .booking {
  position: sticky;
  top: 100px;
  background: var(--paper);
  border: 1px solid var(--hairline-soft);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow-soft);
}
.activity-body .booking .eyebrow { margin-bottom: 10px; }
.activity-body .booking h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.005em;
  color: var(--sage-deep);
  margin-bottom: 14px;
  line-height: 1.25;
}
.activity-body .booking p {
  font-size: 0.94rem;
  line-height: 1.55;
  margin-bottom: 18px;
}
.activity-body .booking .btn { width: 100%; justify-content: center; }
.activity-body .booking .meta {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline-soft);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  font-size: 0.85rem;
  color: var(--sage);
}
.activity-body .booking .meta strong {
  color: var(--sage-soft);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── Tips card ────────────────────────────── */
.tips-card {
  background: var(--cream-deep);
  border-left: 3px solid var(--coral);
  border-radius: 0 6px 6px 0;
  padding: 24px 28px;
  margin: 32px 0 12px;
}
.tips-card h2 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 1.5rem;
  text-transform: none;
  letter-spacing: -0.005em;
  color: var(--sage-deep);
}
.tips-card ul { margin-top: 0 !important; }

/* ── Related activities ───────────────────── */
.related {
  background: var(--paper);
  border-top: 1px solid var(--hairline-soft);
}
.related h2 {
  text-align: center;
  margin: 0 auto 38px;
}
.related .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* ── CTA band ─────────────────────────────── */
.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--paper);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(20, 24, 14, 0.55) 0%, rgba(20, 24, 14, 0.62) 100%),
    url('https://landian-remake-production.s3.us-east-2.amazonaws.com/images/propertysearch/3f442671-7601-4332-b74a-8dc223e32820/23e5e250-e2f4-42ac-b737-1a88de474642.png') center/cover no-repeat;
}
.cta-band .wrap { position: relative; z-index: 1; max-width: 820px; }
.cta-band h2 { color: var(--paper); max-width: 22ch; margin: 0 auto 18px; }
.cta-band p { color: rgba(248, 244, 237, 0.86); max-width: 56ch; margin: 0 auto 32px; }

/* ── Footer ───────────────────────────────── */
footer.site {
  padding: 56px 0 64px;
  background: var(--cream);
  border-top: 1px solid var(--hairline-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand img { height: 88px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; max-width: 36ch; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sage-soft);
  font-weight: 600;
  margin: 0 0 14px;
}
.footer-col a {
  display: block;
  color: var(--sage);
  font-size: 0.94rem;
  padding: 4px 0;
  transition: color 160ms ease;
}
.footer-col a:hover { color: var(--coral); }
.footer-meta {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-soft);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
  color: var(--sage-soft);
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 1040px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .activity-body { grid-template-columns: 1fr; }
  .activity-body .booking { position: static; }
}
@media (max-width: 820px) {
  .nav { min-height: 64px; flex-wrap: wrap; padding: 12px 0; }
  .nav-links { gap: 16px; font-size: 0.74rem; }
  .brand-name { font-size: 1.3rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 520px) {
  .feature-grid { grid-template-columns: 1fr; }
}
