/* ============================================================
   BIRDIES & BOGEYS — warm editorial luxury, multi-page
   ivory · pine green · charcoal navy · brass hairlines
   Motion: ambient Ken Burns (self-moving images) + soft parallax
   ============================================================ */
:root {
  --ivory: #F5F1E8;
  --paper: #FBF9F4;
  --sand:  #E9E2D3;
  --pine:  #24382F;
  --pine-deep: #16261F;
  --navy:  #1D2836;
  --ink:   #212832;
  --muted: #6E7268;
  --brass: #A08A62;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", "Helvetica Neue", sans-serif;
  --script:"Dancing Script", cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.15; }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); color: var(--pine); }
h2 em { font-style: italic; font-weight: 400; }
h3 { font-size: 1.45rem; color: var(--pine); }
section { position: relative; }

.kicker {
  font-family: var(--sans); font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.32em;
  font-size: 0.72rem; color: var(--brass); margin-bottom: 1.1rem;
}
.kicker.light { color: #C9B384; }
.center { text-align: center; }

.script-accent {
  font-family: var(--script); font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: #EDE5D2; margin-bottom: 0.6rem;
}
.script-accent-dark {
  font-family: var(--script); font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--pine); margin-top: 1.6rem;
}
.script-inline { font-family: var(--script); font-size: 1.25em; color: inherit; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; font-family: var(--sans); font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.72rem;
  padding: 1rem 2.4rem; text-decoration: none; cursor: pointer;
  transition: all 0.35s ease; border: 1px solid transparent;
}
.btn-light { color: #fff; border-color: rgba(255,255,255,0.65); background: rgba(15,25,20,0.25); backdrop-filter: blur(3px); }
.btn-light:hover { background: #fff; color: var(--pine-deep); border-color: #fff; }
.btn-dark { background: var(--pine); color: var(--ivory); border-color: var(--pine); }
.btn-dark:hover { background: var(--pine-deep); }
.btn-outline { color: var(--pine); border-color: var(--pine); }
.btn-outline:hover { background: var(--pine); color: var(--ivory); }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 3vw;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  color: #fff;
}
.nav.solid { background: rgba(251,249,244,0.96); color: var(--ink); box-shadow: 0 1px 0 rgba(0,0,0,0.07); padding: 0.75rem 3vw; }
.nav a { color: inherit; text-decoration: none; }
.nav-brand { display: flex; align-items: baseline; gap: 0.7rem; white-space: nowrap; }
.brand-mark { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; letter-spacing: 0.02em; }
.brand-mark em { font-style: normal; font-size: 1.05rem; color: var(--brass); }
.brand-name { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.3em; font-weight: 400; opacity: 0.85; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.22em;
  font-weight: 400; opacity: 0.85; padding-bottom: 0.2rem;
  border-bottom: 1px solid transparent; transition: opacity .3s, border-color .3s;
}
.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; border-bottom-color: var(--brass); }
.nav-cta { border: 1px solid currentColor; padding: 0.55rem 1.3rem; border-bottom-width: 1px !important; }
.nav-phone { font-size: 0.8rem; letter-spacing: 0.08em; font-weight: 400; white-space: nowrap; }
@media (max-width: 1080px) {
  .brand-name { display: none; }
  .nav-phone { display: none; }
  .nav-links { gap: 1.1rem; }
  .nav-links a { font-size: 0.66rem; letter-spacing: 0.14em; }
  .nav-cta { display: none; }
}

/* ---------- ambient motion (self-moving pictures) ---------- */
.kb { overflow: hidden; position: relative; }
.kb img {
  width: 100%; height: 100%; object-fit: cover;
  will-change: transform;
  animation-duration: 32s; animation-timing-function: ease-in-out;
  animation-iteration-count: infinite; animation-direction: alternate;
}
.kb-a img { animation-name: kb-drift-a; }
.kb-b img { animation-name: kb-drift-b; }
.kb-c img { animation-name: kb-drift-c; }
@keyframes kb-drift-a { from { transform: scale(1.06) translate(0,0); } to { transform: scale(1.16) translate(-2.2%, -1.4%); } }
@keyframes kb-drift-b { from { transform: scale(1.16) translate(1.8%, 1%); } to { transform: scale(1.06) translate(0,0); } }
@keyframes kb-drift-c { from { transform: scale(1.08) translate(-1.6%, 1%); } to { transform: scale(1.15) translate(1.4%, -1.2%); } }
@media (prefers-reduced-motion: reduce) { .kb img { animation: none; } }

/* ---------- page heroes ---------- */
.hero {
  position: relative; height: 92vh; min-height: 520px;
  display: grid; place-items: center; text-align: center; color: #fff;
}
.hero.hero-short { height: 64vh; min-height: 420px; }
.hero .kb { position: absolute; inset: 0; }
.hero .kb img { height: 100%; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,16,13,0.45) 0%, rgba(10,16,13,0.16) 40%, rgba(10,16,13,0.45) 100%);
}
.hero-copy { position: relative; z-index: 2; padding: 0 6vw; }
.hero-copy h1 {
  font-size: clamp(2.3rem, 5.6vw, 4.6rem); font-weight: 500;
  max-width: 18ch; margin: 0 auto; text-shadow: 0 2px 30px rgba(0,0,0,0.45);
}
.hero-copy .btn { margin-top: 2.2rem; }
.hero-sub {
  margin-top: 1.2rem; font-size: 0.95rem; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.88); max-width: 52ch; margin-left: auto; margin-right: auto;
}
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  color: rgba(255,255,255,0.85); font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.34em; transition: opacity 0.5s ease;
}
.scroll-hint span { display: block; text-align: center; animation: bob 2s infinite ease-in-out; }
@keyframes bob { 50% { transform: translateY(5px); } }

/* ---------- parallax ---------- */
[data-parallax] { will-change: transform; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- shared section spacing ---------- */
.sec { padding: clamp(5rem, 10vw, 8.5rem) 6vw; }
.sec-paper { background: var(--paper); }
.sec-ivory { background: var(--ivory); }
.sec-sand  { background: var(--sand); }
.sec-pine  { background: var(--pine-deep); }
.sec-navy  { background: var(--navy); }
.inner { max-width: 1180px; margin: 0 auto; }
.inner-narrow { max-width: 780px; margin: 0 auto; }

/* ---------- intro / editorial split ---------- */
.split {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.split.flip { grid-template-columns: 0.9fr 1.1fr; }
.split-text p { margin-bottom: 1.2rem; max-width: 54ch; }
.split-text h2 { margin-bottom: 1.6rem; }
.split-photo { position: relative; }
.split-photo .kb { aspect-ratio: 3/3.55; }
.split-photo.landscape .kb { aspect-ratio: 4/3; }
.split-photo::after {
  content: ""; position: absolute; inset: 1.2rem -1.2rem -1.2rem 1.2rem;
  border: 1px solid var(--brass); z-index: -1;
}
@media (max-width: 860px) { .split, .split.flip { grid-template-columns: 1fr; } }

/* ---------- arrive checklist ---------- */
.arrive-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.4rem;
  margin-top: 3.5rem;
}
.arrive-item { text-align: center; padding: 0 0.4rem; }
.arrive-icon {
  width: 52px; height: 52px; margin: 0 auto 1.3rem; border: 1px solid var(--brass);
  border-radius: 50%; display: grid; place-items: center; color: var(--brass);
  font-family: var(--serif); font-size: 1.05rem; font-style: italic;
}
.arrive-item h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.arrive-item p { font-size: 0.92rem; color: var(--muted); }
.arrive-tag { margin-top: 3.6rem; font-size: 1.15rem; }
@media (max-width: 960px) { .arrive-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .arrive-grid { grid-template-columns: 1fr; } }

/* ---------- trip cards ---------- */
.trip-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin-top: 3.2rem;
}
.trip-card { background: #fff; box-shadow: 0 18px 50px -28px rgba(30,40,35,0.35); text-decoration: none; color: inherit; display: block; }
.trip-card .kb { aspect-ratio: 4/3.3; }
.trip-body { padding: 1.8rem 1.7rem 2rem; }
.trip-body h3 { margin-bottom: 0.6rem; }
.trip-body p { font-size: 0.95rem; color: var(--muted); }
.trip-more { display: inline-block; margin-top: 1rem; font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass); }
@media (max-width: 900px) { .trip-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }

/* ---------- event rows ---------- */
.event-rows { margin-top: 3.4rem; display: grid; gap: 3.6rem; }
.event-row {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.8rem, 4vw, 3.4rem);
  align-items: center;
}
.event-row:nth-child(even) { direction: rtl; }
.event-row:nth-child(even) > * { direction: ltr; }
.event-row .kb { aspect-ratio: 16/10.5; }
.event-date {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.28em;
  color: var(--brass); margin-bottom: 0.7rem; font-weight: 400;
}
.event-info h3 { font-size: 1.8rem; margin-bottom: 0.7rem; }
.event-info p { color: var(--muted); max-width: 46ch; }
@media (max-width: 800px) { .event-row, .event-row:nth-child(even) { grid-template-columns: 1fr; direction: ltr; } }

/* ---------- quote band ---------- */
.quote-band { text-align: center; }
.quote-band blockquote p {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.4;
  color: var(--ivory); max-width: 30ch; margin: 0 auto 1.8rem;
}
.quote-band cite {
  font-style: normal; font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.3em; color: var(--brass);
}

/* ---------- gallery ---------- */
.gallery-grid { columns: 4 240px; column-gap: 0.9rem; margin-top: 3.2rem; }
.gallery-grid .kb { margin-bottom: 0.9rem; break-inside: avoid; }
.gallery-grid img { position: relative; }

/* ---------- reviews ---------- */
.reviews-copy { margin: 1.4rem auto 2.2rem; color: var(--muted); }
.reviews-copy em { font-family: var(--serif); font-size: 1.15em; color: var(--ink); }

/* ---------- upcoming form ---------- */
.upcoming-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.upcoming-text p { max-width: 46ch; margin-bottom: 1rem; }
.upcoming-text h2 { margin-bottom: 1.4rem; }
.upcoming-form {
  background: #fff; padding: 2.6rem; box-shadow: 0 24px 60px -30px rgba(30,40,35,0.4);
  display: grid; gap: 1rem;
}
.upcoming-form h3 { margin-bottom: 0.4rem; }
.upcoming-form input, .upcoming-form select {
  font-family: var(--sans); font-weight: 300; font-size: 0.95rem;
  padding: 0.95rem 1.1rem; border: 1px solid #D8D2C2; background: var(--paper);
  color: var(--ink); outline: none; width: 100%;
}
.upcoming-form input:focus, .upcoming-form select:focus { border-color: var(--pine); }
.upcoming-form .btn { border: none; }
.form-note { font-size: 0.78rem; color: var(--muted); text-align: center; }
@media (max-width: 860px) { .upcoming-inner { grid-template-columns: 1fr; } }

/* ---------- merch / dark CTA bands ---------- */
.band-center { max-width: 760px; margin: 0 auto; text-align: center; }
.band-center h2 { color: var(--ivory); margin-bottom: 1.2rem; }
.band-center p { color: rgba(245,241,232,0.75); margin-bottom: 2.2rem; }
.band-center .kicker { color: #C9B384; }
.band-center .btn-outline { color: var(--ivory); border-color: rgba(245,241,232,0.6); }
.band-center .btn-outline:hover { background: var(--ivory); color: var(--navy); }

/* ---------- about ---------- */
.about-grid {
  display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(3rem, 6vw, 5.5rem);
  align-items: center;
}
.about-photo img { border-radius: 50%; aspect-ratio: 1; object-fit: cover; filter: grayscale(12%); }
.about-photo { position: relative; padding: 1.4rem; }
.about-photo::before { content: ""; position: absolute; inset: 0; border: 1px solid var(--brass); border-radius: 50%; }
.about-text h2 { margin-bottom: 1.4rem; }
.about-text p { margin-bottom: 1.1rem; max-width: 58ch; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* ---------- contact ---------- */
.contact h2 { color: var(--ivory); }
.contact-copy { color: rgba(245,241,232,0.7); margin: 1.2rem 0 3rem; }
.contact-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
  max-width: 940px; margin: 0 auto;
}
.contact-card {
  border: 1px solid rgba(245,241,232,0.22); padding: 2rem 1.6rem;
  text-align: center; text-decoration: none; display: grid; gap: 0.5rem;
  transition: border-color 0.35s ease, background 0.35s ease;
}
a.contact-card:hover { border-color: var(--brass); background: rgba(255,255,255,0.04); }
.contact-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--brass); }
.contact-value { font-family: var(--serif); font-size: 1.4rem; color: var(--ivory); }
@media (max-width: 760px) { .contact-cards { grid-template-columns: 1fr; max-width: 420px; } }

/* ---------- footer ---------- */
.footer { background: #101B15; padding: 3.5rem 6vw 2.6rem; text-align: center; color: rgba(245,241,232,0.65); }
.footer-brand { display: flex; align-items: center; justify-content: center; }
.footer-logo { width: 190px; background: var(--paper); padding: 0.9rem 1.2rem; border-radius: 2px; }
.footer-nav { display: flex; gap: 1.8rem; justify-content: center; margin: 1.6rem 0 0.4rem; flex-wrap: wrap; }
.footer-nav a { color: rgba(245,241,232,0.75); text-decoration: none; font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; }
.footer-nav a:hover { color: var(--ivory); }
.footer-tag { color: var(--brass); margin: 0.9rem 0 1.6rem; font-size: 1.3rem; }
.footer-legal { font-size: 0.78rem; }
.footer-legal a { color: inherit; }
