/*
Theme Name: Sunny Sierra
Theme URI: https://sunnysierracabin.com
Author: Eddie & Ariana
Description: Hand-built, conversion-first theme for Sunny Sierra Cabin — a single-property direct-booking site. Warm editorial design, dependency-free, Core-Web-Vitals friendly.
Version: 1.0.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: sunny-sierra
*/

/* ---------- Fonts (self-hosted, latin subset) ---------- */
@font-face {
	font-family: "Fraunces"; font-style: normal; font-weight: 500; font-display: swap;
	src: url("assets/fonts/fraunces-v38-latin-500.woff2") format("woff2");
}
@font-face {
	font-family: "Fraunces"; font-style: normal; font-weight: 600; font-display: swap;
	src: url("assets/fonts/fraunces-v38-latin-600.woff2") format("woff2");
}
@font-face {
	font-family: "Fraunces"; font-style: normal; font-weight: 700; font-display: swap;
	src: url("assets/fonts/fraunces-v38-latin-700.woff2") format("woff2");
}
@font-face {
	font-family: "Fraunces"; font-style: italic; font-weight: 400 700; font-display: swap;
	src: url("assets/fonts/fraunces-v38-latin-italic.woff2") format("woff2");
}
@font-face {
	font-family: "Instrument Sans"; font-style: normal; font-weight: 400; font-display: swap;
	src: url("assets/fonts/instrument-sans-v4-latin-regular.woff2") format("woff2");
}
@font-face {
	font-family: "Instrument Sans"; font-style: normal; font-weight: 500; font-display: swap;
	src: url("assets/fonts/instrument-sans-v4-latin-500.woff2") format("woff2");
}
@font-face {
	font-family: "Instrument Sans"; font-style: normal; font-weight: 600; font-display: swap;
	src: url("assets/fonts/instrument-sans-v4-latin-600.woff2") format("woff2");
}
@font-face {
	font-family: "Instrument Sans"; font-style: normal; font-weight: 700; font-display: swap;
	src: url("assets/fonts/instrument-sans-v4-latin-700.woff2") format("woff2");
}

/* ---------- Tokens — "Smoky Hearth" ---------- */
:root {
	color-scheme: light;
	--cream: #F7F3EC;   /* Linen — page background */
	--birch: #EDE6D8;   /* Birch — alt surfaces, form fields */
	--white: #FFFFFF;
	--ink: #26231E;     /* Espresso */
	--muted: #6B655B;   /* Driftwood */
	--pine: #38463B;    /* Spruce — dark bands */
	--pine-deep: #2C362E;
	--bark: #1E1B17;
	--ember: #B4552D;   /* CTA only */
	--ember-deep: #8F3F1F;
	--gold: #E9A13B;    /* stars, logo sun */
	--oak: #C9A87C;     /* hairlines, quiet accents */
	--line: #E3DCCD;
	--shadow-sm: 0 1px 3px rgba(41, 33, 26, .08);
	--shadow-md: 0 6px 24px rgba(41, 33, 26, .12);
	--shadow-lg: 0 18px 48px rgba(41, 33, 26, .18);
	--radius: 14px;
	--radius-lg: 22px;
	--font-display: "Fraunces", Georgia, serif;
	--font-body: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
	--container: 72rem;
	--gutter: clamp(1.1rem, 4vw, 2rem);
	--z-header: 30;
	--z-bookbar: 40;
	--z-lightbox: 50;
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--ink);
	background: var(--cream);
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1.12;
	margin: 0 0 .5em;
	color: var(--ink);
	text-wrap: balance;
}
h1 { font-size: clamp(2.3rem, 5.6vw, 4.1rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); letter-spacing: -.008em; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); }
p { margin: 0 0 1em; }
a { color: var(--ember-deep); text-underline-offset: 3px; }
a:hover { color: var(--ember); }
:focus-visible { outline: 3px solid var(--ember); outline-offset: 2px; border-radius: 4px; }
.section--pine :focus-visible, .section--bark :focus-visible, .cta-final :focus-visible,
.hero :focus-visible, .site-footer :focus-visible, .mobile-nav :focus-visible,
.trust-bar :focus-visible { outline-color: var(--gold); }
button { font: inherit; cursor: pointer; }
::selection { background: var(--gold); color: var(--bark); }

.skip-link {
	position: absolute; left: -999px; top: 0; z-index: 100;
	background: var(--bark); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
	min-height: 48px; padding: .8rem 1.6rem;
	border-radius: 999px; border: 2px solid transparent;
	font-weight: 600; font-size: 1rem; line-height: 1.2;
	text-decoration: none; cursor: pointer;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn--primary { background: var(--ember); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--ember-deep); color: #fff; box-shadow: var(--shadow-md); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--cream); color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.75); }
.btn--ghost-light:hover { background: rgba(255,255,255,.14); color: #fff; border-color: #fff; }
.btn--lg { min-height: 54px; padding: 1rem 2rem; font-size: 1.06rem; }

/* ---------- Header ---------- */
.site-header {
	position: fixed; inset: 0 0 auto 0; z-index: var(--z-header);
	transition: background-color .25s ease, box-shadow .25s ease;
}
.site-header .container {
	display: flex; align-items: center; justify-content: space-between; gap: 1rem;
	min-height: 72px;
}
.brand {
	display: flex; align-items: center; gap: .6rem;
	font-family: var(--font-display); font-weight: 700; font-size: 1.22rem;
	text-decoration: none; color: #fff; letter-spacing: .01em;
	white-space: nowrap;
}
.brand svg { width: 34px; height: 34px; flex: none; }
.site-header--solid { background: rgba(250, 246, 239, .92); backdrop-filter: blur(10px); box-shadow: var(--shadow-sm); }
.site-header--solid .brand, .site-header--solid .nav-list a { color: var(--ink); }
.site-header--solid .nav-phone { color: var(--ink); }
.site-header--solid .nav-list a:hover, .site-header--solid .nav-phone:hover { color: var(--ember-deep); }
.header-cta { display: none; }
@media (min-width: 1230px) {
	/* Nav-sized pill: never shrink (the nav would squeeze it into a 2-line,
	   oversized button) and keep the label on one line. */
	.header-cta {
		display: inline-flex;
		flex: none;
		white-space: nowrap;
		min-height: 44px;
		padding: .55rem 1.25rem;
		font-size: .95rem;
	}
}

.nav-toggle {
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px; border: 0; border-radius: 10px;
	background: rgba(255,255,255,.14); color: #fff;
}
.site-header--solid .nav-toggle { background: rgba(41,33,26,.08); color: var(--ink); }
.nav-toggle svg { width: 26px; height: 26px; }
@media (min-width: 900px) { .nav-toggle { display: none; } }

.site-nav { display: none; }
@media (min-width: 900px) {
	.site-nav { display: block; }
	.nav-list { display: flex; align-items: center; gap: 1.15rem; list-style: none; margin: 0; padding: 0; }
	.nav-list a { color: #fff; text-decoration: none; font-weight: 500; font-size: .95rem; white-space: nowrap; }
	.nav-list a:hover { color: var(--gold); }
}
.nav-phone { color: #fff; text-decoration: none; font-weight: 600; white-space: nowrap; }
.nav-phone:hover { color: var(--gold); }

/* Mobile drawer */
.mobile-nav {
	position: fixed; inset: 0; z-index: calc(var(--z-header) + 1);
	background: var(--bark); color: #fff;
	display: flex; flex-direction: column; padding: 1.2rem var(--gutter) 2rem;
	transform: translateX(100%); transition: transform .28s ease; visibility: hidden;
}
.mobile-nav.is-open { transform: translateX(0); visibility: visible; }
.mobile-nav__top { display: flex; justify-content: space-between; align-items: center; min-height: 56px; }
.mobile-nav ul { list-style: none; margin: 1.4rem 0; padding: 0; display: grid; gap: .3rem; }
.mobile-nav ul a {
	display: block; padding: .75rem .2rem; color: #fff; text-decoration: none;
	font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
}
.mobile-nav ul a:hover { color: var(--gold); }
.mobile-nav .btn { margin-top: auto; }
.mobile-nav__phone { color: var(--gold); font-weight: 600; text-decoration: none; margin-top: 1rem; text-align: center; }

/* ---------- Hero ---------- */
.hero {
	position: relative; min-height: 100svh;
	display: flex; align-items: flex-end;
	color: #fff; isolation: isolate;
	background: #2E2620; /* fallback while the photo loads */
}
/* Positive stacking order — negative z-index layers can fail to composite
   in Chrome under display scaling. */
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
	content: ""; position: absolute; inset: 0; z-index: 1;
	background:
		linear-gradient(180deg, rgba(20,14,9,.42) 0%, rgba(20,14,9,.06) 34%, rgba(20,14,9,.16) 58%, rgba(20,14,9,.78) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-block: 0 clamp(2.4rem, 6vh, 4.5rem); }
.hero__rating {
	display: inline-flex; flex-wrap: wrap; align-items: center; gap: .45rem;
	font-weight: 600; font-size: .95rem; letter-spacing: .01em;
	background: rgba(20,14,9,.45); backdrop-filter: blur(6px);
	padding: .45rem .9rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.hero__rating .stars { color: var(--gold); letter-spacing: .12em; }
.hero h1 { color: #fff; max-width: 17ch; margin-bottom: .35em; }
.hero h1 em { font-style: italic; font-weight: inherit; }
.hero__sub { font-size: clamp(1.02rem, 2vw, 1.22rem); max-width: 52ch; color: rgba(255,255,255,.92); }
.hero__price { font-weight: 600; color: var(--gold); font-style: italic; font-family: var(--font-display); font-size: 1.1em; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }

/* ---------- Sections ---------- */
.section { padding-block: clamp(3.2rem, 8vw, 5.5rem); }
.section--tight { padding-block: clamp(2.2rem, 5vw, 3.5rem); }
.section--white { background: var(--white); }
.section--pine { background: var(--pine-deep); color: var(--cream); }
.section--pine h2, .section--pine h3 { color: #fff; }
.section--bark { background: var(--bark); color: var(--cream); }
.section--bark h2 { color: #fff; }
.kicker {
	display: block; font-family: var(--font-body); font-size: .82rem; font-weight: 700;
	letter-spacing: .14em; text-transform: uppercase; color: var(--ember-deep);
	margin-bottom: .8rem;
}
.section--pine .kicker, .section--bark .kicker { color: var(--gold); }
.section-head { max-width: 46rem; margin-bottom: clamp(1.6rem, 4vw, 2.8rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.lead { font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--muted); }
.section--pine .lead, .section--bark .lead { color: rgba(250,246,239,.82); }

/* Trust bar */
.trust-bar { background: var(--bark); color: var(--cream); padding-block: .9rem; }
.trust-bar__list {
	display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem 2rem;
	list-style: none; margin: 0; padding: 0;
	font-size: .92rem; font-weight: 600; letter-spacing: .02em;
}
.trust-bar__list .stars { color: var(--gold); }

/* Quick facts */
.facts-grid {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
@media (min-width: 760px) { .facts-grid { grid-template-columns: repeat(4, 1fr); } }
.fact {
	background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
	padding: 1.2rem 1.1rem; display: flex; flex-direction: column; gap: .5rem;
	box-shadow: var(--shadow-sm);
}
.fact svg { width: 30px; height: 30px; color: var(--pine); }
.fact strong { font-size: 1.05rem; }
.fact span { color: var(--muted); font-size: .92rem; line-height: 1.45; }

/* Save / book-direct band */
.save-band { border-block: 1px solid var(--line); background: var(--white); }
.save-band__inner {
	display: grid; gap: 1.5rem; align-items: center;
}
@media (min-width: 900px) { .save-band__inner { grid-template-columns: 1.2fr .8fr; } }
.save-band h2 { margin-bottom: .4em; }
.save-compare { display: grid; gap: .6rem; }
.save-row {
	display: flex; justify-content: space-between; align-items: center; gap: 1rem;
	background: var(--cream); border: 1px solid var(--line); border-radius: 12px;
	padding: .8rem 1.1rem; font-weight: 600;
}
.save-row--best { background: #EEF4EE; border-color: #C9DCC9; }
.save-row .tag { font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--pine); }
.save-row del { color: var(--muted); font-weight: 500; }

/* Feature rows */
.feature-row {
	display: grid; gap: 1.6rem; align-items: center;
	margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}
.feature-row:last-child { margin-bottom: 0; }
@media (min-width: 880px) {
	.feature-row { grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); }
	.feature-row--flip .feature-row__media { order: 2; }
}
.feature-row__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.feature-row__body h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
.feature-row__body p { color: var(--muted); max-width: 46ch; }
.feature-row__meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; padding: 0; list-style: none; }
.feature-row__meta li {
	background: var(--cream); border: 1px solid var(--line); border-radius: 999px;
	padding: .3rem .85rem; font-size: .85rem; font-weight: 600; color: var(--pine);
}

/* Bedrooms */
.rooms-grid { display: grid; gap: 1.4rem; }
@media (min-width: 880px) { .rooms-grid { grid-template-columns: repeat(3, 1fr); } }
.room-card {
	background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
	overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.room-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.room-card__body { padding: 1.2rem 1.3rem 1.4rem; }
.room-card__body h3 { margin-bottom: .3em; }
.room-card__body p { color: var(--muted); font-size: .95rem; margin: 0; }
.room-card__sleeps {
	display: inline-block; margin-bottom: .6rem; font-size: .8rem; font-weight: 700;
	letter-spacing: .08em; text-transform: uppercase; color: var(--ember);
}

/* Amenities */
.amenities-grid {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem 1.4rem;
	list-style: none; padding: 0; margin: 0;
}
@media (min-width: 760px) { .amenities-grid { grid-template-columns: repeat(3, 1fr); } }
.amenities-grid li { display: flex; align-items: flex-start; gap: .6rem; font-size: .98rem; }
.amenities-grid svg { width: 21px; height: 21px; flex: none; margin-top: .22rem; color: var(--pine); }

/* Reviews */
.reviews-grid { display: grid; gap: 1.3rem; }
@media (min-width: 760px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
	background: var(--white); color: var(--ink);
	border-radius: var(--radius-lg); padding: 1.5rem 1.5rem 1.3rem;
	box-shadow: var(--shadow-sm); border: 1px solid var(--line);
	display: flex; flex-direction: column; gap: .8rem;
}
.review-card .stars { color: #A9762B; font-size: .95rem; letter-spacing: .15em; }
.review-card blockquote { margin: 0; font-size: .99rem; line-height: 1.6; }
.review-card footer { margin-top: auto; font-size: .88rem; color: var(--muted); font-weight: 600; }

/* Gallery */
.gallery-grid {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem;
}
@media (min-width: 760px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: .9rem; } }
.gallery-grid a {
	display: block; border-radius: var(--radius); overflow: hidden; position: relative;
	background: var(--line);
}
.gallery-grid img {
	aspect-ratio: 4 / 3; object-fit: cover; width: 100%; height: 100%;
	transition: transform .3s ease, opacity .3s ease;
}
.gallery-grid a:hover img { transform: scale(1.035); }
.gallery-grid a:focus-visible { outline-offset: 4px; }
.gallery-grid .is-tall { grid-row: span 2; }
.gallery-grid .is-tall img { aspect-ratio: auto; }
.gallery-filter { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.6rem; }
.gallery-filter button {
	border: 1px solid var(--line); background: var(--white); color: var(--ink);
	border-radius: 999px; padding: .45rem 1.1rem; font-weight: 600; font-size: .9rem;
	transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.gallery-filter button:hover { border-color: var(--pine); }
.gallery-filter button[aria-pressed="true"] { background: var(--pine); border-color: var(--pine); color: #fff; }

/* Lightbox */
.lightbox { border: 0; padding: 0; background: transparent; max-width: min(96vw, 1200px); }
.lightbox::backdrop { background: rgba(20, 14, 9, .9); }
.lightbox figure { margin: 0; }
.lightbox img { max-height: 82vh; width: auto; max-width: 100%; margin-inline: auto; border-radius: 10px; }
.lightbox figcaption { color: #fff; text-align: center; padding: .8rem; font-size: .92rem; }
.lightbox__controls { position: fixed; inset: auto 0 0 0; display: flex; justify-content: center; gap: .8rem; padding: 1rem; }
.lightbox__controls button {
	background: rgba(255,255,255,.14); color: #fff; border: 0; border-radius: 999px;
	width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center;
}
.lightbox__controls button:hover { background: rgba(255,255,255,.3); }
.lightbox__controls svg { width: 22px; height: 22px; }

/* Location */
.location-grid { display: grid; gap: 1.8rem; align-items: center; }
@media (min-width: 900px) { .location-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.location-grid img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.distance-list { list-style: none; margin: 1.2rem 0 0; padding: 0; display: grid; gap: .1rem; }
.distance-list li {
	display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
	padding: .65rem 0; border-bottom: 1px dashed var(--line); font-size: .98rem;
}
.distance-list li strong { font-weight: 600; }
.distance-list li span { color: var(--muted); white-space: nowrap; }

/* Hosts */
.hosts { display: grid; gap: 1.8rem; align-items: center; }
@media (min-width: 880px) { .hosts { grid-template-columns: .9fr 1.1fr; gap: 3rem; } }
.hosts__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.hosts__badges { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0 0; padding: 0; list-style: none; }
.hosts__badges li {
	background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
	color: var(--cream); border-radius: 999px; padding: .35rem .9rem;
	font-size: .85rem; font-weight: 600;
}

/* FAQ */
.faq-list { max-width: 46rem; margin-inline: auto; display: grid; gap: .8rem; }
.faq-list details {
	background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
	padding: 0; overflow: hidden;
}
.faq-list summary {
	list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 1rem;
	align-items: center; padding: 1.05rem 1.3rem; font-weight: 600; font-size: 1.02rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
	content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--ember); flex: none;
	transition: transform .2s ease; line-height: 1;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details > div { padding: 0 1.3rem 1.2rem; color: var(--muted); }

/* Final CTA */
.cta-final { position: relative; color: #fff; isolation: isolate; text-align: center; background: #2E2620; }
.cta-final__media { position: absolute; inset: 0; z-index: 0; }
.cta-final__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-final::after { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(20,14,9,.66); }
.cta-final > .container { position: relative; z-index: 2; }
.cta-final h2 { color: #fff; }
.cta-final .lead { color: rgba(255,255,255,.9); }
.cta-final__ctas { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.6rem; }

/* Blog cards */
.post-grid { display: grid; gap: 1.5rem; }
@media (min-width: 760px) { .post-grid { grid-template-columns: repeat(3, 1fr); } }
.post-card {
	background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
	overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
	transition: box-shadow .25s ease, transform .25s ease;
}
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.post-card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.post-card__body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.post-card__body time { font-size: .82rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.post-card__body h2, .post-card__body h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); }
.post-card__body h2 a, .post-card__body h3 a { color: var(--ink); text-decoration: none; }
.post-card__body h2 a:hover, .post-card__body h3 a:hover { color: var(--ember-deep); }
.post-card__body p { color: var(--muted); font-size: .95rem; margin: 0; }

/* Contact */
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: .85fr 1.15fr; gap: 3rem; } }
.contact-aside p { color: var(--muted); }
.contact-aside .phone-big {
	display: inline-block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
	color: var(--ink); text-decoration: none; margin-block: .3rem .8rem;
}
.contact-aside .phone-big:hover { color: var(--ember-deep); }
.contact-form label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .35rem; }
.contact-form input, .contact-form textarea {
	width: 100%; padding: .8rem 1rem; font: inherit; color: var(--ink);
	background: var(--birch); border: 1px solid var(--line); border-radius: 8px;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 3px solid var(--ember); outline-offset: 1px; border-color: var(--ember); }
.form-grid { display: grid; gap: 0 1rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.hp-field { position: absolute !important; left: -9999px !important; }
.form-note { border-radius: 10px; padding: .8rem 1.1rem; font-weight: 600; }
.form-note--ok { background: #EEF4EE; border: 1px solid #C9DCC9; color: #27402F; }
.form-note--err { background: #FBEDEA; border: 1px solid #EFC6BC; color: #8A2E1D; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bark); color: rgba(250,246,239,.8); font-size: .95rem; }
.site-footer a { color: var(--cream); }
.site-footer a:hover { color: var(--gold); }
.footer-grid { display: grid; gap: 2rem; padding-block: clamp(2.5rem, 6vw, 4rem) 2rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-brand { font-family: var(--font-display); color: #fff; font-size: 1.3rem; font-weight: 700; display: flex; align-items: center; gap: .55rem; text-decoration: none; }
.footer-brand svg { width: 30px; height: 30px; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .8rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.footer-social { display: flex; gap: .7rem; margin-top: 1rem; }
.footer-social a {
	display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center;
	background: rgba(255,255,255,.08); border-radius: 999px;
}
.footer-social a:hover { background: rgba(255,255,255,.18); }
.footer-social svg { width: 19px; height: 19px; }
.footer-bottom { border-top: 1px solid rgba(250,246,239,.14); padding-block: 1.2rem; font-size: .85rem; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; }

/* ---------- Mobile sticky book bar ---------- */
.book-bar {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-bookbar);
	display: flex; align-items: center; justify-content: space-between; gap: 1rem;
	background: rgba(36, 28, 21, .97); backdrop-filter: blur(8px);
	color: #fff; padding: .7rem var(--gutter);
	padding-bottom: calc(.7rem + env(safe-area-inset-bottom));
	transform: translateY(110%); transition: transform .3s ease;
}
.book-bar.is-visible { transform: translateY(0); }
.book-bar__price { line-height: 1.25; font-size: .85rem; color: rgba(255,255,255,.75); }
.book-bar__price strong { display: block; color: #fff; font-size: 1.05rem; }
.book-bar .btn { flex: none; white-space: nowrap; }
/* Keep the bottom bar until the header's own CTA appears (1230px) so there is
   always a persistent booking entry at every viewport. */
@media (min-width: 1230px) { .book-bar { display: none; } }
body.has-book-bar { scroll-padding-bottom: 90px; }

/* ---------- Blog templates ---------- */
.page-hero {
	background: var(--pine-deep); color: var(--cream);
	padding: calc(72px + clamp(2.5rem, 7vw, 4.5rem)) 0 clamp(2.5rem, 6vw, 4rem);
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.6vw, 3.2rem); }
.page-hero p { color: rgba(250,246,239,.85); max-width: 56ch; }
.entry-content { max-width: 44rem; margin-inline: auto; }
.entry-content img { border-radius: var(--radius); }
.entry-content h2 { margin-top: 1.6em; }
.entry-content h3 { margin-top: 1.4em; }
.entry-content li { margin-bottom: .4em; }
.entry-content blockquote {
	border-left: 4px solid var(--gold); margin: 1.5em 0; padding: .3em 0 .3em 1.2em;
	color: var(--muted); font-style: italic;
}
.entry-meta { color: var(--muted); font-size: .9rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.post-cta {
	margin-top: 3rem; background: var(--cream); border: 1px solid var(--line);
	border-radius: var(--radius-lg); padding: 1.8rem 1.8rem 1.5rem;
}
.post-cta__kicker { color: var(--ember); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .2rem; }
.post-cta h3 { margin-bottom: .4em; }
.post-cta p { color: var(--muted); }
.post-cta .btn { margin: .2rem .5rem .2rem 0; }
.post-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.5rem; font-weight: 600; }
.pagination { display: flex; gap: .4rem; justify-content: center; margin-top: 2.5rem; flex-wrap: wrap; }
.pagination .page-numbers {
	display: inline-flex; min-width: 44px; height: 44px; align-items: center; justify-content: center;
	border: 1px solid var(--line); border-radius: 10px; background: var(--white);
	text-decoration: none; color: var(--ink); font-weight: 600; padding-inline: .8rem;
}
.pagination .page-numbers.current { background: var(--pine); border-color: var(--pine); color: #fff; }

/* Reveal animation — gated on .js (set by an inline head script) so content
   is never hidden when JavaScript fails to load. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.js .reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* Utility */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.screen-reader-text {
	position: absolute; width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}
