/* Nature Stay Getaways — naturestaygetaway.com */
:root {
  --ink: #1e2a23;
  --forest: #2f4a3a;
  --pine: #3e6650;
  --cream: #faf7f2;
  --sand: #f0e9dd;
  --amber: #c98d4b;
  --muted: #6b7a70;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: var(--cream); line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: var(--pine); }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }

/* nav */
.nav { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; gap: 2rem;
  padding: .8rem clamp(1rem, 4vw, 3rem); background: rgba(250,247,242,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sand); }
.brand { display: flex; align-items: center; gap: .55rem; text-decoration: none; color: var(--forest);
  font-family: var(--serif); font-size: 1.15rem; font-weight: 700; letter-spacing: .01em; }
.brand em { font-style: normal; color: var(--amber); }
.logo-mark { width: 26px; height: 26px; }
.nav nav { display: flex; gap: 1.4rem; margin-left: auto; }
.nav nav a { text-decoration: none; color: var(--ink); font-size: .95rem; }
.nav nav a:hover { color: var(--pine); }
.btn { display: inline-block; padding: .7rem 1.4rem; border-radius: 999px; text-decoration: none;
  font-weight: 600; font-size: .95rem; border: 0; cursor: pointer; }
.btn-primary { background: var(--forest); color: #fff; }
.btn-primary:hover { background: var(--pine); }
.btn-ghost { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.55); }
.btn-nav { background: var(--forest); color: #fff; padding: .55rem 1.1rem; }

/* hero */
.hero { position: relative; min-height: min(88vh, 780px); display: flex; align-items: flex-end; }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,30,24,.25) 0%, rgba(20,30,24,.05) 40%, rgba(20,30,24,.72) 100%); }
.hero-content { position: relative; padding: clamp(1.2rem, 4vw, 3.5rem); padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff; max-width: 780px; }
.hero h1 { font-size: clamp(2.3rem, 6vw, 4rem); text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero p { margin: 1rem 0 1.5rem; font-size: clamp(1rem, 2.2vw, 1.25rem); text-shadow: 0 1px 12px rgba(0,0,0,.45); }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.trust { margin-top: 1.6rem; font-size: .9rem; opacity: .92; }

/* sections */
.section { padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem); max-width: 1280px; margin: 0 auto; }
.section-sub { color: var(--muted); margin: .5rem 0 1.5rem; max-width: 640px; }

/* pills + grid */
.pills { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.pill { padding: .5rem 1.05rem; border-radius: 999px; border: 1px solid #d8d2c4; background: #fff;
  cursor: pointer; font-size: .9rem; color: var(--ink); }
.pill.active { background: var(--forest); color: #fff; border-color: var(--forest); }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.5rem; }
.card { background: #fff; border-radius: 16px; overflow: hidden; text-decoration: none; color: var(--ink);
  box-shadow: 0 1px 3px rgba(30,42,35,.08); transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(30,42,35,.16); }
.card-img { aspect-ratio: 3/2; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1rem 1.1rem 1.2rem; }
.card-meta { display: flex; gap: .6rem; align-items: baseline; font-size: .85rem; color: var(--muted); }
.stars { color: var(--amber); font-weight: 700; }
.muted { color: var(--muted); }
.card h3 { font-size: 1.08rem; margin: .3rem 0 .2rem; }
.card-facts { font-size: .88rem; color: var(--muted); }
.chips { margin-top: .6rem; display: flex; gap: .4rem; flex-wrap: wrap; }
.chip { font-size: .74rem; padding: .18rem .6rem; border-radius: 999px; background: var(--sand); color: var(--forest); font-weight: 600; }
.card.hide { display: none; }

/* book direct */
.direct { background: var(--forest); color: #fff; max-width: none; }
.direct h2 { color: #fff; max-width: 1280px; margin: 0 auto; }
.direct-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem;
  max-width: 1280px; margin: 2rem auto 0; }
.direct h3 { color: var(--amber); margin-bottom: .4rem; }
.direct p { opacity: .92; }

/* about strip */
.about-strip { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: center; }
.about-copy p { margin: 1rem 0 1.5rem; color: var(--muted); }
.about-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.about-imgs img { border-radius: 14px; aspect-ratio: 4/3; object-fit: cover; }
@media (max-width: 860px) { .about-strip { grid-template-columns: 1fr; } }

/* footer */
.footer { background: var(--ink); color: #cfd8d1; padding: 3rem clamp(1rem, 4vw, 3rem) 1.5rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 2rem; }
.footer .brand { color: #fff; }
.footer h4 { color: #fff; margin-bottom: .5rem; font-size: .95rem; }
.footer a { color: #e8d5b8; text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.tagline { font-family: var(--serif); font-style: italic; margin-top: .6rem; }
.copyright { max-width: 1280px; margin: 2.5rem auto 0; font-size: .82rem; opacity: .6; }

/* listing page */
.listing { max-width: 1280px; margin: 0 auto; padding: 1.5rem clamp(1rem, 4vw, 3rem) 3rem; }
.l-head h1 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
.l-sub { display: flex; gap: 1rem; align-items: baseline; color: var(--muted); margin: .4rem 0 1.2rem; flex-wrap: wrap; }
.gallery { display: grid; grid-template-columns: 2fr 1fr; gap: .6rem; border-radius: 18px; overflow: hidden; }
.g-main, .g-thumb { padding: 0; border: 0; cursor: pointer; background: var(--sand); }
.g-main img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/2; }
.g-side { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.g-thumb img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/2; }
.g-more { display: grid; place-items: center; font-weight: 700; color: var(--forest); font-size: 1rem; background: var(--sand); }
@media (max-width: 720px) { .gallery { grid-template-columns: 1fr; } .g-side { grid-template-columns: repeat(4, 1fr); } .g-more { aspect-ratio: 3/2; } }

.l-cols { display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; margin-top: 2rem; }
@media (max-width: 900px) { .l-cols { grid-template-columns: 1fr; } }
.facts { display: flex; gap: 2rem; padding: 1rem 0; border-bottom: 1px solid var(--sand); font-size: 1.05rem; }
.amen-hi { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; padding: 1.2rem 0; }
.amen-hi li { background: #fff; border: 1px solid var(--sand); padding: .4rem .9rem; border-radius: 999px;
  font-size: .88rem; font-weight: 600; color: var(--forest); }
.desc h3 { margin: 1.4rem 0 .4rem; color: var(--forest); }
.desc p { margin: .6rem 0; }
.amen-all { margin-top: 1.5rem; }
.amen-all summary { cursor: pointer; font-weight: 700; color: var(--pine); padding: .6rem 0; }
.amen-all ul { columns: 2; list-style: none; padding: .8rem 0; }
.amen-all li { padding: .18rem 0; font-size: .92rem; color: var(--muted); break-inside: avoid; }

.book-card { position: sticky; top: 90px; align-self: start; background: #fff; border-radius: 18px;
  padding: 1.6rem; box-shadow: 0 6px 30px rgba(30,42,35,.12); }
.book-card h3 { font-size: 1.25rem; }
.book-card p { color: var(--muted); font-size: .92rem; margin: .5rem 0 1rem; }
.btn-book { width: 100%; text-align: center; font-size: 1.05rem; padding: .9rem; }
.book-alt { text-align: center; margin-top: .8rem !important; }
.rating-line { color: var(--ink); }

.mobile-book { display: none; }
@media (max-width: 900px) {
  .book-card { display: none; }
  .mobile-book { display: block; position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 40;
    text-align: center; padding: 1rem; box-shadow: 0 8px 30px rgba(0,0,0,.3); }
  body:has(.mobile-book) { padding-bottom: 5rem; }
}

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(15,20,17,.96);
  display: flex; align-items: center; justify-content: center; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 92vw; max-height: 86vh; object-fit: contain; border-radius: 6px; }
.lb-close, .lb-prev, .lb-next { position: absolute; background: none; border: 0; color: #fff;
  font-size: 2.6rem; cursor: pointer; padding: .5rem 1rem; opacity: .8; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { opacity: 1; }
.lb-close { top: .5rem; right: 1rem; }
.lb-prev { left: .5rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: .5rem; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%);
  color: #fff; opacity: .75; font-size: .9rem; }

/* prose pages */
.prose { max-width: 720px; margin: 0 auto; padding: 3rem clamp(1rem, 4vw, 2rem) 4rem; }
.prose h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 1.2rem; }
.prose h3 { margin: 1.6rem 0 .4rem; color: var(--forest); }
.prose p { margin: .8rem 0; }

@media (max-width: 720px) {
  .nav nav { display: none; }
  .nav { gap: 1rem; }
  .btn-nav { margin-left: auto; }
}

/* ===== v2 lifestyle additions ===== */
.hero-kicker { text-transform: uppercase; letter-spacing: .22em; font-size: .78rem; font-weight: 700;
  opacity: .85; margin-bottom: .8rem; }
.hero-cine .hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; animation: cine 28s infinite; }
.hero-cine .hero-base { opacity: 1; animation: none; }
.hero-cine .hero-slide:nth-child(2) { animation-delay: 7s; }
.hero-cine .hero-slide:nth-child(3) { animation-delay: 14s; }
.hero-cine .hero-slide:nth-child(4) { animation-delay: 21s; }
@keyframes cine {
  0% { opacity: 0; transform: scale(1.06); }
  4% { opacity: 1; }
  25% { opacity: 1; }
  32% { opacity: 0; transform: scale(1); }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-cine .hero-slide { animation: none; }
}
.hero-short { min-height: min(52vh, 480px); }
.hero-short h1 { font-size: clamp(2rem, 5vw, 3.2rem); }

.feel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; }
.feel { position: relative; border-radius: 16px; overflow: hidden; text-decoration: none; color: #fff;
  aspect-ratio: 4/5; display: flex; align-items: flex-end; }
.feel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.feel:hover img { transform: scale(1.05); }
.feel-copy { position: relative; padding: 1.2rem; width: 100%;
  background: linear-gradient(180deg, transparent, rgba(20,30,24,.85)); }
.feel-copy h3 { font-size: 1.5rem; }
.feel-copy p { font-size: .88rem; opacity: .92; margin-top: .2rem; }

.dest-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.dest { position: relative; border-radius: 18px; overflow: hidden; text-decoration: none; color: #fff;
  aspect-ratio: 16/11; display: flex; align-items: flex-end; }
.dest img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.dest:hover img { transform: scale(1.04); }
.dest-copy { position: relative; padding: 1.4rem; width: 100%;
  background: linear-gradient(180deg, transparent, rgba(20,30,24,.88)); }
.dest-copy h3 { font-size: 1.7rem; }
.dest-copy p { font-size: .92rem; opacity: .92; margin: .25rem 0 .5rem; }
.dest-count { font-weight: 700; color: var(--amber); font-size: .9rem; }

.season-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem; }
.season img { border-radius: 14px; aspect-ratio: 4/3; object-fit: cover; width: 100%; margin-bottom: .7rem; }
.season h3 { color: var(--forest); }
.season p { color: var(--muted); font-size: .92rem; }

.community { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 860px) { .community { grid-template-columns: 1fr; } }
.community-copy p { margin: 1rem 0; color: var(--muted); }
.social-row { display: flex; gap: .6rem; flex-wrap: wrap; }
.btn-ghost-dark { background: transparent; color: var(--forest); border: 1.5px solid var(--forest); }
.btn-ghost-dark:hover { background: var(--forest); color: #fff; }

.center { text-align: center; margin-top: 2rem; }
.lede { font-size: 1.15rem; max-width: 780px; color: var(--ink); margin-bottom: 1.6rem; }
.dbullets { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem;
  margin: 1.5rem 0 2.5rem; }
.dbullet { background: #fff; border-radius: 14px; padding: 1.2rem 1.3rem; box-shadow: 0 1px 3px rgba(30,42,35,.08); }
.dbullet h3 { color: var(--forest); font-size: 1.05rem; margin-bottom: .3rem; }
.dbullet p { font-size: .92rem; color: var(--muted); }

.exp-live { display: grid; grid-template-columns: 1fr 1.4fr; gap: 1.6rem; background: #fff;
  border-radius: 18px; overflow: hidden; box-shadow: 0 4px 20px rgba(30,42,35,.1); margin: 1.5rem 0 2.5rem; }
.exp-live img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }
.exp-copy { padding: 1.6rem 1.6rem 1.6rem 0; }
.exp-copy h3 { font-size: 1.4rem; margin: .6rem 0 .4rem; }
.exp-copy p { color: var(--muted); margin-bottom: 1rem; }
@media (max-width: 720px) { .exp-live { grid-template-columns: 1fr; } .exp-copy { padding: 0 1.4rem 1.4rem; } }
.chip-live { background: var(--forest); color: #fff; }
.exp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.2rem; margin-top: 1.2rem; }
.exp-soon { background: #fff; border: 1px dashed #cfc7b6; border-radius: 14px; padding: 1.1rem 1.2rem; }
.exp-soon h3 { font-size: 1.02rem; color: var(--forest); margin-bottom: .25rem; }
.exp-soon p { font-size: .88rem; color: var(--muted); }

.cta-panel { background: var(--forest); color: #fff; border-radius: 18px; padding: 2rem;
  margin-top: 2.5rem; text-align: center; }
.cta-panel h3 { font-size: 1.4rem; color: var(--amber); }
.cta-panel p { max-width: 560px; margin: .6rem auto 1.2rem; opacity: .93; }
.cta-panel a { color: #fff; }
.cta-panel .btn-primary { background: var(--amber); color: var(--ink); font-weight: 700; }

.ttd-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.2rem;
  margin: 1rem 0 2rem; }
.ttd { background: #fff; border-radius: 14px; padding: 1.1rem 1.2rem; box-shadow: 0 1px 3px rgba(30,42,35,.08); }
.ttd h3 { font-size: 1rem; color: var(--forest); margin-bottom: .25rem; }
.ttd p { font-size: .88rem; color: var(--muted); }

.chips-lg .chip, .chips-lg { font-size: .85rem; }
.chips-lg { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0 1.5rem; }
.faq { background: #fff; border-radius: 12px; padding: .3rem 1.1rem; margin: .5rem 0; }
.faq summary { cursor: pointer; font-weight: 600; padding: .55rem 0; color: var(--ink); }
.faq p { padding: 0 0 .8rem; color: var(--muted); }
.crumb { font-weight: 700; color: var(--pine); text-decoration: none; }
.crumb:hover { text-decoration: underline; }
.l-main h2 { margin-top: 2rem; font-size: 1.35rem; }
.prose-wide { max-width: 1000px; }
.grid-3 { margin: 1.6rem 0; }

/* mobile nav */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem;
  flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2.5px; background: var(--forest); border-radius: 2px; }
@media (max-width: 960px) {
  .nav nav { display: none; }
  .nav-toggle { display: flex; }
  .nav.open nav { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--sand); padding: 1rem clamp(1rem, 4vw, 3rem) 1.4rem;
    gap: 1rem; box-shadow: 0 12px 30px rgba(30,42,35,.12); }
  .btn-nav { margin-left: auto; }
}
