/* ═══════════════════════════════════════════════════════
   EAGLES COUNTRY RESORT  ·  Shared Stylesheet v2
   ═══════════════════════════════════════════════════════ */

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

:root {
  --green:      #1B2B16;
  --green-mid:  #2D4520;
  --green-soft: #3E5E2C;
  --gold:       #C48A36;
  --gold-lt:    #D9A85A;
  --cream:      #F5EAD0;
  --cream-dk:   #E4D5B2;
  --ivory:      #FBF6EE;
  --brown-dk:   #2A1C10;
  --text:       #2A1C10;
  --text-mid:   #5A4A36;
  --text-mute:  #8A7A66;
}

html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--ivory); color: var(--text); overflow-x: hidden; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 4rem;
  transition: background .4s, padding .35s, box-shadow .4s;
}
nav.scrolled {
  background: rgba(27,43,22,.97); padding: .85rem 4rem;
  box-shadow: 0 2px 24px rgba(0,0,0,.35); backdrop-filter: blur(8px);
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.logo-mark { width: auto; height: 30px; flex-shrink: 0; fill: #C48A36; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  color: var(--cream); letter-spacing: .04em; font-weight: 700;
}
.logo-sub {
  font-family: 'Jost', sans-serif; font-size: .5rem;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); font-weight: 400;
}

/* Nav links */
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-family: 'Jost', sans-serif; font-size: .7rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(245,234,208,.82); text-decoration: none;
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform .3s; transform-origin: left;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-lt); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  font-family: 'Jost', sans-serif; font-size: .67rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--green); background: var(--gold);
  padding: .55rem 1.5rem; text-decoration: none;
  transition: background .2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-lt); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block; font-family: 'Jost', sans-serif;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  padding: .9rem 2.4rem; text-decoration: none; cursor: pointer; border: none;
  transition: background .2s, transform .2s, border-color .2s;
}
.btn-gold   { color: var(--green); background: var(--gold); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn-outline { color: var(--cream); border: 1px solid rgba(245,234,208,.45); background: transparent; }
.btn-outline:hover { border-color: var(--cream); background: rgba(255,255,255,.07); }
.btn-dark   { color: var(--cream); background: var(--green); border: 1px solid var(--green); }
.btn-dark:hover { background: var(--green-mid); }
.btn-sm {
  display: inline-block; font-family: 'Jost', sans-serif; font-size: .6rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--green);
  border: 1px solid var(--green); padding: .48rem 1.1rem;
  text-decoration: none; transition: background .2s, color .2s;
}
.btn-sm:hover { background: var(--green); color: var(--cream); }

/* ─── SECTION TYPOGRAPHY ─── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 4rem; }

.eyebrow {
  font-family: 'Jost', sans-serif; font-size: .6rem;
  letter-spacing: .38em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; justify-content: center; gap: .8rem;
  margin-bottom: 1rem;
}
.eyebrow::before, .eyebrow::after {
  content: ''; display: block; width: 26px; height: 1px; background: var(--gold);
}
.eyebrow.left { justify-content: flex-start; }
.eyebrow.left::before { display: none; }

.sh { /* section heading */
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem,3.8vw,3rem); font-weight: 400;
  color: var(--green); line-height: 1.12; margin-bottom: 1rem;
}
.sh em { font-style: italic; color: var(--green-soft); }
.sh.light { color: var(--cream); }
.sh.light em { color: var(--gold-lt); }

.lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--text-mid); line-height: 1.85;
  font-weight: 300; max-width: 580px; margin: 0 auto;
}
.lead.light { color: rgba(245,234,208,.72); }
.lead.left  { margin: 0; }

/* ─── REVEAL ANIMATION ─── */
.r { opacity: 0; transform: translateY(20px); transition: opacity .75s ease, transform .75s ease; }
.r.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

/* ─── STRIP ─── */
.strip {
  background: var(--green); display: flex; justify-content: center;
}
.strip-cell {
  flex: 1; max-width: 250px;
  display: flex; align-items: center; gap: 1rem; padding: 1.3rem 2.2rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.strip-cell:last-child { border: none; }
.strip-ico { font-size: 1.4rem; flex-shrink: 0; }
.strip-lbl { font-family: 'Jost',sans-serif; font-size: .56rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(245,234,208,.5); margin-bottom: .12rem; }
.strip-val { font-family: 'Cormorant Garamond',serif; font-size: 1rem; color: var(--cream); font-weight: 400; }

/* ─── BOOKING SECTION ─── */
.booking-section { padding: 0; background: #ffffff; }
.booking-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}
.booking-img {
  overflow: hidden;
}
.booking-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.booking-content {
  background: #ffffff;
  padding: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.booking-box {
  max-width: 100%;

}
.bk-title { font-family: 'Playfair Display',serif; font-size: 2rem; font-weight: 400; color: var(--cream); text-align: center; margin-bottom: .5rem; }
.bk-sub   { font-family: 'Cormorant Garamond',serif; font-size: 1.05rem; color: rgba(245,234,208,.6); text-align: center; font-weight: 300; margin-bottom: 3rem; }
.bk-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.bk-full  { grid-column: 1/-1; }
.bk-label { font-family: 'Jost',sans-serif; font-size: .58rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: .35rem; display: block; }
.bk-input, .bk-select, .bk-textarea {
  width: 100%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  color: var(--cream); padding: .78rem 1rem; font-family: 'Jost',sans-serif; font-size: .88rem;
  outline: none; transition: border-color .2s;
}
.bk-input:focus, .bk-select:focus, .bk-textarea:focus { border-color: var(--gold); }
.bk-input::placeholder { color: rgba(245,234,208,.28); }
.bk-select option { background: var(--green); color: var(--cream); }
.bk-textarea { resize: vertical; min-height: 86px; }
.bk-submit { text-align: center; margin-top: 2rem; }
.bk-note { font-family: 'Cormorant Garamond',serif; font-size: .9rem; color: rgba(245,234,208,.38); margin-top: .9rem; }

/* ─── FOOTER ─── */
footer { background: #0D180C; }
.ft-main {
  max-width: 1200px; margin: 0 auto; padding: 5rem 4rem 4rem;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ft-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 1.4rem; }
.ft-logo .logo-mark { height: 26px; }
.ft-desc { font-family: 'Cormorant Garamond',serif; font-size: .98rem; color: rgba(245,234,208,.5); line-height: 1.8; font-weight: 300; margin-bottom: 1.2rem; }
.ft-col-title { font-family: 'Jost',sans-serif; font-size: .58rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.3rem; }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: .72rem; }
.ft-links a { font-family: 'Cormorant Garamond',serif; font-size: .98rem; color: rgba(245,234,208,.55); text-decoration: none; font-weight: 300; transition: color .2s; }
.ft-links a:hover { color: var(--gold-lt); }
.ft-ci { font-family: 'Cormorant Garamond',serif; font-size: .98rem; color: rgba(245,234,208,.55); line-height: 1.65; margin-bottom: .9rem; font-weight: 300; }
.ft-ci strong { display: block; font-family: 'Jost',sans-serif; font-size: .56rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: .2rem; }
.ft-bottom {
  max-width: 1200px; margin: 0 auto; padding: 1.4rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
}
.ft-copy { font-family: 'Jost',sans-serif; font-size: .62rem; color: rgba(245,234,208,.26); letter-spacing: .05em; }
.ft-soc { display: flex; gap: 1.4rem; }
.ft-soc a { font-family: 'Jost',sans-serif; font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(245,234,208,.32); text-decoration: none; transition: color .2s; }
.ft-soc a:hover { color: var(--gold); }

/* ─── RESPONSIVE ─── */
@media (max-width: 880px) {
  nav { padding: 1rem 2rem; }
  nav.scrolled { padding: .7rem 2rem; }
  .nav-links { display: none; }
  .wrap { padding: 0 2rem; }
  .ft-main { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 3rem 2rem; }
  .ft-bottom { padding: 1.2rem 2rem; flex-direction: column; gap: .8rem; }
}
