/* ============================================================
   Wolfhound.co.za – Bilkau Irish Wolfhounds & Miniature
   Long-haired Dachshunds. Sister stylesheet to Purrfect.co.za:
   same architecture, same component class names, heritage theme.
   One stylesheet, zero build. Layers:
     1. @font-face (self-hosted, /assets/fonts/)
     2. BRAND TOKENS – verbatim from the brand pack
        (source-assets/brand/02-colour/tokens.css).
        DO NOT EDIT the fenced block; re-paste from the pack.
     3. Site tokens (derived tints, fluid type, layout)
     4. Reset + base elements
     5. Utilities
     6. Components (media queries co-located)
     7. Print
   Brand hard rules (source-assets/brand/, CLAUDE.md):
   colours via --wh-* tokens only; Heritage Gold #C8A25A and Sage
   #8FA48F are fills/decoration ONLY – never text (gold-toned words
   use --wh-bronze, muted-green words use --wh-sage-deep); headings,
   links and buttons are Forest Green, hover forest-deep; body copy
   is Onyx on Cream/White; dark surfaces are forest / forest-deep
   with Cream text; focus ring 2px var(--wh-focus) + 2px offset,
   everywhere; all motion inside prefers-reduced-motion:
   no-preference; en dashes, never em dashes, in site copy.
   ============================================================ */

/* ---------- 1. Fonts (SIL OFL 1.1, source-assets/brand/03-fonts/) ---------- */
@font-face {
  font-family: "Bodoni Moda";
  src: url("/assets/fonts/bodoni-moda-variable.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bodoni Moda";
  src: url("/assets/fonts/bodoni-moda-variable-italic.woff2") format("woff2");
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-garamond-variable.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-garamond-variable-italic.woff2") format("woff2");
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("/assets/fonts/source-sans-3-variable.woff2") format("woff2");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- 2. BRAND TOKENS (DO NOT EDIT – re-paste from
   source-assets/brand/02-colour/tokens.css) ---------- */
/* == BEGIN VERBATIM tokens.css == */
/* Wolfhound.co.za — colour tokens (sRGB)
 * Generated from the approved brand palette (New Logo & Brand Guide);
 * contrast ratios are WCAG 2.x, computed against Warm Cream #F3EEE6
 * unless stated. AA normal text needs >= 4.5, large text/UI needs >= 3.0. */

:root {
  --wh-forest: #1F3B2E;       /* Primary brand colour — crest, headings, links, buttons. on-cream 10.55:1, white-on-fill 12.19:1 */
  --wh-forest-deep: #14281F;  /* Dark sibling of Forest — hover states, footer/dark surface. on-cream 13.44:1, white-on-fill 15.52:1 */
  --wh-sage: #8FA48F;         /* Sage — muted panels, decorative fills, pattern tint. FILL ONLY, never text. on-cream 2.31:1 */
  --wh-sage-deep: #566B57;    /* Dark text-safe sibling of Sage — muted green labels & links on light. on-cream 5.00:1, white-on-fill 5.77:1 */
  --wh-sage-wash: #E7EDE8;    /* Very light sage tint — highlight panels, callout backgrounds. on-cream 1.03:1 */
  --wh-gold: #C8A25A;         /* Heritage Gold accent — rules, crest devices, borders. FILL ONLY, never text. on-cream 2.07:1 */
  --wh-bronze: #856526;       /* Dark text-safe sibling of Gold — gold-toned labels & links on light. on-cream 4.68:1, white-on-fill 5.40:1 */
  --wh-onyx: #1A1A17;         /* Primary dark neutral — body text. on-cream 15.10:1, white-on-fill 17.44:1 */
  --wh-ink-muted: #5B5A50;    /* Secondary / muted text on light backgrounds. on-cream 6.01:1, white-on-fill 6.95:1 */
  --wh-cream: #F3EEE6;        /* Page background. on-cream 1.00:1 */
  --wh-cream-dark: #E8E1D4;   /* Alternate / section-band background. on-cream 1.13:1 */
  --wh-white: #FFFFFF;        /* Card surfaces on cream. on-cream 1.15:1 */
  --wh-hairline: #DED6C6;     /* Card edges, dividers, input borders. on-cream 1.25:1 */
  --wh-focus: #1F3B2E;        /* Focus ring (2px outline + 2px offset) — same as Forest. on-cream 10.55:1 */
  --wh-success: #2C6E49;      /* Positive / confirmed state (heritage green). on-cream 5.30:1, white-on-fill 6.12:1 */
  --wh-error: #A33B2A;        /* Error / warning state (warm clay red). on-cream 5.65:1, white-on-fill 6.53:1 */
}

/* Semantic aliases used by the site */
:root {
  --wh-bg: var(--wh-cream);
  --wh-bg-alt: var(--wh-cream-dark);
  --wh-surface: var(--wh-white);
  --wh-surface-dark: var(--wh-forest);
  --wh-surface-dark-deep: var(--wh-forest-deep);
  --wh-text: var(--wh-onyx);
  --wh-text-muted: var(--wh-ink-muted);
  --wh-text-on-dark: var(--wh-cream);
  --wh-heading: var(--wh-forest);
  --wh-link: var(--wh-forest);
  --wh-link-hover: var(--wh-forest-deep);
  --wh-button-bg: var(--wh-forest);        /* white text: 12.19:1 AAA */
  --wh-button-bg-hover: var(--wh-forest-deep);
  --wh-accent-line: var(--wh-gold);        /* decorative only */
  --wh-border: var(--wh-hairline);
  --wh-focus-ring: var(--wh-focus);
}
/* == END VERBATIM tokens.css == */

/* ---------- 3. Site tokens ---------- */
:root {
  /* Derived tints of the brand tokens (fills/borders only, never text) */
  --tint-gold-hover: #B9924C;               /* gold button hover (onyx text ~6.6:1) */
  --tint-gold-border: rgba(200, 162, 90, 0.5);
  --tint-gold-border-soft: rgba(200, 162, 90, 0.32);
  --tint-forest-border: rgba(31, 59, 46, 0.28);
  --tint-hairline-on-dark: rgba(243, 238, 230, 0.15);  /* hairlines on forest surfaces */
  --tint-cream-on-dark: rgba(243, 238, 230, 0.35);     /* resting underlines on dark */
  --tint-text-on-dark-soft: rgba(243, 238, 230, 0.85);

  /* Typography (roles from the brand guide, 03-fonts/FONTS.md) */
  --font-display: "Bodoni Moda", "Bodoni 72", Didot, "Playfair Display", Georgia, serif;
  --font-serif: "Cormorant Garamond", "EB Garamond", Garamond, Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", -apple-system, Roboto, Helvetica, Arial, sans-serif;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;

  --fs-display: 4rem;
  --fs-h1: 3rem;
  --fs-h2: 2.375rem;
  --fs-h3: 1.5rem;
  --fs-body-lg: 1.1875rem;
  --fs-body: 1.0625rem;
  --fs-small: 0.9375rem;
  --fs-eyebrow: 0.9375rem;
  --ls-eyebrow: 0.18em;   /* spaced Cormorant labels: 0.12-0.25em per guide */
  --ls-button: 0.1em;     /* buttons/nav: 0.08-0.12em per guide */

  --fs-display-fluid: clamp(2.5rem, 1.7rem + 3.4vw, var(--fs-display));
  --fs-h1-fluid:      clamp(2.125rem, 1.55rem + 2.3vw, var(--fs-h1));
  --fs-h2-fluid:      clamp(1.7rem, 1.35rem + 1.5vw, var(--fs-h2));
  --fs-h3-fluid:      clamp(1.35rem, 1.25rem + 0.5vw, var(--fs-h3));
  --fs-body-lg-fluid: clamp(1.09rem, 1.03rem + 0.35vw, var(--fs-body-lg));

  /* Spacing (8px base) */
  --space-0-5: 4px;
  --space-1: 8px;
  --space-1-5: 12px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-6: 48px;
  --space-8: 64px;
  --space-12: 96px;

  /* Radius – quiet, estate-plaque corners; no pills */
  --radius-xs: 3px;
  --radius-sm: 8px;
  --radius-md: 14px;

  /* Elevation */
  --shadow-soft: 0 10px 30px rgba(26, 26, 23, 0.07);

  /* Layout */
  --container-max: 1200px;
  --container-pad: var(--space-3);
  --header-h: 76px;
  --ease: cubic-bezier(0.25, 0.7, 0.3, 1);

  /* Breakpoints (reference) */
  --bp-sm: 640px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1280px;
}

/* ---------- 4. Reset + base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
  background: var(--wh-bg);
}
body {
  background: var(--wh-bg);
  color: var(--wh-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
h1, h2 {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  color: var(--wh-heading);
  line-height: 1.12;
  text-wrap: balance;
}
h3, h4 {
  font-family: var(--font-serif);
  font-weight: var(--fw-semibold);
  color: var(--wh-heading);
  line-height: 1.2;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1-fluid); }
h2 { font-size: var(--fs-h2-fluid); }
h3 { font-size: var(--fs-h3-fluid); }
p, li { max-width: 72ch; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--wh-link); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--wh-link-hover); }
strong { font-weight: var(--fw-semibold); }
::selection { background: var(--wh-forest); color: var(--wh-cream); }
:focus-visible {
  outline: 2px solid var(--wh-focus-ring);
  outline-offset: 2px;
  border-radius: 2px;
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

.eyebrow {
  font-family: var(--font-serif);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-eyebrow);
  font-size: var(--fs-eyebrow);
  color: var(--wh-bronze);
}
.eyebrow .eyebrow-icon {
  display: inline-block;
  height: 20px; width: auto;
  vertical-align: -4px;
  margin-right: var(--space-1);
}
.accent-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: var(--fw-regular);
}
.lede { font-size: var(--fs-body-lg-fluid); color: var(--wh-text-muted); }

/* ---------- 5. Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.container--narrow { max-width: 820px; }
.visually-hidden {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  margin: -1px !important; padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important; border: 0 !important;
}
.skip-link {
  position: absolute;
  left: var(--space-2); top: calc(-1 * var(--space-12));
  z-index: 100;
  background: var(--wh-onyx); color: #fff;
  padding: var(--space-1-5) var(--space-3);
  border-radius: var(--radius-xs);
  text-decoration: none;
}
.skip-link:focus { top: var(--space-2); color: #fff; }
.flow > * + * { margin-top: var(--space-2); }
.flow-lg > * + * { margin-top: var(--space-3); }
.table-scroll { overflow-x: auto; }

/* ---------- 6. Components ---------- */

/* --- header / nav --- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--wh-bg);
  border-bottom: 1px solid var(--wh-border);
}
.site-header__inner {
  display: flex; align-items: center; gap: var(--space-2);
  min-height: var(--header-h);
}
.site-header__logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.site-header__logo img { height: 54px; width: auto; display: block; }
.site-header__logo--badge { display: none; }
.nav-toggle {
  margin-left: auto;
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  background: transparent; border: 1px solid var(--wh-border);
  border-radius: var(--radius-xs); cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--wh-onyx); border-radius: 2px;
}
html:not(.js) .nav-toggle { display: none; }
.site-nav { display: none; }
.site-nav__list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: var(--space-2);
}
.site-nav__link {
  font-family: var(--font-body); font-weight: var(--fw-semibold);
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--wh-text); text-decoration: none;
}
.site-nav__link:hover { color: var(--wh-forest-deep); }
.site-nav__link[aria-current="page"] {
  color: var(--wh-forest);
  text-decoration: underline;
  text-decoration-color: var(--wh-accent-line);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}
.header-cta { margin-left: auto; flex-shrink: 0; }
.nav-contact { border-top: 1px solid var(--wh-border); }

/* mobile: nav is a dropdown panel under the header (JS-gated collapse) */
@media (max-width: 1023.98px) { /* < --bp-lg: compact header (badge logo + menu) —
     the wide horizontal logo + full nav + CTA only fit comfortably at >=1024 */
  .header-cta { margin-left: auto; }
  .nav-toggle { margin-left: 0; }
  .site-nav {
    display: block;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--wh-bg);
    border-bottom: 1px solid var(--wh-border);
    padding: var(--space-3) var(--container-pad) var(--space-4);
    box-shadow: var(--shadow-soft);
  }
  html.js .site-nav { display: none; }
  html.js .site-nav.is-open { display: block; }
  .site-nav__link { font-size: var(--fs-body); letter-spacing: 0.1em; }
  .nav-contact { margin-top: var(--space-3); padding-top: var(--space-3); }
  .site-header__logo--full { display: none; }
  .site-header__logo--badge { display: inline-flex; align-items: center; }
  .site-header__logo--badge img { height: 34px; }
}
@media (min-width: 1024px) { /* --bp-lg: full horizontal nav */
  .nav-toggle { display: none; }
  .site-nav { display: block; margin-left: auto; }
  .site-nav__list { flex-direction: row; align-items: center; gap: var(--space-3); }
  .site-nav__link { font-size: 0.8125rem; }
  .nav-contact { display: none; }
  .header-cta { margin-left: var(--space-2); }
}

/* --- buttons (3px estate-plaque radius) --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-1);
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-xs);
  font-family: var(--font-body); font-weight: var(--fw-semibold);
  font-size: 0.8125rem; line-height: 1.2;
  text-transform: uppercase; letter-spacing: var(--ls-button);
  text-decoration: none; cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.btn--primary { background: var(--wh-button-bg); color: #fff; }
.btn--primary:hover { background: var(--wh-button-bg-hover); color: #fff; }
.btn--secondary {
  background: transparent; color: var(--wh-forest);
  border: 1.5px solid var(--wh-forest); box-shadow: none;
}
.btn--secondary:hover {
  background: var(--wh-sage-wash); color: var(--wh-forest-deep);
  border-color: var(--wh-forest-deep);
}
.btn--accent { background: var(--wh-gold); color: var(--wh-onyx); }
.btn--accent:hover { background: var(--tint-gold-hover); color: var(--wh-onyx); }
.btn--ghost {
  background: transparent; color: var(--wh-text);
  border-color: var(--wh-ink-muted); box-shadow: none;
}
.btn--ghost:hover { background: var(--wh-bg-alt); color: var(--wh-text); }
.btn--on-dark {
  background: transparent; color: var(--wh-text-on-dark);
  border: 1.5px solid var(--wh-text-on-dark); box-shadow: none;
}
.btn--on-dark:hover { background: var(--wh-cream); color: var(--wh-forest-deep); }
.btn--sm { padding: 11px 20px; font-size: 0.75rem; }
@media (prefers-reduced-motion: no-preference) {
  .btn { transition: background-color 0.18s var(--ease), color 0.18s var(--ease), transform 0.18s var(--ease); }
  .btn:hover { transform: translateY(-1px); }
}

/* --- bands / sections --- */
.band { padding-block: var(--space-8); }
.band--alt { background: var(--wh-bg-alt); }
.band--lattice {
  /* heraldic lattice: gold shamrocks/shields at 42% opacity, safe behind
     text at 128px on light grounds (07-patterns/PATTERNS.md) */
  background-color: var(--wh-cream-dark);
  background-image: url("/assets/brand/patterns/pattern-heraldic-lattice-subtle.svg");
  background-size: 128px; /* intended tile scale: 120-150px */
}
.band--forest {
  background: var(--wh-surface-dark);
  color: var(--wh-text-on-dark);
}
.band--forest h1, .band--forest h2, .band--forest h3, .band--forest h4 { color: var(--wh-text-on-dark); }
.band--forest .lede { color: var(--tint-text-on-dark-soft); }
.band--forest .eyebrow { color: var(--wh-sage-wash); } /* near-white tint, 10.3:1 on forest */
.band--forest a { color: var(--wh-text-on-dark); text-decoration-color: var(--wh-accent-line); }
.band--forest a:hover { color: var(--wh-white); }
.band--flush-top { padding-top: 0; }
@media (min-width: 1024px) { /* --bp-lg */
  .band { padding-block: var(--space-12); }
}
/* bronze reads ~4:1 on cream-dark / sage-wash, shy of AA; forest carries
   the eyebrow on those grounds (forest is sanctioned for short labels) */
.band--alt .eyebrow, .band--lattice .eyebrow, .cta-band .eyebrow { color: var(--wh-forest); }
/* the forest focus ring vanishes on forest grounds; flip it to cream */
.band--forest :focus-visible, .site-footer :focus-visible { outline-color: var(--wh-text-on-dark); }

.section-head { max-width: 680px; margin-bottom: var(--space-6); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { display: block; margin-bottom: var(--space-1-5); }
.section-head h2 { margin-bottom: var(--space-2); }
.section-head--center p { margin-inline: auto; }
.section-ornament { display: inline-block; height: 24px; width: auto; margin-top: var(--space-1); }

/* heading row with a brand illustration on the right */
.head-with-illo {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--space-3);
}
.head-with-illo .illo {
  height: clamp(88px, 13vw, 168px); width: auto;
  flex-shrink: 0;
}

/* --- ornament dividers (gold flourishes between sections) --- */
.ornament-divider {
  display: block;
  height: 20px; width: auto;
  margin-block: var(--space-4);
  margin-inline: auto;
  opacity: 0.9;
}
/* divider-plain.svg tile is 600x60 (vs 600x64): 19px keeps the rule weight
   matched with the shamrock divider */
.ornament-divider--plain { height: 19px; }

/* --- hero (home) --- */
.hero { position: relative; display: grid; align-items: end; min-height: min(88vh, 780px); }
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 40, 31, 0.10) 0%, rgba(20, 40, 31, 0.02) 40%, rgba(20, 40, 31, 0.30) 100%);
}
.hero__inner { position: relative; z-index: 1; padding-block: var(--space-6) var(--space-6); }
.hero__panel {
  background: var(--wh-surface);
  border: 1px solid var(--wh-border);
  border-top: 3px solid var(--wh-accent-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: var(--space-4);
  max-width: 640px;
}
.hero__panel h1 { margin: var(--space-2) 0 var(--space-2); font-size: var(--fs-display-fluid); line-height: 1.08; }
.hero__panel .lede { margin-bottom: var(--space-3); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-1-5); }
@media (min-width: 768px) {
  .hero__panel { padding: var(--space-6); }
}

/* --- page hero (interior pages) --- */
.page-hero { padding-block: var(--space-8) var(--space-4); }
.page-hero .eyebrow { display: block; margin-bottom: var(--space-1-5); }
.page-hero h1 { margin-bottom: var(--space-2); }
.page-hero .lede { max-width: 60ch; }
.page-hero::after {
  content: ""; display: block;
  width: min(320px, 68%); height: 18px;
  margin-top: var(--space-3);
  background: url("/assets/brand/ornaments/divider-shamrock.svg") no-repeat left center / contain;
}

/* --- photo banner (contact) --- */
.banner { position: relative; display: grid; align-items: end; min-height: 320px; }
.banner__media { position: absolute; inset: 0; overflow: hidden; }
.banner__media img { width: 100%; height: 100%; object-fit: cover; }
.banner__inner { position: relative; z-index: 1; padding-block: var(--space-4); }
.banner__panel {
  background: var(--wh-surface);
  border: 1px solid var(--wh-border);
  border-top: 3px solid var(--wh-accent-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: var(--space-3) var(--space-4);
  display: inline-block;
}
.banner__panel h1 { font-size: var(--fs-h1-fluid); }

/* --- trust bar / feature blocks --- */
.feature-grid { display: grid; gap: var(--space-3); }
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid--3 { grid-template-columns: repeat(3, 1fr); } .feature-grid--4 { grid-template-columns: repeat(4, 1fr); } }
.feature { display: flex; gap: var(--space-2); align-items: flex-start; }
.feature__body h3 { font-size: 1.3125rem; margin-bottom: var(--space-0-5); }
.feature__body p { font-size: var(--fs-small); color: var(--wh-text-muted); }
.icon-badge {
  flex-shrink: 0;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--wh-sage-wash);
  display: grid; place-items: center;
  color: var(--wh-forest-deep);
}
.icon-badge svg { width: 28px; height: 28px; }
.icon-badge--outline { background: var(--wh-white); border: 1px solid var(--wh-border); }

/* --- cards --- */
.card {
  background: var(--wh-surface);
  border: 1px solid var(--wh-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}
.card--crest { border-top: 3px solid var(--wh-accent-line); }
.card-grid { display: grid; gap: var(--space-3); }
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.room-card {
  background: var(--wh-surface);
  border: 1px solid var(--wh-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.room-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.room-card__media img { width: 100%; height: 100%; object-fit: cover; }
.room-card__body { padding: var(--space-4); display: flex; flex-direction: column; gap: var(--space-1-5); flex: 1; }
.room-card__kicker { font-size: 0.8125rem; letter-spacing: 0.16em; }
.room-card h3 { font-size: var(--fs-h3-fluid); }
.room-card p { font-size: var(--fs-small); color: var(--wh-text-muted); flex: 1; }
.room-card__foot { display: flex; align-items: center; justify-content: space-between; gap: var(--space-1); flex-wrap: wrap; margin-top: var(--space-1); }
.room-card__link {
  font-family: var(--font-body); font-weight: var(--fw-semibold);
  font-size: var(--fs-small); text-decoration: none;
}
@media (prefers-reduced-motion: no-preference) {
  .room-card__media img { transition: transform 0.5s var(--ease); }
  .room-card:hover .room-card__media img { transform: scale(1.03); }
}

/* --- chips --- */
.chip {
  display: inline-block;
  background: var(--wh-sage-wash); color: var(--wh-forest-deep);
  border: 1px solid var(--tint-forest-border);
  font-family: var(--font-body); font-weight: var(--fw-semibold);
  font-size: var(--fs-small); line-height: 1;
  padding: 8px 14px; border-radius: var(--radius-xs);
  white-space: nowrap;
}
.chip-row {
  display: flex; gap: var(--space-1); flex-wrap: nowrap; overflow-x: auto;
  padding-block: var(--space-1-5);
  scrollbar-width: none;
}
.chip-row::-webkit-scrollbar { display: none; }
.chip-row--sticky {
  position: sticky; top: var(--header-h); z-index: 30;
  background: var(--wh-bg);
  border-bottom: 1px solid var(--wh-border);
}
.chip-link {
  display: inline-block; white-space: nowrap;
  background: var(--wh-white); color: var(--wh-text);
  border: 1px solid var(--wh-border);
  font-family: var(--font-body); font-weight: var(--fw-medium); font-size: var(--fs-small);
  padding: 8px 16px; border-radius: var(--radius-xs);
  text-decoration: none;
}
.chip-link:hover { border-color: var(--wh-accent-line); color: var(--wh-bronze); }

/* --- split (photo + copy) --- */
/* minmax(0, 1fr) lets tracks shrink below content min-size, so a wide child
   (e.g. a .chip-row) scrolls inside its own box instead of forcing the page
   to scroll horizontally. */
.split { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-4); align-items: center; }
.split > * { min-width: 0; }
.split__media img { border-radius: var(--radius-md); width: 100%; }
.split__media--round img { border-radius: 50%; aspect-ratio: 1; object-fit: cover; max-width: 420px; margin-inline: auto; }
@media (min-width: 1024px) {
  .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--space-8); }
  .split--media-right .split__media { order: 2; }
}
.checklist { list-style: none; padding: 0; display: grid; gap: var(--space-1-5); }
.checklist li { padding-left: 28px; position: relative; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 5px;
  width: 16px; height: 16px;
  background: url("/assets/brand/ornaments/shamrock.svg") no-repeat center / contain;
}

/* --- quote cards (testimonials / owners' words) --- */
.quote-grid { display: grid; gap: var(--space-3); }
@media (min-width: 768px) { .quote-grid { grid-template-columns: repeat(3, 1fr); } }
.quote-card {
  background: var(--wh-surface);
  border: 1px solid var(--wh-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  display: flex; flex-direction: column; gap: var(--space-2);
  box-shadow: var(--shadow-soft);
}
.quote-card blockquote {
  font-family: var(--font-serif); font-style: italic; font-weight: var(--fw-medium);
  font-size: 1.3125rem; line-height: 1.5;
  flex: 1;
}
/* decorative gold opening-quote glyph; --wh-accent-line is the
   decoration-only gold alias (never used for readable text) */
.quote-card blockquote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-display); font-style: normal;
  font-size: 3rem; line-height: 0.55;
  color: var(--wh-accent-line);
  margin-bottom: var(--space-1-5);
}
.quote-card figcaption { font-size: var(--fs-small); color: var(--wh-text-muted); }

/* --- steps --- */
.steps { list-style: none; padding: 0; display: grid; gap: var(--space-3); counter-reset: step; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps li { counter-increment: step; display: flex; gap: var(--space-2); align-items: flex-start; }
.steps li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--wh-gold); color: var(--wh-onyx);
  font-family: var(--font-body); font-weight: var(--fw-semibold); font-size: var(--fs-body-lg);
  display: grid; place-items: center;
}
.steps h3 { font-size: 1.3125rem; margin-bottom: var(--space-0-5); }
.steps p { font-size: var(--fs-small); color: var(--wh-text-muted); }

/* --- FAQ --- */
.faq { display: grid; gap: var(--space-1-5); max-width: 820px; }
.faq details {
  background: var(--wh-surface);
  border: 1px solid var(--wh-border);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
}
.faq summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-serif); font-weight: var(--fw-semibold);
  font-size: 1.25rem;
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-2);
}
.faq summary::-webkit-details-marker { display: none; }
/* bronze, not gold: the +/- marker is a state indicator, so it must clear
   the 3:1 non-text contrast bar (gold is 2.4:1 on white; bronze is 5.4:1) */
.faq summary::after { content: "+"; font-family: var(--font-display); font-size: 1.5rem; color: var(--wh-bronze); line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details[open] summary { margin-bottom: var(--space-1-5); }
.faq details p { font-size: var(--fs-small); color: var(--wh-text-muted); }

/* --- forms --- */
.form-card {
  background: var(--wh-surface);
  border: 1px solid var(--wh-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}
.form fieldset { border: none; padding: 0; margin: 0 0 var(--space-4); }
.form legend {
  font-family: var(--font-serif); font-weight: var(--fw-semibold);
  font-size: var(--fs-h3-fluid);
  margin-bottom: var(--space-2); padding: 0;
}
.form-grid { display: grid; gap: var(--space-2); }
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .form-field--full { grid-column: 1 / -1; }
}
.form-field label {
  display: block;
  font-family: var(--font-body); font-weight: var(--fw-semibold);
  font-size: 0.875rem;
  margin-bottom: var(--space-0-5);
}
.form-field .hint { font-size: 0.875rem; color: var(--wh-text-muted); margin-top: var(--space-0-5); }
.form-field input:not([type="checkbox"]),
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--wh-white); color: var(--wh-text);
  border: 1px solid var(--wh-border);
  border-radius: var(--radius-xs);
  padding: 12px 14px;
  font: inherit;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] { border-color: var(--wh-error); }
.req { color: var(--wh-error); }
.choice-row { display: flex; flex-wrap: wrap; gap: var(--space-1); }
.choice {
  display: inline-flex; align-items: center; gap: var(--space-1);
  background: var(--wh-white);
  border: 1px solid var(--wh-border);
  border-radius: var(--radius-xs);
  padding: 10px 18px;
  font-family: var(--font-body); font-weight: var(--fw-medium); font-size: var(--fs-small);
  cursor: pointer;
}
.choice:has(input:checked) {
  background: var(--wh-sage-wash);
  border-color: var(--wh-forest-deep);
  color: var(--wh-forest-deep);
}
.choice input { accent-color: var(--wh-forest-deep); width: 16px; height: 16px; }
.consent { display: flex; gap: var(--space-1-5); align-items: flex-start; font-size: var(--fs-small); }
.consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--wh-forest-deep); flex-shrink: 0; }
.form-error { color: var(--wh-error); font-size: var(--fs-small); margin-top: var(--space-1); }
.form-success { color: var(--wh-success); font-size: var(--fs-small); margin-top: var(--space-1); }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* --- enquiry layout (form + sticky aside) --- */
.booking-layout { display: grid; gap: var(--space-4); align-items: start; }
@media (min-width: 1024px) { /* --bp-lg */
  .booking-layout { grid-template-columns: 1.6fr 1fr; }
  .booking-aside { position: sticky; top: calc(var(--header-h) + var(--space-2)); }
}

/* --- stat strip (about / our family) --- */
.stat-strip { display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-4); }
.stat-strip div {
  font-family: var(--font-display); font-weight: var(--fw-regular);
  font-size: 2.25rem; line-height: 1.1;
  color: var(--wh-forest-deep);
}
.stat-strip span { display: block; font-family: var(--font-body); font-weight: var(--fw-regular); font-size: var(--fs-small); color: var(--wh-text-muted); }

/* --- divider (gold hairlines flanking an inline ornament) --- */
.divider {
  display: flex; align-items: center; gap: var(--space-2);
  margin-block: var(--space-4);
}
.divider::before, .divider::after {
  content: ""; flex: 1; border-top: 1px solid var(--tint-gold-border);
}
.divider img { height: 19px; width: auto; }

/* --- contact cards --- */
.contact-card { text-align: left; display: flex; flex-direction: column; gap: var(--space-1-5); }
.contact-card .icon-badge { margin-bottom: var(--space-1); }
.contact-card h3 { font-size: var(--fs-h3-fluid); }
.contact-card p { font-size: var(--fs-small); color: var(--wh-text-muted); }
.contact-card a.big-link {
  font-family: var(--font-display); font-weight: var(--fw-medium);
  font-size: var(--fs-h3-fluid); text-decoration: none; overflow-wrap: anywhere;
}

/* --- prose (terms / privacy / long-form) --- */
.prose { max-width: 74ch; }
/* In-article section headings use the Cormorant serif (h3/h4 face) rather
   than the Bodoni display face: at running-prose size the display serif
   reads heavier than body copy. Display h2s elsewhere stay display. */
.prose h2 { font-family: var(--font-serif); font-weight: var(--fw-semibold); margin: var(--space-6) 0 var(--space-2); }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { margin-bottom: var(--space-2); }
.prose ul { padding-left: 22px; }
.prose .updated { font-size: var(--fs-small); color: var(--wh-text-muted); }
/* simple tables in prose (wrap wide ones in .table-scroll) */
.prose table { width: 100%; border-collapse: collapse; margin-bottom: var(--space-3); }
.prose th, .prose td {
  text-align: left; padding: var(--space-1-5) var(--space-2);
  border-bottom: 1px solid var(--wh-border);
}
.prose th { font-family: var(--font-body); font-weight: var(--fw-semibold); font-size: var(--fs-small); }

/* --- CTA band (sage wash between gold keylines) --- */
.cta-band {
  text-align: center;
  background: var(--wh-sage-wash);
  border-block: 1px solid var(--tint-gold-border-soft);
}
.cta-band .eyebrow { display: block; margin-bottom: var(--space-2); }
.cta-band h2 { font-size: var(--fs-h2-fluid); margin-bottom: var(--space-2); }
.cta-band .cta-sub { color: var(--wh-text-muted); max-width: 56ch; margin: 0 auto var(--space-3); }
.cta-band .hero__actions { justify-content: center; }
.cta-band .small-print { font-size: var(--fs-small); color: var(--wh-text-muted); margin-top: var(--space-2); }
.cta-illo {
  display: block;
  width: min(860px, 94%); height: auto;
  margin: var(--space-6) auto 0;
}

/* --- footer (forest-deep dark surface, cream text) --- */
.site-footer { background: var(--wh-surface-dark-deep); color: var(--wh-text-on-dark); }
.site-footer__inner { padding-block: var(--space-8) var(--space-4); display: grid; gap: var(--space-6); }
@media (min-width: 768px) { .site-footer__inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-4); } }
.site-footer__mark { width: 140px; height: auto; margin-bottom: var(--space-3); opacity: 0.88; }
.site-footer__tagline {
  font-family: var(--font-serif); font-style: italic; font-weight: var(--fw-medium);
  font-size: 1.3125rem; line-height: 1.35;
}
.site-footer p, .site-footer li, .site-footer a { color: var(--wh-text-on-dark); font-size: var(--fs-body); }
/* column headings: Cormorant 600 uppercase in cream, gold-decorated by the
   rule below them (never gold text) */
.site-footer h2 {
  color: var(--wh-text-on-dark);
  font-family: var(--font-serif); font-weight: var(--fw-semibold);
  font-size: 1.0625rem; text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: var(--space-2);
}
.site-footer h2::after {
  content: ""; display: block;
  width: 28px; height: 2px;
  background: var(--wh-gold);
  margin-top: var(--space-1);
}
.site-footer ul { list-style: none; padding: 0; display: grid; gap: var(--space-1); }
.site-footer a { text-decoration-color: var(--tint-cream-on-dark); }
.site-footer a:hover { color: #fff; text-decoration-color: var(--wh-accent-line); }
.site-footer__legal {
  border-top: 1px solid var(--tint-hairline-on-dark);
  padding-block: var(--space-3);
  display: flex; flex-wrap: wrap; gap: var(--space-1) var(--space-3);
  justify-content: space-between;
  font-size: var(--fs-small);
}
.site-footer__legal p, .site-footer__legal a { font-size: var(--fs-small); color: var(--tint-text-on-dark-soft); }

/* --- misc --- */
.thumb-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-1-5); margin-top: var(--space-1-5); }
.thumb-strip img { border-radius: var(--radius-sm); aspect-ratio: 1; object-fit: cover; width: 100%; }
.icon-row { display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-3); margin-top: var(--space-2); }
.icon-row span { display: inline-flex; align-items: center; gap: var(--space-1); font-size: var(--fs-small); color: var(--wh-text-muted); }
.icon-row svg { width: 20px; height: 20px; color: var(--wh-forest); flex-shrink: 0; }
.notice {
  background: var(--wh-sage-wash);
  border: 1px solid var(--tint-forest-border);
  border-left: 3px solid var(--wh-accent-line);
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4);
  color: var(--wh-text);
}
.notice p { font-size: var(--fs-small); }
.error-page { text-align: center; padding-block: var(--space-12); }
.error-page .illo-landscape {
  width: min(560px, 92%); height: auto;
  margin: 0 auto var(--space-4);
}

/* ---------- 7. Print ---------- */
@media print {
  .site-header, .site-footer, .cta-band, .hero__actions, .nav-toggle, .skip-link { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: none; }
}
