/* =====================================================================
   The Birdie Circle — Site Styles
   Boutique golf travel concierge
   ===================================================================== */

/* ── SELF-HOSTED FONTS ── (replaces Google Fonts CDN for GDPR compliance) */

/* Cormorant Garamond — headlines */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-300italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-400italic.woff2') format('woff2');
}

/* Montserrat — body / UI */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/montserrat-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/montserrat-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/montserrat-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/montserrat-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/montserrat-700.woff2') format('woff2');
}


/* ── DESIGN TOKENS ── */
:root {
  --pine: #1B5E3B;
  --pine-deep: #0F3D25;
  --pine-light: #2A7A50;
  --cream: #F5F0E8;
  --cream-dark: #E8E0D0;
  --gold: #C4A46C;
  --gold-light: #D4BA8A;
  --charcoal: #2C2C2C;
  --white: #FFFFFF;
  --overlay: rgba(15, 61, 37, 0.7);
  --neon: #DFFF00; /* electric yellow — used for active/focus indicators, pencil circle, footer accents */
}

/* ── RESET ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── ACCESSIBILITY: keyboard focus ring ── */
*:focus { outline: none; }
*:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
  border-radius: 1px;
}
/* On light/cream contexts, swap focus ring to pine-deep for visible contrast */
.inquiry--light *:focus-visible,
.content-block *:focus-visible,
.intro *:focus-visible,
.about-feature *:focus-visible,
.experiences *:focus-visible,
.testimonial:not(.testimonial--dark) *:focus-visible,
.exp-detail:nth-of-type(odd) *:focus-visible,
.retreat-card *:focus-visible {
  outline-color: var(--pine-deep) !important;
}

/* Skip-to-content link for keyboard / screen-reader users */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--pine-deep);
  color: var(--neon);
  padding: 0.85rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 1000;
  border: 2px solid var(--neon);
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 1rem;
}

/* Visually hidden text (for screen readers) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── NAV ── (rewritten clean — flex row with auto-margin on logo,
   dropdown menu uses position: absolute relative to nav so it always
   anchors to the nav's actual bottom edge regardless of nav height) ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--pine-deep); /* solid green from page load */
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
nav.scrolled,
nav.solid {
  background: rgba(245, 240, 232, 0.97);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
  padding: 0.6rem 2.5rem;
}
.nav-logo {
  flex-shrink: 0;
  margin-right: auto;
  height: 55px;
  transition: opacity 0.4s;
}
.nav-logo a { display: block; height: 100%; }
.nav-logo img { height: 100%; width: auto; }
.nav-logo .logo-green { display: none; }
.nav-logo .logo-white { display: block; }
nav.scrolled .nav-logo .logo-green,
nav.solid .nav-logo .logo-green { display: block; }
nav.scrolled .nav-logo .logo-white,
nav.solid .nav-logo .logo-white { display: none; }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-shrink: 0;
}
.nav-links a {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cream); text-decoration: none;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 2px;
}
nav.scrolled .nav-links a,
nav.solid .nav-links a { color: var(--pine-deep); }
.nav-links a:hover { color: var(--gold); }

/* Active page indicator — the neon-green pop */
.nav-links a.active {
  color: var(--gold);
}
nav.scrolled .nav-links a.active,
nav.solid .nav-links a.active {
  color: var(--pine);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--gold); /* on transparent hero nav, gold reads against dark photo */
}
nav.scrolled .nav-links a.active::after,
nav.solid .nav-links a.active::after {
  background: var(--pine-deep); /* on cream-scrolled nav, pine-deep gives strongest contrast */
}

.nav-cta {
  padding: 0.55rem 1.5rem !important;
  background: transparent !important;
  border: 1.5px solid var(--gold) !important;
  color: var(--gold) !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: all 0.3s !important;
}
/* On the scrolled cream nav, outline switches to pine-deep so it stays
   high-contrast against cream (gold-on-cream is too light to read). */
nav.scrolled .nav-cta,
nav.solid .nav-cta {
  border-color: var(--pine-deep) !important;
  color: var(--pine-deep) !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--pine-deep) !important;
}
nav.scrolled .nav-cta:hover,
nav.solid .nav-cta:hover {
  background: var(--pine-deep) !important;
  border-color: var(--pine-deep) !important;
  color: var(--cream) !important;
}
.nav-cta::after { display: none !important; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-shrink: 0;
  background: none; border: none;
  width: 30px; height: 22px;
  position: relative; cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  position: absolute; left: 0; right: 0;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }
nav.scrolled .nav-toggle span,
nav.solid .nav-toggle span { background: var(--pine-deep); }
.nav-toggle.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--gold);
  color: var(--pine-deep);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  border: none; cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.btn-outline {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--pine-deep);
}

/* ── HERO (home page) ── */
.hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(15,61,37,0.85) 0%, rgba(15,61,37,0.55) 35%, rgba(15,61,37,0.45) 60%, rgba(15,61,37,0.7) 100%),
    url('../images/photo-mountain.webp');
  background-size: cover;
  background-position: center 78%; /* lift the photo so the green/course shows more, less sky */
  background-color: var(--pine-deep);
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--cream), transparent);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 800px; padding: 0 2rem;
  animation: fadeUp 1.2s ease-out;
}
.hero-badge {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-light);
  background: var(--pine-deep);
  border: 1px solid var(--gold);
  padding: 0.55rem 1.6rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300; line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic; font-weight: 400;
  color: var(--gold-light);
}
.hero p {
  font-size: 1rem; font-weight: 400;
  line-height: 1.8; color: rgba(255,255,255,0.92);
  max-width: 550px; margin: 0 auto 2.5rem;
}

/* ── PAGE HERO (inner pages — pine-deep with light text) ── */
.page-hero {
  padding: 11rem 3rem 5rem;
  text-align: center;
  background: var(--pine-deep);
  border-bottom: 1px solid rgba(196,164,108,0.18);
}
.page-hero .section-label {
  margin-bottom: 1rem;
  color: var(--gold);
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 300; line-height: 1.15;
  color: var(--white);
  max-width: 800px; margin: 0 auto 1rem;
}
.page-hero h1 em {
  font-style: italic; color: var(--gold-light);
}
.page-hero p {
  font-size: 1rem; font-weight: 400;
  line-height: 1.8; color: rgba(255,255,255,0.82);
  max-width: 600px; margin: 0 auto;
}

/* ── INTRO ── */
.intro {
  padding: 6rem 3rem;
  text-align: center;
}
.intro-inner { max-width: 700px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--pine); /* darker, AA contrast on cream */
  margin-bottom: 1.5rem;
}
/* Section labels stay gold when on dark backgrounds */
.why .section-label,
.why-text .section-label,
.inquiry .section-label,
.inquiry-text .section-label,
.cta-strip .section-label,
.page-hero .section-label,
.testimonial .section-label,
.retreats .section-label,
.exp-detail--dark .section-label {
  color: var(--gold);
}
.intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400; line-height: 1.3;
  color: var(--pine-deep);
  margin-bottom: 1.5rem;
}
.intro p {
  font-size: 1rem; font-weight: 400;
  line-height: 1.9; color: var(--charcoal);
}
.divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 2rem auto 0;
}

/* ── SECTION LABEL — small dot prefix.
   Default: pine-deep (high contrast on cream sections).
   On dark backgrounds: neon yellow (the brand pop, only visible against dark). ── */
.section-label::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--pine-deep);
  margin-right: 0.65em;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.why .section-label::before,
.inquiry .section-label::before,
.cta-strip .section-label::before,
.page-hero .section-label::before,
.testimonial .section-label::before,
.retreats .section-label::before,
.process .section-label::before,
.exp-detail:nth-of-type(even) .section-label::before {
  background: var(--neon);
}
/* The light-variant inquiry form (Contact page) sits on cream — the dot
   needs to swap back to pine-deep so it's actually visible. */
.inquiry--light .section-label::before,
section.inquiry--light .section-label::before {
  background: var(--pine-deep) !important;
}

/* ── EXPERIENCES (home grid) ── */
.experiences {
  padding: 2rem 3rem 6rem;
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px; margin: 0 auto;
}
.exp-card {
  position: relative;
  height: 520px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.exp-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.exp-card:hover img { transform: scale(1.07); }
.exp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,61,37,0.9) 0%, rgba(15,61,37,0.2) 50%, transparent 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  transition: background 0.5s;
}
.exp-card:hover .exp-overlay {
  background: linear-gradient(to top, rgba(15,61,37,0.95) 0%, rgba(15,61,37,0.4) 60%, rgba(15,61,37,0.1) 100%);
}
.exp-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.exp-overlay p {
  font-size: 0.82rem; font-weight: 300;
  line-height: 1.7; color: rgba(255,255,255,0.85);
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s, margin 0.4s;
  opacity: 0;
  margin-bottom: 0;
}
.exp-card:hover .exp-overlay p {
  max-height: 120px; opacity: 1;
  margin-bottom: 0.75rem;
}
.exp-tag {
  display: inline-block;
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ── WHY SECTION ── */
.why {
  background: var(--pine-deep);
  padding: 6rem 3rem;
  display: flex; justify-content: center;
}
.why-inner {
  max-width: 1100px; width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-text .section-label { color: var(--gold); }
.why-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 400; line-height: 1.3;
  color: var(--white);
  margin-bottom: 2rem;
}
.why-list { list-style: none; }
.why-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: flex-start; gap: 1rem;
}
.why-list li:last-child { border: none; }
/* Solo neon yellow diamond bullet — pure rotated square, no circle, no border. */
.why-icon,
.why-list .why-icon,
.why-list li .why-icon {
  width: 10px !important;
  height: 10px !important;
  flex-shrink: 0;
  background: var(--neon) !important;
  border: 0 !important;
  border-radius: 0 !important;
  transform: rotate(45deg);
  margin-top: 0.15rem; /* nudged up — h4 line-height (1.2) tighter than body (1.6) */
  font-size: 0 !important;
  color: transparent !important;
  box-shadow: 0 0 8px rgba(223, 255, 0, 0.35);
  display: block;
  padding: 0;
}
.why-icon::before,
.why-icon::after { display: none !important; }
.why-list h4 {
  font-size: 0.85rem; font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}
.why-list p {
  font-size: 0.82rem; font-weight: 300;
  line-height: 1.7; color: rgba(255,255,255,0.65);
}
.why-image {
  position: relative;
  height: 500px;
}
.why-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.why-image::after { display: none; }

/* ── TESTIMONIAL (pine-deep with light text) ── */
.testimonial {
  padding: 6rem 3rem;
  text-align: center;
  background: var(--pine-deep);
  position: relative;
}
.testimonial-inner { max-width: 700px; margin: 0 auto; }
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; color: var(--gold);
  line-height: 1; margin-bottom: 0.5rem;
}
.testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem; font-weight: 400;
  font-style: italic; line-height: 1.6;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.testimonial cite {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold);
}
/* Small black-and-white accent photo above the testimonial quote */
.testimonial-photo {
  width: 92px; height: 92px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: grayscale(100%) contrast(1.1) brightness(1.05);
  margin: 0 auto 1.75rem;
  display: block;
  border: 2px solid rgba(196,164,108,0.55);
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}

/* ── INQUIRY FORM ── */
.inquiry {
  padding: 6rem 3rem;
  background: var(--pine-deep);
  position: relative;
  overflow: hidden;
}
.inquiry::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  border: 1px solid rgba(196,164,108,0.1);
  border-radius: 50%;
}
.inquiry::after {
  content: '';
  position: absolute; bottom: -150px; left: -80px;
  width: 350px; height: 350px;
  border: 1px solid rgba(196,164,108,0.08);
  border-radius: 50%;
}
.inquiry-inner {
  max-width: 900px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative; z-index: 2;
}
.inquiry-text .section-label { color: var(--gold); }
.inquiry-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 400; line-height: 1.3;
  color: var(--white);
  margin-bottom: 1rem;
}
.inquiry-text p {
  font-size: 0.9rem; font-weight: 300;
  line-height: 1.8; color: rgba(255,255,255,0.65);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem; font-weight: 300;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
/* Neon-green focus indicator — the brand pop */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--neon);
  box-shadow: 0 0 0 1px var(--neon), 0 0 12px rgba(223, 255, 0, 0.3);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--pine-deep); color: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  width: 100%; padding: 1rem;
  background: var(--gold);
  color: var(--pine-deep);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: all 0.3s;
  margin-top: 0.5rem;
}
.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.8rem; font-weight: 400;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(223, 255, 0, 0.12);
  border: 1px solid var(--neon);
  color: var(--white);
}
/* Light-form variant — pine-deep success treatment instead of neon-on-cream */
.inquiry--light .form-status.success {
  background: rgba(15, 61, 37, 0.08) !important;
  border: 1px solid var(--pine) !important;
  color: var(--pine-deep) !important;
}
.form-status.error {
  display: block;
  background: rgba(255, 80, 80, 0.1);
  border: 1px solid rgba(255, 120, 120, 0.6);
  color: rgba(255,255,255,0.9);
}

/* Light variant of the form (Contact page) */
.inquiry--light {
  background: var(--cream);
}
.inquiry--light .inquiry-text h2 { color: var(--pine-deep); }
.inquiry--light .inquiry-text p { color: #5a5a5a; }
.inquiry--light .form-group label { color: rgba(44,44,44,0.55); }
.inquiry--light .form-group input,
.inquiry--light .form-group select,
.inquiry--light .form-group textarea {
  background: rgba(255,255,255,0.6);
  border-color: rgba(196,164,108,0.4);
  color: var(--charcoal);
}
.inquiry--light .form-group input::placeholder,
.inquiry--light .form-group textarea::placeholder {
  color: rgba(44,44,44,0.35);
}
.inquiry--light .form-group select option {
  background: var(--white); color: var(--charcoal);
}
.inquiry--light .form-group input:focus,
.inquiry--light .form-group select:focus,
.inquiry--light .form-group textarea:focus {
  border-color: var(--pine);
  box-shadow: 0 0 0 2px var(--pine), 0 0 14px rgba(15, 61, 37, 0.18);
}
.inquiry--light::before,
.inquiry--light::after { display: none; }

/* ── CONTENT BLOCKS (About, Privacy, Terms) ── */
.content-block {
  padding: 5rem 3rem;
  max-width: 760px;
  margin: 0 auto;
}
.content-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--pine-deep);
  margin: 2.5rem 0 1.25rem;
  line-height: 1.3;
}
.content-block h2:first-child { margin-top: 0; }
.content-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--pine);
  margin: 2rem 0 0.75rem;
}
.content-block p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.content-block ul, .content-block ol {
  margin: 0 0 1.5rem 1.5rem;
}
.content-block li {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.content-block a {
  color: var(--pine);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}
.content-block a:hover { color: var(--pine-light); }

/* ── ABOUT — split feature ── */
.about-feature {
  padding: 6rem 3rem;
  background: var(--cream);
}
.about-feature-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-feature-text .section-label { display: inline-block; }
.about-feature-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 400; line-height: 1.3;
  color: var(--pine-deep);
  margin: 0.5rem 0 1.5rem;
}
.about-feature-text p {
  font-size: 1rem; font-weight: 400;
  line-height: 1.9; color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.about-feature-image {
  position: relative;
  height: 500px;
}
.about-feature-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-feature-image::after { display: none; }
.about-feature--reverse .about-feature-image::after { display: none; }

/* ── EXPERIENCES PAGE — alternating detail blocks (cream / pine-deep) ── */
.exp-detail {
  padding: 5rem 3rem;
}
.exp-detail:nth-of-type(odd) { background: var(--cream); }
.exp-detail:nth-of-type(even) {
  background: var(--pine-deep);
  color: var(--white);
}
.exp-detail:nth-of-type(even) .section-label { color: var(--gold); }
.exp-detail:nth-of-type(even) h2 { color: var(--white); }
.exp-detail:nth-of-type(even) > div p,
.exp-detail:nth-of-type(even) .exp-detail-text > p { color: rgba(255,255,255,0.85); }
.exp-detail:nth-of-type(even) .exp-detail-features li {
  color: var(--cream);
  border-color: rgba(196,164,108,0.25);
}
.exp-detail:nth-of-type(even) .exp-detail-features li::before {
  background: transparent;
  border-color: var(--gold);
}
.exp-detail:nth-of-type(even) .exp-detail-features li:last-child {
  border-bottom-color: rgba(196,164,108,0.25);
}
.exp-detail-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.exp-detail--reverse .exp-detail-inner > :first-child {
  order: 2;
}
.exp-detail-text .section-label { display: inline-block; }
.exp-detail-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 400; line-height: 1.3;
  color: var(--pine-deep);
  margin: 0.5rem 0 1.25rem;
}
.exp-detail-text > p {
  font-size: 1rem; font-weight: 400;
  line-height: 1.9; color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.exp-detail-features {
  list-style: none;
  margin-top: 1.5rem;
}
.exp-detail-features li {
  padding: 0.85rem 0;
  border-top: 1px solid rgba(196,164,108,0.3);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.6;
}
.exp-detail-features li::before {
  content: '';
  flex-shrink: 0;
  width: 9px; height: 9px;
  border: 1.5px solid var(--pine-deep);
  border-radius: 50%;
  background: transparent;
  box-sizing: border-box;
  margin-top: 0.35rem; /* aligns bullet with first-line cap-middle */
}
/* In dark exp-detail blocks (even-numbered), the bullet pops in neon yellow */
.exp-detail:nth-of-type(even) .exp-detail-features li::before {
  border-color: var(--neon);
  box-shadow: 0 0 6px rgba(223, 255, 0, 0.35);
}
.exp-detail-features li:last-child {
  border-bottom: 1px solid rgba(196,164,108,0.3);
}
.exp-detail-image {
  height: 460px;
  overflow: hidden;
  position: relative;
}
.exp-detail-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Paired image layout — primary (golf) + secondary (lifestyle) overlap */
.exp-detail-images {
  position: relative;
  height: 480px;
}
/* Primary (golf) photo dominates — golf is front and center */
.exp-detail-images .primary {
  width: 92%;
  height: 88%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 10px 32px rgba(0,0,0,0.22);
}
/* Secondary (lifestyle/activity) is a smaller corner accent */
.exp-detail-images .secondary {
  width: 42%;
  height: 42%;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  border: 6px solid var(--cream);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}
/* Subtle tonal adjustment on the user-owned fairway-walk photo so its
   bright-day saturation reads consistently with the rest of the imagery */
img[src*="photo-fairway-walk"] {
  filter: saturate(0.92) contrast(1.04) brightness(0.98);
}
/* On dark exp-detail blocks, the secondary border picks up the dark bg */
.exp-detail:nth-of-type(even) .exp-detail-images .secondary {
  border-color: var(--pine-deep);
}
/* Reverse layout — primary on right, secondary bottom-left */
.exp-detail--reverse .exp-detail-images .primary {
  left: auto;
  right: 0;
}
.exp-detail--reverse .exp-detail-images .secondary {
  right: auto;
  left: 0;
}

/* ── PRE-ARRANGED TRIPS / SAMPLE ITINERARIES (pine-deep) ── */
.retreats {
  padding: 5rem 3rem 6rem;
  background: var(--pine-deep);
  position: relative;
  color: var(--white);
}
.retreats-intro {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}
.retreats-intro .section-label { display: inline-block; color: var(--gold); }
.retreats-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 400; line-height: 1.3;
  color: var(--white);
  margin: 0.5rem 0 1.5rem;
}
.retreats-intro p {
  font-size: 1rem; font-weight: 400;
  line-height: 1.9; color: rgba(255,255,255,0.88);
  margin-bottom: 1.25rem;
}
.retreats-intro em {
  color: var(--gold-light);
  font-style: italic;
}

.retreats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
/* Itinerary cards — dark header (pine-deep) + cream body for clear circle visibility */
.retreat-card {
  background: var(--cream);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 36px rgba(0,0,0,0.22);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.retreat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.3);
}
.retreat-card-header {
  background: var(--pine-deep);
  padding: 2rem 2.25rem 2.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  border-bottom: 3px solid var(--gold);
}
.retreat-card-numeral {
  font-family: 'Montserrat', sans-serif; /* unambiguous "1" — Cormorant's 1 reads as I */
  font-size: 3.4rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
  padding: 0.2em 0.55em;
}
/* Hand-drawn neon yellow circle around the numeral — visible against pine-deep */
.retreat-card-numeral::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cellipse cx='50' cy='50' rx='46' ry='44' fill='none' stroke='%23DFFF00' stroke-width='3.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transform: rotate(-3deg);
  pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(223,255,0,0.45));
}
.retreat-card-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(196,164,108,0.15);
  border: 1px solid rgba(196,164,108,0.45);
  padding: 0.5rem 0.9rem;
  white-space: nowrap;
}
.retreat-card-body {
  padding: 2rem 2.25rem 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.retreat-card-meta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pine);
  margin-bottom: 0.6rem;
}
.retreat-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--pine-deep);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.retreat-card-body > p {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.retreat-includes {
  list-style: none;
  margin: 0 0 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(196,164,108,0.4);
}
.retreat-includes li {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--charcoal);
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.55;
}
.retreat-includes li::before {
  content: '';
  flex-shrink: 0;
  width: 9px; height: 9px;
  border: 1.5px solid var(--pine-deep);
  border-radius: 50%;
  background: transparent;
  box-sizing: border-box;
  margin-top: 0.32rem; /* aligns bullet with first-line cap-middle */
}
.retreat-card .btn-outline {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.7rem 1.8rem;
  font-size: 0.65rem;
}

/* ── PROCESS — "How a Trip Unfolds" 4-step section (About page) ── */
.process {
  background: var(--pine-deep);
  padding: 6rem 3rem;
  color: var(--white);
}
.process-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.process .section-label { color: var(--gold); display: inline-block; }
.process h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--white);
  margin: 0.5rem auto 0;
  max-width: 700px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
  text-align: left;
}
.process-step {
  position: relative;
  padding-top: 1rem;
}
.process-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.process-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.85rem;
}
.process-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
}
.process-step p {
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
}

/* ── CTA STRIP ── */
.cta-strip {
  padding: 5rem 3rem;
  background: var(--pine-deep);
  text-align: center;
  color: var(--white);
}
.cta-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300; line-height: 1.3;
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto; margin-right: auto;
}
.cta-strip h2 em { color: var(--gold-light); font-style: italic; }
.cta-strip p {
  font-size: 0.95rem; font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

/* ── FOOTER ── */
footer {
  padding: 4rem 3rem 2rem;
  background: #0a2918;
  text-align: center;
  border-top: 3px solid var(--neon); /* the neon yellow band where footer meets section above */
  position: relative;
}
.footer-logo { margin-bottom: 1.5rem; }
.footer-logo a { display: inline-block; }
.footer-logo img {
  height: 80px;
  width: auto;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2.25rem;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
  padding-bottom: 0.9rem;
}
/* Hand-drawn neon yellow underline beneath the tagline */
.footer-tagline::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 180px; height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M 4 7 C 40 2, 90 10, 130 5 C 160 2, 188 8, 196 6' fill='none' stroke='%23DFFF00' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}
.footer-links {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-links a {
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

.footer-social {
  display: flex; justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(196,164,108,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--neon);
  color: var(--pine-deep);
  border-color: var(--neon);
  box-shadow: 0 0 14px rgba(223, 255, 0, 0.4);
}
.footer-social svg {
  width: 16px; height: 16px;
}

.footer-divider {
  width: 80%; max-width: 600px;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0 auto 1.5rem;
}
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  font-size: 0.7rem; font-weight: 300;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}
.footer-meta a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-meta a:hover { color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* Reduce motion accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ── MOBILE / NARROW BREAKPOINT — hamburger kicks in at 880px ── */
@media (max-width: 880px) {
  nav { padding: 0.75rem 1.25rem; gap: 0.65rem; }
  nav.scrolled, nav.solid { padding: 0.65rem 1.25rem; }
  .nav-logo { height: 38px; }

  /* Dropdown menu — anchored to nav's actual bottom via position: absolute + top: 100% */
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--cream);
    padding: 1.5rem 1.5rem 2rem;
    gap: 1.25rem;
    transform: translateY(-150%);
    transition: transform 0.35s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    border-top: 1px solid rgba(196,164,108,0.2);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a {
    color: var(--pine-deep) !important;
    font-size: 0.95rem;
    width: 100%;
  }
  .nav-links a.active::after { display: none; }
  .nav-links a.active {
    color: var(--pine-deep) !important;
    border-left: 3px solid var(--gold);
    padding-left: 0.75rem;
  }

  /* CTA inside the dropdown — always pine-deep on cream menu, full width */
  .nav-links .nav-cta {
    border-color: var(--pine-deep) !important;
    color: var(--pine-deep) !important;
    width: auto;
    align-self: flex-start;
    margin-top: 0.5rem;
  }
  .nav-links .nav-cta:hover {
    background: var(--pine-deep) !important;
    border-color: var(--pine-deep) !important;
    color: var(--cream) !important;
  }
  .nav-toggle { display: block; }

  .page-hero { padding: 8rem 1.5rem 3.5rem; }
  .exp-grid { grid-template-columns: 1fr; max-width: 500px; }
  .exp-card { height: 400px; }
  .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-image { height: 350px; }
  .why-image::after { display: none; }
  .inquiry-inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 600px; }
  .intro, .experiences, .testimonial, .inquiry { padding: 4rem 1.5rem; }
  .why { padding: 4rem 1.5rem; }
  .about-feature { padding: 4rem 1.5rem; }
  .about-feature-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-feature-image { height: 350px; }
  .about-feature-image::after { display: none; }
  .exp-detail { padding: 4rem 1.5rem; }
  .exp-detail-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .exp-detail--reverse .exp-detail-inner > :first-child { order: 0; }
  .exp-detail-image { height: 320px; }
  .exp-detail-images { height: 380px; }
  .exp-detail-images .primary { width: 94%; height: 88%; }
  .exp-detail-images .secondary { width: 46%; height: 42%; border-width: 4px; }
  .cta-strip { padding: 4rem 1.5rem; }
  .content-block { padding: 4rem 1.5rem; }
  .retreats { padding: 4rem 1.5rem; }
  .retreats-grid { grid-template-columns: 1fr; gap: 2rem; max-width: 500px; }
  .retreat-card-numeral { font-size: 2.8rem; }
  .retreat-card-header { padding: 1.5rem 1.75rem 1.75rem; }
  .retreat-card-body { padding: 1.75rem 1.75rem 2rem; }
  .process { padding: 4rem 1.5rem; }
  .process-grid { grid-template-columns: 1fr; gap: 2.5rem; margin-top: 3rem; max-width: 480px; margin-left: auto; margin-right: auto; }
  footer { padding: 3rem 1.5rem 2rem; }
}
