/* site.css - the lynxresort design system (September 2026 redesign).

   One sheet for every public page: tokens, base type, the framed page shell,
   header and footer, buttons, forms, disclosure widgets, and the components
   used by the homepage, the property pages and the photo tours. Page-specific
   sheets (area.css, portal.css, guides) layer on top and use the same tokens.

   Themes. Light is the design as delivered; dark is the night-green version.
   Every colour is a token, so a component never names a colour of its own.
   The theme is chosen by /js/site.js (OS preference, remembered choice) and
   expressed as data-theme on <html>; the tokens below follow it.

   Fonts are self-hosted so the wordmark renders the same on every device:
   Inter for text, TeX Gyre Pagella (a Palatino design, GUST font license,
   see /fonts/GUST-FONT-LICENSE-pagella.txt) for the wordmark and the serif
   lead paragraphs. */

@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("/fonts/inter-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap; src: url("/fonts/inter-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url("/fonts/inter-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 700; font-display: swap; src: url("/fonts/inter-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family: "Pagella"; font-style: normal; font-weight: 400; font-display: swap; src: url("/fonts/pagella-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Pagella"; font-style: normal; font-weight: 700; font-display: swap; src: url("/fonts/pagella-latin-700-normal.woff2") format("woff2"); }

/* ------------------------------------------------------------------ tokens */
:root {
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-serif: "Pagella", Palatino, "Palatino Linotype", "Book Antiqua", Georgia, serif;

  /* light */
  --canvas: #edf0ec;          /* outside the page */
  --frame: #e1e5de;           /* the homepage's thick frame */
  --frame-line: #cdd4ca;
  --surface: #ffffff;         /* the page itself */
  --surface-2: #f2f6f3;       /* soft panels: benefits strip, amenity strip */
  --surface-3: #f3f6f0;       /* host card */
  --line: #d9dfd8;            /* rules and borders */
  --line-2: #d8ded6;
  --edge: #d1d7ce;            /* page outline */
  --ink: #17252a;             /* body text */
  --ink-2: #21372d;           /* headings, wordmark */
  --ink-3: #20372c;           /* serif lead */
  --muted: #53684c;           /* secondary copy */
  --muted-2: #637959;
  --soft: #69756e;            /* small print */
  --accent: #134f3e;          /* buttons, current nav */
  --accent-hover: #0e3d30;
  --accent-ink: #ffffff;      /* text on accent */
  --accent-soft: rgba(19, 79, 62, 0.10);
  --gold: #b68a32;            /* stars, ratings */
  --gold-2: #b37527;          /* travel times */
  --gold-line: #a98443;
  --gold-ink: #7d5e25;
  --icon: #134f3e;            /* amenity icons */
  --focus: #ad713d;
  --error: #ab3326;
  --shadow-card: 0 5px 28px rgba(33, 56, 49, 0.05);
  --shadow-page: 0 18px 70px rgba(35, 54, 43, 0.08);
  --shadow-pop: 0 18px 50px rgba(20, 40, 32, 0.18);
  --hero-veil: rgba(4, 24, 21, 0.61);
  --scrim: rgba(18, 34, 26, 0.79);
  --field: #ffffff;
  --field-line: #d5dcd6;
  --logo-light: block;
  --logo-dark: none;
  color-scheme: light;
}

:root[data-theme="dark"] {
  --canvas: #050807;
  --frame: #0a0f0d;
  --frame-line: #1c2620;
  --surface: #0d1510;
  --surface-2: #16221b;
  --surface-3: #131f18;
  --line: #263329;
  --line-2: #22302a;
  --edge: #1e2a24;
  --ink: #f5f0e8;
  --ink-2: #f5f0e8;
  --ink-3: #efe9df;
  --muted: #aebaae;
  --muted-2: #9fb0a4;
  --soft: #8a9b8f;
  --accent: #c17f3e;
  --accent-hover: #a86a2f;
  --accent-ink: #ffffff;
  --accent-soft: rgba(193, 127, 62, 0.16);
  --gold: #c17f3e;
  --gold-2: #d4924d;
  --gold-line: #c17f3e;
  --gold-ink: #d4924d;
  --icon: #8fb89e;
  --focus: #d4924d;
  --error: #f0a08c;
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-page: 0 18px 70px rgba(0, 0, 0, 0.5);
  --shadow-pop: 0 24px 64px rgba(0, 0, 0, 0.6);
  --hero-veil: rgba(3, 8, 6, 0.7);
  --scrim: rgba(3, 8, 6, 0.85);
  --field: #121c16;
  --field-line: #2f3f35;
  --logo-light: none;
  --logo-dark: block;
  color-scheme: dark;
}

/* Legacy token bridge. The guest portal, the amenity guides and the Wi-Fi
   pages were written against the old palette's names (copper, cream, sage,
   night). Those names now resolve to the new tokens, per theme, so those
   sheets follow the theme without a rewrite. */
:root {
  --copper: var(--accent); --rust: var(--accent-hover);
  --cream: var(--ink); --cream-rgb: 23, 37, 42;
  --sage: var(--muted); --sage-rgb: 83, 104, 76;
  --moss: var(--surface-2); --night: var(--surface); --forest: var(--surface-2);
  --surface-rgb: 23, 37, 42;
  --field-bg: var(--field); --field-border: var(--field-line); --backdrop: var(--scrim);
  --edge-50: var(--line);
}
:root[data-theme="dark"] {
  --cream-rgb: 245, 240, 232; --sage-rgb: 174, 186, 174; --surface-rgb: 255, 255, 255;
}

/* ------------------------------------------------------------------ base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font: 16px/1.6 var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--ink-2); }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; -webkit-tap-highlight-color: transparent; }
button, a { touch-action: manipulation; }
input, select, textarea { font: inherit; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
svg { display: block; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}
summary { cursor: pointer; }
summary::-webkit-details-marker { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.15em; font-size: 12px; line-height: 1.5; font-weight: 500; }
.muted { color: var(--muted); }

/* ------------------------------------------------------------------ shell */
/* The page sits on the canvas as a framed sheet. Home gets the thick
   double frame from the design; every other page the thin outline. */
.shell {
  width: calc(100% - 64px);
  max-width: 1280px;
  margin: 28px auto 48px;
  background: var(--surface);
  border: 1px solid var(--edge);
  border-radius: 9px;
  box-shadow: var(--shadow-page);
  overflow: clip;
}
.shell--home {
  max-width: 1344px;
  width: calc(100% - 80px);
  margin: 34px auto 45px;
  border: 24px solid var(--frame);
  outline: 1px solid var(--frame-line);
  border-radius: 10px;
}
.shell--narrow { max-width: 1120px; }

/* ------------------------------------------------------------------ header */
.head {
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 32px;
  background: var(--surface);
}
.brand { display: flex; align-items: center; gap: 12px; min-height: 48px; white-space: nowrap; }
.brand-mark { position: relative; width: 76px; height: 91px; flex: 0 0 auto; }
.brand-mark img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.brand-mark .logo-light { display: var(--logo-light); }
.brand-mark .logo-dark { display: var(--logo-dark); }
/* The purple mark is the green mark's hover state and its click state: the
   brand link swaps to it for a couple of seconds on the way home. */
.brand-mark .logo-purple { opacity: 0; transition: opacity 0.25s; }
.brand.is-flashing .logo-purple { opacity: 1; }
.brand.is-flashing .logo-green { opacity: 0; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -1.8px;
  line-height: 1;
  color: var(--ink-2);
}
.head-nav { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.head-nav a { font-size: 13px; min-height: 44px; display: flex; align-items: center; color: var(--ink); }
.head-nav a[aria-current="page"] { color: var(--accent); text-decoration: underline; text-underline-offset: 7px; }
.head-book { flex: 0 0 auto; }
.menu-toggle { display: none; }
.theme-toggle {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--surface);
}
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .tt-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .tt-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .tt-moon { display: none; }
.mobile-menu { display: none; }
.mobile-menu[data-open] { display: grid; gap: 4px; padding: 6px 16px 18px; background: var(--surface); border-bottom: 1px solid var(--line); }
.mobile-menu a { padding: 12px 10px; font-size: 15px; border-radius: 6px; }
.mobile-menu a[aria-current="page"] { color: var(--accent); font-weight: 600; }
.mobile-menu .button { margin-top: 8px; }

/* ------------------------------------------------------------------ buttons */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--accent); color: var(--accent-ink);
  min-height: 48px; padding: 12px 25px;
  border-radius: 2px; font-size: 14px; font-weight: 500;
  transition: background 0.2s;
}
.button:hover { background: var(--accent-hover); }
.button--outline { background: transparent; color: var(--ink); border: 1px solid currentColor; }
.button--outline:hover { background: var(--accent-soft); }
.button--wide { width: 100%; }
.explore {
  display: flex; align-items: center; justify-content: center; gap: 22px;
  border: 1px solid currentColor; border-radius: 3px;
  min-height: 46px; padding: 11px 20px; font-size: 14px; width: 100%; text-align: center;
  color: var(--ink);
}
.explore:hover { background: var(--accent-soft); }
.text-link { display: inline-block; min-height: 44px; padding: 10px 0; text-decoration: underline; text-underline-offset: 6px; color: var(--ink); }
.gold-link { color: var(--gold-ink); text-decoration: underline; text-underline-offset: 3px; }

/* ------------------------------------------------------------------ forms */
.field { display: block; font-size: 13px; color: var(--ink); }
.field > span { display: block; margin-bottom: 9px; }
.control {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  width: 100%; min-height: 47px; padding: 10px 12px;
  background: var(--field); border: 1px solid var(--field-line); border-radius: 4px;
  font-size: 14px; color: var(--ink); text-align: left;
}
.control:hover { border-color: var(--muted); }
.control .placeholder { color: var(--soft); }
.control svg { width: 16px; height: 16px; flex: 0 0 auto; color: var(--muted); }
input.control, textarea.control { display: block; }
select.control, .select { appearance: none; -webkit-appearance: none; padding-right: 34px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2369756e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; }
select.control option { background: var(--surface); color: var(--ink); }
textarea.control { min-height: 120px; resize: vertical; }

/* ------------------------------------------------------------------ details */
.faq details { border-bottom: 1px solid var(--line); padding: 17px 0; }
.faq summary { display: flex; align-items: center; gap: 12px; min-height: 30px; font-size: 15px; list-style: none; }
.faq summary::before { content: ""; width: 0; height: 0; border-left: 7px solid currentColor; border-top: 5px solid transparent; border-bottom: 5px solid transparent; transition: transform 0.2s; flex: 0 0 auto; }
.faq details[open] > summary::before { transform: rotate(90deg); }
.faq .copy { padding-top: 12px; }
.copy p { font-size: 15px; line-height: 1.75; margin: 12px 0; color: var(--ink); }
.copy p:first-child { margin-top: 0; }
.copy li { font-size: 15px; line-height: 1.7; margin: 8px 0; }
.copy ul { padding-left: 22px; }
.copy h3 { font-size: 22px; margin: 24px 0 16px; }
.copy a { text-decoration: underline; text-underline-offset: 3px; }
.copy strong { color: var(--ink-2); }

/* ------------------------------------------------------------------ footer */
.foot {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  border-top: 1px solid var(--line);
  padding: 35px 0 45px; font-size: 14px;
}
.foot .brand-mark { width: 65px; height: 78px; }
.foot .brand-name { font-size: 30px; }
.foot p { margin: 18px 0; color: var(--ink); }
.foot small { opacity: 0.7; display: block; }
.foot-col { display: flex; flex-direction: column; gap: 13px; }
.foot-col .eyebrow { margin-bottom: 5px; color: var(--ink-2); }
.foot-col a, .foot-col button { text-align: left; color: var(--ink); }
.foot-col a:hover, .foot-col button:hover { text-decoration: underline; text-underline-offset: 4px; }
.foot-social { display: flex; gap: 14px; margin-top: 4px; }
.foot-social a { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; }
.foot-social svg { width: 16px; height: 16px; }
.page-pad { padding: 0 32px; }

/* ------------------------------------------------------------------ home */
.hero { position: relative; height: 465px; overflow: hidden; }
.hero > img { width: 100%; height: 100%; object-fit: cover; object-position: center 56%; filter: brightness(0.84); }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--hero-veil), transparent 85%); }
.hero-copy { position: absolute; left: 55px; top: 112px; right: 40px; z-index: 1; color: #fff; }
.hero-copy .eyebrow { font-size: 13px; letter-spacing: 0.25em; }
.hero-copy h1 { color: #fff; font-size: 56px; line-height: 1.07; letter-spacing: -2px; margin: 20px 0; }
.hero-copy p:last-child { font-size: 16px; line-height: 1.5; max-width: 34ch; }
.home-inner { padding: 0 26px; }

/* The search strip overlaps the hero. */
.search {
  position: relative; z-index: 2;
  margin: -42px 0 26px;
  display: grid; grid-template-columns: 1.15fr 1fr 1fr 0.9fr 1.35fr; gap: 18px;
  padding: 27px 28px;
  background: var(--surface); border-radius: 5px;
  box-shadow: var(--shadow-card);
  align-items: end;
}
.search .button { height: 47px; min-height: 47px; white-space: nowrap; gap: 15px; }
.search .search-error { grid-column: 1 / -1; color: var(--error); font-size: 14px; margin: 0; }
.search .search-error:empty { display: none; }
.pop-anchor { position: relative; }

.home-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 25px; }
.home-card { border: 1px solid var(--line); border-radius: 7px; overflow: hidden; background: var(--surface); }
.card-photo { display: block; overflow: hidden; }
.card-photo img { width: 100%; aspect-ratio: 1.68; object-fit: cover; transition: transform 0.4s; }
.card-photo:hover img { transform: scale(1.025); }
.card-body { padding: 23px 28px 25px; }
.card-body .eyebrow { font-size: 11px; letter-spacing: 0.16em; margin-bottom: 12px; color: var(--ink-2); }
.card-body h2 { font-size: 31px; line-height: 1.15; letter-spacing: -1px; margin: 0 0 13px; }
.card-body > p:not(.eyebrow) { font-size: 16px; color: var(--muted); line-height: 1.55; margin: 0 0 18px; }
.amenity-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 24px 0; color: var(--icon); }
.amenity-row > div { display: flex; flex-direction: column; gap: 10px; font-size: 13px; line-height: 1.4; }
.amenity-row svg, .all-amenities svg { width: 30px; height: 30px; flex: 0 0 auto; }
.amenity-row span { color: var(--ink); }

.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; background: var(--surface-2); padding: 30px 25px; margin: 30px 0; border-radius: 6px; }
.benefits > div { display: flex; align-items: center; gap: 12px; color: var(--accent); }
.benefits svg { width: 28px; height: 28px; flex: 0 0 auto; }
.benefits span { font-size: 14px; font-weight: 700; color: var(--ink-2); }
.benefits small { display: block; font-size: 12px; font-weight: 400; margin-top: 5px; color: var(--muted); }

.home-faq { padding: 35px 5px 45px; }
.home-faq > .eyebrow { color: var(--ink-2); }
.home-faq > h2 { font-size: 36px; letter-spacing: -1px; margin: 15px 0 25px; }
.faq-home-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 45px; }
.faq-home-grid h3 { font-size: 23px; font-weight: 400; margin: 15px 0; }

/* ------------------------------------------------------------------ property page */
.property { padding: 0 32px; }
.property-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 28px; align-items: start; }
.main-col { min-width: 0; }
.side-col { position: sticky; top: 24px; }

.mosaic {
  position: relative; display: grid;
  aspect-ratio: 2.16;
  grid-template-columns: 2.2fr 1fr; grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px; border-radius: 6px; overflow: hidden;
}
.mosaic > a { display: block; min-width: 0; min-height: 0; line-height: 0; overflow: hidden; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; }
.mosaic-main { grid-row: 1 / 3; }
.all-photos {
  position: absolute; bottom: 15px; right: 15px;
  background: rgba(255, 254, 244, 0.93); color: #152b22;
  padding: 10px 17px; min-height: 42px; border-radius: 4px; font-size: 13px;
  display: inline-flex; align-items: center;
}
.tabs { display: flex; justify-content: space-between; gap: 6px; border-bottom: 1px solid var(--line); padding: 14px 0; margin-top: 6px; overflow-x: auto; scrollbar-width: none; }
.tabs a { font-size: 14px; white-space: nowrap; min-height: 43px; padding: 8px; display: flex; align-items: center; border-bottom: 2px solid transparent; }
.tabs a[aria-current] { border-bottom-color: var(--accent); }

.section { padding: 40px 0; border-bottom: 1px solid var(--line-2); scroll-margin-top: 20px; }
.section h2 { font-size: 30px; letter-spacing: -0.7px; margin-bottom: 17px; }
.section > p { font-size: 16px; color: var(--muted); line-height: 1.75; }
.section-head { display: flex; justify-content: space-between; align-items: center; gap: 15px; margin-bottom: 22px; }
.section-head h2 { margin: 0; }
.section-head p { font-size: 14px; color: var(--muted); margin-top: 8px; }
.section-head > span { font-size: 14px; white-space: nowrap; }
.section > .explore { margin-top: 25px; }
.soft { font-size: 13px; color: var(--soft); line-height: 1.5; }

.glance { padding-top: 23px; }
.glance-facts { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 26px; font-size: 14px; line-height: 1.7; }
.glance-facts a { white-space: nowrap; min-height: 44px; display: inline-flex; align-items: center; }
.gold { color: var(--gold); }
.glance h1 { font-weight: 500; font-size: 12px; line-height: 1.4; letter-spacing: 0.22em; text-transform: uppercase; margin: 0 0 30px; color: var(--ink-2); }
.glance-inner { display: grid; grid-template-columns: 175px 1fr; gap: 32px; align-items: start; }
.glance-icons .amenity-row { display: grid; grid-template-columns: 1fr; gap: 25px; margin: 0; }
.glance-icons .amenity-row > div { flex-direction: row; align-items: center; gap: 16px; font-size: 15px; }
.glance-icons .amenity-row svg { width: 35px; height: 35px; }
.glance-icons .expanded-icons { display: none; margin-top: 25px; }
.glance:has(.inline-description[open]) .expanded-icons { display: grid; }
.glance-lead { font-family: var(--font-serif); font-size: 20px; line-height: 1.65; color: var(--ink-3); margin: 0 0 24px; }
.glance-more { font-size: 15px; line-height: 1.85; color: var(--muted); margin: 0 0 22px; }
.inline-description { margin: 0; }
.inline-description summary {
  display: flex; align-items: center; min-height: 44px; width: fit-content;
  font-size: 12px; line-height: 1.6; letter-spacing: 0.1em;
  color: var(--ink-2); text-decoration: underline; text-underline-offset: 7px;
}
.description-close { display: none; }
.inline-description[open] .description-open { display: none; }
.inline-description[open] .description-close { display: inline; }
.inline-description .copy { padding-top: 15px; overflow-wrap: anywhere; }
.inline-description .copy p { font-size: 15px; line-height: 1.8; color: var(--muted); margin: 14px 0; }
.inline-description .copy .about-sub { font-weight: 700; color: var(--ink-2); margin-top: 24px; }
.inline-description .copy li { font-size: 14px; line-height: 1.8; color: var(--muted); }
.inline-description .copy .about-note { font-size: 13px; color: var(--soft); }

.highlights { display: grid; gap: 26px; padding: 30px 0; border-bottom: 1px solid var(--line-2); }
.highlights > div { display: flex; align-items: flex-start; gap: 18px; }
.highlights svg { width: 25px; height: 25px; color: var(--gold-2); flex: 0 0 auto; }
.highlights h3 { font-size: 15px; font-weight: 600; line-height: 1.4; margin: 0 0 3px; }
.highlights p { font-size: 14px; line-height: 1.65; color: var(--muted-2); margin: 0; }

.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px 16px; }
.room-grid a { display: block; }
.room-grid img { width: 100%; aspect-ratio: 1.3; object-fit: cover; border-radius: 4px; }
.room-grid h4 { margin: 12px 0 7px; font-size: 15px; }
.room-grid p { font-size: 13px; line-height: 1.6; color: var(--muted); }

.all-amenities { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 25px; margin: 30px 0; }
.all-amenities > div { display: flex; gap: 16px; align-items: center; font-size: 15px; }
.all-amenities svg { color: var(--icon); }

.reviews { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.reviews article h4 { font-size: 17px; margin: 0 0 5px; }
.reviews small { font-size: 12px; color: var(--soft); line-height: 1.5; display: block; }
.reviews article > p { font-size: 15px; line-height: 1.7; margin: 12px 0 0; }
.reviews:not(.all) article > p:last-child { display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.review-person { display: flex; align-items: center; gap: 13px; min-height: 54px; }
.review-person img, .review-initial { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; flex: 0 0 50px; }
.review-initial { display: grid; place-items: center; background: var(--surface-2); color: var(--accent); font-size: 21px; }
.stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin: 10px 0 0; line-height: 1; }
.review-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 24px; max-width: 480px; margin: 0 0 26px; font-size: 14px; }
.review-cats div { display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); padding: 6px 0; }
.review-cats b { color: var(--ink-2); font-weight: 600; }
.reviews-all { display: none; }
.reviews-all[data-open] { display: grid; grid-template-columns: 1fr; gap: 0; }
.reviews-all article { padding: 25px 0; border-bottom: 1px solid var(--line); }

.location .area-name { font-size: 17px; font-weight: 500; color: var(--muted-2); margin-bottom: 8px; }
.location p { color: var(--muted-2); font-size: 15px; line-height: 1.75; margin: 12px 0; }
.location strong { color: var(--ink-2); font-weight: 600; }
.location h3 { font-size: 20px; margin: 24px 0 8px; }
.travel-times { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 25px; margin: 26px 0; font-size: 14px; color: var(--muted-2); }
.travel-times span { color: var(--gold-2); font-weight: 700; margin-right: 7px; }
.map { width: 100%; height: 330px; border: 0; border-radius: 5px; margin-top: 25px; }

.host-card { background: var(--surface-3); border: 1px solid var(--line); border-radius: 16px; padding: 24px; width: 100%; max-width: 440px; margin: 28px 0 24px; }
.host-card > div { display: flex; align-items: center; gap: 18px; }
.host-card img { width: 68px; height: 68px; min-width: 68px; border-radius: 50%; object-fit: cover; }
.host-card h3 { margin: 0 0 4px; font-size: 21px; }
.host-card p { margin: 0 0 12px; font-size: 13px; color: var(--muted); }
.host-stats { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); }
.host-stats b { font-weight: 700; color: var(--ink-2); font-size: 15px; }
.host-stats i { width: 1px; height: 26px; background: var(--line); margin: 0 8px; }
.host-facts { display: grid; gap: 12px; font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.host-facts div::before { content: "\25C7"; color: var(--gold-2); margin-right: 10px; }
.host-bio { font-size: 15px; line-height: 1.85; color: var(--muted); max-width: 680px; }
.host-bio p { margin: 0 0 14px; }
.host-contact { display: block; max-width: 680px; text-align: center; border: 1px solid var(--gold-line); padding: 13px 18px; margin-top: 25px; color: var(--gold-ink); font-size: 14px; font-weight: 600; border-radius: 3px; }
.host-contact:hover { background: var(--accent-soft); }

.rules { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 26px; }
.rules h3 { font-size: 18px; margin: 10px 0 20px; }
.rules ul { list-style: none; padding: 0; margin: 0; }
.rules li { position: relative; padding-left: 20px; font-size: 13px; line-height: 1.7; color: var(--muted); margin: 12px 0; }
.rules li::before { content: "\25C7"; position: absolute; left: 0; color: var(--gold-2); }
.rules li svg { display: none; }
.rules p { font-size: 12px; color: var(--soft); line-height: 1.7; }
.rules a { font-size: 14px; color: var(--gold-ink); text-decoration: underline; text-underline-offset: 3px; }

.source-note { padding: 25px 0; color: var(--soft); font-size: 12px; line-height: 1.6; }
.source-note a { text-decoration: underline; }

/* Booking panel: the Lodgify widget lives inside, restyled through its
   theme variables (see BookingPanel.astro). */
.quote { background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-card); border-radius: 7px; padding: 24px 22px; }
.quote h3 { font-size: 23px; line-height: 1.2; margin: 0 0 12px; }
.quote > .soft { margin-bottom: 14px; }
.quote .from-rate { margin: 0 0 12px; font-size: 15px; color: var(--muted); }
.quote .from-rate b { font-size: 24px; font-weight: 700; color: var(--ink-2); letter-spacing: -0.01em; }
.quote-note { font-size: 10px; color: var(--soft); text-align: center; margin: 12px 0 0; }
.quote-notes { display: grid; gap: 8px; margin-top: 14px; }
.quote-notes > div { padding: 10px 12px; background: var(--surface-2); border-radius: 6px; font-size: 13px; line-height: 1.5; color: var(--muted); }
.quote-notes a { text-decoration: underline; }
.prefill { display: none; margin: 0 0 14px; padding: 12px 14px; background: var(--surface-2); border-radius: 6px; font-size: 14px; line-height: 1.5; }
.prefill[data-open] { display: block; }
.prefill b { color: var(--ink-2); }
.prefill .button { margin-top: 10px; width: 100%; }

.mobile-book { display: none; }

/* ------------------------------------------------------------------ photo tour */
.tour { padding: 0 32px 40px; }
.tour-top { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding: 22px 0; font-size: 13px; color: var(--muted); }
.tour-title { padding: 22px 0 32px; }
.tour-title h1 { font-size: 43px; line-height: 1.15; letter-spacing: -1px; margin: 0 0 13px; }
.tour-title p { font-size: 15px; line-height: 1.7; color: var(--muted-2); }
.cat-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 22px 18px; margin: 0 0 42px; }
.cat-btn { padding: 0; text-align: left; min-width: 0; display: flex; flex-direction: column; gap: 11px; font-size: 13px; line-height: 1.5; color: var(--ink); }
.cat-thumb { width: 100%; aspect-ratio: 1.4; overflow: hidden; border-radius: 8px; background: var(--surface-2); }
.cat-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.25s; }
.cat-btn:hover img { transform: scale(1.04); }
.tour-sections { border-top: 1px solid var(--line); }
.tour-section { padding: 40px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 20px; }
.tour-section h2 { font-size: 29px; line-height: 1.3; margin: 0 0 10px; }
.tour-section .blurb { font-size: 15px; line-height: 1.7; color: var(--muted-2); margin-bottom: 25px; }
.photo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.photo-card { position: relative; padding: 0; border: 0; min-width: 0; border-radius: 7px; overflow: hidden; aspect-ratio: 1.5; display: block; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-hover { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(18, 41, 27, 0.33); color: #fff; opacity: 0; transition: opacity 0.2s; }
.photo-card:hover .photo-hover { opacity: 1; }
.subsection { margin-top: 28px; scroll-margin-top: 20px; }
.subsection-title { font-size: 18px; font-weight: 600; line-height: 1.5; margin: 0 0 16px; color: var(--ink-2); }
.tour > .explore { margin: 30px 0; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1000; background: var(--scrim); display: none; align-items: center; justify-content: center; padding: 16px; }
.lightbox[data-open] { display: flex; }
.lightbox img { max-width: min(96vw, 1400px); max-height: 84vh; width: auto; height: auto; object-fit: contain; border-radius: 6px; box-shadow: var(--shadow-pop); }
.lb-caption { position: absolute; left: 0; right: 0; bottom: 18px; text-align: center; color: #fff; font-size: 14px; padding: 0 70px; }
.lb-btn { position: absolute; width: 48px; height: 48px; border-radius: 50%; background: rgba(255, 255, 255, 0.14); color: #fff; display: grid; place-items: center; }
.lb-btn:hover { background: rgba(255, 255, 255, 0.28); }
.lb-btn svg { width: 22px; height: 22px; }
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
body.no-scroll { overflow: hidden; }

/* ------------------------------------------------------------------ popovers: date picker and guest picker */
.pop {
  position: absolute; z-index: 30; top: calc(100% + 8px); left: 0;
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
  box-shadow: var(--shadow-pop); padding: 18px; display: none; color: var(--ink);
}
.pop[data-shown] { display: block; }
.pop--right { left: auto; right: 0; }
.cal { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cal-month { width: 280px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; font-size: 14px; font-weight: 600; min-height: 36px; }
.cal-nav { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); }
.cal-nav:disabled { opacity: 0.3; cursor: default; }
.cal-nav svg { width: 14px; height: 14px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-dow { font-size: 11px; color: var(--soft); text-align: center; padding: 6px 0; text-transform: uppercase; letter-spacing: 0.06em; }
.cal-day { height: 38px; border-radius: 50%; font-size: 14px; display: grid; place-items: center; color: var(--ink); }
.cal-day:hover:not(:disabled) { background: var(--accent-soft); }
.cal-day:disabled { color: var(--soft); opacity: 0.45; cursor: default; text-decoration: line-through; }
.cal-day.is-start, .cal-day.is-end { background: var(--accent); color: var(--accent-ink); }
.cal-day.in-range { background: var(--accent-soft); border-radius: 0; }
.cal-day.is-start { border-radius: 50% 0 0 50%; }
.cal-day.is-end { border-radius: 0 50% 50% 0; }
.cal-day.is-start.is-end { border-radius: 50%; }
.cal-day.is-today { font-weight: 700; }
.cal-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.cal-foot button { text-decoration: underline; text-underline-offset: 4px; }
.cal-foot .button { text-decoration: none; min-height: 40px; padding: 8px 18px; }

.guests-pop { width: 320px; }
.guest-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.guest-row:last-of-type { border-bottom: 0; }
.guest-row b { display: block; font-size: 15px; font-weight: 600; color: var(--ink-2); }
.guest-row small { display: block; font-size: 12px; color: var(--soft); }
.stepper { display: flex; align-items: center; gap: 12px; }
.stepper button { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--muted); display: grid; place-items: center; color: var(--ink); }
.stepper button:disabled { opacity: 0.3; cursor: default; }
.stepper button svg { width: 14px; height: 14px; }
.stepper output { min-width: 20px; text-align: center; font-size: 15px; }
.guests-pop .cal-foot { justify-content: flex-end; }

/* ------------------------------------------------------------------ contact modal */
.modal { position: fixed; inset: 0; z-index: 900; display: none; align-items: center; justify-content: center; padding: 16px; }
.modal[data-open] { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: var(--scrim); backdrop-filter: blur(4px); }
.modal-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 28px; width: 100%; max-width: 480px; box-shadow: var(--shadow-pop); max-height: 92dvh; overflow: auto; }
.modal-close { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; }
.modal-close svg { width: 18px; height: 18px; }
.modal-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.modal-head img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.modal-head b { display: block; font-size: 17px; color: var(--ink-2); }
.modal-head small { color: var(--muted); font-size: 13px; }
.form-grid { display: grid; gap: 14px; }
.form-error { color: var(--error); font-size: 12px; margin-top: 4px; display: none; }
.form-error[data-show] { display: block; }
.form-status { text-align: center; font-size: 14px; margin-top: 12px; display: none; }
.form-status[data-show] { display: block; }
.form-status a { text-decoration: underline; }

/* ------------------------------------------------------------------ prose pages (area guides, planning, bachelorette) */
.prose-page { padding: 10px 32px 40px; }
.prose-hero { position: relative; border-radius: 8px; overflow: hidden; margin: 0 0 32px; }
.prose-hero img { width: 100%; aspect-ratio: 2.4; object-fit: cover; }
.prose-hero > div { position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 40px; color: #fff; background: linear-gradient(transparent, rgba(4, 24, 21, 0.75)); }
.prose-hero h1 { color: #fff; font-size: 40px; letter-spacing: -1px; }
.prose-hero p { max-width: 60ch; margin-top: 8px; }
.prose { max-width: 760px; }
.prose h1 { font-size: 40px; letter-spacing: -1px; margin: 10px 0 14px; }
.prose h2 { font-size: 28px; letter-spacing: -0.5px; margin: 40px 0 14px; }
.prose h3 { font-size: 20px; margin: 26px 0 10px; }
.prose p, .prose li { font-size: 16px; line-height: 1.75; color: var(--ink); margin: 12px 0; }
.prose ul, .prose ol { padding-left: 22px; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose figure { margin: 26px 0; }
.prose figure img { border-radius: 6px; width: 100%; }
.prose figcaption { font-size: 13px; color: var(--soft); margin-top: 8px; }
.prose blockquote { margin: 24px 0; padding: 16px 22px; border-left: 3px solid var(--gold-2); background: var(--surface-2); font-family: var(--font-serif); font-size: 19px; line-height: 1.6; color: var(--ink-3); border-radius: 0 6px 6px 0; }
.prose blockquote cite { display: block; font: 13px/1.5 var(--font-sans); color: var(--muted); margin-top: 8px; font-style: normal; }
.prose table { width: 100%; border-collapse: collapse; font-size: 14px; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { color: var(--ink-2); font-weight: 600; }
.prose .lede { font-family: var(--font-serif); font-size: 21px; line-height: 1.6; color: var(--ink-3); }
.prose .callout { background: var(--surface-2); border-radius: 8px; padding: 18px 22px; margin: 24px 0; }
.prose .callout p { margin: 6px 0; }
.prose .cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0; }
.prose .meta { font-size: 13px; color: var(--soft); }
.prose .meta a { color: inherit; }

/* ------------------------------------------------------------------ responsive */
@media (max-width: 1100px) and (min-width: 701px) {
  .head-nav { gap: 13px; }
  .head .brand-name { font-size: 30px; }
  .head .brand-mark { width: 53px; height: 66px; }
  .head-book { padding: 10px 15px; }
}
@media (max-width: 1000px) and (min-width: 701px) {
  .shell { width: calc(100% - 30px); }
  .head { padding: 0 22px; }
  .property-layout { grid-template-columns: minmax(0, 1fr) 260px; gap: 20px; }
  .glance-facts { display: block; }
  .glance-inner { grid-template-columns: 1fr; }
  .glance-icons .amenity-row { grid-template-columns: 1fr 1fr; }
  .rules { gap: 15px; }
  .rules h3 { font-size: 16px; }
  .search { grid-template-columns: 1fr 1fr 1fr; }
  .search > :nth-child(4) { grid-column: 1 / 2; }
  .search .button { grid-column: 2 / -1; }
}
@media (max-width: 700px) {
  .shell { width: calc(100% - 12px); margin: 6px auto 14px; border-radius: 7px; }
  .shell--home { border-width: 5px; margin: 7px auto 15px; }
  .head { height: 100px; padding: 0 16px; gap: 12px; }
  .brand { gap: 10px; }
  .brand-mark { width: 47px; height: 63px; }
  .brand-name { font-size: 31px; letter-spacing: -1.5px; }
  .head-nav, .head-book { display: none !important; }
  .menu-toggle { display: grid; place-items: center; width: 44px; height: 44px; color: var(--ink); }
  .menu-toggle svg { width: 24px; height: 24px; }
  .head .theme-toggle { margin-left: auto; }
  .page-pad, .property, .tour, .prose-page { padding-left: 17px; padding-right: 17px; }
  .home-inner { padding: 0 17px; }
  .hero { height: 365px; }
  .hero-copy { left: 23px; top: 45px; right: 15px; }
  .hero-copy .eyebrow { font-size: 10px; letter-spacing: 0.17em; }
  .hero-copy h1 { font-size: 36px; letter-spacing: -1.2px; margin: 20px 0; }
  .hero-copy p:last-child { font-size: 14px; }
  .hero > img { object-position: 57% center; }
  .search { grid-template-columns: 1fr 1fr; gap: 13px 12px; padding: 19px 17px; margin: -25px 0 22px; }
  .search > :first-child, .search > :nth-child(4), .search .button { grid-column: 1 / -1; }
  .pop { position: fixed; left: 12px; right: 12px; top: auto; bottom: 12px; max-height: 80vh; overflow: auto; }
  .cal { grid-template-columns: 1fr; }
  .cal-month { width: 100%; }
  .cal-month + .cal-month { display: none; }
  .guests-pop { width: auto; }
  .home-cards { grid-template-columns: 1fr; margin-top: 22px; }
  .card-photo img { aspect-ratio: 1.6; }
  .card-body { padding: 22px; }
  .card-body h2 { font-size: 27px; }
  .card-body > p:not(.eyebrow) { font-size: 15px; }
  .amenity-row { gap: 12px; }
  .amenity-row > div { font-size: 12px; }
  .amenity-row svg { width: 27px; height: 27px; }
  .benefits { grid-template-columns: 1fr 1fr; gap: 25px 16px; padding: 25px 15px; margin: 25px 0; }
  .benefits span { font-size: 12px; }
  .benefits small { font-size: 11px; }
  .home-faq { padding: 20px 4px 30px; }
  .home-faq > h2 { font-size: 29px; }
  .faq-home-grid { grid-template-columns: 1fr; gap: 20px; }
  .foot { grid-template-columns: 1fr 1fr; gap: 25px; padding: 30px 3px 45px; }
  .foot > div:first-child { grid-column: 1 / -1; }
  .foot .brand-name { font-size: 29px; }
  .foot-col a, .foot-col button { font-size: 13px; }
  .property { padding-bottom: 85px; }
  .property-layout { display: block; }
  .side-col { display: none; }
  .mosaic { margin: 0 -17px; width: calc(100% + 34px); border-radius: 0; aspect-ratio: auto; grid-template-columns: 1fr 1fr; grid-template-rows: auto 95px; gap: 5px; }
  .mosaic-main { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 1.5; }
  .all-photos { bottom: 10px; right: 10px; padding: 9px 12px; font-size: 12px; }
  .tabs { margin: 0 -4px; gap: 8px; padding: 7px 0; justify-content: flex-start; }
  .tabs a { font-size: 12px; min-height: 44px; }
  .section { padding: 30px 0; }
  .section h2 { font-size: 25px; }
  .section > p { font-size: 15px; }
  .section-head { align-items: start; flex-direction: column; gap: 12px; }
  .glance-facts { flex-wrap: wrap; gap: 0; padding-bottom: 20px; font-size: 13px; }
  .glance h1 { font-size: 11px; margin-bottom: 24px; }
  .glance-inner { grid-template-columns: 1fr; gap: 26px; }
  .glance-icons .amenity-row { grid-template-columns: 1fr 1fr; gap: 24px 14px; }
  .glance-icons .amenity-row > div { gap: 10px; }
  .glance-icons .amenity-row span { font-size: 12px; }
  .glance-icons .amenity-row svg { width: 27px; height: 27px; }
  .glance-lead { font-size: 19px; line-height: 1.6; margin-bottom: 18px; }
  .glance:has(.inline-description[open]) .expanded-icons { grid-template-columns: 1fr 1fr; }
  .highlights p { font-size: 13px; }
  .highlights > div { gap: 13px; }
  .room-grid { grid-template-columns: 1fr 1fr; gap: 23px 14px; }
  .room-grid p { font-size: 12px; }
  .room-grid h4 { font-size: 14px; }
  .all-amenities { gap: 22px 14px; }
  .all-amenities > div { font-size: 13px; gap: 10px; align-items: start; }
  .all-amenities svg { width: 25px; height: 25px; }
  .reviews { grid-template-columns: 1fr; gap: 25px; }
  .review-cats { grid-template-columns: 1fr 1fr; }
  .travel-times { gap: 13px 15px; font-size: 12px; line-height: 1.65; }
  .travel-times span { display: block; font-size: 14px; }
  .map { height: 280px; }
  .host-card { padding: 20px 15px; }
  .host-card > div { gap: 12px; }
  .host-card img { width: 54px; height: 54px; min-width: 54px; }
  .host-stats { font-size: 11px; gap: 6px; }
  .host-stats i { margin: 0 3px; }
  .host-bio { font-size: 14px; }
  .rules { grid-template-columns: 1fr; gap: 18px; }
  .rules > div + div { border-top: 1px solid var(--line); padding-top: 18px; }
  .rules h3 { font-size: 19px; margin: 0 0 15px; }
  .rules li { font-size: 14px; }
  .rules p { font-size: 13px; }
  .mobile-book {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
    background: var(--surface); border-top: 1px solid var(--line);
    padding: 12px 20px max(13px, env(safe-area-inset-bottom));
    align-items: center; justify-content: space-between; gap: 10px;
  }
  .mobile-book strong { display: block; font-size: 14px; font-weight: 400; }
  .mobile-book small { display: block; font-size: 11px; color: var(--muted); }
  .mobile-book .button { min-height: 48px; padding: 12px 17px; font-size: 13px; }
  .tour { padding-bottom: 85px; }
  .tour-top { font-size: 12px; gap: 10px; padding: 16px 0; }
  .tour-title { padding: 16px 0 24px; }
  .tour-title h1 { font-size: 34px; }
  .tour-title p { font-size: 13px; }
  .cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px 10px; margin-bottom: 28px; }
  .cat-btn { font-size: 11px; gap: 8px; }
  .cat-thumb { aspect-ratio: 1.15; }
  .tour-section { padding: 29px 0; }
  .tour-section h2 { font-size: 25px; }
  .tour-section .blurb { font-size: 14px; }
  .photo-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .photo-card { aspect-ratio: 1.25; border-radius: 4px; }
  .subsection-title { font-size: 16px; }
  .lb-caption { padding: 0 16px; bottom: 10px; font-size: 12px; }
  .lb-prev, .lb-next { top: auto; bottom: 40px; transform: none; }
  .modal-card { padding: 22px 18px; border-radius: 12px; }
  .prose-hero img { aspect-ratio: 1.4; }
  .prose-hero > div { padding: 20px 18px; }
  .prose-hero h1, .prose h1 { font-size: 30px; }
  .prose h2 { font-size: 24px; }
  .prose .lede { font-size: 18px; }
}
@media (max-width: 360px) {
  .brand-name { font-size: 26px; }
  .brand-mark { width: 40px; height: 54px; }
  .hero-copy h1 { font-size: 32px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
@media print {
  body { background: #fff; }
  .shell { border: 0; box-shadow: none; width: 100%; margin: 0; }
  .head, .foot, .mobile-book, .side-col, .theme-toggle { display: none !important; }
}
