/* ============================================================
   Faithful Oaks Retreat — faithfuloaksretreat.com
   Palette & type sourced from the Faithful Oaks Welcome Guide
   ============================================================ */
:root {
  --forest:  #2d5016;
  --green:   #3a6b35;
  --sage:    #6b8f71;
  --brown:   #5c4033;
  --sienna:  #a0522d;
  --gold:    #b8860b;
  --tan:     #d2b48c;
  --cream:   #fff8dc;
  --paper:   #fdfaf0;
  --ink:     #2c2a24;
  --shadow:  0 10px 30px rgba(45, 80, 22, .14);
  --shadow-lg: 0 22px 60px rgba(45, 80, 22, .22);
  --radius:  14px;
  --font: "Helvetica Neue", Helvetica, Arial, "Nimbus Sans", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--green); }

h1, h2, h3, h4 { font-family: var(--font); line-height: 1.15; color: var(--forest); }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 22px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 14px 0;
}
.site-header.solid {
  background: rgba(45, 80, 22, .96);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
  padding: 6px 0;
}
.nav-row { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--cream); border: 2px solid var(--gold);
  transition: transform .5s ease;
}
.brand:hover img { transform: rotate(8deg) scale(1.06); }
.brand-name { color: var(--cream); font-weight: 700; font-size: 1.18rem; letter-spacing: .04em; }
.brand-name small { display: block; font-weight: 400; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--tan); }

.main-nav { display: flex; gap: 4px; align-items: center; }
.main-nav a {
  color: var(--cream); text-decoration: none; font-size: .92rem; font-weight: 600;
  padding: 9px 13px; border-radius: 8px; position: relative; letter-spacing: .03em;
  transition: color .25s;
}
.main-nav a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 5px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: #fff; }
.main-nav a.nav-book {
  background: var(--gold); color: #fff; border-radius: 999px; padding: 8px 18px; margin-left: 6px;
  box-shadow: 0 6px 16px rgba(184,134,11,.4); transition: transform .25s, background .25s;
}
.main-nav a.nav-book::after { display: none; }
.main-nav a.nav-book:hover { background: #9c7209; transform: translateY(-2px); color: #fff; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; position: relative; z-index: 110;
}
.nav-toggle span {
  display: block; width: 26px; height: 3px; background: var(--cream);
  margin: 5px auto; border-radius: 2px; transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 0; background: rgba(45, 80, 22, .97);
    flex-direction: column; justify-content: center; gap: 10px;
    opacity: 0; pointer-events: none; transition: opacity .3s;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; }
  .main-nav a { font-size: 1.35rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; overflow: hidden;
}
.hero.short { min-height: 62vh; }
.hero-bg {
  position: absolute; inset: -6%;
  background-size: cover; background-position: center;
  animation: kenburns 22s ease-in-out infinite alternate;
  will-change: transform; backface-visibility: hidden; transform: translateZ(0);
}
@keyframes kenburns {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.12) translateY(-2%); }
}
/* Disable the zoom pan on touch/small screens — it jitters on mobile GPUs.
   inset:-6% still fully covers the hero without any transform. */
@media (max-width: 768px) {
  .hero-bg { animation: none; transform: none; }
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(24,40,12,.55) 0%, rgba(24,40,12,.28) 45%, rgba(45,80,22,.78) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 120px 22px 90px; max-width: 900px; }
.hero-kicker {
  display: inline-block; letter-spacing: .34em; text-transform: uppercase; font-size: .8rem;
  color: var(--cream); border: 1px solid rgba(255,248,220,.55); padding: 8px 18px; border-radius: 999px;
  backdrop-filter: blur(3px); background: rgba(45,80,22,.25);
  animation: fadeDown 1s .15s both;
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.6rem); color: #fff; margin: 22px 0 10px;
  text-shadow: 0 4px 26px rgba(0,0,0,.45); letter-spacing: .01em;
  animation: fadeUp 1s .35s both;
}
.hero .tagline {
  font-size: clamp(1.05rem, 2.4vw, 1.4rem); color: var(--cream); font-weight: 400;
  animation: fadeUp 1s .55s both;
}
.hero .address { margin-top: 14px; color: var(--tan); font-size: .95rem; letter-spacing: .12em; animation: fadeUp 1s .7s both; }
.hero-cta { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fadeUp 1s .85s both; }

.btn {
  display: inline-block; text-decoration: none; font-weight: 700; letter-spacing: .05em;
  padding: 14px 28px; border-radius: 999px; transition: transform .25s ease, box-shadow .25s ease, background .25s;
}
.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 8px 24px rgba(184,134,11,.4); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(184,134,11,.5); }
.btn-ghost { border: 2px solid rgba(255,248,220,.8); color: var(--cream); }
.btn-ghost:hover { background: rgba(255,248,220,.15); transform: translateY(-3px); }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 8px 24px rgba(58,107,53,.35); }
.btn-green:hover { transform: translateY(-3px); background: var(--forest); }

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  color: var(--cream); font-size: 1.6rem; animation: bob 2s ease-in-out infinite; text-decoration: none;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 10px); } }
@keyframes fadeUp   { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-22px); } to { opacity: 1; transform: none; } }

/* ---------- Sections ---------- */
.section { padding: 84px 0; position: relative; }
.section.alt { background: linear-gradient(180deg, #f4efdd, var(--cream)); }
.section.dark { background: linear-gradient(160deg, var(--forest), #1f3a0f); color: var(--cream); }
.section.dark h2, .section.dark h3 { color: var(--cream); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-head .eyebrow {
  color: var(--gold); text-transform: uppercase; letter-spacing: .3em; font-size: .78rem; font-weight: 700;
}
.section-head h2 { font-size: clamp(1.9rem, 4.4vw, 2.7rem); margin: 10px 0 14px; }
.section-head p { color: #5a5648; }
.section.dark .section-head p { color: var(--tan); }
.leaf-divider { display: block; margin: 14px auto 0; width: 130px; height: 14px; opacity: .8; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; } .reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; } .reveal.d4 { transition-delay: .4s; }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.card {
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  transition: transform .35s ease, box-shadow .35s ease; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card .card-img { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.card:hover .card-img img { transform: scale(1.08); }
.card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.25rem; margin-bottom: 8px; }
.card-body p { font-size: .95rem; color: #57534a; }
.chip {
  position: absolute; top: 14px; left: 14px; background: rgba(45,80,22,.88); color: var(--cream);
  padding: 5px 13px; border-radius: 999px; font-size: .75rem; font-weight: 700; letter-spacing: .06em;
  backdrop-filter: blur(3px);
}
.chip.gold { background: rgba(184,134,11,.92); }
.card-link { margin-top: auto; padding-top: 14px; font-weight: 700; text-decoration: none; color: var(--sienna); font-size: .92rem; letter-spacing: .04em; }
.card-link:hover { color: var(--gold); }

/* info panels */
.panel {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 30px 32px; border-top: 5px solid var(--green);
}
.panel.gold { border-top-color: var(--gold); }
.panel.brown { border-top-color: var(--brown); }
.panel.sienna { border-top-color: var(--sienna); }
.panel h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; font-size: 1.22rem; }
.panel ul { padding-left: 20px; }
.panel li { margin-bottom: 9px; font-size: .96rem; }
.panel .icon { font-size: 1.5rem; }

/* rule list */
.rule-list { list-style: none; padding: 0; }
.rule-list li {
  padding: 12px 0 12px 38px; position: relative; border-bottom: 1px dashed #e4dcc2; font-size: .98rem;
}
.rule-list li::before {
  content: "🌿"; position: absolute; left: 4px; top: 10px; font-size: 1.05rem;
}
.rule-list li:last-child { border-bottom: 0; }

/* stat counters */
.stats-row { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-top: 40px; }
.stat {
  text-align: center; min-width: 160px; padding: 26px 30px; border-radius: var(--radius);
  background: rgba(255,248,220,.08); border: 1px solid rgba(255,248,220,.22);
}
.stat b { display: block; font-size: 2.6rem; color: var(--gold); font-weight: 800; }
.stat span { font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; color: var(--tan); }

/* gallery strip */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery a { border-radius: 12px; overflow: hidden; display: block; position: relative; box-shadow: var(--shadow); }
.gallery img { aspect-ratio: 4/3; object-fit: cover; width: 100%; height: 100%; transition: transform .6s ease; }
.gallery a:hover img { transform: scale(1.09); }
.gallery a:nth-child(1) { grid-row: span 2; }
.gallery a:nth-child(1) img { aspect-ratio: auto; height: 100%; }
@media (max-width: 760px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Place feature rows (Top 10) ---------- */
.place {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 0; background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); margin-bottom: 42px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.place:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.place:nth-child(even) .place-img { order: 2; }
.place-img { position: relative; min-height: 300px; overflow: hidden; }
.place-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.place:hover .place-img img { transform: scale(1.07); }
.place-num {
  position: absolute; top: 16px; left: 16px; width: 54px; height: 54px; border-radius: 50%;
  background: var(--gold); color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; box-shadow: 0 6px 18px rgba(0,0,0,.3); z-index: 2;
}
.place-body { padding: 34px 36px; }
.place-body .meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 16px; }
.meta-chip {
  background: var(--cream); border: 1px solid var(--tan); color: var(--brown);
  padding: 4px 12px; font-size: .78rem; border-radius: 999px; font-weight: 600;
}
.place-body h3 { font-size: 1.5rem; }
.place-body p { font-size: .95rem; color: #55503f; margin-bottom: 12px; }
.tip-box {
  background: linear-gradient(120deg, #f7f2db, var(--cream)); border-left: 4px solid var(--gold);
  padding: 13px 16px; border-radius: 8px; font-size: .9rem; color: var(--brown);
}
.tip-box b { color: var(--sienna); text-transform: uppercase; letter-spacing: .1em; font-size: .74rem; display: block; margin-bottom: 4px; }
@media (max-width: 820px) {
  .place { grid-template-columns: 1fr; }
  .place:nth-child(even) .place-img { order: 0; }
  .place-img { min-height: 230px; }
}

/* ---------- Dining rows ---------- */
.dine-list { display: grid; gap: 18px; }
.dine {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px 28px;
  display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start;
  transition: transform .3s ease, box-shadow .3s ease; border-left: 5px solid var(--green);
}
.dine:hover { transform: translateX(8px); box-shadow: var(--shadow-lg); }
.dine .dine-icon { font-size: 2rem; line-height: 1; padding-top: 4px; }
.dine h3 { font-size: 1.18rem; }
.dine .cuisine { color: var(--gold); font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.dine .addr { color: #6b6656; font-size: .88rem; margin: 4px 0 8px; }
.dine p { font-size: .93rem; color: #55503f; }

/* ---------- Birding ---------- */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 34px;
}
.filter-bar button {
  border: 2px solid var(--sage); background: #fff; color: var(--forest); cursor: pointer;
  padding: 9px 20px; border-radius: 999px; font-family: var(--font); font-weight: 700; font-size: .88rem;
  transition: all .25s ease;
}
.filter-bar button:hover { border-color: var(--gold); transform: translateY(-2px); }
.filter-bar button.active { background: var(--forest); border-color: var(--forest); color: var(--cream); }
.search-box {
  display: block; margin: 0 auto 22px; width: min(430px, 100%); padding: 13px 22px;
  border-radius: 999px; border: 2px solid var(--tan); font-family: var(--font); font-size: 1rem;
  background: #fff; color: var(--ink); outline: none; transition: border-color .25s, box-shadow .25s;
}
.search-box:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(184,134,11,.15); }

.species-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(235px, 1fr)); gap: 22px; }
.sp-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease; position: relative;
  animation: cardIn .5s ease both;
}
@keyframes cardIn { from { opacity: 0; transform: translateY(20px) scale(.97); } to { opacity: 1; transform: none; } }
.sp-card:hover { transform: translateY(-7px) scale(1.015); box-shadow: var(--shadow-lg); }
.sp-card .sp-img { aspect-ratio: 1/1; overflow: hidden; position: relative; }
.sp-card .sp-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.sp-card:hover .sp-img img { transform: scale(1.1); }
.sp-card .sp-body { padding: 15px 17px 18px; }
.sp-card h3 { font-size: 1.04rem; margin-bottom: 2px; }
.sp-card .sci { font-style: italic; color: #837c66; font-size: .8rem; }
.rarity {
  position: absolute; top: 12px; right: 12px; padding: 4px 11px; border-radius: 999px;
  font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: #fff; background: var(--green); box-shadow: 0 3px 10px rgba(0,0,0,.25);
}
.rarity.r-fairly { background: var(--sage); }
.rarity.r-uncommon { background: var(--sienna); }
.rarity.r-rare { background: var(--brown); }

/* species modal */
.modal-veil {
  position: fixed; inset: 0; background: rgba(31,42,18,.72); z-index: 200;
  display: none; align-items: center; justify-content: center; padding: 24px;
  backdrop-filter: blur(4px);
}
.modal-veil.open { display: flex; animation: veilIn .25s ease; }
@keyframes veilIn { from { opacity: 0; } }
.modal {
  background: var(--paper); max-width: 880px; width: 100%; max-height: 90vh; overflow-y: auto;
  border-radius: 18px; box-shadow: 0 40px 120px rgba(0,0,0,.5); position: relative;
  animation: modalIn .35s cubic-bezier(.2,.9,.3,1.2);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(40px) scale(.96); } }
.modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 5; width: 42px; height: 42px; border-radius: 50%;
  border: 0; background: rgba(45,80,22,.85); color: var(--cream); font-size: 1.3rem; cursor: pointer;
  transition: transform .25s, background .25s;
}
.modal-close:hover { transform: rotate(90deg); background: var(--sienna); }
.modal-grid { display: grid; grid-template-columns: 1fr 1.15fr; }
.modal-photo { position: relative; min-height: 320px; }
.modal-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.modal-info { padding: 32px 34px; }
.modal-info h2 { font-size: 1.7rem; }
.modal-info .sci { font-style: italic; color: #8a8168; margin-bottom: 14px; }
.modal-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.field { margin-bottom: 13px; }
.field b {
  display: block; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 2px;
}
.field p { font-size: .92rem; }
.listen-btn {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 10px; text-decoration: none;
  background: var(--green); color: #fff; padding: 11px 22px; border-radius: 999px; font-weight: 700; font-size: .9rem;
  transition: transform .25s, background .25s;
}
.listen-btn:hover { transform: translateY(-2px); background: var(--forest); }
@media (max-width: 720px) { .modal-grid { grid-template-columns: 1fr; } .modal-photo { min-height: 240px; } }

/* trails */
.trail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.trail-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .35s, box-shadow .35s; }
.trail-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.trail-card .trail-img { aspect-ratio: 16/9; overflow: hidden; position: relative; }
.trail-card .trail-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.trail-card:hover .trail-img img { transform: scale(1.07); }
.trail-body { padding: 24px 26px 28px; }
.trail-body h3 { font-size: 1.28rem; margin-bottom: 6px; }
.trail-body .loc { color: var(--sienna); font-size: .85rem; font-weight: 700; margin-bottom: 12px; }
.trail-stats { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.trail-body p { font-size: .92rem; color: #55503f; margin-bottom: 14px; }
.top-birds { background: var(--cream); border-radius: 10px; padding: 13px 16px; font-size: .87rem; }
.top-birds b { color: var(--forest); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; display: block; margin-bottom: 6px; }
.top-birds span { display: inline-block; margin: 2px 6px 2px 0; }

/* checklist */
.checklist-cols { columns: 2; column-gap: 40px; }
@media (max-width: 700px) { .checklist-cols { columns: 1; } }
.check-group-title {
  break-after: avoid; font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  font-weight: 800; margin: 18px 0 8px;
}
.check-item {
  display: flex; align-items: center; gap: 12px; padding: 8px 10px; border-radius: 8px; cursor: pointer;
  break-inside: avoid; transition: background .2s;
}
.check-item:hover { background: #f4eed6; }
.check-item input { width: 19px; height: 19px; accent-color: var(--green); cursor: pointer; }
.check-item span { font-size: .95rem; }
.check-item.done span { text-decoration: line-through; color: #9a9179; }
.check-progress { text-align: center; margin-bottom: 26px; font-weight: 700; color: var(--forest); }
.progress-track { height: 10px; background: #e8e0c2; border-radius: 999px; overflow: hidden; max-width: 420px; margin: 10px auto 0; }
.progress-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--green), var(--gold)); border-radius: 999px; transition: width .6s cubic-bezier(.2,.8,.3,1); }

/* tips */
.tips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; }
.tip-card {
  background: #fff; border-radius: var(--radius); padding: 26px 26px 24px; box-shadow: var(--shadow);
  position: relative; transition: transform .3s, box-shadow .3s;
}
.tip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tip-card .tip-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--forest); color: var(--cream);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.15rem; margin-bottom: 14px;
}
.tip-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.tip-card p { font-size: .9rem; color: #55503f; }

/* how-to */
.howto-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.howto {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px 28px;
  border-top: 4px solid var(--sage); transition: transform .3s, box-shadow .3s;
}
.howto:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-top-color: var(--gold); }
.howto .icon { font-size: 2rem; margin-bottom: 10px; }
.howto h3 { font-size: 1.12rem; margin-bottom: 8px; }
.howto p { font-size: .92rem; color: #55503f; }

/* emergency */
.er-banner {
  background: linear-gradient(120deg, #7a1f1f, #a03030); color: #fff; border-radius: var(--radius);
  padding: 26px 30px; text-align: center; box-shadow: var(--shadow-lg); margin-bottom: 40px;
}
.er-banner h3 { color: #fff; font-size: 1.4rem; margin-bottom: 6px; }
.er-banner p { color: #ffd9d9; font-size: .95rem; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }

/* floating decorations */
.float-leaf {
  position: absolute; pointer-events: none; opacity: .16; font-size: 2.2rem;
  animation: drift 14s ease-in-out infinite;
}
@keyframes drift {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  30% { transform: translate(18px,-26px) rotate(12deg); }
  65% { transform: translate(-14px,-10px) rotate(-9deg); }
}
.bird-fly {
  position: absolute; font-size: 1.7rem; opacity: 0; pointer-events: none; z-index: 3;
  animation: flyby 16s linear infinite;
}
/* birds travel left->right, so flip them horizontally (scaleX negative) to face their direction of flight */
@keyframes flyby {
  0%   { opacity: 0; transform: translate(-6vw, 12vh) scale(-.8, .8); }
  6%   { opacity: .85; }
  48%  { transform: translate(52vw, 2vh) scale(-1, 1); }
  94%  { opacity: .85; }
  100% { opacity: 0; transform: translate(108vw, 9vh) scale(-.85, .85); }
}

/* footer */
.site-footer { background: #1f3a0f; color: var(--tan); padding: 58px 0 34px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 34px; margin-bottom: 36px; }
.site-footer h4 { color: var(--cream); font-size: 1rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer a { color: var(--tan); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; font-size: .92rem; }
.footer-bottom { border-top: 1px solid rgba(210,180,140,.25); padding-top: 22px; text-align: center; font-size: .8rem; color: #b6a77f; }
.footer-motto { font-size: 1.25rem; color: var(--cream); font-weight: 700; letter-spacing: .06em; }

/* property specs bar */
.specs-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0; background: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; margin-top: -60px;
  position: relative; z-index: 4;
}
.specs-bar .spec {
  flex: 1 1 130px; text-align: center; padding: 22px 16px; border-right: 1px solid #eee5cc;
}
.specs-bar .spec:last-child { border-right: 0; }
.specs-bar .spec b { display: block; font-size: 1.5rem; color: var(--forest); }
.specs-bar .spec span { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--sienna); }

/* sleeping arrangement cards */
.sleep-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; }
.sleep-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px 22px; text-align: center;
  transition: transform .3s, box-shadow .3s; border-bottom: 4px solid var(--sage);
}
.sleep-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-bottom-color: var(--gold); }
.sleep-card .sleep-icon { font-size: 2.4rem; margin-bottom: 10px; }
.sleep-card h3 { font-size: 1.08rem; margin-bottom: 4px; }
.sleep-card p { font-size: .9rem; color: #57534a; }

/* amenities chips */
.amenity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.amenity {
  display: flex; align-items: center; gap: 12px; background: #fff; border-radius: 10px; padding: 14px 18px;
  box-shadow: var(--shadow); font-size: .95rem; transition: transform .25s;
}
.amenity:hover { transform: translateX(5px); }
.amenity .a-icon { font-size: 1.4rem; }

/* review card */
.review {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px 34px;
  max-width: 760px; margin: 0 auto; border-left: 5px solid var(--gold);
}
.review .stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 2px; }
.review h3 { margin: 8px 0 12px; }
.review p { color: #55503f; margin-bottom: 10px; }
.review .reviewer { font-weight: 700; color: var(--forest); }
.review .review-date { color: #8a8168; font-size: .85rem; }
.review .mgr { background: var(--cream); border-radius: 10px; padding: 14px 18px; margin-top: 16px; font-size: .9rem; }

/* utility */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }
.mt-2 { margin-top: 20px; } .mt-4 { margin-top: 40px; }
.center { text-align: center; }
.notice {
  background: var(--cream); border: 1px solid var(--tan); border-radius: 12px; padding: 18px 22px;
  font-size: .93rem; color: var(--brown);
}
@media print {
  .site-header, .site-footer, .filter-bar, .search-box, .hero, .scroll-hint { display: none !important; }
  .section { padding: 10px 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
