/* =====================================================================
   Whispering Pines — Big Bear Lake cabin (SAMPLE direct-booking site)
   Cozy mountain palette: pine green, warm wood/amber, cream, lake blue.
   Built by Incline Digital Marketing Agency.
   ===================================================================== */

:root {
  --pine: #1f3d2f;
  --pine-2: #25503b;
  --pine-deep: #16301f;
  --wood: #b5651d;
  --wood-2: #c97b3c;
  --amber: #e0a458;
  --cream: #f6efe1;
  --cream-2: #efe5d2;
  --ink: #2b2622;
  --lake: #5b8aa6;
  --lake-2: #79a7c0;
  --gray: #6b6259;
  --line: rgba(43, 38, 34, 0.12);
  --white: #fffdf8;
  --shadow-sm: 0 2px 12px rgba(31, 61, 47, 0.10);
  --shadow: 0 16px 44px rgba(31, 61, 47, 0.16);
  --shadow-lg: 0 30px 80px rgba(22, 48, 31, 0.30);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1200px;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--sans); color: var(--ink); background: var(--cream); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; }
.serif { font-family: var(--serif); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--sans); font-weight: 600; font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--wood); margin-bottom: 16px; }
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--amber); }
.section-head { max-width: 660px; margin-bottom: 54px; }
.section-head.center { margin: 0 auto 54px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3rem); color: var(--pine); }
.section-head p { margin-top: 14px; color: var(--gray); font-size: 1.08rem; }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--sans); font-weight: 600; font-size: 1rem; padding: 15px 28px; border-radius: 999px; cursor: pointer; border: 2px solid transparent; transition: transform .18s, box-shadow .18s, background .18s, color .18s; white-space: nowrap; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--wood); color: #fff; box-shadow: 0 10px 26px rgba(181,101,29,.35); }
.btn-primary:hover { background: var(--wood-2); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(181,101,29,.45); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; transform: translateY(-2px); }
.btn-pine { background: var(--pine); color: #fff; }
.btn-pine:hover { background: var(--pine-2); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-cream { background: var(--cream); color: var(--pine); }
.btn-cream:hover { background: #fff; transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 1.08rem; }

/* ---------- Opening animation ---------- */
#intro { position: fixed; inset: 0; z-index: 9999; background: linear-gradient(180deg, #16301f 0%, #1f3d2f 60%, #25503b 100%); display: grid; place-items: center; transition: opacity .8s ease, visibility .8s ease; overflow: hidden; }
#intro.done { opacity: 0; visibility: hidden; }
.intro-stage { text-align: center; color: var(--cream); width: min(460px, 84vw); position: relative; z-index: 2; }
.intro-stage svg { width: 100%; height: auto; overflow: visible; }
.intro-word { font-family: var(--serif); font-size: 1.5rem; margin-top: 14px; opacity: 0; animation: fadeUp .7s ease 1.4s forwards; }
.intro-tag { font-size: .78rem; letter-spacing: .26em; text-transform: uppercase; color: var(--amber); opacity: 0; animation: fadeUp .7s ease 1.7s forwards; margin-top: 6px; }
.snow { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.snow i { position: absolute; top: -10px; width: 6px; height: 6px; background: #fff; border-radius: 50%; opacity: .8; animation: fall linear infinite; }
.sun-rise { transform: translateY(40px); opacity: 0; animation: sunUp 1.6s cubic-bezier(.2,.8,.3,1) .2s forwards; }
.cabin-in { opacity: 0; transform: translateY(20px); animation: fadeUp .8s ease .7s forwards; }
.smoke { opacity: 0; animation: smoke 2.4s ease 1.1s infinite; }
.tree-pop { opacity: 0; transform: scale(.6); transform-origin: bottom center; animation: pop .6s cubic-bezier(.2,.9,.3,1.3) forwards; }
.tree-pop.t2 { animation-delay: .15s; } .tree-pop.t3 { animation-delay: .3s; } .tree-pop.t4 { animation-delay: .45s; }
@keyframes sunUp { to { transform: translateY(0); opacity: 1; } }
@keyframes pop { to { opacity: 1; transform: scale(1); } }
@keyframes smoke { 0% { opacity: 0; transform: translateY(0) scale(1); } 40% { opacity: .5; } 100% { opacity: 0; transform: translateY(-26px) scale(1.6); } }
@keyframes fall { to { transform: translateY(360px) translateX(20px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.skip-intro { position: fixed; bottom: 22px; right: 22px; z-index: 10000; background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.3); padding: 8px 16px; border-radius: 999px; font-size: .85rem; cursor: pointer; font-family: var(--sans); }
.skip-intro:hover { background: rgba(255,255,255,.26); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 900; background: rgba(246,239,225,.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); transition: box-shadow .25s, background .25s; }
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(246,239,225,.97); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 44px; height: 44px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text b { font-family: var(--serif); font-size: 1.15rem; color: var(--pine); }
.brand-text span { font-size: 0.66rem; font-weight: 600; color: var(--wood); letter-spacing: 0.18em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-weight: 500; font-size: 0.97rem; color: var(--ink); position: relative; padding: 4px 0; white-space: nowrap; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--amber); transition: width .25s; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 26px; height: 2.5px; background: var(--pine); border-radius: 2px; margin: 5px 0; transition: .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg svg { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22,48,31,.78) 0%, rgba(22,48,31,.42) 55%, rgba(22,48,31,.15) 100%); z-index: 1; }
.hero-inner { position: relative; z-index: 2; padding: 80px 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); border-radius: 999px; padding: 8px 16px; font-size: .82rem; font-weight: 500; margin-bottom: 22px; }
.hero-badge svg { width: 16px; height: 16px; color: var(--amber); }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); max-width: 13ch; }
.hero h1 .accent { color: var(--amber); font-style: italic; }
.hero .lede { margin-top: 20px; font-size: 1.18rem; color: rgba(255,255,255,.9); max-width: 540px; }
.hero-facts { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 24px; }
.hero-facts div { display: flex; align-items: center; gap: 9px; font-weight: 500; }
.hero-facts svg { width: 20px; height: 20px; color: var(--amber); }
.hero-cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-rate { margin-top: 22px; font-size: .96rem; color: rgba(255,255,255,.85); }
.hero-rate b { color: var(--amber); }

/* ---------- Booking bar ---------- */
.bookbar { position: relative; z-index: 5; margin-top: -42px; }
.bookbar-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 16px; align-items: end; border: 1px solid var(--line); }
.bookbar .fld { display: flex; flex-direction: column; gap: 6px; }
.bookbar label { font-size: 0.74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gray); }
.bookbar input, .bookbar select { padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; font-family: var(--sans); font-size: 0.98rem; color: var(--ink); background: var(--cream); }
.bookbar input:focus, .bookbar select:focus { outline: none; border-color: var(--wood); }
.bookbar .btn { height: 48px; }
.bookbar-note { text-align: center; color: var(--gray); font-size: .86rem; margin-top: 12px; }

/* ---------- About / space ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.about-photo { position: relative; }
.stat-row { display: flex; gap: 30px; margin-top: 26px; flex-wrap: wrap; }
.stat-row .s b { font-family: var(--serif); font-size: 1.9rem; color: var(--wood); display: block; }
.stat-row .s span { color: var(--gray); font-size: .9rem; }

/* placeholder photo frames */
.ph { position: relative; border-radius: var(--radius); overflow: hidden; background: linear-gradient(135deg, var(--pine-2), var(--lake)); display: grid; place-items: center; color: rgba(255,255,255,.92); box-shadow: var(--shadow); }
.ph svg.scene { position: absolute; inset: 0; width: 100%; height: 100%; }
.ph .ph-label { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 8px; background: rgba(22,48,31,.55); border: 1px solid rgba(255,255,255,.3); padding: 8px 14px; border-radius: 999px; font-size: .8rem; font-family: var(--sans); font-weight: 500; backdrop-filter: blur(3px); }
.ph .ph-label svg { width: 15px; height: 15px; }
.ph.tall { aspect-ratio: 3/4; }
.ph.wide { aspect-ratio: 16/10; }
.ph.sq { aspect-ratio: 1/1; }

/* ---------- Gallery ---------- */
.gallery { background: var(--cream-2); }
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 14px; }
.gal-grid .ph { cursor: default; }
.g-feature { grid-column: span 2; grid-row: span 2; }
.g-tall { grid-row: span 2; }

/* ---------- Amenities ---------- */
.amen-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.amen { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px; display: flex; align-items: center; gap: 14px; transition: transform .2s, box-shadow .2s; }
.amen:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.amen svg { width: 26px; height: 26px; color: var(--wood); flex: none; }
.amen b { font-weight: 600; font-size: 0.98rem; }

/* ---------- Rooms ---------- */
.rooms { background: var(--cream); }
.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.room { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.room .ph { border-radius: 0; aspect-ratio: 16/11; }
.room-body { padding: 22px; }
.room-body h3 { font-size: 1.22rem; color: var(--pine); }
.room-body .beds { color: var(--wood); font-weight: 600; font-size: .9rem; margin: 6px 0 8px; }
.room-body p { color: var(--gray); font-size: .95rem; }

/* ---------- Book direct ---------- */
.direct { background: var(--pine); color: var(--cream); }
.direct .section-head h2 { color: #fff; }
.direct-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.dcard { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 30px 26px; text-align: center; }
.dcard .ic { width: 60px; height: 60px; border-radius: 16px; background: rgba(224,164,88,.18); color: var(--amber); display: grid; place-items: center; margin: 0 auto 18px; }
.dcard .ic svg { width: 30px; height: 30px; }
.dcard h3 { font-size: 1.2rem; color: #fff; margin-bottom: 8px; }
.dcard p { color: rgba(255,255,255,.78); font-size: .96rem; }
.compare { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 760px; margin-left: auto; margin-right: auto; }
.compare .col { border-radius: var(--radius); padding: 26px; }
.compare .them { background: rgba(255,255,255,.05); border: 1px dashed rgba(255,255,255,.25); }
.compare .us { background: var(--cream); color: var(--ink); box-shadow: var(--shadow); }
.compare h4 { font-family: var(--sans); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.compare .them h4 { color: rgba(255,255,255,.7); }
.compare .us h4 { color: var(--wood); }
.compare ul { list-style: none; display: grid; gap: 10px; }
.compare li { display: flex; gap: 10px; align-items: flex-start; font-size: .96rem; }
.compare li svg { width: 18px; height: 18px; flex: none; margin-top: 3px; }
.compare .them li { color: rgba(255,255,255,.8); }
.compare .price { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 10px; }
.compare .them .price { color: #fff; } .compare .us .price { color: var(--pine); }
.compare .save { display: inline-block; background: var(--amber); color: var(--ink); font-weight: 700; font-size: .82rem; padding: 4px 12px; border-radius: 999px; margin-top: 10px; }

/* ---------- Calendar ---------- */
.avail { background: var(--cream-2); }
.cal-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 920px; margin: 0 auto; }
.cal { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.cal h3 { text-align: center; color: var(--pine); margin-bottom: 16px; font-size: 1.2rem; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-grid .dow { text-align: center; font-size: .72rem; font-weight: 700; color: var(--gray); text-transform: uppercase; padding-bottom: 6px; }
.cal-day { aspect-ratio: 1; display: grid; place-items: center; border-radius: 9px; font-size: .9rem; font-weight: 500; background: var(--cream); color: var(--ink); }
.cal-day.empty { background: transparent; }
.cal-day.booked { background: var(--cream-2); color: #bcae99; text-decoration: line-through; }
.cal-day.open { background: rgba(31,61,47,.08); color: var(--pine); cursor: pointer; }
.cal-day.open:hover { background: var(--wood); color: #fff; }
.cal-legend { display: flex; gap: 18px; justify-content: center; margin-top: 16px; font-size: .82rem; color: var(--gray); }
.cal-legend i { display: inline-block; width: 12px; height: 12px; border-radius: 3px; margin-right: 6px; vertical-align: middle; }

/* ---------- Area ---------- */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.area-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s; }
.area-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.area-card .ph { border-radius: 0; aspect-ratio: 3/2; }
.area-card .ac-body { padding: 18px; }
.area-card h3 { font-size: 1.05rem; color: var(--pine); }
.area-card .dist { color: var(--wood); font-weight: 600; font-size: .82rem; margin-top: 4px; }
.area-card p { color: var(--gray); font-size: .9rem; margin-top: 6px; }

/* ---------- Reviews ---------- */
.reviews { background: var(--pine-deep); color: var(--cream); }
.reviews .section-head h2 { color: #fff; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rev { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 28px; }
.rev .stars { color: var(--amber); display: flex; gap: 3px; margin-bottom: 12px; }
.rev .stars svg { width: 17px; height: 17px; }
.rev p { color: rgba(255,255,255,.9); }
.rev .who { margin-top: 16px; display: flex; align-items: center; gap: 12px; }
.rev .av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--wood), var(--amber)); display: grid; place-items: center; font-family: var(--serif); color: #fff; }
.rev .who b { display: block; } .rev .who span { font-size: .82rem; color: rgba(255,255,255,.6); }
.rev-summary { text-align: center; margin-bottom: 36px; }
.rev-summary .big { font-family: var(--serif); font-size: 3rem; color: var(--amber); }
.rev-summary .big span { font-size: 1.4rem; color: rgba(255,255,255,.6); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; overflow: hidden; background: var(--white); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 22px; font-family: var(--serif); font-weight: 600; font-size: 1.08rem; color: var(--pine); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .ico { flex: none; width: 24px; height: 24px; transition: transform .3s; color: var(--wood); }
.faq-item.open .faq-q .ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--gray); }

/* ---------- Contact / CTA ---------- */
.cta { position: relative; color: #fff; overflow: hidden; background: var(--pine-2); }
.cta-bg { position: absolute; inset: 0; z-index: 0; opacity: .5; }
.cta-inner { position: relative; z-index: 2; text-align: center; padding: 90px 0; }
.cta-inner h2 { font-size: clamp(2rem,4vw,3rem); color: #fff; }
.cta-inner p { color: rgba(255,255,255,.85); max-width: 540px; margin: 14px auto 28px; font-size: 1.08rem; }
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info { display: grid; gap: 18px; }
.ci { display: flex; gap: 14px; align-items: flex-start; }
.ci .ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(181,101,29,.12); color: var(--wood); display: grid; place-items: center; flex: none; }
.ci .ic svg { width: 22px; height: 22px; }
.ci b { display: block; font-family: var(--serif); }
.ci span, .ci a { color: var(--gray); }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.form-card h3 { color: var(--pine); margin-bottom: 18px; }
.fld2 { margin-bottom: 16px; }
.fld2 label { display: block; font-size: .82rem; font-weight: 600; color: var(--gray); margin-bottom: 6px; }
.fld2 input, .fld2 textarea, .fld2 select { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px; font-family: var(--sans); font-size: .96rem; background: var(--cream); color: var(--ink); }
.fld2 textarea { min-height: 90px; resize: vertical; }
.fld2 input:focus, .fld2 textarea:focus, .fld2 select:focus { outline: none; border-color: var(--wood); background: #fff; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ---------- Footer ---------- */
.footer { background: var(--pine-deep); color: rgba(255,255,255,.72); padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.footer h4 { color: #fff; font-family: var(--serif); margin-bottom: 14px; }
.footer a { color: rgba(255,255,255,.72); display: block; padding: 5px 0; }
.footer a:hover { color: var(--amber); }
.footer .brand-text b { color: #fff; } .footer .brand-text span { color: var(--amber); }
.footer-about p { margin-top: 14px; font-size: .94rem; line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .85rem; }
.footer-bottom .credit a { color: var(--amber); display: inline; }
.sample-flag { background: var(--amber); color: var(--ink); text-align: center; font-size: .82rem; font-weight: 600; padding: 7px; letter-spacing: .04em; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }

/* ---------- Sticky mobile bar ---------- */
.callbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 950; display: none; grid-template-columns: 1fr 1fr; background: var(--pine-deep); box-shadow: 0 -6px 24px rgba(0,0,0,.3); }
.callbar a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 10px; font-weight: 600; color: #fff; }
.callbar a.book { background: var(--wood); }

/* ---------- Portal ---------- */
.portal-page { min-height: 100vh; background: linear-gradient(160deg, var(--pine-deep), var(--pine-2)); display: grid; place-items: center; padding: 40px 20px; }
.portal-card { width: min(440px,100%); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: 22px; padding: 40px 34px; backdrop-filter: blur(8px); box-shadow: var(--shadow-lg); color: #fff; text-align: center; }
.portal-card .brand-mark { margin: 0 auto 16px; }
.portal-card h1 { font-size: 1.6rem; color: #fff; }
.portal-card .sub { color: rgba(255,255,255,.72); font-size: .95rem; margin: 6px 0 24px; }
.portal-card .fld2 { text-align: left; }
.portal-card .fld2 label { color: rgba(255,255,255,.8); }
.portal-card .fld2 input { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: #fff; }
.portal-err { color: #ffb4a2; font-size: .86rem; min-height: 20px; margin: 6px 0; }
.portal-hint { font-size: .82rem; color: rgba(255,255,255,.55); margin-top: 16px; }
.portal-back a { color: var(--amber); font-weight: 600; font-size: .9rem; }
.guest { display: none; min-height: 100vh; background: var(--cream); }
.guest.show { display: block; }
.guest-top { background: var(--pine); color: #fff; padding: 16px 0; }
.guest-top .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.guest-hero { background: var(--pine-2); color: #fff; padding: 40px 0; }
.guest-hero h1 { font-size: 1.8rem; }
.guest-hero p { color: rgba(255,255,255,.8); margin-top: 6px; }
.guest-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; padding: 36px 0; }
.gcol { display: grid; gap: 20px; align-content: start; }
.gpanel { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 26px; box-shadow: var(--shadow-sm); }
.gpanel h2 { color: var(--pine); font-size: 1.2rem; margin-bottom: 4px; }
.gpanel .muted { color: var(--gray); font-size: .9rem; margin-bottom: 16px; }
.kv { display: flex; justify-content: space-between; gap: 14px; padding: 12px 0; border-top: 1px solid var(--line); }
.kv:first-of-type { border-top: none; }
.kv b { color: var(--gray); font-weight: 500; }
.kv span { font-family: var(--serif); color: var(--pine); font-weight: 600; }
.code-box { background: var(--pine); color: var(--amber); font-family: var(--serif); font-size: 2rem; letter-spacing: .3em; text-align: center; padding: 18px; border-radius: 12px; margin: 4px 0 8px; }
.manual { display: grid; gap: 10px; }
.manual a { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--cream); border-radius: 10px; color: var(--ink); font-weight: 500; transition: background .2s; }
.manual a:hover { background: var(--cream-2); }
.manual a svg { width: 20px; height: 20px; color: var(--wood); flex: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about-grid, .contact-grid, .cal-wrap, .compare, .guest-grid { grid-template-columns: 1fr; }
  .amen-grid, .area-grid, .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .room-grid, .direct-grid, .rev-grid { grid-template-columns: 1fr; }
  .bookbar-card { grid-template-columns: 1fr 1fr; }
  .g-feature, .g-tall { grid-column: auto; grid-row: auto; }
  .gal-grid { grid-auto-rows: 150px; }
}
@media (max-width: 680px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 78px; left: 0; right: 0; background: var(--cream); padding: 22px 24px; gap: 16px; box-shadow: var(--shadow); }
  .amen-grid, .area-grid, .gal-grid, .footer-grid, .room-grid { grid-template-columns: 1fr; }
  .bookbar-card { grid-template-columns: 1fr; }
  .row2 { grid-template-columns: 1fr; }
  .callbar { display: grid; }
  body { padding-bottom: 56px; }
  .guest-top .container { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; } .reveal { opacity: 1; transform: none; } }
