/* ============================================================
   Roch Dog — directory rebuild
   House style: Satoshi, warm paper / ink, ONE gold (#A08010,
   the seal gold). Minimal, hairline rules, gold used sparingly,
   links gold and never underlined. Container-constrained so it
   never oversizes on large screens; fluid clamp() type; auto-fill
   grids; capped hero. Holds phone -> 4K.
   ============================================================ */

/* ===== TOKENS ===== */
:root {
  --ink: #0A0A0A;
  --ink-soft: #1F1E1C;
  --body: #2C2A26;
  --paper: #F4F2EC;
  --panel: #FBFAF6;
  --panel-2: #EFECE3;
  --line: #1F1E1C;
  --line-soft: #D8D4CB;
  --line-hair: #E4E0D7;
  --mute: #807D77;
  --mute-soft: #A8A59E;
  --gold: #A08010;          /* ROCH GOLD = the seal gold, exactly */
  --gold-deep: #A08010;
  --gold-bright: #B9933A;
  --gold-tint: rgba(160, 128, 16, 0.08);
  --gold-tint-strong: rgba(160, 128, 16, 0.16);
  --dark-1: #1A1A1A;
  --dark-2: #0E0E0E;

  --max: 1200px;
  --measure: 880px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-sm: 10px;
  --sans: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* fluid type scale */
  --fs-eyebrow: 0.78rem;
  --fs-h1: clamp(2.1rem, 1.25rem + 3.6vw, 4rem);
  --fs-h2: clamp(1.6rem, 1.1rem + 2vw, 2.6rem);
  --fs-h3: clamp(1.2rem, 1rem + 0.7vw, 1.5rem);
  --fs-lead: clamp(1.05rem, 0.98rem + 0.5vw, 1.3rem);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: #1f2024;
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.62;
  color: var(--body);
  background: var(--paper);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  text-wrap: pretty;
}
img { display: block; max-width: 100%; height: auto; }
main { flex: 1 0 auto; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 0.5em;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); font-weight: 600; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { margin: 0 0 1em; text-wrap: balance; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--gold-deep);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.18s ease, opacity 0.18s ease;
}
a:hover { color: var(--gold-bright); }

.eyebrow {
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 600;
  color: var(--gold-deep);
  margin: 0 0 14px;
}
.eyebrow--light { color: var(--gold-bright); }

/* ===== LAYOUT ===== */
.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--pad); width: 100%; }
.band { padding-block: clamp(48px, 6vw, 92px); }
.band--sm { padding-block: clamp(32px, 4vw, 56px); }
.band--paper { background: var(--paper); }
.band--panel { background: var(--panel); border-block: 1px solid var(--line-hair); }
.band--panel2 { background: var(--panel-2); }
.band--dark { background: linear-gradient(180deg, var(--dark-1), var(--dark-2)); color: rgba(255,255,255,0.72); }
.band--dark h2, .band--dark h3 { color: #fff; }
/* flat dark band matching the site footer (#1f2024), overrides the gradient */
.band--footcolor { background: #1f2024; }

.section-head { max-width: var(--measure); margin: 0 auto clamp(28px, 3vw, 48px); text-align: center; }
.section-head p { color: #5E5B55; font-size: var(--fs-lead); }
.section-head--left { margin-left: 0; text-align: left; }
.section-head--serif h2 { font-family: 'EB Garamond', Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -0.01em; }
.section-head p.eyebrow { color: var(--gold-deep); font-size: var(--fs-eyebrow); letter-spacing: 0.24em; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.96rem; line-height: 1;
  padding: 14px 22px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
  text-decoration: none;
}
.btn .ar { transition: transform 0.16s ease; }
.btn:hover .ar { transform: translateX(3px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--gold-deep); color: #fff; }
.btn-gold { background: var(--gold-deep); color: #fff; }
.btn-gold:hover { background: var(--ink); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-soft); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn--lg { padding: 16px 28px; font-size: 1.02rem; }

/* ===== NAV ===== */
.site-nav { background: var(--paper); border-bottom: 1px solid var(--line-hair); position: sticky; top: 0; z-index: 50; }
.site-nav__inner { max-width: var(--max); margin-inline: auto; padding: 14px var(--pad); display: flex; align-items: center; gap: 24px; }
.site-nav__logo { position: relative; display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.site-nav__logo img { height: 30px; width: auto; display: block; }
/* two stacked marks: dark = classic two-tone (gold icon, black text), light = all-white.
   Dark shows by default (cream nav, inner pages); light shows on the transparent hero. */
.site-nav__logo .logo-light { position: absolute; left: 0; top: 0; opacity: 0; transition: opacity 0.3s ease; }
.site-nav__logo .logo-dark { transition: opacity 0.3s ease; }
.site-nav__spacer { flex: 1; }
.site-nav__links { display: flex; align-items: center; gap: 26px; }
.site-nav__links a { color: var(--ink-soft); font-weight: 600; font-size: 0.94rem; }
.site-nav__links a:hover { color: var(--gold-deep); }
.site-nav__social { display: inline-flex; align-items: center; gap: 15px; padding-left: 6px; }
.site-nav__social a { color: var(--ink-soft); display: inline-flex; }
.site-nav__social a:hover { color: var(--gold-deep); }
.site-nav__social svg { width: 18px; height: 18px; }
.site-nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.site-nav__toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; transition: 0.2s; }

/* Transparent overlay nav (homepage hero only), scroll-aware. White text/logo/icons
   over the photo; reverts to the dark cream bar once you scroll. */
.site-nav--overlay { position: fixed; left: 0; right: 0; top: 0; background: transparent;
  border-bottom-color: transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.site-nav--overlay .site-nav__inner { padding-top: 26px; }
.site-nav--overlay .site-nav__links a,
.site-nav--overlay .site-nav__social a { color: rgba(255,255,255,0.88); transition: color 0.25s ease; }
.site-nav--overlay .site-nav__links a:hover,
.site-nav--overlay .site-nav__social a:hover { color: rgba(255,255,255,1); }
/* transparent hero: white logo on, classic off */
.site-nav--overlay .site-nav__logo .logo-light { opacity: 0.88; }
.site-nav--overlay .site-nav__logo .logo-dark { opacity: 0; }
.site-nav--overlay .site-nav__toggle span { background: #fff; }
.site-nav--overlay.is-scrolled { background: var(--paper); border-bottom-color: var(--line-hair);
  box-shadow: 0 1px 0 rgba(0,0,0,0.03); }
.site-nav--overlay.is-scrolled .site-nav__links a,
.site-nav--overlay.is-scrolled .site-nav__social a { color: var(--ink-soft); }
.site-nav--overlay.is-scrolled .site-nav__links a:hover,
.site-nav--overlay.is-scrolled .site-nav__social a:hover { color: var(--gold-deep); }
/* scrolled cream bar: classic two-tone on, white off */
.site-nav--overlay.is-scrolled .site-nav__logo .logo-light { opacity: 0; }
.site-nav--overlay.is-scrolled .site-nav__logo .logo-dark { opacity: 1; }
.site-nav--overlay.is-scrolled .site-nav__toggle span { background: var(--ink); }
/* hero rises to the very top under the fixed nav, fills the viewport (capped so it doesn't balloon on tall/large-screen viewports) */
.site-nav--overlay + main .hero { min-height: clamp(600px, 94vh, 900px); min-height: clamp(600px, 94svh, 900px); }
/* drop the hero copy toward the lower third so it sits grounded, not dead-centre */
.site-nav--overlay + main .hero__content { margin-top: clamp(40px, 9vh, 120px); }

/* ===== HERO (homepage) ===== */
.hero { position: relative; width: 100%; min-height: clamp(600px, 94vh, 900px); min-height: clamp(600px, 94svh, 900px); display: flex; align-items: center; overflow: hidden; background: linear-gradient(155deg, #2c2a26 0%, #1a1a1a 60%, #0e0e0e 100%); }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; z-index: 0; opacity: 0; transition: opacity 1.4s ease; }
.hero__bg.is-on { opacity: 1; }
.hero__scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(10,9,8,0.38) 0%, rgba(10,9,8,0) 16%),
              linear-gradient(100deg, rgba(10,9,8,0.66) 0%, rgba(10,9,8,0.46) 28%, rgba(10,9,8,0.24) 48%, rgba(10,9,8,0.06) 66%, rgba(10,9,8,0) 82%),
              linear-gradient(0deg, rgba(10,9,8,0.30) 0%, rgba(10,9,8,0) 42%); }
.hero__inner { position: relative; z-index: 2; max-width: var(--max); margin-inline: auto; padding: clamp(40px,7vw,90px) var(--pad); width: 100%; color: #fff; }
.hero__content { max-width: 560px; display: flex; flex-direction: column; align-items: flex-start; }
.hero__credit { position: absolute; right: 18px; bottom: 16px; z-index: 3; font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.82);
  letter-spacing: 0.03em; text-shadow: 0 1px 4px rgba(0,0,0,0.6); }
.hero__eyebrow { font-size: clamp(0.54rem, 0.5rem + 0.15vw, 0.6rem); font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.9);
  margin: 0 0 clamp(6px, 1vw, 9px); text-shadow: 0 1px 10px rgba(0,0,0,0.5); }
.hero h1 { color: rgba(255,255,255,0.88); font-family: 'EB Garamond', Georgia, "Times New Roman", serif; font-weight: 400;
  font-size: clamp(1.9rem, 1.25rem + 2.2vw, 3.2rem); line-height: 1.05; letter-spacing: -0.005em; margin-left: -0.035em;
  margin-bottom: clamp(6px, 1vw, 9px); text-shadow: 0 2px 30px rgba(0,0,0,0.42); }
.hero__sub { font-size: clamp(0.66rem, 0.61rem + 0.27vw, 0.81rem); font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: #fff; margin: 0;
  text-shadow: 0 1px 12px rgba(0,0,0,0.55); }
.hero__lead { font-size: var(--fs-lead); color: rgba(255,255,255,0.9); max-width: 600px; margin-bottom: 30px; }
.hero .eyebrow { color: #fff; opacity: 0.85; }

/* ===== HERO SEARCH (editorial frosted, ghost gold button) ===== */
.herosearch { display: flex; align-items: stretch; width: 100%; max-width: 420px; margin-top: clamp(22px, 2.6vw, 32px); margin-left: 0;
  background: rgba(244,242,236,0.16); -webkit-backdrop-filter: blur(14px) saturate(1.2); backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid rgba(244,242,236,0.55); border-radius: 2px; overflow: hidden;
  box-shadow: 0 2px 22px rgba(10,9,8,0.18);
  transition: border-color 0.3s ease, background 0.3s ease; }
.herosearch:focus-within { border-color: rgba(255,255,255,0.85); background: rgba(244,242,236,0.22); }
.herosearch__input { flex: 1 1 auto; min-width: 0; border: 0; outline: 0; background: transparent;
  font-family: var(--sans); font-size: 0.92rem; letter-spacing: 0.01em; color: #fff; padding: 0.82rem 0.5rem 0.82rem 1.15rem; }
.herosearch__input::placeholder { color: rgba(255,255,255,0.92); letter-spacing: 0.02em; }
.herosearch__btn { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  background: transparent; border: 0; color: rgba(255,255,255,0.95); padding: 0 1.05rem; transition: color 0.25s ease; }
.herosearch__btn svg { width: 18px; height: 18px; display: block; }
.herosearch__btn:hover { color: #fff; }
.hero__hint { font-size: 0.86rem; color: rgba(255,255,255,0.78); font-weight: 500; }
.hero__hint a { color: #fff; }
.hero__hint a:hover { color: var(--gold-bright); }

/* ===== RANK — tidy gold letter (the Roch rank mark) ===== */
.rankletter { font-weight: 700; color: var(--gold-deep); letter-spacing: -0.03em; line-height: 1;
  font-size: 1.55rem; display: inline-block; flex-shrink: 0; }
.rankletter--sm { font-size: 1.3rem; }
.rankletter--xl { font-size: clamp(3rem, 2rem + 4vw, 4.4rem); }
.stars { color: var(--gold-deep); font-size: 0.86rem; letter-spacing: 1px; }
.starline { display: inline-flex; align-items: center; gap: 7px; color: var(--mute); font-size: 0.84rem; font-weight: 600; }

/* ===== CARD GRID ===== */
.card-grid { display: grid; gap: clamp(18px, 2vw, 28px);
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }
.card-grid--3 { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.card-grid--rotate .hcard.is-hidden { display: none; }

.hcard { display: flex; flex-direction: column; background: var(--panel); border: 1px solid var(--line-hair); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease; }
.hcard:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(10,10,10,0.10); border-color: var(--line-soft); }
.hcard__ph { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--panel-2); }
.hcard__ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.hcard:hover .hcard__ph img { transform: scale(1.04); }
.hcard__rank { position: absolute; top: 12px; left: 12px; }
.hcard__body { padding: 18px 22px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1 1 auto; }
.hcard__loc { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); }
.hcard__top { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: auto; }
.hcard__name { flex: 1 1 auto; min-width: 0;
  font-family: 'EB Garamond', Georgia, "Times New Roman", serif; font-size: 1.3rem; font-weight: 500;
  color: var(--ink); line-height: 1.24; letter-spacing: 0; }
.hcard__stamp { flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1px; }
.hcard__stampcap { font-size: 0.5rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); }

/* ===== SEAL FEATURE (horizontal, compact, below the hero) ===== */
.seal-feature .wrap { max-width: 1180px; display: flex; align-items: center; justify-content: center; gap: clamp(32px, 5vw, 64px); }
.seal-feature__seal { width: clamp(150px, 19vw, 210px); height: auto; flex-shrink: 0;
  filter: drop-shadow(0 12px 30px rgba(160,128,16,0.24)); }
.seal-feature__body { max-width: 600px; }
.seal-feature__msg { font-weight: 500; letter-spacing: -0.02em; margin: 4px 0 0;
  font-size: clamp(1.35rem, 1rem + 1.4vw, 2.05rem); }
.seal-feature__lead { font-family: 'EB Garamond', Georgia, "Times New Roman", serif; font-weight: 500;
  color: var(--ink); letter-spacing: -0.01em; line-height: 1.2; margin: 4px 0 0;
  font-size: clamp(1.5rem, 1.1rem + 1.7vw, 2.3rem); }
.seal-feature__sub { font-family: var(--sans); color: var(--mute); line-height: 1.6; font-weight: 500;
  margin: clamp(14px, 1.6vw, 20px) 0 0; max-width: 720px;
  font-size: clamp(0.98rem, 0.93rem + 0.3vw, 1.12rem); }

/* ===== STANDARD PAGE (features + rank guide) ===== */
.feature { background: var(--panel); border: 1px solid var(--line-hair); border-radius: var(--radius); padding: 26px 24px; }
.feature h3 { font-size: 1.12rem; margin-bottom: 10px; }
.feature p { font-size: 0.92rem; color: var(--mute); }
.rank-guide { display: flex; flex-direction: column; gap: 14px; max-width: var(--max); }
.rank-guide__row { display: grid; grid-template-columns: 56px 1fr; gap: 22px; align-items: center; padding: 20px 22px; background: var(--panel); border: 1px solid var(--line-hair); border-radius: var(--radius); }
.rank-guide__row .rankletter { justify-self: center; }
.rank-guide__row h3 { margin: 0 0 4px; font-size: 1.05rem; }
.rank-guide__row p { margin: 0; font-size: 0.92rem; color: var(--mute); }

/* ===== THE STANDARD PAGE (light, editorial — for dog owners) ===== */
/* signature serif on the primary headers — magazine rhythm against the sans body */
.std-page h1, .std-page h2 { font-family: 'EB Garamond', Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: 0; }
.std-page h1 { font-size: clamp(2.4rem, 1.5rem + 3vw, 4rem); line-height: 1.04; }
.std-page h2 { font-size: clamp(1.9rem, 1.3rem + 1.8vw, 2.9rem); line-height: 1.08; }
/* +20% vertical air between sections */
.std-page .band { padding-block: clamp(58px, 7.2vw, 112px); }

/* hero: text left, the Roch Dog Seal right (rochcertification pattern) */
.std-hero { padding-block: clamp(56px, 7vw, 104px) !important; }
.std-hero__inner { display: flex; align-items: center; justify-content: space-between; gap: clamp(40px, 6vw, 88px); }
.std-hero__text { flex: 0 1 640px; min-width: 0; }
.std-hero__text h1 { font-size: clamp(1.9rem, 1.3rem + 2.2vw, 2.9rem); line-height: 1.1; margin-bottom: 18px; max-width: 22ch; text-wrap: balance; }
.std-hero__text .std-lead { max-width: 540px; }
.std-hero__seal { flex: 0 0 auto; width: clamp(210px, 27vw, 340px); height: auto; display: block;
  filter: drop-shadow(0 22px 50px rgba(160,128,16,0.26)); transition: transform 0.22s cubic-bezier(.34,1.56,.64,1); }
.std-hero__seal:hover { transform: scale(1.05); }

.std-lead { font-size: var(--fs-lead); color: var(--mute); margin: 0; }

/* ===== LEGAL PAGES (privacy, terms) — matches rochstandard.com ===== */
.page-hero { background: var(--paper); padding: clamp(48px, 8vw, 96px) var(--pad) 0; }
.page-hero__inner { max-width: var(--measure); margin: 0 auto; }
.page-hero__kicker { font-family: var(--sans); font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--mute); margin: 0 0 20px; }
.page-hero__title { font-family: var(--sans); font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 300;
  letter-spacing: -0.025em; line-height: 1.04; color: var(--ink); margin: 0 0 20px; text-wrap: balance; }
.page-hero__subtitle { font-size: clamp(1.0625rem, 1.6vw, 1.25rem); line-height: 1.55; font-weight: 400;
  color: var(--ink-soft); margin: 0; text-wrap: pretty; }
.article-wrap { max-width: var(--measure); margin: 0 auto; padding: clamp(40px, 6vw, 64px) var(--pad) clamp(64px, 9vw, 100px); }
.article-body { font-family: var(--sans); font-size: 1.125rem; line-height: 1.7; font-weight: 400; color: var(--body); }
.article-body p { margin: 0 0 1.5em; text-wrap: pretty; }
.article-body p:last-child { margin-bottom: 0; }
.article-body h2 { font-size: 1.375rem; font-weight: 600; letter-spacing: -0.015em; color: var(--ink); margin: 2.1em 0 0.6em; text-wrap: balance; }
.article-body h3 { font-size: 1.125rem; font-weight: 600; color: var(--ink); margin: 1.4em 0 0.5em; text-wrap: balance; }
.article-body > *:first-child { margin-top: 0; }
.article-body a { color: var(--gold-deep); text-decoration: none; }
.article-body a:hover { color: var(--gold-bright); }

/* manifesto — editorial magazine split: serif thesis left (40%), copy + guarantee right (60%) */
.std-manifesto { display: grid; grid-template-columns: 2fr 3fr; gap: clamp(36px, 6vw, 96px);
  align-items: start; max-width: var(--max); margin-inline: auto; }
.std-manifesto__head h2 { font-family: 'EB Garamond', Georgia, serif; font-weight: 500;
  font-size: clamp(2.1rem, 1.4rem + 2.8vw, 3.4rem); line-height: 1.08; letter-spacing: -0.015em;
  color: var(--ink); margin: 0; text-wrap: balance; }
.std-manifesto__head .std-manifesto__seal { font-family: 'EB Garamond', Georgia, serif; font-style: italic;
  font-size: 1.15rem; color: var(--ink); margin: clamp(20px, 2.4vw, 30px) 0 0; }
/* intro paragraph breathes */
.std-manifesto__intro { font-size: clamp(1.05rem, 0.98rem + 0.4vw, 1.2rem); color: var(--body);
  line-height: 1.75; margin: 0 0 clamp(30px, 3.4vw, 48px); }
/* guarantee row — four points across, centred beneath the split, thin vertical dividers only */
.baseline { list-style: none; padding: 0; max-width: var(--max); margin: clamp(40px, 5vw, 72px) auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr); }
.baseline li { text-align: center; padding: 6px clamp(18px, 2.2vw, 32px); }
.baseline li + li { border-left: 1px solid var(--line-soft); }
.baseline__label { display: block; font-weight: 600; color: var(--ink); font-size: 1.02rem; margin-bottom: 6px; }
.baseline__desc { display: block; color: var(--mute); font-size: 0.92rem; line-height: 1.5; }

/* the standard: the five conditions, broken out as an official charter ledger */
.std-def { max-width: 1040px; }
.std-def__intro { margin-bottom: clamp(24px, 3vw, 40px); }
.criteria { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-soft); }
.criterion { display: grid; grid-template-columns: 64px 1fr; gap: clamp(22px, 3vw, 44px); align-items: baseline; padding: clamp(24px, 2.8vw, 32px) 4px; border-bottom: 1px solid var(--line-soft); }
.criterion__no { font-size: 0.82rem; font-weight: 600; color: var(--gold-deep); letter-spacing: 0.24em; font-variant-numeric: tabular-nums; }
.criterion h3 { font-family: 'EB Garamond', Georgia, serif; font-weight: 500; letter-spacing: 0; font-size: clamp(1.4rem, 1.2rem + 0.6vw, 1.62rem); margin: 0 0 7px; }
.criterion p { margin: 0; color: var(--mute); font-size: 0.96rem; max-width: 62ch; }

/* method — two gates (assess -> rank), open-air columns framed by structural hairlines */
.gates { display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: var(--max); margin: 0 auto clamp(40px, 4.6vw, 64px); }
.gate { padding: clamp(26px, 3vw, 40px) clamp(24px, 3.2vw, 52px); }
.gate:first-child { padding-left: 0; }
.gate:last-child { padding-right: 0; }
.gate__no { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.2em; color: var(--gold-deep); text-transform: uppercase; }
.gate h3 { font-size: clamp(1.3rem, 1.05rem + 0.9vw, 1.7rem); margin: 14px 0 12px; }
.gate p { margin: 0; color: var(--mute); }

/* supporting integrity trio — bounded by one continuous hairline, no floating sticks */
.std-principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: var(--max); margin-inline: auto; }
.std-principle { padding: clamp(22px, 2.6vw, 34px) clamp(22px, 2.8vw, 40px); }
.std-principle:first-child { padding-left: 0; }
.std-principle:last-child { padding-right: 0; }
.std-principle h3 { font-size: 1.06rem; margin: 0 0 8px; }
.std-principle p { margin: 0; color: var(--mute); font-size: 0.92rem; }

/* the Method band runs dark for layering contrast */
.band--dark .section-head p { color: rgba(255,255,255,0.7); }
.band--dark .gates { border-top: 1px solid rgba(255,255,255,0.16); }
.band--dark .gate + .gate { border-left: 1px solid rgba(255,255,255,0.16); }
.band--dark .gate__no { color: var(--gold-bright); }
.band--dark .gate p { color: rgba(255,255,255,0.74); }
.band--dark .std-principles { border-top: 1px solid rgba(255,255,255,0.16); }
.band--dark .std-principle + .std-principle { border-left: 1px solid rgba(255,255,255,0.16); }
.band--dark .std-principle p { color: rgba(255,255,255,0.74); }

/* rank guide — open-air matrix; five grades sit 3-then-2, hairline dividers, no filled empty cell */
.rank-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: var(--max); border-top: 1px solid var(--line-soft); }
.rank-card { display: flex; flex-direction: column; padding: clamp(28px, 3vw, 46px) clamp(24px, 3vw, 44px);
  border-bottom: 1px solid var(--line-soft); border-left: 1px solid var(--line-soft); }
.rank-card:nth-child(3n+1) { border-left: 0; }
.rank-card:nth-child(n+4) { border-bottom: 0; }
.rank-card__letter { font-size: clamp(2.8rem, 2rem + 2.2vw, 3.9rem); font-weight: 700; color: var(--gold-deep); line-height: 1; letter-spacing: -0.02em; }
.rank-card--fail .rank-card__letter { color: var(--mute-soft); }
.rank-card__tier { margin-top: 12px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); }
.rank-card p { margin: 14px 0 0; color: var(--body); font-size: 0.92rem; line-height: 1.6; max-width: 34ch; }

/* transparency line under the grades, points detail-seekers to rochstandard.com */
.std-fineprint { max-width: var(--max); margin: clamp(28px, 3vw, 40px) auto 0; font-size: 0.95rem; color: var(--mute); }


/* ===== EDITORIAL / READS CARDS ===== */
.lcard { display: flex; flex-direction: column; background: var(--panel); border: 1px solid var(--line-hair); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.18s ease, box-shadow 0.18s ease; }
.lcard:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(10,10,10,0.10); }
.lcard__ph { aspect-ratio: 16 / 10; background: var(--panel-2); }
.lcard__ph img { width: 100%; height: 100%; object-fit: cover; }
.lcard__body { padding: 18px 20px 22px; }
.lcard__body h3 { font-size: 1.12rem; margin-bottom: 8px; }
.lcard__body p { font-size: 0.92rem; color: var(--mute); text-wrap: balance; }
.lcard__more { margin-top: 14px; font-size: 0.86rem; font-weight: 600; color: var(--gold-deep); display: inline-flex; gap: 6px; }

/* ===== CITY GUIDE TILES (4 big on top, 5 smaller below, cross-fading) ===== */
.city-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.citytile { position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius); overflow: hidden; background: var(--panel-2); }
.citytile__layer { position: absolute; inset: 0; text-decoration: none; opacity: 0; transition: opacity 1s ease; pointer-events: none; }
.citytile__layer.is-on { opacity: 1; pointer-events: auto; }
.citytile__layer img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.citytile:hover .citytile__layer.is-on img { transform: scale(1.05); }
.citytile__layer::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 30%); }
.citytile__layer span { position: absolute; z-index: 2; left: 14px; right: 14px; bottom: 14px; text-align: center;
  color: #fff; font-weight: 700; font-size: 1.18rem; letter-spacing: -0.01em; }

/* ===== CTA — JOIN THE ROCH SOCIETY ===== */
.cta-society { padding: clamp(36px, 4vw, 64px) 0; }
.cta-society__card { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: 340px; border-radius: 22px; overflow: hidden; background: #15938e; }
.cta-society__body { padding: clamp(30px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; color: #fff; z-index: 2; }
.cta-society__body h2 { color: #fff; font-size: clamp(1.9rem, 1.3rem + 2.2vw, 3rem); margin-bottom: 12px; }
.cta-society__body p { color: rgba(255,255,255,0.92); font-size: var(--fs-lead); max-width: 430px; margin-bottom: 26px; }
.cta-society__form { display: flex; max-width: 520px; background: #fff; border-radius: 999px; padding: 7px; box-shadow: 0 14px 40px rgba(0,0,0,0.18); }
.cta-society__form input { flex: 1; border: 0; outline: 0; background: transparent; padding: 12px 20px; font-family: var(--sans); font-size: 1rem; color: var(--ink); min-width: 0; }
.cta-society__form input::placeholder { color: var(--mute); }
.cta-society__form button { border: 0; background: var(--gold-deep); color: #fff; font-weight: 700; font-family: var(--sans); padding: 12px 28px; border-radius: 999px; cursor: pointer; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.9rem; }
.cta-society__form button:hover { background: var(--ink); }
.cta-society__photo { position: relative; }
.cta-society__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 55% center; }
.cta-society__photo::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, #15938e 0%, rgba(21,147,142,0) 34%); }

/* editorial CTA buttons: architectural ink rectangle + understated text link (no gold) */
.cta-actions { display: flex; gap: clamp(16px, 2vw, 28px); justify-content: center; align-items: center; flex-wrap: wrap; margin-top: clamp(46px, 5vw, 76px); }
.cta-btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.7em;
  height: 52px; width: 280px; max-width: 100%;
  font-family: var(--sans); text-transform: uppercase; font-size: 13px; font-weight: 500; letter-spacing: 0.12em;
  background: transparent; color: var(--ink); border: 1px solid var(--ink); border-radius: 2px; text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease; }
.cta-btn__ar { transition: transform 0.2s ease; }
.cta-btn:hover .cta-btn__ar { transform: translateX(3px); }

/* photo CTA: full-bleed image right panel, seamless (no box/border), card colour = photo bg */
.cta-photo { padding: clamp(16px, 2vw, 26px) 0; }
.cta-photo__card { display: grid; grid-template-columns: 1.2fr 0.8fr; min-height: clamp(300px, 32vw, 380px);
  border-radius: 22px; overflow: hidden; }
.cta-photo__body { padding: clamp(40px, 4.5vw, 64px); display: flex; flex-direction: column; justify-content: center; }
.cta-photo__body h2 { font-family: 'EB Garamond', Georgia, "Times New Roman", serif; font-weight: 500; color: var(--ink);
  font-size: clamp(1.8rem, 1.25rem + 1.9vw, 2.7rem); margin-bottom: 12px; }
.cta-photo__body p { color: #4f4c47; font-weight: 400; font-size: clamp(0.92rem, 0.88rem + 0.2vw, 1rem); max-width: 500px; margin-bottom: 24px; text-wrap: balance; }
.cta-photo__form { display: flex; align-items: center; justify-content: space-between; max-width: 460px; background: #fff; border-radius: 999px;
  padding: 6px 6px 6px 24px; border: 1px solid rgba(10,9,8,0.10); box-shadow: none; }
.cta-photo__form input { flex: 1; border: 0; outline: 0; background: transparent; padding: 13px 12px 13px 0; font-family: var(--sans); font-size: 1rem; color: var(--ink); min-width: 0; }
.cta-photo__form input::placeholder { color: var(--mute); }
.cta-photo__form button { flex: 0 0 auto; align-self: stretch; display: inline-flex; align-items: center; justify-content: center; border: 0; background: var(--gold-deep); color: #fff; font-weight: 600; font-family: var(--sans); padding: 0 26px; border-radius: 999px; cursor: pointer; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.72rem; }
.cta-photo__form button:hover { background: var(--ink); }
.cta-photo__note { font-size: 0.72rem; color: var(--mute); margin: 11px 0 0; letter-spacing: 0.01em; }
/* whole card takes the image's own background colour = seamless, no panel seam */
.cta-photo__card:has(.cta-photo__photo--spaniel) { background: #ebe4d6; }
.cta-photo__card:has(.cta-photo__photo--dalmatian) { background: #bdbfc1; }
.cta-photo__photo { position: relative; }
.cta-photo__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
/* spaniel: dog baked into the top-right of a whitened canvas; multiply drops the white onto
   the card so it's seamless and bleeds over the corner */
.cta-photo__photo--spaniel img { mix-blend-mode: multiply; }
@media (max-width: 760px) {
  .cta-photo__card { grid-template-columns: 1fr; }
  .cta-photo__photo { order: -1; min-height: 240px; }
}

/* ===== BREADCRUMB ===== */
.crumb { font-size: 0.82rem; color: var(--mute); font-weight: 500; padding-block: 18px; }
.crumb a { color: var(--mute); font-weight: 600; }
.crumb a:hover { color: var(--gold-deep); }
.crumb span { color: var(--mute-soft); }

/* ===== HOTEL DETAIL ===== */
.hotel-hero { position: relative; }
.gallery { display: grid; gap: 8px; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; height: clamp(320px, 46vw, 540px); border-radius: var(--radius); overflow: hidden; }
.gallery img { width: 100%; height: 100%; object-fit: cover; background: var(--panel-2); }
.gallery img:first-child { grid-row: 1 / 3; }
.gallery--2 { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }
.gallery--1 { grid-template-columns: 1fr; grid-template-rows: 1fr; }

.hotel-head { display: flex; align-items: flex-start; gap: 20px; flex-wrap: wrap; margin-top: 26px; }
.hotel-head__main { flex: 1; min-width: 260px; }
.hotel-head h1 { margin-bottom: 10px; font-family: 'EB Garamond', Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -0.01em; }
.hotel-head__loc { color: var(--mute); font-size: var(--fs-lead); font-weight: 500; }
.hotel-head__badge { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hotel-head__badge small { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--mute); font-weight: 600; }

.hotel-body { display: grid; grid-template-columns: 1fr 340px; gap: clamp(28px, 4vw, 56px); align-items: start; margin-top: 12px; }
.review h2 { font-family: 'EB Garamond', Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -0.01em; }
.review p { margin-bottom: 1.05em; text-wrap: balance; }
.review .attribution { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-hair); font-size: 0.9rem; color: var(--mute); }

/* key amenities — custom Roch icons, open-air on the page (no capsule), hairline-divided */
.keyamenities { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; align-items: start;
  margin: clamp(30px,4vw,46px) 0 8px; padding: 0; background: none; border: 0; border-radius: 0; box-shadow: none; }
.keyamenity { display: flex; flex-direction: column; align-items: center; gap: 13px; text-align: center;
  padding: 4px clamp(12px,1.8vw,26px); border-right: 1px solid rgba(160,128,16,0.22); }
.keyamenity:last-child { border-right: 0; }
.keyamenity img { width: 50px; height: 50px; object-fit: contain; }
.keyamenity span { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; color: var(--ink-soft); line-height: 1.3; text-wrap: balance; }

/* amenity checklist (the remaining amenities, clean functional list) */
.amenities { margin: 0 0 6px; }
.amenity-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px 22px; list-style: none; padding: 0; margin: 0; }
.amenity-grid li { display: flex; align-items: center; gap: 10px; font-size: 0.94rem; color: var(--ink-soft); font-weight: 500; }
.amenity-grid li::before { content: ""; width: 18px; height: 18px; flex-shrink: 0; border-radius: 50%; background: var(--gold-tint-strong);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A08010' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center; }

/* visit / facts panel */
.visit-panel { background: var(--panel); border: 1px solid var(--line-hair); border-radius: var(--radius); padding: 26px 24px; position: sticky; top: 86px; }
.visit-panel h3 { font-family: 'EB Garamond', Georgia, "Times New Roman", serif; font-weight: 500; font-size: 1.5rem; letter-spacing: -0.01em; margin-bottom: 18px; }
.facts { list-style: none; margin: 0; padding: 0; }
.facts li { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line-hair); }
.facts li:first-child { padding-top: 0; }
.facts li:last-child { border-bottom: 0; }
.facts .k { color: var(--body); font-weight: 500; font-size: 0.9rem; letter-spacing: 0; }
.facts .v { color: var(--ink); font-weight: 700; font-size: 0.9rem; text-align: right; }
.facts .v .fact-link { color: var(--gold-deep); text-decoration: none; font-weight: 600; word-break: break-word; }
.facts .v .fact-link:hover { color: var(--gold-bright); }

/* hotel social media — reads as a final row of the facts list (matching label + hairline) */
.vp-socials { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 11px 0; border-top: 1px solid var(--line-hair); margin: 0 0 22px; }
.vp-socials__label { color: var(--body); font-weight: 500; font-size: 0.9rem; letter-spacing: 0; }
.vp-socials__row { display: flex; gap: 16px; }
.vp-socials__row a { color: var(--ink-soft); display: inline-flex; transition: color 0.18s ease, transform 0.18s ease; }
.vp-socials__row a:hover { color: var(--gold-deep); transform: translateY(-2px); }
.vp-socials__row svg { width: 19px; height: 19px; }

/* primary booking — sharp architectural rectangle, tracked uppercase */
.vp-book { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%;
  padding: 16px 20px; border-radius: 2px; background: var(--ink); color: #fff;
  font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; line-height: 1;
  transition: background 0.18s ease; }
.vp-book:hover { background: var(--gold-deep); color: #fff; }
.vp-book .ar { transition: transform 0.16s ease; }
.vp-book:hover .ar { transform: translateX(3px); }

/* call / map — symmetrical two-column concierge actions under the book button */
.vp-utils { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.vp-util { display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 8px; border: 1px solid var(--line-soft); border-radius: 2px;
  color: var(--ink-soft); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; line-height: 1;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease; }
.vp-util svg { width: 15px; height: 15px; flex: 0 0 auto; color: var(--gold-deep); }
.vp-util:hover { border-color: var(--ink); color: var(--ink); background: var(--gold-tint); }

/* expedia — understated, deprioritised below everything; brand wordmark, not plain text */
.vp-expedia { display: flex; align-items: baseline; justify-content: center; gap: 6px; margin-top: 16px; font-size: 0.85rem; font-weight: 600; color: var(--mute); transition: color 0.18s ease; }
.vp-expedia__logo { font-size: 1.04rem; font-weight: 800; letter-spacing: -0.015em; color: #1C2B4A; transition: color 0.18s ease; }
.vp-expedia:hover, .vp-expedia:hover .vp-expedia__logo { color: var(--gold-deep); }

/* nearby */
.nearby { margin-top: 8px; }

/* ===== DIRECTORY / FILTERS ===== */
.dir-head { padding-block: clamp(28px, 3vw, 48px) clamp(12px, 1.4vw, 18px); }
.dir-head .eyebrow { letter-spacing: 0.3em; }
.dir-head__title { font-family: 'EB Garamond', Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -0.01em; margin-top: 8px; }
.dir-head__lead { color: #5E5B55; font-size: var(--fs-lead); max-width: 58ch; margin-top: 12px; text-wrap: balance; }

/* ===== LEADERBOARD MASTHEAD (centred awards-style opener) ===== */
.lb-masthead { max-width: 840px; text-align: center;
  padding-block: clamp(36px, 5vw, 76px) clamp(28px, 3.6vw, 52px); }
.lb-masthead .eyebrow { letter-spacing: 0.3em; margin-bottom: 16px; }
.lb-masthead__title { font-family: 'EB Garamond', Georgia, "Times New Roman", serif; font-weight: 500;
  color: var(--ink); letter-spacing: -0.015em; line-height: 1.02; margin: 0;
  font-size: clamp(2.7rem, 1.7rem + 3.6vw, 4.7rem); text-wrap: balance; }
.lb-masthead__lead { color: #5E5B55; font-size: var(--fs-lead); line-height: 1.6;
  max-width: 60ch; margin: clamp(16px, 1.9vw, 24px) auto 0; text-wrap: balance; }

/* sleek, low-profile search: crisp 48px rectangle, hairline border, sharp Search button */
.dirsearch { display: flex; align-items: stretch; width: 100%; max-width: 680px; height: 48px;
  background: #fff; border: 1px solid var(--line-soft); border-radius: 2px; overflow: hidden;
  margin-bottom: 16px; transition: border-color 0.18s ease; }
.dirsearch:focus-within { border-color: var(--gold-deep); }
.dirsearch__icon { width: 18px; height: 18px; color: var(--mute); flex-shrink: 0; align-self: center; margin-left: 16px; }
.dirsearch__input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent;
  font-family: var(--sans); font-size: 0.97rem; color: var(--ink); padding: 0 14px; }
.dirsearch__input::placeholder { color: var(--mute-soft); }
.dirsearch__btn { flex-shrink: 0; border: 0; border-radius: 0; background: var(--ink); color: #fff;
  font-family: var(--sans); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0 26px; cursor: pointer; transition: background 0.18s ease; }
.dirsearch__btn:hover { background: var(--gold-deep); }
/* search-filters trigger + clear-all share one tight row above the cards */
.refinebar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.refine-clear { background: transparent; border: 0; cursor: pointer; font-family: var(--sans); font-size: 0.7rem;
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); padding: 6px 0;
  transition: color 0.15s ease; }
.refine-clear:hover { color: var(--gold-deep); }
.refine-trigger { display: inline-flex; align-items: center; gap: 8px; background: transparent; border: 0; cursor: pointer;
  font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink); padding: 6px 0; transition: color 0.15s ease; }
.refine-trigger:hover { color: var(--gold-deep); }
.refine-trigger__n { color: var(--gold-deep); letter-spacing: 0; }
.refine-trigger__ic { display: inline-flex; align-items: center; justify-content: center; width: 15px; height: 15px;
  font-size: 16px; font-weight: 400; line-height: 1; color: var(--gold-deep); transition: transform 0.22s ease; }
.refine-trigger[aria-expanded="true"] .refine-trigger__ic { transform: rotate(45deg); }
/* expandable drawer: 5x2 symmetrical grid of minimalist tracked-text toggles, gold underline when active */
.filterdrawer { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.filterdrawer.is-open { max-height: 360px; }
.filterset { display: grid; grid-template-columns: repeat(6, max-content); gap: 14px 38px; padding: 16px 0 22px; }
.ftag { display: inline-flex; align-items: center; gap: 9px; cursor: pointer; user-select: none; font-family: var(--sans);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mute); padding: 3px 0; transition: color 0.15s ease; }
.ftag input { position: absolute; opacity: 0; width: 0; height: 0; }
.ftag::before { content: ""; width: 15px; height: 15px; flex-shrink: 0; background: #fff;
  border: 1.5px solid var(--line-soft); border-radius: 2px; transition: all 0.15s ease; }
.ftag:hover { color: var(--ink); }
.ftag:hover::before { border-color: var(--gold); }
.ftag:has(input:checked) { color: var(--ink); }
.ftag:has(input:checked)::before { border-color: var(--gold-deep);
  background: var(--gold-deep) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat; }
.dir-results { padding-bottom: clamp(64px, 8vw, 120px); }
.loadmore-wrap { display: flex; justify-content: center; margin-top: clamp(40px, 5vw, 64px); }
.loadmore { display: inline-flex; align-items: center; gap: 0.7em; cursor: pointer;
  font-family: var(--sans); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); background: transparent; border: 1px solid var(--line-soft); border-radius: 2px;
  padding: 0 32px; height: 52px; transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease; }
.loadmore:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.loadmore .cta-btn__ar { transition: transform 0.2s ease; }
.loadmore:hover .cta-btn__ar { transform: translateY(2px); }
.no-results { text-align: center; padding: 64px 20px; color: var(--mute); }
.is-hidden { display: none !important; }

/* ===== CERTIFIED INDEX (ranked list) ===== */
.index-list { display: flex; flex-direction: column; gap: 10px; max-width: 940px; margin-inline: auto; }
.index-row { display: grid; grid-template-columns: 52px 108px minmax(0,1fr) auto; gap: 22px; align-items: center; padding: 14px 24px 14px 14px; background: var(--panel); border: 1px solid var(--line-hair); border-radius: var(--radius); text-decoration: none; color: inherit; transition: border-color 0.16s ease, transform 0.16s ease; }
.index-row:hover { border-color: var(--line-soft); transform: translateX(2px); }
.index-row__pos { font-family: 'EB Garamond', Georgia, "Times New Roman", serif; font-size: clamp(1.45rem, 1.1rem + 0.8vw, 1.85rem); font-weight: 500; color: var(--ink-soft); text-align: center; line-height: 1; letter-spacing: -0.01em; }
.index-row__ph { width: 108px; height: 76px; border-radius: var(--radius-sm); object-fit: cover; background: var(--panel-2); }
.index-row__name { font-size: 1.12rem; font-weight: 600; color: var(--ink); }
.index-row__loc { font-size: 0.9rem; color: var(--mute); margin-top: 3px; }
.index-row__rank { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.index-row__cap { font-size: 0.5rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); }

/* ===== LEADERBOARD PODIUM (Top 3 showcase) ===== */
.podium { list-style: none; margin: 0 0 clamp(40px, 5vw, 72px); padding: 0;
  display: grid; grid-template-columns: 1fr 1.12fr 1fr; gap: clamp(16px, 2.4vw, 32px);
  align-items: end; max-width: var(--max); }
.podium__item { display: flex; }
.podium__item--1 { order: 2; }
.podium__item--2 { order: 1; }
.podium__item--3 { order: 3; }
.podium__link { display: flex; flex-direction: column; width: 100%; text-decoration: none; color: inherit; }
.podium__ph { position: relative; width: 100%; aspect-ratio: 4 / 5; overflow: hidden;
  border-radius: var(--radius); background: var(--panel-2); box-shadow: 0 12px 34px rgba(10,10,10,0.08); }
.podium__item--1 .podium__ph { box-shadow: 0 20px 52px rgba(10,10,10,0.15); }
.podium__ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.podium__link:hover .podium__ph img { transform: scale(1.04); }
.podium__medal { position: absolute; top: 14px; left: 14px; min-width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center; padding: 0 11px;
  background: rgba(10,10,10,0.58); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: #fff; border-radius: 999px; font-family: 'EB Garamond', Georgia, "Times New Roman", serif;
  font-size: 1.15rem; font-weight: 500; line-height: 1; }
.podium__body { padding: 16px 2px 0; }
.podium__loc { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); margin-bottom: 7px; }
.podium__name { font-family: 'EB Garamond', Georgia, "Times New Roman", serif; font-weight: 500; color: var(--ink);
  line-height: 1.18; letter-spacing: 0; font-size: clamp(1.3rem, 1.05rem + 0.9vw, 1.7rem); }
.podium__meta { display: flex; flex-direction: column; align-items: flex-start; gap: 1px; margin-top: 12px; }
.podium__cap { font-size: 0.5rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); }

/* ===== FOOTER (mirrors rochstandard / rochcertification) ===== */
.site-footer { background: #1f2024; color: #fff; margin-top: auto; }
.site-footer__inner { max-width: var(--max); margin: 0 auto; padding: 56px var(--pad); display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 48px; }
.site-footer__nav { display: contents; }
.site-footer__links { display: flex; align-items: flex-start; gap: 48px; flex-wrap: wrap; }
.site-footer__logo { flex: 0 1 340px; min-width: 0; }
.site-footer__logo-img { height: 28px; width: auto; display: block; }
.site-footer__about { margin: 16px 0 0; font-size: 0.82rem; line-height: 1.6; color: rgba(255,255,255,0.6); text-wrap: balance; max-width: 340px; }
.site-footer__social { display: flex; gap: 15px; margin-top: 18px; }
.site-footer__social a { color: rgba(255,255,255,0.55); display: inline-flex; }
.site-footer__social a:hover { color: var(--gold); }
.site-footer__social svg { width: 19px; height: 19px; }
.site-footer__col { flex: 0 0 auto; min-width: 0; }
.site-footer__col--newsletter { flex: 0 0 280px; }
.site-footer__col-heading { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 16px; }
.site-footer__col-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.site-footer__col-links a { font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.7); line-height: 1.35; }
.site-footer__col-links a:hover { color: var(--gold); }
.site-footer__newsletter-row { display: flex; width: 100%; max-width: 320px; height: 44px; }
.site-footer__newsletter-input { flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.22); border-right: none; border-radius: 5px 0 0 5px; padding: 10px 16px; font-family: var(--sans); font-size: 0.82rem; color: #fff; outline: none; min-width: 0; }
.site-footer__newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.site-footer__newsletter-input:focus { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.1); }
.site-footer__newsletter-btn { background: var(--gold-deep); border: 1px solid var(--gold-deep); border-radius: 0 5px 5px 0; padding: 10px 18px; font-family: var(--sans); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; cursor: pointer; white-space: nowrap; }
.site-footer__newsletter-btn:hover { background: #8a6e0e; border-color: #8a6e0e; }
.site-footer__newsletter-note { font-size: 0.74rem; color: rgba(255,255,255,0.42); margin: 8px 0 0; }

/* Newsletter signup inline confirmation (footer + homepage cta) */
.nl-status { margin: 10px 0 0; font-size: 0.86rem; font-weight: 500; text-wrap: pretty; }
.nl-status--ok { color: var(--gold-bright); }
.nl-status--err { color: #E29A9A; }
.cta-photo__body .nl-status--ok { color: var(--gold-deep); }
.cta-photo__body .nl-status--err { color: #B23B3B; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); }
.site-footer__bottom-inner { max-width: var(--max); margin: 0 auto; padding: 16px var(--pad); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.site-footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.site-footer__bottom-links { display: flex; gap: 20px; }
.site-footer__bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.55); font-weight: 500; }
.site-footer__bottom-links a:hover { color: var(--gold); }

/* ============================================================
   ABOUT PAGE — "a letter, a love story, an invitation"
   Emotional editorial: cinematic hero, signed founder's letter,
   dark manifesto, proof strip, joy CTA, Kali. Serif via .std-page.
   ============================================================ */

/* ---- cinematic hero (full-bleed photo, scrim, overlay nav) ---- */
.about-hero { position: relative; min-height: clamp(560px, 82vh, 820px); display: flex; align-items: flex-end;
  overflow: hidden; background: var(--dark-2); }
.about-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.about-hero__scrim { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.34) 0%, rgba(10,10,10,0) 32%, rgba(10,10,10,0.12) 56%, rgba(10,10,10,0.78) 100%); }
.about-hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--max);
  margin-inline: auto; padding: 0 var(--pad) clamp(48px, 7vw, 96px); }
.about-hero .eyebrow { color: #fff; opacity: 0.85; }
.about-hero h1 { color: #fff; max-width: 16ch;
  font-family: 'EB Garamond', Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -0.01em;
  font-size: clamp(2.5rem, 1.4rem + 4.4vw, 5rem); line-height: 1.04; }
.about-hero__sub { color: rgba(255,255,255,0.9); font-size: clamp(1.08rem, 1rem + 0.6vw, 1.4rem);
  line-height: 1.55; max-width: 46ch; margin: clamp(16px, 2vw, 24px) 0 0; text-wrap: balance; }

/* ---- the founder's letter (warm card, illustration, signature) ---- */
.letter-band { background: var(--paper); }
.letter-band .wrap { max-width: 1340px; }
.letter { max-width: 1340px; margin-inline: auto;
  display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 72px; align-items: start; }
.letter__aside { text-align: center; }
.letter__portrait { width: 100%; max-width: 460px; margin-inline: auto; height: auto; display: block;
  background: transparent; filter: drop-shadow(0 22px 42px rgba(10,10,10,0.14)); }
.founder-card { margin-top: 18px; }
.founder-card__name { font-family: 'EB Garamond', Georgia, serif; font-weight: 500; color: var(--ink);
  font-size: 1.35rem; line-height: 1.1; }
.founder-card__title { margin-top: 5px; font-size: 0.64rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-deep); }
.founder-card__link { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px;
  font-size: 0.85rem; font-weight: 600; color: var(--mute); text-decoration: none; transition: color 0.16s ease; }
.founder-card__link:hover { color: var(--ink); }
.founder-card__link svg { width: 16px; height: 16px; }
.letter__body { min-width: 0; max-width: none; }
.letter__body .eyebrow { margin-bottom: 18px; }
.letter__body p { font-size: clamp(1.08rem, 1rem + 0.5vw, 1.3rem); line-height: 1.74; color: var(--body);
  margin: 0 0 1.15em; text-wrap: pretty; }
/* editorial drop cap on the opening paragraph */
.letter__body p.has-dropcap::first-letter {
  font-family: 'EB Garamond', Georgia, serif; font-weight: 500; color: var(--gold-deep);
  float: left; font-size: 3.6em; line-height: 0.74; padding: 6px 12px 0 0; }
.letter__signature { margin-top: 40px; margin-left: -16px; }
.letter__signature img { width: clamp(220px, 22vw, 300px); height: auto; display: block; }
.letter__role-line { margin-top: 32px; font-size: 0.76rem; font-weight: 500; letter-spacing: 0.04em;
  text-transform: none; color: #6b655c; }

/* ---- manifesto (light editorial spread) ---- */
.manifesto { background: var(--panel-2); color: #1C1A19; text-align: center; border-block: 1px solid var(--line-hair); }
.std-page .manifesto { padding-block: clamp(44px, 5vw, 78px); }
.manifesto__eyebrow { margin-bottom: clamp(16px, 2vw, 22px); }
.manifesto__quote { max-width: 22ch; margin: 0 auto clamp(18px, 2vw, 26px);
  font-family: 'EB Garamond', Georgia, serif; font-weight: 500; color: #1C1A19; letter-spacing: -0.01em;
  font-size: clamp(2rem, 1.3rem + 3vw, 3.6rem); line-height: 1.12; text-wrap: balance; }
.manifesto__quote span { color: var(--gold); }
.manifesto__mission { max-width: 46ch; margin: 0 auto clamp(34px, 4vw, 54px);
  font-style: italic; font-weight: 400; color: #5b554c; letter-spacing: 0.01em;
  font-size: clamp(1.05rem, 0.98rem + 0.4vw, 1.25rem); line-height: 1.55; text-wrap: balance; }
.manifesto__pair { display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px); max-width: 1100px; margin-inline: auto; text-align: left; align-items: start; }
.manifesto__numeral { display: block; font-family: 'EB Garamond', Georgia, serif; color: var(--gold);
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.28em; margin-bottom: 14px; }
.manifesto__col h3 { color: #1C1A19; font-family: 'EB Garamond', Georgia, serif; font-weight: 500;
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem); margin: 0 0 12px; }
.manifesto__col p { color: #57514a; font-size: 1.02rem; line-height: 1.85; margin: 0; }
.manifesto__motto { margin: clamp(40px, 4.4vw, 60px) auto 0; max-width: 28ch;
  font-family: 'EB Garamond', Georgia, serif; font-style: italic; font-weight: 500;
  font-size: clamp(1.25rem, 1rem + 1vw, 1.7rem); line-height: 1.3; color: var(--gold-deep); text-wrap: balance; }

/* ---- our customers (logo band) ---- */
.brands__head { text-align: center; margin-bottom: clamp(30px, 4vw, 48px); }
.brands__title { font-family: 'EB Garamond', Georgia, serif; font-weight: 500; color: #1C1A19;
  font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.4rem); line-height: 1.1; margin-top: 12px; }
.brands__row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(32px, 4vw, 64px) clamp(44px, 6vw, 84px); max-width: 1000px; margin-inline: auto; }
.brands__row img { width: auto; max-width: 200px; object-fit: contain;
  filter: brightness(0); opacity: 0.6; transition: opacity 0.2s ease; }
.brands__row img:hover { opacity: 0.9; }
.brands--dark { background: #1f2024; }
.brands--dark .brands__row img { filter: brightness(0) invert(1); opacity: 0.72; }
.brands--dark .brands__row img:hover { opacity: 1; }
.brands__row img.lg-stregis { height: 34px; }
.brands__row img.lg-ic { height: 32px; }
.brands__row img.lg-kimpton { height: 26px; }
.brands__row img.lg-aspen { height: 44px; }
@media (max-width: 560px) {
  .brands__row { gap: 26px 40px; }
  .brands__row img.lg-stregis { height: 27px; }
  .brands__row img.lg-ic { height: 25px; }
  .brands__row img.lg-kimpton { height: 21px; }
  .brands__row img.lg-aspen { height: 35px; }
}

/* ---- society (logo card left, copy + join form right) ---- */
.society { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(32px, 5vw, 72px);
  align-items: center; max-width: var(--max); margin-inline: auto; }
.society__logo { display: flex; align-items: center; justify-content: center; }
.society__logo img { width: 100%; max-width: 420px; height: auto; display: block; }
.society__text { min-width: 0; max-width: 60ch; }
.society__text h2 { margin-bottom: 4px; }
.society__sub { color: var(--gold-deep); font-family: var(--sans); font-weight: 600;
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.3rem); margin: 0 0 clamp(16px, 2vw, 24px); }
.society__text p { font-size: clamp(1.02rem, 1rem + 0.3vw, 1.18rem); line-height: 1.75; color: var(--body); margin: 0 0 1.1em; }
.society__form { display: flex; max-width: 520px; margin-top: clamp(16px, 2vw, 24px);
  background: #fff; border: 1px solid var(--line-hair); border-radius: 12px; overflow: hidden; }
.society__form input { flex: 1; border: 0; outline: 0; background: transparent; padding: 15px 18px;
  font-family: var(--sans); font-size: 1rem; color: var(--ink); min-width: 0; }
.society__form input::placeholder { color: var(--mute); }
.society__form button { border: 0; background: var(--gold-deep); color: #fff; font-weight: 700;
  font-family: var(--sans); padding: 0 30px; cursor: pointer; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.85rem; }
.society__form button:hover { background: var(--ink); }

/* ---- Kali (warm invitation) ---- */
.kali-feature { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 5vw, 72px); align-items: center; max-width: var(--max); margin-inline: auto; }
.kali-feature__text { min-width: 0; max-width: 56ch; }
.kali-feature__text .eyebrow { margin-bottom: 14px; }
.kali-feature__text h2 { margin-bottom: 16px; }
.kali-feature__text p { font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem); line-height: 1.7; color: var(--body); margin: 0 0 1.1em; }
.kali-feature__text .kali-feature__free { font-family: 'EB Garamond', Georgia, serif; font-style: italic;
  font-weight: 500; color: var(--gold-deep); font-size: clamp(1.15rem, 1rem + 0.6vw, 1.45rem); margin: 0.3em 0 0; }
.kali-feature__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(22px, 2.8vw, 30px); }
.kt-cta { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-family: var(--sans);
  font-weight: 600; font-size: 0.96rem; line-height: 1; padding: 13px 22px; border-radius: 4px;
  text-decoration: none; transition: background 0.2s ease; }
.kt-cta::before { content: ""; display: inline-block; width: 20px; height: 20px; background-size: contain; background-repeat: no-repeat; }
.kt-cta--wa { background: #25D366; }
.kt-cta--wa:hover { background: #1da851; }
.kt-cta--wa::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E"); }
.kt-cta--tg { background: #229ED9; }
.kt-cta--tg:hover { background: #1c87b8; }
.kt-cta--tg::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9.78 18.65l.28-4.23 7.68-6.92c.34-.31-.07-.46-.52-.19L7.74 13.3 3.64 12c-.88-.25-.89-.86.2-1.3l15.97-6.16c.73-.33 1.43.18 1.15 1.3l-2.72 12.81c-.19.91-.74 1.13-1.5.71L12.6 16.3l-1.99 1.93c-.23.23-.42.42-.83.42z'/%3E%3C/svg%3E"); }
.kali-feature__media { position: relative; display: flex; align-items: center; justify-content: center; }
.kali-feature__media img { width: 100%; max-width: 280px; height: auto; display: block; }
.btn-wa { background: var(--gold-deep); color: #fff; }
.btn-wa:hover { background: var(--ink); color: #fff; }
.btn-wa svg { width: 19px; height: 19px; }

/* ---- what we do (three standards) ---- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px);
  max-width: var(--max); margin: clamp(28px, 4vw, 48px) auto 0; }
.pillar { display: flex; flex-direction: column; align-items: flex-start; text-decoration: none;
  background: #fff; border: 1px solid var(--line-hair); border-radius: 16px; padding: clamp(24px, 2.6vw, 34px);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease; }
.pillar:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 18px 40px rgba(10,10,10,0.08); }
.pillar__n { font-family: 'EB Garamond', Georgia, serif; color: var(--gold); font-size: 1rem; letter-spacing: 0.2em; }
.pillar h3 { font-family: 'EB Garamond', Georgia, serif; font-weight: 500; color: var(--ink);
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.8rem); margin: 8px 0 8px; }
.pillar p { color: var(--body); font-size: 1rem; line-height: 1.6; margin: 0 0 18px; }
.pillar__link { margin-top: auto; color: var(--gold-deep); font-weight: 600; font-size: 0.92rem; }
.pillar:hover .pillar__link { color: var(--ink); }
.pillar__link .ar { display: inline-block; transition: transform 0.16s ease; }
.pillar:hover .pillar__link .ar { transform: translateX(3px); }

/* ---- about responsive ---- */
@media (max-width: 900px) {
  .letter { grid-template-columns: 1fr; gap: 18px; }
  .letter__aside { margin-bottom: 4px; }
  .letter__portrait { max-width: 240px; }
  .manifesto__pair { grid-template-columns: 1fr; gap: 28px; }
  .pillars { grid-template-columns: 1fr; }
  .society, .kali-feature { grid-template-columns: 1fr; }
  .society__logo { order: -1; }
  .kali-feature__media { order: -1; }
  .kali-feature__media img { max-width: 280px; }
}

/* ============================================================
   CONTACT PAGE — editorial form + reach-us aside + offices
   ============================================================ */
.contact-intro { max-width: 720px; margin: 0 auto clamp(40px, 4.5vw, 68px); text-align: center; }
.contact-intro h1 { margin-bottom: 16px; }
.contact-intro p { font-size: var(--fs-lead); color: var(--mute); margin: 0 auto; max-width: 56ch; }

.contact-grid { display: grid; grid-template-columns: 1.45fr 0.85fr; gap: clamp(32px, 5vw, 76px);
  align-items: stretch; max-width: var(--max); margin-inline: auto; }

/* the form */
.cform { display: grid; gap: clamp(16px, 2vw, 20px); }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 20px); }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink); background: #fff;
  border: 1px solid var(--line-soft); border-radius: 2px; padding: 13px 15px; width: 100%;
  outline: none; transition: border-color 0.16s ease, box-shadow 0.16s ease; }
.field input::placeholder, .field textarea::placeholder { color: var(--mute-soft); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold-deep); box-shadow: 0 0 0 3px var(--gold-tint); }
.field textarea { resize: vertical; min-height: 150px; line-height: 1.6; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23807D77' stroke-width='1.6'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.field--consent { flex-direction: row; align-items: flex-start; gap: 11px; margin-top: 2px; }
.field--consent input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 3px; accent-color: var(--gold-deep); }
.field--consent label { font-size: 0.86rem; font-weight: 400; color: var(--mute); letter-spacing: 0; line-height: 1.5; }
.cform__submit { justify-self: start; margin-top: 8px; display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--sans); text-transform: uppercase; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.15em;
  background: var(--ink); color: #fff; border: 1px solid var(--ink); border-radius: 2px;
  padding: 16px 32px; cursor: pointer; transition: background 0.18s ease, border-color 0.18s ease; }
.cform__submit:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.cform__submit .ar { transition: transform 0.16s ease; }
.cform__submit:hover .ar { transform: translateX(3px); }

/* reach-us aside — borderless text blocks parted by hairlines, native on the canvas */
.contact-aside { display: flex; flex-direction: column; }
.reach { display: flex; flex-direction: column; padding: clamp(20px, 2.4vw, 28px) 0;
  text-decoration: none; color: inherit; }
.reach:first-child { padding-top: 0; }
.reach + .reach { border-top: 1px solid var(--line-soft); }
.reach h3 { font-size: 1.12rem; margin: 0 0 6px; color: var(--ink); }
.reach p { font-size: 0.9rem; color: var(--mute); margin: 0 0 10px; line-height: 1.55; }
.reach__link { font-size: 0.86rem; font-weight: 600; color: var(--gold-deep); display: inline-flex; align-items: center; gap: 6px; transition: color 0.16s ease; }
.reach:hover .reach__link { color: var(--gold-bright); }

/* international offices — open-air hairline grid, no card chrome, no emoji flags */
.offices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  max-width: var(--max); margin-inline: auto; border-top: 1px solid var(--line-soft); }
.office { padding: clamp(26px, 3vw, 40px) clamp(24px, 3vw, 44px); }
.office:first-child { padding-left: 0; }
.office + .office { border-left: 1px solid var(--line-soft); }
.office:last-child { padding-right: 0; }
.office__country { font-family: 'EB Garamond', Georgia, serif; font-weight: 500; font-size: 1.4rem; color: var(--ink); margin: 0 0 10px; }
.office__addr { font-style: normal; color: var(--mute); font-size: 0.95rem; line-height: 1.6; margin: 0 0 12px; }
.office__tel { font-weight: 700; font-size: 0.95rem; color: var(--gold-deep); }

/* ============================================================
   CONSULTING PAGE — top-banner hero (.about-hero), lead,
   services, mid banner, pitch
   ============================================================ */
/* value-prop intro: elegant, sans, generous line-height */
.consult-lead { max-width: 760px; margin-bottom: clamp(40px, 4.6vw, 66px); }
.consult-lead p { font-size: clamp(1.12rem, 1rem + 0.55vw, 1.4rem); color: var(--body); line-height: 1.6; margin: 0; }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 28px); max-width: var(--max); margin-inline: auto; }
.svc { background: var(--panel); border: 1px solid var(--line-hair); border-radius: var(--radius); padding: clamp(28px, 3vw, 40px); }
.svc__no { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); font-variant-numeric: tabular-nums; }
.svc h3 { font-family: 'EB Garamond', Georgia, serif; font-weight: 500; letter-spacing: 0;
  font-size: clamp(1.5rem, 1.2rem + 0.8vw, 1.95rem); margin: 14px 0 12px; }
/* crisper, higher-contrast card body for easy reading */
.svc p { color: var(--body); font-size: 0.99rem; line-height: 1.62; margin: 0; }

/* Dog Friendly Consultancy — minimalist editorial (centered, text-only) */
.consult-pitch { max-width: 800px; margin-inline: auto; text-align: center; }
.consult-pitch .eyebrow { color: var(--gold-deep); }            /* keep the eyebrow gold */
.consult-pitch h2 { font-size: clamp(2.2rem, 1.5rem + 2.2vw, 3.3rem); margin: 2px 0 0; }
/* lead-in subtitle: larger elegant serif, premium intro statement */
.consult-pitch__sub { font-family: 'EB Garamond', Georgia, serif; font-weight: 500; color: var(--ink);
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem); line-height: 1.36; max-width: 40ch;
  margin: clamp(16px, 2vw, 24px) auto clamp(28px, 3.2vw, 40px); }
/* body: clean sans, soft charcoal, generous line-height, broken into two paras */
.consult-body p { font-family: var(--sans); color: var(--body); line-height: 1.65;
  font-size: clamp(1.02rem, 0.98rem + 0.3vw, 1.15rem); max-width: 64ch; margin: 0 auto 1.2em; }
.consult-body p:last-child { margin-bottom: 0; }

/* shared section intro (eyebrow + serif h2 + lead) */
.cintro { max-width: 760px; margin-bottom: clamp(32px, 4vw, 52px); }
.cintro h2 { margin-bottom: clamp(14px, 1.8vw, 22px); }
.cintro p { font-size: clamp(1.05rem, 1rem + 0.4vw, 1.22rem); color: var(--body); line-height: 1.7; margin: 0 0 1em; }
.cintro p:last-child { margin-bottom: 0; }
.cintro--center { margin-inline: auto; text-align: center; }
.band--dark .cintro p { color: rgba(255,255,255,0.74); }
.band--dark .cintro a { color: var(--gold-bright); }

/* revenue band uses the footer colour (flat, not the band--dark gradient) */
.consult-revenue { background: #1f2024; }
.consult-revenue .eyebrow { margin-bottom: clamp(20px, 2.4vw, 30px); }
/* 2-column text split: serif headline left, sans copy right */
.rev-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; max-width: var(--max); margin-inline: auto; }
.rev-split__head { margin: 0; }
.rev-split__copy { margin: 0; max-width: 48ch; color: rgba(255,255,255,0.74); font-size: clamp(1.05rem, 1rem + 0.4vw, 1.18rem); line-height: 1.7; }

/* stat grids (problem + revenue case) */
.cstat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: clamp(22px, 3vw, 44px); max-width: var(--max); margin-inline: auto; text-align: center; }
.cstat-grid--revenue { margin-top: clamp(34px, 4vw, 56px); }
.cstat__n { font-family: 'EB Garamond', Georgia, serif; font-weight: 500; color: var(--gold-deep); line-height: 1; letter-spacing: -0.02em; font-size: clamp(2.4rem, 1.6rem + 2.6vw, 3.6rem); }
.band--dark .cstat__n { color: var(--gold-bright); }
.cstat__l { margin: 10px auto 0; max-width: 22ch; font-size: 0.84rem; font-weight: 500; color: var(--mute); line-height: 1.5; }
.band--dark .cstat__l { color: rgba(255,255,255,0.72); }

/* service lines: 2-col header split + capability matrix */
.consult-services .eyebrow { margin-bottom: clamp(20px, 2.4vw, 30px); }
.sline-head { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start;
  max-width: var(--max); margin: 0 auto clamp(38px, 4.5vw, 60px); }
.sline-head h2 { margin: 0; }
.sline-head p { margin: 0; max-width: 46ch; color: var(--body); font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem); line-height: 1.6; }
/* matrix: continuous hairline grid via 1px gaps over a line-coloured backing */
.sline-matrix { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft);
  border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; max-width: var(--max); margin-inline: auto; }
.sline { background: var(--panel); padding: clamp(26px, 3vw, 40px); display: flex; flex-direction: column; }
.sline__no { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; color: var(--gold-deep); font-variant-numeric: tabular-nums; margin-bottom: 16px; }
.sline h3 { font-family: 'EB Garamond', Georgia, serif; font-weight: 500; letter-spacing: 0; font-size: clamp(1.3rem, 1.1rem + 0.6vw, 1.6rem); margin: 0 0 10px; }
.sline p { color: var(--body); font-size: 0.96rem; line-height: 1.62; margin: 0; }

/* why roch: asymmetric 40/60 split, header left + data-intelligence block right */
.whyroch__split { display: grid; grid-template-columns: 2fr 3fr; gap: clamp(36px, 6vw, 96px); align-items: start; max-width: var(--max); margin-inline: auto; }
.whyroch__head h2 { margin: 8px 0 0; font-size: clamp(2.2rem, 1.4rem + 2.6vw, 3.5rem); line-height: 1.06; }
.whyroch__block > p { margin: 0 0 clamp(28px, 3.4vw, 42px); max-width: 50ch; color: var(--body); line-height: 1.6; font-size: clamp(1.06rem, 1rem + 0.45vw, 1.26rem); }
.whyroch__block a { color: var(--gold-deep); }
/* dataset scale: 2x2 figures that balance the tall headline */
.dpgrid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 36px) clamp(28px, 3vw, 48px); }
.dp { display: flex; flex-direction: column; gap: 5px; }
.dp__n { font-family: 'EB Garamond', Georgia, serif; font-weight: 500; color: var(--gold-deep); line-height: 1; letter-spacing: -0.02em; font-size: clamp(1.9rem, 1.4rem + 1.5vw, 2.6rem); }
.dp__n { margin-bottom: 7px; }
.dp__l { color: var(--mute); font-size: 0.92rem; line-height: 1.5; white-space: nowrap; }

/* FAQ accordion */
.faq { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--line-soft); }
.faq__item { border-bottom: 1px solid var(--line-soft); }
.faq__q { cursor: pointer; list-style: none; position: relative; padding: clamp(18px, 2.2vw, 24px) 44px clamp(18px, 2.2vw, 24px) 0;
  font-family: 'EB Garamond', Georgia, serif; font-weight: 500; color: var(--ink); font-size: clamp(1.15rem, 1rem + 0.6vw, 1.45rem); }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: "+"; position: absolute; right: 6px; top: clamp(20px, 2.4vw, 26px); font-family: var(--sans); font-weight: 400; font-size: 1.6rem; line-height: 1; color: var(--gold-deep); transition: transform 0.2s ease; }
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a { padding: 0 44px clamp(20px, 2.4vw, 28px) 0; }
.faq__a p { margin: 0; max-width: 72ch; color: var(--body); line-height: 1.7; font-size: clamp(1rem, 0.97rem + 0.2vw, 1.1rem); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hotel-body { grid-template-columns: 1fr; }
  .visit-panel { position: static; }
  .site-footer__inner { gap: 36px; }
  .site-footer__links { gap: 36px; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .sline-matrix { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .site-nav__links { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: flex-start; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line-hair); padding: 8px var(--pad) 16px; display: none; }
  .site-nav__links.is-open { display: flex; }
  .site-nav__links a { padding: 11px 0; width: 100%; border-bottom: 1px solid var(--line-hair); }
  .site-nav__links .btn { margin-top: 10px; }
  .site-nav__social { padding: 14px 0 4px; }
  .site-nav__toggle { display: block; }
  .site-nav__spacer { display: none; }
  .seal-feature .wrap { flex-direction: column; text-align: center; gap: 24px; }
  .cta-society__card { grid-template-columns: 1fr; }
  .cta-society__photo { order: -1; min-height: 220px; }
  .cta-society__photo::before { background: linear-gradient(0deg, #15938e 0%, rgba(21,147,142,0) 42%); }
  .site-footer__inner { flex-direction: column; gap: 34px; }
  .site-footer__links { gap: 30px 40px; }
  .site-footer__col--newsletter { flex-basis: auto; }
  .site-footer__bottom-inner { flex-direction: column; align-items: flex-start; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; height: 60vw; }
  .gallery img:first-child { grid-column: 1 / 3; grid-row: 1; }
  .gallery img:nth-child(4), .gallery img:nth-child(5) { display: none; }
  .index-row { grid-template-columns: 44px 1fr auto; }
  .index-row__ph { display: none; }
  .podium { grid-template-columns: 1fr; gap: 22px; align-items: stretch; }
  .podium__item--1, .podium__item--2, .podium__item--3 { order: 0; }
  .podium__ph { aspect-ratio: 16 / 10; }
  .dirsearch { max-width: 100%; }
  .dirsearch__btn { padding: 0 18px; }
  .filterset { grid-template-columns: repeat(3, max-content); column-gap: 40px; }
  .filterdrawer.is-open { max-height: 520px; }
  .keyamenities { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); gap: 28px 0; }
  .keyamenity { padding: 4px 12px; border-right: 0; }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
  /* the standard page */
  .std-hero__inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .std-hero__seal { order: -1; width: clamp(140px, 38vw, 190px); }
  .std-manifesto { grid-template-columns: 1fr; gap: clamp(24px, 4vw, 36px); }
  .baseline { grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 34px) 0; }
  .baseline li + li { border-left: 0; }
  .baseline li:nth-child(even) { border-left: 1px solid var(--line-soft); }
  .gates { grid-template-columns: 1fr; }
  .gate { padding-inline: 0; }
  .band--dark .gate + .gate { border-left: 0; border-top: 1px solid rgba(255,255,255,0.16); }
  .std-principles { grid-template-columns: 1fr; }
  .std-principle { padding-inline: 0; }
  .band--dark .std-principle + .std-principle { border-left: 0; border-top: 1px solid rgba(255,255,255,0.16); }
  .rank-cards { grid-template-columns: 1fr; }
  .rank-card { border-left: 0; }
  .rank-card:nth-child(n+4) { border-bottom: 1px solid var(--line-soft); }
  .rank-card:last-child { border-bottom: 0; }
  /* contact page */
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .cform__row { grid-template-columns: 1fr; }
  .offices { grid-template-columns: 1fr; }
  .office { padding-inline: 0; }
  .office + .office { border-left: 0; border-top: 1px solid var(--line-soft); }
  /* consulting page */
  .svc-grid { grid-template-columns: 1fr; }
  .sline-matrix { grid-template-columns: 1fr; }
  .sline-head { grid-template-columns: 1fr; gap: 18px; }
  .rev-split { grid-template-columns: 1fr; gap: 18px; }
  .whyroch__split { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 520px) {
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .dpgrid { grid-template-columns: 1fr; }
  .herosearch { max-width: 100%; margin-left: 0; }
  .herosearch__input { padding: 0.95rem 0.5rem 0.95rem 1rem; font-size: 0.9rem; }
  .herosearch__btn { padding: 0 0.9rem; }
}
@media (max-width: 480px) {
  .hero { min-height: calc(100vh - 56px); min-height: calc(100svh - 56px); }
  .amenity-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: 1fr; height: 56vw; }
  .gallery img:not(:first-child) { display: none; }
  .keyamenities { grid-template-columns: repeat(3, 1fr); gap: 24px 0; }
  .keyamenity { padding: 4px 10px; border-right: 0; }
  .criterion { grid-template-columns: 40px 1fr; gap: 14px; }
  .baseline { grid-template-columns: 1fr; gap: clamp(20px, 5vw, 26px); }
  .baseline li:nth-child(even) { border-left: 0; }
  .rank-cards { grid-template-columns: 1fr; }
  .filterset { grid-template-columns: repeat(2, max-content); column-gap: 32px; }
  .filterdrawer.is-open { max-height: 620px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
