/* =========================================================================
   The Nest at Greyhawk — styles
   Design direction: "Blueberry & Spruce"
   Palette, type, layout, and the topographic-contour signature.
   ========================================================================= */

/* ---------- Fonts (self-hosted, latin subset, variable) ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("fonts/fraunces-latin.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+2122, U+2212;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("fonts/hanken-grotesk-latin.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+2122, U+2212;
}

/* ---------- Design tokens ---------- */
:root {
  --spruce:      #1F3529;
  --spruce-deep: #152318;
  --blueberry:   #5B5B7E;
  --blueberry-ink: #4A4A69;   /* darker for text/links on paper -> AA */
  --paper:       #EDEFEA;
  --paper-warm:  #E4E7DF;
  --mist:        #AFC0BE;
  --brass:       #C9A24B;
  --ink:         #1F3529;
  --ink-soft:    #3C463F;
  --paper-on-spruce: #E7ECE5;
  --mist-on-spruce:  #A9BEB2;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --maxw: 1160px;
  --maxw-narrow: 760px;
  --gutter: clamp(1.25rem, 5vw, 4rem);

  --radius: 4px;
  --shadow: 0 18px 50px -24px rgba(21, 35, 24, 0.45);

  --step--1: clamp(0.82rem, 0.79rem + 0.12vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.13rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.45rem);
  --step-2:  clamp(1.5rem, 1.35rem + 0.75vw, 2rem);
  --step-3:  clamp(2rem, 1.7rem + 1.5vw, 3rem);
  --step-4:  clamp(2.6rem, 2rem + 3vw, 4.75rem);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--blueberry-ink); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--spruce); }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.08; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ---------- Accessibility helpers ---------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 100;
  background: var(--spruce); color: var(--paper-on-spruce);
  padding: 0.6rem 1rem; border-radius: var(--radius);
  transition: top 0.15s ease;
}
.skip-link:focus { top: 1rem; color: var(--paper-on-spruce); }

:focus-visible {
  outline: 3px solid var(--blueberry);
  outline-offset: 2px;
  border-radius: 2px;
}
.section--spruce :focus-visible,
.hero__panel :focus-visible { outline-color: var(--mist); }

/* ---------- Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--maxw-narrow); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }

.eyebrow {
  font-family: var(--sans);
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--blueberry-ink);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.2rem;
}
.eyebrow::before {
  content: ""; position: absolute; left: 0; top: 0.5em;
  width: 1.6rem; height: 1px; background: var(--brass);
}
.eyebrow--light { color: var(--mist-on-spruce); }
.eyebrow--light::before { background: var(--brass); }

.section__title { font-size: var(--step-3); max-width: 18ch; }
.section__intro {
  font-size: var(--step-1);
  color: var(--ink-soft);
  max-width: 46ch;
  margin-top: 1.1rem;
}
.section__intro--light { color: var(--paper-on-spruce); opacity: 0.9; }

.prose { margin-top: 1.4rem; display: grid; gap: 1.1rem; max-width: 60ch; color: var(--ink-soft); }
.prose p { font-size: var(--step-0); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 600; font-size: var(--step-0);
  letter-spacing: 0.01em;
  padding: 0.9rem 1.6rem; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer;
  text-decoration: none; transition: background 0.18s ease, transform 0.18s ease, color 0.18s ease;
}
.btn--primary { background: var(--blueberry); color: #fff; }
.btn--primary:hover { background: var(--spruce); color: #fff; transform: translateY(-1px); }
.section--spruce .btn--primary { background: var(--paper); color: var(--spruce); }
.section--spruce .btn--primary:hover { background: #fff; color: var(--spruce-deep); }
.btn--full { width: 100%; margin-top: 0.5rem; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(1.1) blur(8px);
  border-bottom: 1px solid color-mix(in srgb, var(--mist) 55%, transparent);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; max-width: var(--maxw); margin-inline: auto;
  padding: 0.7rem var(--gutter);
}
.nav__brand { display: inline-flex; align-items: center; gap: 0.55rem; color: var(--spruce); text-decoration: none; }
.nav__brand-mark { color: var(--blueberry); display: inline-flex; }
.nav__brand-text { font-family: var(--serif); font-weight: 600; font-size: 1.12rem; letter-spacing: -0.01em; }
.nav__menu { display: flex; align-items: center; gap: 0.4rem; }
.nav__menu a {
  display: inline-block; padding: 0.5rem 0.85rem; border-radius: var(--radius);
  color: var(--ink-soft); text-decoration: none; font-weight: 500; font-size: 0.98rem;
}
.nav__menu a:hover { color: var(--spruce); background: color-mix(in srgb, var(--mist) 30%, transparent); }
.nav__cta { background: var(--spruce); color: #fff !important; }
.nav__cta:hover { background: var(--spruce-deep); }
.nav__mobile-actions { display: flex; align-items: center; gap: 0.6rem; }
.nav__cta--mobile { display: none; }
.nav__toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  min-height: min(88vh, 760px);
}
.hero__media { position: relative; overflow: hidden; background: var(--spruce); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__panel {
  position: relative; overflow: hidden;
  background: var(--spruce); color: var(--paper-on-spruce);
  display: flex; flex-direction: column; justify-content: center;
  gap: 1.4rem; padding: clamp(2rem, 5vw, 4.5rem);
}
.hero__contours {
  position: absolute; inset: auto 0 0 0; width: 100%; height: 55%;
  color: var(--mist-on-spruce); opacity: 0.28; pointer-events: none;
}
.hero__title { font-size: var(--step-4); color: #fff; letter-spacing: -0.02em; }
.hero__subtitle {
  margin-top: -0.8rem; font-family: var(--sans); font-weight: 600;
  font-size: var(--step-0); color: var(--mist-on-spruce);
}
.hero__lede { font-size: var(--step-1); max-width: 26ch; color: var(--paper-on-spruce); }
.hero .btn { align-self: flex-start; }
.hero .eyebrow { color: var(--mist-on-spruce); }
.hero .eyebrow::before { background: var(--brass); }

/* ---------- Contour divider (the signature, between sections) ---------- */
.divider {
  height: 64px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='64' viewBox='0 0 1200 64' preserveAspectRatio='none'%3E%3Cg fill='none' stroke='%23AFC0BE' stroke-width='1'%3E%3Cpath d='M0,40 C200,18 400,54 600,36 S1000,14 1200,38'/%3E%3Cpath d='M0,30 C200,10 400,46 600,28 S1000,6 1200,30'/%3E%3Cpath d='M0,50 C200,28 400,62 600,46 S1000,24 1200,48'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0.7;
}

/* ---------- The space: rooms ---------- */
.rooms { margin-top: clamp(2rem, 4vw, 3.25rem); display: grid; gap: clamp(2rem, 5vw, 4rem); }
.room { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.room--reverse .room__media { order: 2; }
.room__media { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--paper-warm); }
.room__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.room__title { font-size: var(--step-2); margin-bottom: 0.6rem; }
.room__body p { color: var(--ink-soft); max-width: 44ch; }
.gallery-link { margin-top: clamp(2rem, 4vw, 3.25rem); text-align: center; }

/* ---------- Sleeping ---------- */
.section--spruce { background: var(--spruce); color: var(--paper-on-spruce); }
.section--spruce .section__title { color: #fff; }
.beds { margin-top: clamp(1.75rem, 4vw, 2.75rem); display: grid; gap: 1px; background: color-mix(in srgb, var(--mist) 22%, transparent); border-radius: var(--radius); overflow: hidden; }
.bed {
  display: flex; align-items: baseline; gap: 1.25rem;
  padding: 1.4rem clamp(1rem, 3vw, 1.75rem);
  background: var(--spruce);
}
.bed__num { font-family: var(--serif); font-size: var(--step-1); color: var(--mist-on-spruce); min-width: 2.2ch; }
.bed__title { font-size: var(--step-1); color: #fff; }
.bed__meta { color: var(--mist-on-spruce); margin-top: 0.15rem; }

/* ---------- Amenities ---------- */
.amen-grid { margin-top: clamp(2rem, 4vw, 3rem); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.amen__title {
  font-family: var(--sans); font-size: var(--step--1); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--blueberry-ink);
  padding-bottom: 0.75rem; margin-bottom: 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--mist) 60%, transparent);
}
.amen__list { display: grid; gap: 0.55rem; }
.amen__list li { position: relative; padding-left: 1.4rem; color: var(--ink-soft); }
.amen__list li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 0.5rem; height: 0.5rem; border-radius: 50%;
  border: 1px solid var(--mist); background: color-mix(in srgb, var(--mist) 35%, transparent);
}
.amen-photos { margin-top: clamp(2.5rem, 5vw, 3.5rem); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 3vw, 2rem); }
.amen-photo { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--paper-warm); }
.amen-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.amen-photo figcaption { padding: 0.85rem 1.1rem; font-size: var(--step--1); font-weight: 600; color: var(--ink-soft); background: var(--paper-warm); }

/* ---------- Location ---------- */
.location { display: grid; gap: clamp(2rem, 5vw, 3rem); }
.location__top { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.location__addr { margin-top: 1.75rem; font-weight: 600; color: var(--spruce); }
.todo-inline { color: var(--blueberry-ink); font-weight: 500; }
.location__photo { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--paper-warm); }
.location__photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.location__embed { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--paper-warm); }
.location__embed iframe { display: block; width: 100%; aspect-ratio: 16 / 8; border: 0; }
@media (max-width: 640px) {
  .location__embed iframe { aspect-ratio: 4 / 5; }
}

/* ---------- Review / quote ---------- */
.section--quote { background: var(--paper-warm); text-align: center; position: relative; }
.quote-contours { width: min(420px, 70%); height: 46px; margin: 0 auto 1.75rem; color: var(--mist); opacity: 0.85; }
.quote__stars { display: flex; justify-content: center; gap: 0.35rem; color: var(--brass); margin-bottom: 1.5rem; }
.quote p {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: var(--step-2); line-height: 1.35; color: var(--spruce);
  max-width: 42ch; margin-inline: auto;
}
.quote footer { margin-top: 1.5rem; font-family: var(--sans); font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.16em; color: var(--blueberry-ink); font-weight: 600; }

/* ---------- House rules ---------- */
.minstay {
  margin-top: 1.75rem; padding: 1.1rem 1.4rem;
  background: var(--spruce); color: #fff;
  font-family: var(--serif); font-size: var(--step-1); border-radius: var(--radius);
}
.rules-list { margin-top: 1.75rem; display: grid; gap: 0; border-top: 1px solid color-mix(in srgb, var(--mist) 60%, transparent); }
.rules-list li { display: grid; grid-template-columns: 10rem 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid color-mix(in srgb, var(--mist) 60%, transparent); }
.rules-list__k { font-weight: 700; color: var(--spruce); }
.rules-list__v { color: var(--ink-soft); }

/* ---------- Inquiry form ---------- */
.inquire form { margin-top: clamp(2rem, 4vw, 2.75rem); display: grid; gap: 1.25rem; }
.field { display: grid; gap: 0.4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field label, .field legend, .field--stayed legend {
  font-weight: 600; font-size: var(--step--1); letter-spacing: 0.02em;
  color: var(--paper-on-spruce);
}
.req { color: var(--brass); }
.opt { font-weight: 400; color: var(--mist-on-spruce); text-transform: none; letter-spacing: 0; font-size: 0.85em; }

.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: var(--step-0); color: var(--spruce);
  background: var(--paper); border: 1px solid transparent; border-radius: var(--radius);
  padding: 0.72rem 0.85rem; width: 100%;
}
.field textarea { resize: vertical; min-height: 6.5rem; }
.field input::placeholder, .field textarea::placeholder { color: color-mix(in srgb, var(--ink-soft) 60%, transparent); }
.field input:hover, .field select:hover, .field textarea:hover { background: #fff; }

.field--stayed { border: 0; margin: 0; padding: 0; min-width: 0; }
.field--stayed legend { padding: 0; margin-bottom: 0.6rem; }
.radios { display: grid; gap: 0.55rem; }
.radio { display: flex; align-items: center; gap: 0.6rem; font-weight: 400; font-size: var(--step-0); color: var(--paper-on-spruce); cursor: pointer; }
.radio input { width: auto; accent-color: var(--mist); }

.field__err { color: #F2C6B8; font-size: var(--step--1); font-weight: 600; min-height: 0; }
.field__err:empty { display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #E9A891; background: #fff; }
.field--stayed.has-error .radios { outline: 1px solid #E9A891; outline-offset: 6px; border-radius: var(--radius); }

.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-note { font-size: var(--step--1); color: var(--mist-on-spruce); text-align: center; }

.form-success {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  background: color-mix(in srgb, var(--paper) 12%, var(--spruce));
  border: 1px solid var(--mist-on-spruce);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  text-align: center; color: var(--paper-on-spruce);
}
.form-success svg { color: var(--mist); margin: 0 auto 1rem; }
.form-success h3 { font-size: var(--step-2); color: #fff; margin-bottom: 0.75rem; }
.form-success p { max-width: 48ch; margin-inline: auto; color: var(--paper-on-spruce); }

/* ---------- Gallery page ---------- */
.gallery-intro { padding-bottom: 0; }
.gallery-section { padding-top: clamp(2rem, 4vw, 3rem); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 2vw, 1.25rem);
}
.gallery-item {
  display: block; margin: 0; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); background: var(--paper-warm);
  cursor: pointer;
}
.gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.25s ease; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-cta { text-align: center; }
.gallery-cta .btn { margin-top: 1.5rem; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: color-mix(in srgb, var(--spruce-deep) 92%, transparent);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 2.5rem);
}
.lightbox[hidden] { display: none; }
.lightbox__figure { margin: 0; display: flex; flex-direction: column; align-items: center; max-width: 100%; max-height: 100%; }
.lightbox__img { max-width: min(90vw, 1100px); max-height: 78vh; width: auto; height: auto; object-fit: contain; border-radius: var(--radius); }
.lightbox__caption { margin-top: 1rem; color: var(--paper-on-spruce); font-size: var(--step--1); text-align: center; max-width: 60ch; }
.lightbox__counter { margin-top: 0.5rem; color: var(--mist-on-spruce); font-size: var(--step--1); }
.lightbox__close, .lightbox__nav {
  position: absolute; background: transparent; border: 1px solid var(--mist-on-spruce);
  color: #fff; border-radius: var(--radius); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1; transition: background 0.15s ease;
}
.lightbox__close:hover, .lightbox__nav:hover { background: color-mix(in srgb, var(--paper) 15%, transparent); }
.lightbox__close { top: clamp(0.75rem, 3vw, 1.5rem); right: clamp(0.75rem, 3vw, 1.5rem); width: 2.75rem; height: 2.75rem; font-size: 1.6rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 3rem; height: 3rem; font-size: 1.8rem; }
.lightbox__nav--prev { left: clamp(0.5rem, 2vw, 1.5rem); }
.lightbox__nav--next { right: clamp(0.5rem, 2vw, 1.5rem); }

@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .lightbox__nav { width: 2.5rem; height: 2.5rem; font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--spruce-deep); color: var(--mist-on-spruce); padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.site-footer__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.5rem 3rem; align-items: start; }
.site-footer__brand .nav__brand-mark { color: var(--mist); }
.site-footer__name { font-family: var(--serif); font-size: var(--step-1); color: #fff; margin-top: 0.5rem; }
.site-footer__addr { margin-top: 0.35rem; font-size: var(--step--1); }
.site-footer__contact { text-align: right; }
.site-footer__owner { color: #fff; font-weight: 600; }
.site-footer__contact a { color: var(--mist-on-spruce); }
.site-footer__contact a:hover { color: #fff; }
.site-footer__note { grid-column: 1 / -1; padding-top: 1.5rem; margin-top: 0.5rem; border-top: 1px solid color-mix(in srgb, var(--mist) 25%, transparent); font-size: var(--step--1); max-width: 60ch; }

/* ---------- Entry motion (opt-in, reduced-motion safe) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.is-visible { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero__media { aspect-ratio: 16 / 11; }
  .hero__panel { padding-block: clamp(2rem, 8vw, 3rem); }
  .amen-grid { grid-template-columns: 1fr 1fr; }
  .amen-photos { grid-template-columns: 1fr 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__contact { text-align: left; }

  .nav__menu {
    position: absolute; inset: 100% 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--mist);
    padding: 0.5rem var(--gutter) 1rem;
    display: none;
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu a { padding: 0.8rem 0.5rem; }
  .nav__menu .nav__cta { text-align: center; margin-top: 0.5rem; }
  .nav__cta--mobile {
    display: inline-flex; padding: 0.55rem 0.9rem; font-size: 0.88rem;
    white-space: nowrap;
  }
  .nav__toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 2.75rem; height: 2.75rem; background: transparent;
    border: 1px solid var(--mist); border-radius: var(--radius); cursor: pointer;
  }
  .nav__toggle-bars, .nav__toggle-bars::before, .nav__toggle-bars::after {
    content: ""; display: block; width: 20px; height: 2px; background: var(--spruce); position: relative;
  }
  .nav__toggle-bars::before { position: absolute; top: -6px; }
  .nav__toggle-bars::after { position: absolute; top: 6px; }
}

@media (max-width: 500px) {
  .nav__brand-text { display: none; }
}

@media (max-width: 620px) {
  .room { grid-template-columns: 1fr; }
  .room--reverse .room__media { order: 0; }
  .field-row { grid-template-columns: 1fr; }
  .amen-grid { grid-template-columns: 1fr; }
  .amen-photos { grid-template-columns: 1fr; }
  .location__top { grid-template-columns: 1fr; }
  .rules-list li { grid-template-columns: 1fr; gap: 0.25rem; }
  .rules-list__k { font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.1em; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .nav__toggle, .hero__contours, .divider, .btn { display: none !important; }
  body { color: #000; background: #fff; }
  .section--spruce, .hero__panel, .section--quote { background: #fff !important; color: #000 !important; }
}
