/* ==========================================================================
   Republika by Summit Resorts — main stylesheet
   ========================================================================== */

:root {
  --pine: #1c3126;
  --pine-2: #264033;
  --pine-3: #325542;
  --moss: #6f8f4c;
  --moss-soft: #dfe6d3;
  --ember: #b8472c;
  --ember-2: #9c3a22;
  --gold: #c7a15a;
  --sand: #f3ede2;
  --paper: #fbf8f2;
  --white: #ffffff;
  --ink: #18201b;
  --ink-2: #2f3832;
  --muted: #5f6961;
  --line: rgba(24, 32, 27, 0.12);
  --line-light: rgba(255, 255, 255, 0.18);

  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(24, 32, 27, 0.06);
  --shadow: 0 18px 50px -18px rgba(24, 32, 27, 0.28);
  --shadow-lg: 0 40px 90px -30px rgba(12, 22, 16, 0.45);

  --container: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  --section: clamp(72px, 10vw, 136px);
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.08; letter-spacing: -0.015em; margin: 0; font-optical-sizing: auto; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
::selection { background: var(--moss); color: var(--white); }
:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; border-radius: 4px; }

.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 999; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { left: 8px; }
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.icon { width: 1.2em; height: 1.2em; flex: none; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: calc(820px + var(--gutter) * 2); }
.section { padding-block: var(--section); }
.section--tight { padding-block: calc(var(--section) * 0.6); }
.section--sand { background: var(--sand); }
.section--pine { background: var(--pine); color: #e9efe6; }
.section--pine .eyebrow { color: var(--gold); }
.section--pine .lead { color: rgba(233, 239, 230, 0.78); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ember);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: 0.7; }
.eyebrow--plain::before { display: none; }

.h1 { font-size: clamp(2.7rem, 6.4vw, 5.8rem); }
.h2 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); }
.h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.h2 em, .h1 em { font-style: italic; color: var(--moss); }
.section--pine .h2 em { color: var(--gold); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--muted); max-width: 62ch; }

.section-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: clamp(36px, 5vw, 64px); flex-wrap: wrap; }
.section-head > div { max-width: 720px; }
.section-head .lead { margin-top: 18px; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink); --fg: #fff; --bd: var(--bg);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 26px; border-radius: 999px;
  background: var(--bg); color: var(--fg); border: 1px solid var(--bd);
  font-weight: 700; font-size: 15px; letter-spacing: 0.01em; white-space: nowrap;
  transition: transform .35s var(--ease), background-color .25s, color .25s, border-color .25s, box-shadow .35s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(0,0,0,.45); }
.btn .icon { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.btn:hover .icon--arrow { transform: translateX(3px); }
.btn--primary { --bg: var(--ember); }
.btn--primary:hover { --bg: var(--ember-2); }
.btn--pine { --bg: var(--pine); }
.btn--pine:hover { --bg: var(--pine-3); }
.btn--ghost { --bg: transparent; --fg: var(--ink); --bd: var(--line); }
.btn--ghost:hover { --bd: var(--ink); }
.btn--light { --bg: rgba(255,255,255,.08); --fg: #fff; --bd: rgba(255,255,255,.45); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.btn--light:hover { --bg: #fff; --fg: var(--ink); --bd: #fff; }
.btn--white { --bg: #fff; --fg: var(--ink); }
.btn--wa { --bg: #1f8f4e; }
.btn--wa:hover { --bg: #197a42; }
.btn--sm { min-height: 42px; padding: 0 18px; font-size: 14px; }
.btn--block { width: 100%; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; border-bottom: 1px solid currentColor; padding-bottom: 3px; transition: gap .3s var(--ease), color .2s; }
.link-arrow:hover { gap: 14px; color: var(--ember); }
.link-arrow .icon { width: 16px; height: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header-h);
  display: flex; align-items: center; color: #fff;
  transition: background-color .4s, box-shadow .4s, color .3s, height .4s var(--ease), transform .45s var(--ease);
}
.site-header::before { content: ""; position: absolute; inset: 0 0 -40px; background: linear-gradient(to bottom, rgba(8,14,10,.55), rgba(8,14,10,0)); pointer-events: none; transition: opacity .4s; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; position: relative; }
.brand { display: flex; align-items: center; flex: none; position: relative; }
.brand img { height: 58px; width: auto; transition: opacity .3s, height .4s var(--ease); }
.brand .logo-dark { position: absolute; left: 0; top: 0; opacity: 0; }
.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); }
.nav a { font-size: 15px; font-weight: 600; position: relative; padding: 6px 0; opacity: .92; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav .has-sub { position: relative; }
.nav .sub { position: absolute; top: calc(100% + 14px); left: -20px; min-width: 250px; background: #fff; color: var(--ink); border-radius: 14px; padding: 10px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .3s var(--ease); }
.nav .sub::before { content: ""; position: absolute; inset: -16px 0 auto; height: 16px; }
.nav .has-sub:hover .sub, .nav .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav .sub a { display: block; padding: 10px 14px; border-radius: 10px; opacity: 1; }
.nav .sub a small { display: block; color: var(--muted); font-weight: 500; font-size: 13px; }
.nav .sub a:hover { background: var(--sand); }
.nav .sub a::after { display: none; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14.5px; }
.menu-toggle { display: none; width: 46px; height: 46px; border-radius: 50%; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.4); }
.menu-toggle .icon { width: 22px; height: 22px; }

.site-header.is-solid, .site-header.is-static { background: rgba(251, 248, 242, 0.94); color: var(--ink); box-shadow: 0 1px 0 var(--line); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); }
.site-header.is-solid::before, .site-header.is-static::before { opacity: 0; }
.site-header.is-solid { --header-h: 72px; height: 72px; }
.site-header.is-solid .brand img, .site-header.is-static .brand img { height: 44px; }
.site-header.is-solid .logo-light, .site-header.is-static .logo-light { opacity: 0; }
.site-header.is-solid .logo-dark, .site-header.is-static .logo-dark { opacity: 1; }
.site-header.is-solid .menu-toggle, .site-header.is-static .menu-toggle { border-color: var(--line); }
.site-header.is-solid .btn--light, .site-header.is-static .btn--light { --bg: var(--ember); --fg: #fff; --bd: var(--ember); }
.site-header.is-hidden { transform: translateY(-100%); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200; background: var(--pine); color: #f3efe6;
  display: flex; flex-direction: column; padding: 22px var(--gutter) 32px;
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
  overflow-y: auto;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 36px; }
.mobile-menu__top img { height: 44px; width: auto; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a { font-family: var(--font-display); font-size: clamp(2rem, 8vw, 2.6rem); line-height: 1.25; padding: 6px 0; border-bottom: 1px solid var(--line-light); transform: translateY(16px); opacity: 0; transition: transform .6s var(--ease), opacity .6s var(--ease); }
.mobile-menu nav a small { font-family: var(--font-body); font-size: 14px; opacity: .6; margin-left: 8px; }
.mobile-menu.open nav a { transform: none; opacity: 1; }
.mobile-menu.open nav a:nth-child(2) { transition-delay: .04s; } .mobile-menu.open nav a:nth-child(3) { transition-delay: .08s; }
.mobile-menu.open nav a:nth-child(4) { transition-delay: .12s; } .mobile-menu.open nav a:nth-child(5) { transition-delay: .16s; }
.mobile-menu.open nav a:nth-child(6) { transition-delay: .2s; } .mobile-menu.open nav a:nth-child(7) { transition-delay: .24s; }
.mobile-menu__foot { margin-top: auto; padding-top: 32px; display: grid; gap: 12px; }
.mobile-menu .close-menu { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-light); display: flex; align-items: center; justify-content: center; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; min-height: 100svh; color: #fff; display: flex; align-items: flex-end; overflow: hidden; background: var(--pine); isolation: isolate; }
.hero__slides { position: absolute; inset: 0; z-index: -2; }
.hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.6s ease; }
.hero__slide.active { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
.hero__slide.active img { animation: kenburns 9s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.14); } to { transform: scale(1.02); } }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background:
  linear-gradient(180deg, rgba(10,18,13,.45) 0%, rgba(10,18,13,.05) 28%, rgba(10,18,13,.25) 55%, rgba(10,18,13,.85) 100%),
  linear-gradient(90deg, rgba(10,18,13,.62) 0%, rgba(10,18,13,.2) 45%, rgba(10,18,13,0) 70%); }
.hero h1, .hero__sub, .page-hero h1, .page-hero p { text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero__inner { width: 100%; padding-top: calc(var(--header-h) + 40px); padding-bottom: clamp(28px, 5vw, 56px); }
.hero__content { max-width: 880px; }
.hero .eyebrow { color: #fff; }
.hero h1 { font-size: clamp(3rem, 8vw, 7.2rem); line-height: .98; letter-spacing: -0.025em; }
.hero h1 em { font-style: italic; font-weight: 300; color: #f1d9a8; }
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.3rem); max-width: 560px; margin-top: 22px; color: rgba(255,255,255,.88); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero__dots { display: flex; gap: 10px; margin-top: 40px; align-items: center; }
.hero__dots button { width: 34px; height: 3px; background: rgba(255,255,255,.35); border-radius: 3px; position: relative; overflow: hidden; }
.hero__dots button.active::after { content: ""; position: absolute; inset: 0; background: #fff; transform-origin: left; animation: dot 7s linear forwards; }
@keyframes dot { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.hero__caption { position: absolute; right: var(--gutter); bottom: clamp(28px, 5vw, 56px); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; opacity: .8; display: flex; align-items: center; gap: 8px; }
.hero__caption .icon { width: 16px; height: 16px; }

/* Booking bar */
.booking-bar {
  margin-top: clamp(32px, 5vw, 56px);
  display: grid; grid-template-columns: 1.3fr 1fr 1fr auto; align-items: stretch;
  background: rgba(251, 248, 242, 0.97); color: var(--ink); border-radius: 20px; box-shadow: var(--shadow-lg);
  padding: 10px; gap: 6px; max-width: 1040px;
}
.booking-bar__field { padding: 10px 18px; border-radius: 14px; display: flex; flex-direction: column; justify-content: center; position: relative; }
.booking-bar__field + .booking-bar__field::before { content: ""; position: absolute; left: -3px; top: 18%; bottom: 18%; width: 1px; background: var(--line); }
.booking-bar__field label { font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.booking-bar__field select, .booking-bar__field .value { border: 0; background: transparent; font-weight: 700; font-size: 16px; padding: 4px 0 0; appearance: none; -webkit-appearance: none; cursor: pointer; outline: none; }
.booking-bar__field .select-wrap { position: relative; }
.booking-bar__field .select-wrap .icon { position: absolute; right: 0; top: 50%; transform: translateY(-40%); width: 16px; height: 16px; pointer-events: none; }
.booking-bar__field .value { cursor: default; font-weight: 600; font-size: 15px; color: var(--ink-2); }
.booking-bar .btn { min-height: 64px; border-radius: 14px; padding: 0 30px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; min-height: 78vh; min-height: 78svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; isolation: isolate; background: var(--pine); }
.page-hero--short { min-height: 56vh; min-height: 56svh; }
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 12s ease-out forwards; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10,18,13,.5) 0%, rgba(10,18,13,.1) 32%, rgba(10,18,13,.82) 100%), linear-gradient(90deg, rgba(10,18,13,.5) 0%, rgba(10,18,13,0) 65%); }
.page-hero .container { padding-top: calc(var(--header-h) + 40px); padding-bottom: clamp(36px, 6vw, 72px); }
.page-hero .eyebrow { color: #fff; }
.page-hero h1 { font-size: clamp(2.8rem, 7vw, 6rem); max-width: 16ch; }
.page-hero h1 em { font-style: italic; font-weight: 300; color: #f1d9a8; }
.page-hero p { max-width: 620px; margin-top: 18px; font-size: clamp(1.02rem, 1.4vw, 1.2rem); color: rgba(255,255,255,.88); }
.page-hero .hero__cta { margin-top: 28px; }
.breadcrumb { display: flex; gap: 8px; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; opacity: .8; margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumb a:hover { text-decoration: underline; }

.facts-bar { background: var(--pine); color: #eef2ea; }
.facts-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact { padding: 26px 20px; display: flex; gap: 14px; align-items: center; border-left: 1px solid var(--line-light); }
.fact:first-child { border-left: 0; padding-left: 0; }
.fact .icon { width: 28px; height: 28px; color: var(--gold); stroke-width: 1.3; }
.fact strong { display: block; font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; line-height: 1.1; }
.fact span { font-size: 13.5px; opacity: .75; }

/* ---------- Intro + stats ---------- */
.intro { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.intro__statement { font-family: var(--font-display); font-size: clamp(1.7rem, 3.2vw, 2.7rem); line-height: 1.22; letter-spacing: -0.01em; }
.intro__statement em { color: var(--moss); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: clamp(48px, 7vw, 88px); border-top: 1px solid var(--line); }
.stat { padding: 28px 24px 0 0; }
.stat + .stat { padding-left: 24px; border-left: 1px solid var(--line); }
.stat strong { display: block; font-family: var(--font-display); font-size: clamp(2.4rem, 4.6vw, 3.8rem); font-weight: 300; line-height: 1; color: var(--pine); }
.stat span { display: block; margin-top: 10px; font-size: 14.5px; color: var(--muted); }

/* ---------- Property showcase ---------- */
.property { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(32px, 6vw, 90px); align-items: center; }
.property + .property { margin-top: clamp(72px, 10vw, 140px); }
.property--flip .property__media { order: 2; }
.property__media { position: relative; }
.property__img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3.3; box-shadow: var(--shadow); }
.property__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.property:hover .property__img img { transform: scale(1.04); }
.property__inset { position: absolute; width: 42%; aspect-ratio: 3 / 4; right: -6%; bottom: -12%; border-radius: var(--radius); overflow: hidden; border: 8px solid var(--paper); box-shadow: var(--shadow); }
.property--flip .property__inset { right: auto; left: -6%; }
.property__inset img { width: 100%; height: 100%; object-fit: cover; }
.property__tag { position: absolute; top: 20px; left: 20px; background: rgba(251,248,242,.95); color: var(--ink); border-radius: 999px; padding: 8px 16px; font-size: 13px; font-weight: 700; display: inline-flex; gap: 8px; align-items: center; }
.property__tag .icon { width: 15px; height: 15px; color: var(--ember); }
.property__num { font-family: var(--font-display); font-size: 15px; color: var(--muted); letter-spacing: .1em; margin-bottom: 12px; }
.property h3 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 18px; }
.property__lead { color: var(--muted); font-size: 1.06rem; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 30px; padding: 0; list-style: none; }
.chips li { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; font-size: 14px; font-weight: 600; background: rgba(255,255,255,.55); }
.chips .icon { width: 16px; height: 16px; color: var(--moss); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- Story ---------- */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.story__collage { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.story__collage figure { margin: 0; border-radius: var(--radius); overflow: hidden; }
.story__collage figure:first-child { grid-row: span 2; }
.story__collage img { width: 100%; height: 100%; object-fit: cover; }
.story__badge { position: absolute; left: -24px; bottom: 36px; background: var(--ember); color: #fff; width: 132px; height: 132px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: var(--shadow); animation: float 6s ease-in-out infinite; }
.story__badge strong { font-family: var(--font-display); font-size: 2.2rem; font-weight: 400; line-height: 1; }
.story__badge span { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; margin-top: 4px; }
@keyframes float { 50% { transform: translateY(-8px); } }
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
.value { border-top: 1px solid var(--line); padding-top: 14px; }
.value strong { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; display: block; }
.value span { font-size: 14.5px; color: var(--muted); }

/* ---------- Amenities ---------- */
.amenities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); border-radius: var(--radius); overflow: hidden; }
.amenity { background: var(--pine); padding: 34px 28px; transition: background-color .35s; }
.amenity:hover { background: var(--pine-2); }
.amenity .icon { width: 34px; height: 34px; color: var(--gold); stroke-width: 1.25; margin-bottom: 22px; }
.amenity h3 { font-size: 1.3rem; margin-bottom: 8px; color: #fff; }
.amenity p { font-size: 14.5px; color: rgba(233,239,230,.7); }
.amenities--light { background: var(--line); border-color: var(--line); }
.amenities--light .amenity { background: var(--paper); }
.amenities--light .amenity:hover { background: #fff; }
.amenities--light .amenity h3 { color: var(--ink); }
.amenities--light .amenity p { color: var(--muted); }
.amenities--light .amenity .icon { color: var(--ember); }

/* ---------- Occasion cards ---------- */
.occasions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.occasion { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 400px; color: #fff; display: flex; align-items: flex-end; isolation: isolate; }
.occasion img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1.2s var(--ease); }
.occasion::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10,18,13,0) 30%, rgba(10,18,13,.85) 100%); transition: background .4s; }
.occasion:hover img { transform: scale(1.06); }
.occasion__body { padding: 28px; }
.occasion__icon { width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.14); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.occasion__icon .icon { width: 22px; height: 22px; }
.occasion h3 { font-size: 1.65rem; margin-bottom: 8px; }
.occasion p { font-size: 15px; color: rgba(255,255,255,.82); max-height: 0; opacity: 0; overflow: hidden; transition: max-height .6s var(--ease), opacity .4s, margin .4s; }
.occasion:hover p, .occasion:focus-within p { max-height: 160px; opacity: 1; }
.occasion .link-arrow { margin-top: 14px; font-size: 14px; }

/* ---------- Explore carousel ---------- */
.carousel { position: relative; }
.carousel__track { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(270px, 30vw, 380px); gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 8px; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); scroll-padding-inline: var(--gutter); }
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__nav { display: flex; gap: 10px; }
.carousel__nav button { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; transition: all .3s; background: transparent; }
.carousel__nav button:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.section--pine .carousel__nav button { border-color: var(--line-light); }
.section--pine .carousel__nav button:hover { background: #fff; color: var(--ink); }
.dest { scroll-snap-align: start; }
.dest__img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 4; position: relative; }
.dest__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.dest:hover .dest__img img { transform: scale(1.06); }
.dest__km { position: absolute; top: 16px; left: 16px; background: rgba(251,248,242,.95); color: var(--ink); border-radius: 999px; padding: 6px 14px; font-weight: 800; font-size: 13px; display: inline-flex; gap: 6px; align-items: center; }
.dest__km .icon { width: 14px; height: 14px; color: var(--ember); }
.dest h3 { font-size: 1.6rem; margin: 18px 0 8px; }
.dest p { font-size: 15px; color: var(--muted); }
.section--pine .dest p { color: rgba(233,239,230,.72); }

/* ---------- Summit banner ---------- */
.banner { position: relative; border-radius: var(--radius-lg); overflow: hidden; color: #fff; min-height: 540px; display: flex; align-items: center; isolation: isolate; }
.banner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.banner::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(10,18,13,.82) 0%, rgba(10,18,13,.35) 60%, rgba(10,18,13,.1) 100%); }
.banner__body { padding: clamp(32px, 6vw, 80px); max-width: 640px; }
.banner .eyebrow { color: var(--gold); }
.banner h2 { margin-bottom: 18px; }
.banner p { color: rgba(255,255,255,.85); font-size: 1.08rem; }
.pill { display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; padding: 6px 14px; font-size: 12.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; background: var(--gold); color: var(--ink); margin-bottom: 20px; }

/* ---------- Reviews band ---------- */
.reviews { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 6vw, 90px); align-items: center; }
.review-cards { display: grid; gap: 16px; }
.review-card { display: flex; gap: 20px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.review-card__logo { width: 56px; height: 56px; border-radius: 50%; background: #34e0a1; display: flex; align-items: center; justify-content: center; flex: none; }
.review-card__logo svg { width: 34px; height: 34px; }
.review-card strong { display: block; font-size: 1.05rem; }
.review-card span { font-size: 14px; color: var(--muted); }
.review-card .icon--arrow-ur { margin-left: auto; width: 22px; height: 22px; color: var(--muted); }
.quote { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.5rem); line-height: 1.25; font-weight: 300; }
.quote em { font-style: italic; color: var(--ember); }

/* ---------- Journal ---------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 36px); }
.post-card { display: flex; flex-direction: column; }
.post-card__img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 11; background: var(--sand); }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.post-card:hover .post-card__img img { transform: scale(1.05); }
.post-card__meta { display: flex; gap: 12px; align-items: center; font-size: 13px; color: var(--muted); margin: 18px 0 10px; font-weight: 600; }
.post-card__meta .tag { color: var(--ember); text-transform: uppercase; letter-spacing: .12em; font-size: 11.5px; font-weight: 800; }
.post-card h3 { font-size: 1.45rem; line-height: 1.2; transition: color .2s; }
.post-card:hover h3 { color: var(--ember); }
.post-card p { font-size: 15px; color: var(--muted); margin-top: 10px; }
.posts--list .post-card--feature { grid-column: 1 / -1; display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.posts--list .post-card--feature .post-card__img { aspect-ratio: 16 / 10; }
.posts--list .post-card--feature h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(32px, 6vw, 90px); align-items: start; }
.faq__list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 24px; align-items: center; padding: 24px 0; font-family: var(--font-display); font-size: clamp(1.12rem, 1.6vw, 1.35rem); line-height: 1.3; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); flex: none; position: relative; transition: all .3s; }
.faq summary .plus::before, .faq summary .plus::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.5px; background: currentColor; transform: translate(-50%, -50%); transition: transform .35s var(--ease); }
.faq summary .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq details[open] summary .plus { background: var(--ink); color: #fff; border-color: var(--ink); }
.faq details[open] summary .plus::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq details > div { padding: 0 56px 26px 0; color: var(--muted); }
.faq details > div a { color: var(--ember); font-weight: 700; }
.section--sand .faq .faq__list, .section--sand .faq details { border-color: rgba(24,32,27,.14); }

/* ---------- CTA band ---------- */
.cta { position: relative; overflow: hidden; background: var(--pine); color: #fff; border-radius: var(--radius-lg); padding: clamp(40px, 7vw, 96px); display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; isolation: isolate; }
.cta::before { content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(199,161,90,.35), transparent 65%); z-index: -1; }
.cta__mountains { position: absolute; left: 0; right: 0; bottom: -2px; z-index: -1; opacity: .16; color: #fff; width: 100%; height: auto; }
.cta h2 { margin-bottom: 16px; }
.cta h2 em { color: var(--gold); font-style: italic; }
.cta p { color: rgba(255,255,255,.78); }
.perks { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 10px; }
.perks li { display: flex; gap: 12px; align-items: center; font-weight: 600; }
.perks .icon { color: var(--gold); width: 20px; height: 20px; }
.cta__actions { display: grid; gap: 12px; justify-items: stretch; }
.cta__actions .btn { min-height: 58px; }
.cta__actions small { text-align: center; color: rgba(255,255,255,.6); font-size: 13px; }

/* ---------- Rooms ---------- */
.rooms { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 32px); }
.room { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .5s var(--ease), transform .5s var(--ease); }
.room:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.room__gallery { position: relative; }
.room__track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; aspect-ratio: 4 / 3; }
.room__track::-webkit-scrollbar { display: none; }
.room__track img { flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover; scroll-snap-align: start; cursor: zoom-in; }
.room__arrows button { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: rgba(251,248,242,.92); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; box-shadow: var(--shadow-sm); }
.room__arrows button:first-child { left: 14px; } .room__arrows button:last-child { right: 14px; }
.room:hover .room__arrows button, .room__arrows button:focus-visible { opacity: 1; }
.room__count { position: absolute; right: 14px; bottom: 14px; background: rgba(10,18,13,.6); color: #fff; font-size: 12.5px; font-weight: 700; padding: 5px 10px; border-radius: 999px; backdrop-filter: blur(6px); }
.room__badge { position: absolute; left: 14px; top: 14px; background: var(--ember); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.room__body { padding: clamp(22px, 3vw, 32px); display: flex; flex-direction: column; flex: 1; }
.room__head { display: flex; justify-content: space-between; gap: 16px; align-items: start; }
.room h3 { font-size: clamp(1.5rem, 2.2vw, 1.9rem); }
.room__rate { text-align: right; flex: none; min-height: 40px; }
.room__rate strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: 1.4rem; line-height: 1.1; color: var(--pine); }
.room__rate span { font-size: 12.5px; color: var(--muted); }
.room__meta { display: flex; flex-wrap: wrap; gap: 16px; margin: 12px 0 14px; font-size: 14px; color: var(--muted); font-weight: 600; }
.room__meta span { display: inline-flex; align-items: center; gap: 6px; }
.room__meta .icon { width: 17px; height: 17px; color: var(--moss); }
.room__desc { font-size: 15px; color: var(--muted); }
.room__feats { list-style: none; padding: 0; margin: 16px 0 24px; display: flex; flex-wrap: wrap; gap: 6px; }
.room__feats li { font-size: 13px; font-weight: 600; background: var(--sand); border-radius: 999px; padding: 5px 12px; }
.room__foot { margin-top: auto; display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Overview ---------- */
.overview { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: start; }
.overview__text p { color: var(--ink-2); font-size: 1.08rem; }
.overview__text p:first-of-type::first-letter { font-family: var(--font-display); font-size: 4.2em; float: left; line-height: .82; padding: 6px 12px 0 0; color: var(--ember); }
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.checklist li { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.checklist li:first-child { border-top: 1px solid var(--line); }
.checklist .icon { width: 22px; height: 22px; color: var(--moss); margin-top: 2px; }
.checklist strong { display: block; }
.checklist span { font-size: 14.5px; color: var(--muted); }
.aside-card { background: var(--sand); border-radius: var(--radius-lg); padding: clamp(24px, 3.5vw, 40px); }
.aside-card h3 { font-size: 1.6rem; margin-bottom: 18px; }
.times { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 22px 0; }
.times div { background: #fff; border-radius: 14px; padding: 16px; }
.times small { display: block; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.times strong { font-family: var(--font-display); font-weight: 400; font-size: 1.6rem; }

/* ---------- Facilities grid ---------- */
.facilities { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.facility { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px 18px; display: flex; flex-direction: column; gap: 14px; transition: border-color .3s, transform .4s var(--ease); }
.facility:hover { border-color: var(--moss); transform: translateY(-3px); }
.facility .icon { width: 28px; height: 28px; color: var(--ember); stroke-width: 1.4; }
.facility span { font-weight: 700; font-size: 15px; line-height: 1.3; }

/* ---------- Gallery ---------- */
.gallery { columns: 3; column-gap: 14px; }
.gallery a { display: block; margin-bottom: 14px; border-radius: 16px; overflow: hidden; break-inside: avoid; position: relative; cursor: zoom-in; }
.gallery img { width: 100%; transition: transform 1s var(--ease), filter .4s; }
.gallery a:hover img { transform: scale(1.04); }
.gallery a::after { content: attr(data-caption); position: absolute; left: 12px; bottom: 12px; background: rgba(10,18,13,.6); color: #fff; font-size: 12.5px; font-weight: 700; padding: 5px 10px; border-radius: 999px; opacity: 0; transform: translateY(6px); transition: all .35s var(--ease); backdrop-filter: blur(6px); }
.gallery a:hover::after { opacity: 1; transform: none; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(8,12,10,.94); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(92vw, 1600px); max-height: 84vh; width: auto; height: auto; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox button { position: absolute; width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lightbox button:hover { background: rgba(255,255,255,.22); }
.lightbox .lb-close { top: 20px; right: 20px; }
.lightbox .lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-cap { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.8); font-size: 14px; }

/* ---------- Location ---------- */
.location { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: stretch; }
.map { border-radius: var(--radius-lg); overflow: hidden; min-height: 440px; background: var(--sand); box-shadow: var(--shadow-sm); }
.map iframe { width: 100%; height: 100%; min-height: 440px; border: 0; filter: saturate(.85); }
.distances { list-style: none; padding: 0; margin: 20px 0 28px; }
.distances li { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px dashed rgba(24,32,27,.2); }
.distances li span:last-child { font-weight: 800; white-space: nowrap; }
.address { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; }
.address .icon { color: var(--ember); margin-top: 3px; }

/* ---------- Other property ---------- */
.other { position: relative; display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius-lg); overflow: hidden; background: var(--sand); }
.other__img { min-height: 380px; }
.other__img img { width: 100%; height: 100%; object-fit: cover; }
.other__body { padding: clamp(32px, 5vw, 64px); display: flex; flex-direction: column; justify-content: center; }
.other__body h2 { margin-bottom: 16px; }
.other__body p { color: var(--muted); margin-bottom: 26px; }

/* ---------- Destinations page ---------- */
.dest-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 90px); align-items: center; }
.dest-row + .dest-row { margin-top: clamp(64px, 9vw, 120px); }
.dest-row:nth-child(even) .dest-row__img { order: 2; }
.dest-row__img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5 / 4; position: relative; }
.dest-row__img img { width: 100%; height: 100%; object-fit: cover; }
.dest-row__km { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5rem); line-height: 1; color: var(--moss); font-weight: 300; }
.dest-row__km small { font-family: var(--font-body); font-size: 14px; font-weight: 700; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; margin-left: 8px; }
.dest-row h2 { margin: 12px 0 16px; }
.dest-row p { color: var(--muted); }
.tips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; list-style: none; padding: 0; }
.tips li { background: var(--sand); border-radius: 999px; padding: 6px 14px; font-size: 13.5px; font-weight: 700; }

.seasons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.season { background: var(--pine-2); border-radius: var(--radius); padding: 28px 24px; border: 1px solid var(--line-light); }
.season .icon { width: 30px; height: 30px; color: var(--gold); margin-bottom: 18px; stroke-width: 1.3; }
.season h3 { font-size: 1.45rem; color: #fff; }
.season small { display: block; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: 11.5px; color: var(--gold); margin: 6px 0 12px; }
.season p { font-size: 14.5px; color: rgba(233,239,230,.72); }

.city-spots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.spot { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: #fff; }
.spot .icon { width: 26px; height: 26px; color: var(--ember); margin-bottom: 16px; }
.spot h3 { font-size: 1.35rem; margin-bottom: 8px; }
.spot p { font-size: 14.5px; color: var(--muted); }

/* ---------- Timeline (about) ---------- */
.timeline { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.timeline::before { content: ""; position: absolute; left: 0; right: 0; top: 11px; height: 1px; background: var(--line); }
.tl-item { position: relative; padding-top: 42px; }
.tl-item::before { content: ""; position: absolute; top: 4px; left: 0; width: 15px; height: 15px; border-radius: 50%; background: var(--ember); box-shadow: 0 0 0 6px var(--paper); }
.tl-item strong { font-family: var(--font-display); font-size: 2rem; font-weight: 400; display: block; line-height: 1; margin-bottom: 10px; color: var(--pine); }
.tl-item h3 { font-size: 1.3rem; margin-bottom: 8px; }
.tl-item p { color: var(--muted); font-size: 15px; }

.mvv { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mvv > div { background: #fff; border-radius: var(--radius-lg); padding: clamp(28px, 3.5vw, 44px); border: 1px solid var(--line); }
.mvv .icon { width: 34px; height: 34px; color: var(--ember); margin-bottom: 22px; stroke-width: 1.3; }
.mvv h3 { font-size: 1.8rem; margin-bottom: 12px; }
.mvv p { color: var(--muted); }
.mvv ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.mvv li { font-family: var(--font-display); font-size: 1.4rem; display: flex; align-items: center; gap: 10px; }
.mvv li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--moss); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(32px, 6vw, 90px); align-items: start; }
.contact-cards { display: grid; gap: 14px; }
.contact-card { display: flex; gap: 18px; align-items: flex-start; padding: 22px 24px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); transition: border-color .3s, transform .4s var(--ease); }
a.contact-card:hover { border-color: var(--ember); transform: translateX(4px); }
.contact-card__icon { width: 48px; height: 48px; border-radius: 14px; background: var(--sand); display: flex; align-items: center; justify-content: center; flex: none; color: var(--ember); }
.contact-card__icon .icon { width: 22px; height: 22px; }
.contact-card small { display: block; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 2px; }
.contact-card strong { font-size: 1.08rem; display: block; }
.contact-card span { font-size: 14.5px; color: var(--muted); display: block; }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 48px); box-shadow: var(--shadow-sm); }
.form h2 { margin-bottom: 8px; }
.form > p { color: var(--muted); margin-bottom: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; color: var(--ink-2); }
.field input, .field select, .field textarea { border: 1px solid rgba(24,32,27,.18); border-radius: 12px; padding: 13px 15px; background: var(--paper); font-size: 15.5px; transition: border-color .2s, box-shadow .2s, background .2s; width: 100%; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--moss); background: #fff; box-shadow: 0 0 0 4px rgba(111,143,76,.15); }
.form__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; align-items: center; }
.form__note { font-size: 13.5px; color: var(--muted); margin-top: 14px; }
.form__error { color: var(--ember); font-size: 14px; font-weight: 700; margin-top: 12px; display: none; }
.form__error.show { display: block; }
.map-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.map-card { border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid var(--line); }
.map-card iframe { width: 100%; height: 320px; border: 0; display: block; }
.map-card div { padding: 22px 24px; display: flex; justify-content: space-between; gap: 16px; align-items: center; flex-wrap: wrap; }
.map-card h3 { font-size: 1.4rem; }
.map-card p { font-size: 14.5px; color: var(--muted); }

/* ---------- Book page ---------- */
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.book-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.book-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.book-card__img { aspect-ratio: 16 / 10; overflow: hidden; }
.book-card__img img { width: 100%; height: 100%; object-fit: cover; }
.book-card__body { padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; gap: 14px; flex: 1; }
.book-card h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.book-card p { color: var(--muted); }
.book-card .btn-row { margin-top: auto; }

/* ---------- Article ---------- */
.article-hero { padding-top: calc(var(--header-h) + clamp(40px, 7vw, 90px)); padding-bottom: clamp(32px, 5vw, 56px); }
.article-hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); max-width: 20ch; }
.article-hero .post-card__meta { margin: 0 0 20px; }
.article-cover { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 21 / 9; margin-bottom: clamp(40px, 6vw, 72px); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(40px, 6vw, 90px); align-items: start; }
.prose { font-size: 1.08rem; line-height: 1.8; color: var(--ink-2); max-width: 720px; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: clamp(1.7rem, 2.8vw, 2.2rem); margin-top: 1.8em; color: var(--ink); }
.prose h3 { font-size: clamp(1.35rem, 2.1vw, 1.65rem); margin-top: 1.6em; color: var(--ink); }
.prose h4 { font-size: 1.2rem; margin-top: 1.4em; font-family: var(--font-body); font-weight: 800; }
.prose p { margin-bottom: 0; }
.prose > h2 + *, .prose > h3 + *, .prose > h4 + * { margin-top: .5em; }
.prose a { color: var(--ember); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: .4em; }
.prose li::marker { color: var(--ember); }
.prose figure { margin: 2em 0; }
.prose figure img { border-radius: var(--radius); width: 100%; }
.prose figcaption { font-size: 14px; color: var(--muted); margin-top: 10px; text-align: center; }
.prose blockquote { margin: 1.6em 0; padding: 4px 0 4px 24px; border-left: 3px solid var(--moss); font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); }
.prose table { width: 100%; border-collapse: collapse; font-size: 15px; }
.prose th, .prose td { border-bottom: 1px solid var(--line); padding: 10px; text-align: left; }
.sidebar { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 16px; }
.sidebar .aside-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.sidebar .aside-card p { font-size: 15px; color: var(--muted); margin-bottom: 18px; }
.sidebar .aside-card .btn { width: 100%; margin-top: 8px; }
.share { display: flex; gap: 8px; align-items: center; font-size: 14px; font-weight: 700; color: var(--muted); }
.share a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--ink); transition: all .2s; }
.share a:hover { background: var(--ink); color: #fff; }
.share .icon { width: 17px; height: 17px; }

/* ---------- Footer ---------- */
.site-footer { background: #121d17; color: rgba(236,241,233,.72); padding-top: clamp(64px, 9vw, 110px); font-size: 15px; position: relative; overflow: hidden; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: clamp(48px, 7vw, 80px); }
.footer-brand img { height: 64px; width: auto; margin-bottom: 20px; }
.footer-brand p { max-width: 330px; }
.site-footer h4 { font-family: var(--font-body); font-size: 12.5px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact .icon { width: 17px; height: 17px; color: var(--gold); margin-top: 4px; }
.socials { display: flex; gap: 10px; margin-top: 24px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; color: #fff; transition: all .25s; }
.socials a:hover { background: #fff; color: var(--ink); }
.socials .icon { width: 18px; height: 18px; }
.footer-word { font-family: var(--font-display); font-size: clamp(4rem, 17vw, 15rem); line-height: .8; letter-spacing: -0.04em; color: rgba(255,255,255,.04); white-space: nowrap; text-align: center; user-select: none; margin-bottom: -0.12em; font-weight: 400; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }

/* ---------- Floating actions ---------- */
.fab-wa { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 34px -10px rgba(0,0,0,.45); transition: transform .35s var(--ease); }
.fab-wa:hover { transform: scale(1.08) rotate(-6deg); }
.fab-wa svg { width: 30px; height: 30px; fill: #fff; }
.fab-wa::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #25d366; z-index: -1; animation: pulse 2.6s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(1.7); opacity: 0; } }
.mobile-book { display: none; }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 250; display: flex; align-items: center; justify-content: center; padding: 16px; opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s; }
.modal.open { opacity: 1; visibility: visible; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(8,12,10,.62); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.modal__panel { position: relative; background: var(--paper); border-radius: var(--radius-lg); width: min(860px, 100%); max-height: calc(100vh - 32px); overflow-y: auto; padding: clamp(24px, 4vw, 44px); transform: translateY(20px) scale(.98); transition: transform .45s var(--ease); box-shadow: var(--shadow-lg); }
.modal.open .modal__panel { transform: none; }
.modal__close { position: absolute; right: 16px; top: 16px; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; background: #fff; }
.modal h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 8px; padding-right: 50px; }
.modal__lead { color: var(--muted); margin-bottom: 26px; }
.modal__options { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.modal-opt { border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; transition: border-color .3s, transform .4s var(--ease), box-shadow .4s; }
.modal-opt:hover { border-color: var(--ember); transform: translateY(-3px); box-shadow: var(--shadow); }
.modal-opt__img { aspect-ratio: 16 / 10; overflow: hidden; }
.modal-opt__img img { width: 100%; height: 100%; object-fit: cover; }
.modal-opt__body { padding: 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.modal-opt h3 { font-size: 1.5rem; }
.modal-opt p { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.modal-opt .btn { margin-top: auto; }
.modal__foot { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 14.5px; color: var(--muted); }
.modal__foot a { color: var(--ink); font-weight: 700; }
body.no-scroll { overflow: hidden; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 22px 0; background: var(--paper); }
.marquee__inner { display: flex; gap: 48px; width: max-content; animation: marquee 40s linear infinite; }
.marquee span { font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 2.2rem); white-space: nowrap; display: inline-flex; align-items: center; gap: 48px; color: var(--ink-2); font-style: italic; font-weight: 300; }
.marquee span::after { content: "✦"; font-style: normal; color: var(--ember); font-size: .6em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 404 ---------- */
.notfound { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--pine); color: #fff; position: relative; overflow: hidden; isolation: isolate; }
.notfound > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; opacity: .45; }
.notfound h1 { font-size: clamp(6rem, 20vw, 14rem); line-height: 1; font-weight: 300; }
.notfound p { font-size: 1.2rem; margin: 10px 0 30px; color: rgba(255,255,255,.85); }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
[data-reveal="fade"] { transform: none; }
[data-reveal="left"] { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal].in { opacity: 1; transform: none; }
.no-js [data-reveal] { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .08s; } [data-delay="2"] { transition-delay: .16s; } [data-delay="3"] { transition-delay: .24s; } [data-delay="4"] { transition-delay: .32s; } [data-delay="5"] { transition-delay: .4s; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .nav, .header-phone { display: none; }
  .menu-toggle { display: inline-flex; }
  .amenities { grid-template-columns: repeat(2, 1fr); }
  .facilities { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .seasons { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  :root { --header-h: 72px; }
  body { font-size: 16px; }
  .booking-bar { grid-template-columns: 1fr 1fr; }
  .booking-bar__field:nth-child(3)::before { display: none; }
  .booking-bar .btn { grid-column: 1 / -1; min-height: 56px; }
  .intro, .story, .property, .reviews, .faq, .overview, .location, .contact-grid, .dest-row, .cta, .other, .article-layout, .posts--list .post-card--feature { grid-template-columns: 1fr; }
  .property--flip .property__media, .dest-row:nth-child(even) .dest-row__img { order: 0; }
  .property__inset { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { padding-left: 0; border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); margin-top: 0; }
  .occasions, .posts, .city-spots, .mvv, .timeline { grid-template-columns: 1fr 1fr; }
  .rooms, .book-grid, .map-pair { grid-template-columns: 1fr; }
  .facts-bar .container { grid-template-columns: 1fr 1fr; }
  .fact { border-left: 0; padding-left: 0; }
  .fact:nth-child(n+3) { border-top: 1px solid var(--line-light); }
  .gallery { columns: 2; }
  .story__badge { left: 12px; bottom: 12px; width: 108px; height: 108px; }
  .sidebar { position: static; }
  .timeline::before { display: none; }
  .other__img { min-height: 260px; }
  .occasion p { max-height: none; opacity: 1; }
  .mobile-book { display: flex; position: fixed; left: 12px; right: 84px; bottom: 16px; z-index: 89; transform: translateY(140%); transition: transform .5s var(--ease); }
  .mobile-book.show { transform: none; }
  .mobile-book .btn { width: 100%; min-height: 56px; box-shadow: 0 14px 34px -10px rgba(0,0,0,.45); }
  .fab-wa { bottom: 14px; right: 14px; }
  .hero__caption { display: none; }
}
@media (max-width: 600px) {
  .booking-bar { grid-template-columns: 1fr; }
  .booking-bar__field + .booking-bar__field::before { display: none; }
  .booking-bar__field { padding: 8px 12px; }
  .booking-bar__field.hide-sm { display: none; }
  .occasions, .posts, .city-spots, .mvv, .timeline, .form-grid, .modal__options, .values { grid-template-columns: 1fr; }
  .facilities { grid-template-columns: 1fr 1fr; }
  .amenities { grid-template-columns: 1fr; }
  .seasons { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .hero__cta .btn, .page-hero .hero__cta .btn { flex: 1 1 100%; }
  .times { grid-template-columns: 1fr 1fr; }
  .faq details > div { padding-right: 0; }
  .occasion { min-height: 340px; }
  .modal-opt__img { aspect-ratio: 16 / 8; }
  .footer-bottom { flex-direction: column; }
  .brand img { height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .fab-wa, .mobile-book, .modal { display: none !important; }
}

.prose img { border-radius: var(--radius); width: 100%; margin: 2em 0 .5em; }
.prose figure img { margin: 0; }
.prose .post-cta { margin: 2.4em 0; padding: 28px 30px; border-radius: var(--radius); background: var(--sand); display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.prose .post-cta p { font-family: var(--font-display); font-size: 1.35rem; color: var(--ink); line-height: 1.3; }
.prose .post-cta a.btn { color: #fff; text-decoration: none; }
.prose a.btn { color: #fff; text-decoration: none; font-weight: 700; }

/* ---------- Article components (HospiCore post) ---------- */
.prose .lede { font-size: 1.22rem; line-height: 1.7; color: var(--ink); }
.prose .disclosure { display: flex; gap: 14px; align-items: flex-start; background: var(--sand); border-left: 3px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 18px 20px; font-size: .98rem; }
.prose .disclosure .icon { width: 22px; height: 22px; color: var(--ember); margin-top: 3px; }
.prose .table-wrap { overflow-x: auto; margin: 1.6em 0 .4em; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; -webkit-overflow-scrolling: touch; }
.prose table.compare { min-width: 640px; font-size: 14.5px; line-height: 1.45; }
.prose .compare th { font-family: var(--font-body); font-weight: 800; font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); background: var(--paper); vertical-align: bottom; padding: 14px 12px; }
.prose .compare td { padding: 12px; vertical-align: middle; }
.prose .compare td:first-child { font-weight: 700; color: var(--ink); }
.prose .compare .hl { background: rgba(14, 33, 72, .05); color: #0e2148; font-weight: 700; }
.prose .compare th.hl { color: #0e2148; background: rgba(201, 162, 74, .18); }
.prose .compare tr:last-child td { border-bottom: 0; }
.cmp { display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; }
.cmp--yes { width: 24px; height: 24px; border-radius: 50%; background: #1f8f4e; color: #fff; font-size: 13px; margin-right: 4px; }
.cmp--part { color: #9a6b12; }
.cmp--no { color: #aab0a9; }
.prose .small-note { font-size: 13px; color: var(--muted); }
.prose ol.steps { list-style: none; padding: 0; counter-reset: step; display: grid; gap: 14px; }
.prose ol.steps li { counter-increment: step; position: relative; padding: 18px 20px 18px 66px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin: 0; }
.prose ol.steps li::before { content: counter(step); position: absolute; left: 18px; top: 18px; width: 32px; height: 32px; border-radius: 50%; background: #0e2148; color: #e3c47a; font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 15px; }
.prose .shot-pair { display: grid; grid-template-columns: .72fr 1fr; gap: 18px; align-items: start; margin: 2em 0; }
.prose .shot-pair figure { margin: 0; }
.prose figure img[src*="hc-shot"], .prose figure img[src*="hc-qr-flow"] { border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: #fff; }
.prose ul.store-links { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.prose ul.store-links li { margin: 0; }
.prose ul.store-links a { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; background: #0e2148; color: #fff; text-decoration: none; font-size: 14.5px; }
.prose ul.store-links a:hover { background: #1b3a78; }
.prose ul.store-links .icon { width: 17px; height: 17px; color: #e3c47a; }
.prose ul.feature-list { list-style: none; padding: 0; display: grid; gap: 10px; }
.prose ul.feature-list li { padding-left: 28px; position: relative; margin: 0; }
.prose ul.feature-list li::before { content: ""; position: absolute; left: 4px; top: .7em; width: 10px; height: 10px; border-radius: 3px; background: var(--gold); transform: rotate(45deg); }
.prose ul.checks { list-style: none; padding: 0; }
.prose ul.checks li { padding-left: 32px; position: relative; }
.prose ul.checks li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%; background: var(--moss-soft); color: var(--pine); font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; }
.prose .hc-cta { display: flex; gap: 22px; align-items: flex-start; margin: 2.4em 0 0; padding: 28px; border-radius: var(--radius-lg); background: linear-gradient(135deg, #132b5c, #0e2148 60%, #0a1a3a); color: #c8d0e4; }
.prose .hc-cta img { width: 88px; height: 88px; margin: 0; border-radius: 20px; flex: none; }
.prose .hc-cta p { margin: 0 0 6px; font-size: 15px; }
.prose .hc-cta .hc-cta__title { font-family: var(--font-display); font-size: 1.6rem; color: #fff; line-height: 1.2; }
.prose .hc-cta__btns { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 12px; }
.prose .hc-cta .btn--ghost { --fg: #fff; --bd: rgba(255,255,255,.4); color: #fff; }
.prose .hc-cta .btn--primary { --bg: #c9a24a; --fg: #0e2148; color: #0e2148; }
.prose .hc-cta .hc-cta__small { font-size: 13px; color: #9aa6c4; }
.prose .hc-cta .hc-cta__small a { color: #e3c47a; }
@media (max-width: 600px) {
  .prose .shot-pair { grid-template-columns: 1fr; }
  .prose .hc-cta { flex-direction: column; padding: 22px; }
}
.article-cover:has(img[src*="hc-cover"]) { aspect-ratio: 16 / 9; }

.prose .shot-pair--even { grid-template-columns: 1fr 1fr; }
@media (max-width: 900px) { .article-layout { grid-template-columns: minmax(0, 1fr); } }
