/* ============================================================
   Cricket Hill Cabins — Design System (dark & cinematic)
   ============================================================ */

:root {
  --ink: #0c0e0d; --ink-2: #14100c; --ink-3: #1e1813; --char: #26201a;
  --cream: #f4efe4; --cream-dim: #cdc4b4; --cream-mute: #9a9184;
  --ember: #d99a5b; --ember-deep: #c07a3c; --moss: #7d8b6a; --gold: #e6b877;
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --wrap: 1200px; --wrap-wide: 1440px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4.5rem, 10vw, 9rem);
  --radius: 4px; --radius-lg: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 84px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--ink); color: var(--cream);
  font-family: var(--font-body); font-size: 1.0625rem; line-height: 1.7; font-weight: 400;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display); font-weight: 400; line-height: 1.08;
  letter-spacing: -0.01em; color: var(--cream);
}
.display { font-size: clamp(2.75rem, 8vw, 6rem); line-height: 1.02; font-weight: 300; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
p { max-width: 68ch; }

.eyebrow {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--ember); display: inline-block;
}
.lede { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--cream-dim); line-height: 1.65; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-wide { max-width: var(--wrap-wide); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.text-center { text-align: center; }
.divider { width: 56px; height: 1px; background: var(--ember); border: 0; margin: 1.5rem 0; }
.text-center .divider { margin-inline: auto; }

/* Buttons */
.btn {
  --btn-bg: var(--ember); --btn-fg: var(--ink);
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 1.05em 2.2em;
  background: var(--btn-bg); color: var(--btn-fg); border: 1px solid var(--btn-bg);
  border-radius: 100px; cursor: pointer;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}
.btn:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--cream); border-color: rgba(244,239,228,0.45); }
.btn--ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

/* Reveal on scroll */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Film grain */
.grain::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ember); color: var(--ink); padding: 0.8rem 1.2rem;
  border-radius: 0 0 6px 0; font-size: 0.85rem; font-weight: 600;
}
.skip:focus { left: 0; }

img.ph { width: 100%; height: 100%; object-fit: cover; }
picture.cover { display: block; width: 100%; height: 100%; }

/* ================= NAV ================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; border-bottom: 1px solid transparent;
  transition: background .5s var(--ease), backdrop-filter .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  background: linear-gradient(to bottom, rgba(8,10,9,0.55), rgba(8,10,9,0));
}
.nav__inner { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav.is-solid {
  background: rgba(12,14,13,0.92); backdrop-filter: blur(12px);
  border-bottom-color: var(--char); box-shadow: 0 10px 40px -20px rgba(0,0,0,0.9);
}
.brand { display: flex; align-items: center; gap: 0.7rem; color: var(--cream); }
.brand__mark { color: var(--ember); display: grid; place-items: center; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 0.01em; }
.brand__sub { font-size: 0.62rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--cream-mute); margin-top: 3px; }
.nav__links { display: flex; gap: clamp(1rem, 2vw, 2rem); }
.nav__link { font-size: 0.82rem; letter-spacing: 0.06em; color: var(--cream-dim); padding: 0.4rem 0; position: relative; transition: color .3s var(--ease); }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px; background: var(--ember); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav__link:hover, .nav__link.is-active { color: var(--cream); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__actions { display: flex; align-items: center; gap: 1.4rem; }
.nav__phone { font-size: 0.85rem; letter-spacing: 0.04em; color: var(--cream-dim); transition: color .3s var(--ease); white-space: nowrap; }
.nav__phone:hover { color: var(--ember); }
.nav__book { padding: 0.8em 1.6em; font-size: 0.74rem; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; background: none; border: 0; cursor: pointer; align-items: center; justify-content: center; }
.nav__toggle span { width: 24px; height: 2px; background: var(--cream); transition: transform .4s var(--ease), opacity .3s var(--ease); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: rgba(10,12,11,0.98); backdrop-filter: blur(8px);
  display: grid; place-items: center; opacity: 0; visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s var(--ease);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__links { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; text-align: center; }
.mobile-menu__link { font-family: var(--font-display); font-size: 1.9rem; color: var(--cream); }
.mobile-menu__book { margin-top: 1rem; }
.mobile-menu__phone { color: var(--ember); letter-spacing: 0.08em; margin-top: 0.5rem; }
body.menu-open { overflow: hidden; }
body.menu-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 1080px) { .nav__links, .nav__actions { display: none; } .nav__toggle { display: flex; } }

/* ================= HERO (home) ================= */
.hero { position: relative; min-height: 100svh; display: grid; align-items: center; overflow: hidden; }
.hero__media, .phero__media, .break__media, .tile__media, .nf__media { position: absolute; inset: 0; z-index: -2; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(8,10,9,0.85), rgba(8,10,9,0.15) 55%), radial-gradient(120% 90% at 50% 40%, rgba(8,10,9,0) 40%, rgba(8,10,9,0.55) 100%);
}
.hero__inner { display: grid; gap: 1.4rem; max-width: 900px; padding-top: var(--nav-h); }
.hero__eyebrow { color: var(--gold); }
.hero__title { font-weight: 500; text-shadow: 0 2px 20px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.55); }
.hero__sub { font-size: clamp(1.1rem, 1.7vw, 1.4rem); color: var(--cream-dim); max-width: 46ch; line-height: 1.6; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.8rem; }
.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 1px solid rgba(244,239,228,0.4); border-radius: 20px; display: grid; justify-items: center; padding-top: 8px; }
.hero__scroll span { width: 3px; height: 8px; border-radius: 2px; background: var(--cream); animation: scroll 1.8s var(--ease) infinite; }
@keyframes scroll { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(12px); } }

/* ================= PAGE HERO ================= */
.phero { position: relative; min-height: 78vh; display: grid; align-items: end; padding-bottom: clamp(3rem, 7vw, 6rem); padding-top: var(--nav-h); overflow: hidden; }
.phero--compact { min-height: 62vh; }
.phero__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(8,10,9,0.92) 0%, rgba(8,10,9,0.35) 45%, rgba(8,10,9,0.35) 100%), linear-gradient(to right, rgba(8,10,9,0.6), rgba(8,10,9,0) 60%); }
.phero__content { position: relative; display: grid; gap: 1.1rem; max-width: 960px; }
.phero__title { max-width: 18ch; }
.phero__sub { max-width: 52ch; }

/* ================= INTRO ================= */
.intro__inner { display: grid; justify-items: center; gap: 0.4rem; max-width: 820px; margin-inline: auto; }
.intro__head { margin-top: 0.5rem; }
.intro__lede { margin-top: 1.2rem; }

/* ================= CATEGORY TILES ================= */
.stays__head { margin-bottom: 2.5rem; display: grid; gap: 0.5rem; }
.stays__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.tile { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 460px; display: flex; align-items: flex-end; isolation: isolate; }
.tile__media img { transition: transform 1.2s var(--ease); }
.tile:hover .tile__media img { transform: scale(1.07); }
.tile__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(8,10,9,0.9) 8%, rgba(8,10,9,0.1) 70%); }
.tile__body { padding: 1.8rem; display: grid; gap: 0.6rem; }
.tile__title { font-size: 1.9rem; }
.tile__blurb { color: var(--cream-dim); font-size: 0.95rem; max-width: 34ch; }
.tile__link { color: var(--ember); font-size: 0.82rem; letter-spacing: 0.08em; margin-top: 0.3rem; }

/* ================= IMAGE BREAKS ================= */
.break { position: relative; min-height: 68vh; display: grid; align-items: center; overflow: hidden; }
.break--tall { min-height: 80vh; }
.break__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(to right, rgba(8,10,9,0.85), rgba(8,10,9,0.2) 75%); }
.break__content { display: grid; gap: 1.1rem; max-width: 640px; }
.break__content .btn { margin-top: 0.6rem; justify-self: start; }

/* ================= FEATURED / GRIDS ================= */
.featured__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.featured__head .eyebrow { margin-bottom: 0.4rem; }
.featured__all { color: var(--ember); font-size: 0.85rem; letter-spacing: 0.06em; white-space: nowrap; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }

/* ================= PERKS ================= */
.perks { background: var(--ink-2); }
.perks__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.perk { display: grid; gap: 0.5rem; padding-top: 1.4rem; border-top: 1px solid var(--char); }
.perk__t { font-size: 1.3rem; }
.perk__d { color: var(--cream-mute); font-size: 0.92rem; }

/* ================= PROPERTY CARD ================= */
.card { display: flex; flex-direction: column; background: var(--ink-3); border: 1px solid var(--char); border-radius: var(--radius-lg); overflow: hidden; transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease); }
.card:hover { transform: translateY(-6px); border-color: rgba(217,154,91,0.5); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.8); }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card__media img { transition: transform 1.2s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__cat { position: absolute; top: 1rem; left: 1rem; background: rgba(12,14,13,0.72); backdrop-filter: blur(6px); color: var(--cream); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.45em 0.9em; border-radius: 100px; }
.card__body { padding: 1.5rem 1.5rem 1.7rem; display: grid; gap: 0.5rem; }
.card__row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.card__name { font-size: 1.5rem; }
.card__price { color: var(--ember); font-size: 1rem; white-space: nowrap; font-weight: 500; }
.card__price small { color: var(--cream-mute); font-size: 0.72rem; }
.card__tag { color: var(--cream-dim); font-size: 0.95rem; line-height: 1.5; }
.card__meta { color: var(--cream-mute); font-size: 0.8rem; letter-spacing: 0.03em; margin-top: 0.2rem; }

/* ================= DETAIL ================= */
.qbar { display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; color: var(--cream-dim); font-size: 0.95rem; letter-spacing: 0.02em; }
.qbar__price { color: var(--ember); font-weight: 500; }
.dot { color: var(--cream-mute); }
.hero__book { margin-top: 1.2rem; justify-self: start; }
.detail { display: grid; grid-template-columns: 1.7fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.detail__p { color: var(--cream-dim); margin-bottom: 1.1rem; font-size: 1.08rem; }
.detail__h { margin-top: 2.5rem; margin-bottom: 1.2rem; font-size: 1.7rem; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip { background: var(--ink-3); border: 1px solid var(--char); padding: 0.55em 1.1em; border-radius: 100px; font-size: 0.85rem; color: var(--cream-dim); }
.detail__aside { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.facts { background: var(--ink-3); border: 1px solid var(--char); border-radius: var(--radius-lg); padding: 1.8rem; }
.facts__h { font-size: 1.3rem; margin-bottom: 1.2rem; }
.facts dl { display: grid; gap: 0; margin-bottom: 1.5rem; }
.facts dl > div { display: flex; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid var(--char); }
.facts dl > div:last-child { border-bottom: 0; }
.facts dt { color: var(--cream-mute); font-size: 0.85rem; }
.facts dd { color: var(--cream); font-size: 0.9rem; text-align: right; }
.facts__btn { width: 100%; justify-content: center; }
.facts__call { display: block; text-align: center; margin-top: 1rem; font-size: 0.82rem; color: var(--cream-mute); }
.facts__call:hover { color: var(--ember); }
.gallery-sec { padding-top: 0; }
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.gitem { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3 / 2; }
.gitem--wide { grid-column: 1 / -1; aspect-ratio: 21 / 9; }
.gitem img { transition: transform 1s var(--ease); }
.gitem:hover img { transform: scale(1.04); }
.related__head { margin-bottom: 2.5rem; display: grid; gap: 0.5rem; }

/* ================= CATEGORY SEO COPY ================= */
.cat__book { margin-top: 1.2rem; justify-self: start; }
.seo-copy { padding-top: 0; }
.seo-copy__inner { max-width: 760px; display: grid; gap: 1.1rem; }
.seo-copy__inner h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.seo-copy__inner p { color: var(--cream-dim); }

/* ================= WATERVIEW ================= */
.wv-intro { max-width: 780px; display: grid; }
.wv-p { color: var(--cream-dim); margin-bottom: 1.1rem; font-size: 1.08rem; }
.wv-suites { background: var(--ink-2); }
.wv-suites__head { margin-bottom: 2.5rem; display: grid; gap: 0.5rem; }
.wv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.wv-card { background: var(--ink-3); border: 1px solid var(--char); border-radius: var(--radius-lg); padding: 2rem; }
.wv-card__name { font-size: 1.5rem; margin-bottom: 0.6rem; }
.wv-card__beds { color: var(--cream-mute); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; }
.wv-card__feature { color: var(--ember); font-size: 1.1rem; margin-top: 0.8rem; font-family: var(--font-display); }
.wv-card__extra { color: var(--cream-dim); margin-top: 0.5rem; font-size: 0.95rem; }
.wv-chips { justify-content: center; margin-top: 2.5rem; }
.wv-cta { text-align: center; margin-top: 2.5rem; }

/* ================= HOT TUB / FAQ ================= */
.intro-copy { max-width: 760px; display: grid; gap: 1.1rem; }
.intro-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.intro-copy p { color: var(--cream-dim); }
.listing { padding-top: 0; }
.faq { background: var(--ink-2); }
.faq__inner { max-width: 800px; }
.faq__inner > h2 { margin-bottom: 2rem; }
.faq__list { display: grid; gap: 0.8rem; }
.faq__item { border: 1px solid var(--char); border-radius: var(--radius); background: var(--ink-3); padding: 1.2rem 1.5rem; }
.faq__item summary { cursor: pointer; font-family: var(--font-display); font-size: 1.2rem; color: var(--cream); list-style: none; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item[open] summary { color: var(--ember); margin-bottom: 0.7rem; }
.faq__item p { color: var(--cream-dim); }
.faq__item p a { color: var(--ember); border-bottom: 1px solid var(--ember); }
.faq__item p a:hover { color: var(--gold); border-color: var(--gold); }
.faq__inner > .eyebrow { margin-bottom: 0.6rem; }
.faq__more { margin-top: 1.6rem; text-align: center; }
.faq__more a, .faq__contact a { color: var(--ember); border-bottom: 1px solid var(--ember); }
.faq__more a:hover, .faq__contact a:hover { color: var(--gold); border-color: var(--gold); }
.faq__contact { margin-top: 2rem; text-align: center; color: var(--cream-dim); }

/* ================= GUIDE ================= */
.guide-intro { max-width: 760px; }
.guide-sec { padding-block: clamp(2.5rem, 5vw, 4rem); }
.guide-sec__title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 2rem; }
.guide-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.guide-card { display: block; background: var(--ink-3); border: 1px solid var(--char); border-radius: var(--radius-lg); padding: 1.6rem 1.8rem; }
.guide-card__name { font-size: 1.35rem; margin-bottom: 0.5rem; }
.guide-card__desc { color: var(--cream-dim); font-size: 0.95rem; }
.guide-card--link { transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease); }
.guide-card--link:hover { transform: translateY(-4px); border-color: rgba(217,154,91,0.5); box-shadow: 0 24px 48px -28px rgba(0,0,0,0.8); }
.guide-card--link:hover .guide-card__name { color: var(--ember); }
.guide-card__name { transition: color .3s var(--ease); }
.guide-card__ext { font-size: 0.85em; color: var(--ember); margin-left: 0.4em; opacity: 0; transform: translate(-4px,4px); display: inline-block; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.guide-card--link:hover .guide-card__ext { opacity: 1; transform: none; }

/* Featured #1 (Amish Country Theater) */
.guide-featured-sec { padding-block: clamp(1rem, 3vw, 2rem); }
.guide-featured {
  display: block; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(217,154,91,0.14), rgba(30,24,19,0.6));
  border: 1px solid rgba(217,154,91,0.45); border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.guide-featured:hover { transform: translateY(-4px); border-color: var(--ember); box-shadow: 0 30px 70px -34px rgba(217,154,91,0.5); }
.guide-featured__rank {
  display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink); background: var(--ember); padding: 0.4em 1em; border-radius: 100px; margin-bottom: 1.2rem;
}
.guide-featured__name { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 0.8rem; }
.guide-featured__desc { color: var(--cream-dim); font-size: 1.1rem; max-width: 60ch; margin-bottom: 1.4rem; }
.guide-featured__cta { color: var(--ember); font-weight: 500; letter-spacing: 0.04em; font-size: 0.95rem; }
.guide-featured:hover .guide-featured__cta { color: var(--gold); }
.guide-cta__p { max-width: 46ch; margin-inline: auto; margin-top: 1rem; }
.guide-cta__links { display: flex; gap: 1rem; justify-content: center; margin-top: 1.6rem; flex-wrap: wrap; }

/* ================= ABOUT ================= */
.about { max-width: 760px; display: grid; gap: 1.2rem; }
.about__p { color: var(--cream-dim); font-size: 1.08rem; }
.about__p a { color: var(--ember); border-bottom: 1px solid var(--ember); }
.about__cta { display: flex; gap: 1rem; margin-top: 1rem; flex-wrap: wrap; }

/* ================= CONTACT ================= */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__info h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.cblock { margin-bottom: 2rem; }
.cblock__label { display: block; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ember); margin-bottom: 0.5rem; }
.cblock__big { font-family: var(--font-display); font-size: 2rem; color: var(--cream); }
.cblock__big:hover { color: var(--ember); }
.cblock__addr { font-style: normal; color: var(--cream-dim); line-height: 1.7; margin-bottom: 0.6rem; }
.cblock__link { color: var(--cream); border-bottom: 1px solid var(--ember); padding-bottom: 2px; }
.cblock__link:hover { color: var(--ember); }
.contact__book { margin-top: 0.5rem; }
.contact__map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--char); min-height: 420px; height: 100%; }
.contact__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: grayscale(0.3) contrast(1.05); }

/* ================= 404 ================= */
.nf { position: relative; min-height: 100svh; display: grid; align-items: center; overflow: hidden; }
.nf__scrim { position: absolute; inset: 0; z-index: -1; background: rgba(8,10,9,0.72); }
.nf__inner { display: grid; gap: 1.1rem; max-width: 640px; }
.nf__cta { display: flex; gap: 1rem; margin-top: 0.8rem; flex-wrap: wrap; }

/* ================= FOOTER ================= */
.footer { background: var(--ink-2); border-top: 1px solid var(--char); position: relative; z-index: 2; }
.footer__cta { padding-block: clamp(4rem, 8vw, 7rem); display: grid; gap: 1.1rem; justify-items: center; }
.footer__cta h2 { max-width: 16ch; }
.footer__cta .btn { margin-top: 1rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-block: 3.5rem; border-top: 1px solid var(--char); }
.footer__name { font-family: var(--font-display); font-size: 1.5rem; }
.footer__tag { color: var(--cream-mute); margin-top: 0.5rem; font-size: 0.95rem; }
.footer__h { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ember); margin-bottom: 1rem; }
.footer__col { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__col a, .footer__col address { color: var(--cream-dim); font-size: 0.92rem; font-style: normal; transition: color .3s var(--ease); }
.footer__col a:hover { color: var(--ember); }
.footer__phone { color: var(--cream) !important; margin-top: 0.4rem; }
.footer__base { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.6rem; border-top: 1px solid var(--char); font-size: 0.8rem; color: var(--cream-mute); }
.footer__base a { color: var(--cream-dim); }
.footer__base a:hover { color: var(--ember); }

/* ================= RESPONSIVE ================= */
@media (max-width: 980px) { .grid-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) {
  .stays__grid, .grid-3 { grid-template-columns: 1fr; }
  .perks__grid { grid-template-columns: 1fr 1fr; }
  .detail { grid-template-columns: 1fr; }
  .detail__aside { position: static; }
}
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } .contact { grid-template-columns: 1fr; } }
@media (max-width: 760px) { .wv-grid { grid-template-columns: 1fr; } }
@media (max-width: 720px) { .guide-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .grid-cards, .grid-3 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gitem--wide { aspect-ratio: 3 / 2; }
}
@media (max-width: 520px) { .perks__grid { grid-template-columns: 1fr; } .footer__grid { grid-template-columns: 1fr; } }
