/* ==========================================================================
   HL Media — styles
   Palette and type sampled from HL Equine Media Brand Pack, Aug 2026.
   Rules enforced here, not left to discipline:
     - dark is the default, not the exception
     - gold is an accent, never a background
     - Champagne is the readable gold on dark; Antique Gold on light
     - Bone, not pure white, for light surfaces
     - all-caps are letter-spaced
     - body line-height 1.55-1.65, left aligned, never justified
   ========================================================================== */

/* --- Fonts -------------------------------------------------------------
   Self-hosted, not the Google CDN: the CDN is a third-party request and a
   GDPR liability for a UK/EU business. Files go in /fonts as .woff2.
   Until they land, the fallback stack carries the page correctly.
   --------------------------------------------------------------------- */
/* Cinzel is a variable font - one file covers the whole 400-700 range. */
@font-face {
  font-family: "Cinzel";
  src: url("/fonts/cinzel.woff2") format("woff2-variations"),
       url("/fonts/cinzel.woff2") format("woff2");
  font-weight: 400 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("/fonts/lato-300.woff2") format("woff2");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("/fonts/lato-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("/fonts/lato-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Cormorant";
  src: url("/fonts/cormorant-400-italic.woff2") format("woff2");
  font-weight: 400; font-style: italic; font-display: swap;
}

:root {
  --midnight: #0E141A;
  --navy: #182430;
  --slate: #24303C;
  --gold: #AC8E5C;
  --champagne: #D1B273;
  --antique: #8E703E;
  --silver: #B9B9B2;
  --bone: #F7F4EE;

  --ink: #E8E6E1;
  --ink-quiet: #A8ADB2;
  --rule: rgba(172, 142, 92, 0.28);

  --display: "Cinzel", Georgia, "Times New Roman", serif;
  --body: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --accent: "Cormorant", Georgia, serif;

  --wrap: 68rem;
  --gap: clamp(1.25rem, 4vw, 2.5rem);
  --band: clamp(3rem, 9vw, 6rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--midnight);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.6;              /* Brand Pack: 1.55-1.65, never tighter */
  text-align: left;              /* never justified */
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--champagne); text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--bone); }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--champagne); color: var(--midnight);
  padding: 0.75rem 1.25rem; font-weight: 700;
}
.skip:focus { left: 0; }

/* --- Type scale ------------------------------------------------------- */
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: var(--bone);
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2rem, 6vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3.6vw, 2.05rem); }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.25rem); }

p { margin: 0 0 1.1em; max-width: 62ch; }

.lede {
  font-family: var(--body);
  font-weight: 300;
  font-size: clamp(1.1rem, 2.3vw, 1.3rem);
  line-height: 1.55;
  color: var(--ink);
  max-width: 56ch;
}

.eyebrow {
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;          /* Brand Pack: letter-space all capitals */
  color: var(--champagne);
  margin: 0 0 1rem;
}

.note { color: var(--ink-quiet); font-size: 0.95rem; }

/* --- Header ----------------------------------------------------------- */
.site-head {
  position: sticky; top: 0; z-index: 40;
  background: rgba(14, 20, 26, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}
.head-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.85rem 0;
}
.brandmark { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brandmark img { width: 40px; height: auto; }
.brandmark-text {
  font-family: var(--display); font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--bone);
}

.nav-toggle {
  display: block; background: none; border: 0; cursor: pointer;
  padding: 0.6rem; width: 2.75rem; height: 2.75rem;
}
.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block; width: 22px; height: 2px; background: var(--champagne);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle-bar { position: relative; }
.nav-toggle-bar::before { content: ""; position: absolute; top: -7px; }
.nav-toggle-bar::after  { content: ""; position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after  { transform: translateY(-7px) rotate(-45deg); }

#primary-nav {
  display: none; list-style: none; margin: 0; padding: 0;
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--navy); border-bottom: 1px solid var(--rule);
}
#primary-nav.is-open { display: block; }
#primary-nav li { border-top: 1px solid rgba(172, 142, 92, 0.14); }
#primary-nav a {
  display: block; padding: 0.9rem 1.25rem;
  font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; text-decoration: none; color: var(--ink);
}
#primary-nav a:hover, #primary-nav a.is-current { color: var(--champagne); }

@media (min-width: 46rem) {
  .nav-toggle { display: none; }
  #primary-nav {
    display: flex; gap: 1.6rem; position: static; background: none;
    border: 0;
  }
  #primary-nav li { border: 0; }
  #primary-nav a { padding: 0.35rem 0; }
}

/* --- Hero ------------------------------------------------------------- */
.hero {
  padding: clamp(2.5rem, 7vw, 5rem) 0 var(--band);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(24, 36, 48, 0.9) 0%, rgba(14, 20, 26, 0) 70%),
    var(--midnight);
  border-bottom: 1px solid var(--rule);
}
.hero-lockup {
  width: 100%; max-width: 46rem; margin: 0 auto clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 2px;
}
.hero h1 { margin-bottom: 0.4em; }
.hero .lede { margin-bottom: 1.8rem; }

.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0 0; max-width: none; }

.btn {
  display: inline-block;
  font-family: var(--body); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.9rem 1.6rem; text-decoration: none;
  background: var(--champagne); color: var(--midnight);
  border: 1px solid var(--champagne); border-radius: 2px;
  transition: background 0.18s ease, color 0.18s ease;
}
.btn:hover { background: var(--bone); border-color: var(--bone); color: var(--midnight); }
.btn-quiet { background: transparent; color: var(--champagne); }
.btn-quiet:hover { background: rgba(209, 178, 115, 0.12); color: var(--bone); border-color: var(--bone); }

/* --- Bands ------------------------------------------------------------ */
.band { padding: var(--band) 0; border-bottom: 1px solid var(--rule); }
.band-alt { background: var(--navy); }
.band-quote { background: var(--slate); }

.page-head {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 5vw, 3.5rem);
  background: var(--navy);
  border-bottom: 1px solid var(--rule);
}

.grid-2, .grid-3 { display: grid; gap: var(--gap); }
@media (min-width: 40rem) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 52rem) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.prop h3 { color: var(--champagne); }
.prop p { margin-bottom: 0; }

blockquote {
  margin: 0; padding: 0; border: 0;
}
blockquote p {
  font-family: var(--accent);
  font-style: italic;
  font-size: clamp(1.35rem, 3.6vw, 2rem);
  line-height: 1.35;
  color: var(--bone);
  max-width: 34ch;
  margin: 0;
}

.prose p { color: var(--ink); }
.prose h2 { margin-top: 2rem; }

/* --- Process ---------------------------------------------------------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--gap); }
@media (min-width: 44rem) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step-n {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: 2rem; color: var(--gold); line-height: 1; margin-bottom: 0.5rem;
}
.step h3 { font-size: 1.05rem; }
.step p { margin-bottom: 0; font-size: 0.97rem; color: var(--ink-quiet); }

/* --- Packages --------------------------------------------------------- */
.pkgs, .pkg-minis { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--gap); }
@media (min-width: 40rem) { .pkgs, .pkg-minis { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 66rem) { .pkgs, .pkg-minis { grid-template-columns: repeat(4, 1fr); } }

.pkg, .pkg-mini {
  border: 1px solid var(--rule); border-radius: 2px;
  padding: 1.5rem 1.35rem; background: var(--midnight);
  display: flex; flex-direction: column;
}
.band-alt .pkg-mini { background: var(--slate); }
.pkg.is-featured, .pkg-mini.is-featured { border-color: var(--champagne); }

.pkg-badge {
  font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 700; color: var(--midnight); background: var(--champagne);
  display: inline-block; padding: 0.3rem 0.6rem; margin: 0 0 0.9rem; align-self: flex-start;
}
.pkg h3, .pkg-mini h3 { margin-bottom: 0.3em; }
.pkg-price {
  font-family: var(--display); font-weight: 700;
  font-size: 1.9rem; color: var(--champagne); margin: 0 0 0.2em;
}
.pkg-price span {
  font-family: var(--body); font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-quiet);
  display: block; margin-top: 0.2rem;
}
.pkg-onsite {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-quiet); margin-bottom: 1rem;
}
.pkg p, .pkg-mini p { font-size: 0.95rem; }
.pkg .cta-row { margin-top: auto; }

/* --- Lists ------------------------------------------------------------ */
.plain, .ticks { list-style: none; margin: 0 0 1.2em; padding: 0; }
.plain li, .ticks li {
  padding: 0.55rem 0; border-bottom: 1px solid rgba(172, 142, 92, 0.14);
  font-size: 0.97rem;
}
.ticks li { padding-left: 1.6rem; position: relative; }
.ticks .yes::before {
  content: "\2713"; position: absolute; left: 0; color: var(--champagne); font-weight: 700;
}
.ticks .no::before {
  content: "\2014"; position: absolute; left: 0; color: var(--ink-quiet);
}

.rules { list-style: none; margin: 0 0 2rem; padding: 0; display: grid; gap: var(--gap); }
@media (min-width: 34rem) { .rules { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 60rem) { .rules { grid-template-columns: repeat(4, 1fr); } }
.rule-figure {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: 1.9rem; color: var(--champagne); line-height: 1; margin-bottom: 0.45rem;
}
.rule-label { display: block; font-size: 0.92rem; color: var(--ink-quiet); }

.empty { color: var(--ink-quiet); font-style: italic; }
.contact-big { font-family: var(--display); font-size: clamp(1.2rem, 3.4vw, 1.75rem); }

/* --- Footer ----------------------------------------------------------- */
.site-foot { background: var(--navy); padding: var(--band) 0 2rem; }
.foot-inner { display: grid; gap: var(--gap); }
@media (min-width: 46rem) { .foot-inner { grid-template-columns: 2fr 1fr 1fr; } }
.foot-brand img { width: 52px; margin-bottom: 0.9rem; }
.foot-descriptor {
  font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-quiet); max-width: 22ch;
}
.foot-contact p { margin-bottom: 0.4em; font-size: 0.95rem; }
.foot-nav ul { list-style: none; margin: 0; padding: 0; }
.foot-nav li { margin-bottom: 0.45rem; }
.foot-nav a {
  font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; color: var(--ink-quiet);
}
.foot-nav a:hover { color: var(--champagne); }
.foot-legal {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--rule);
}
.foot-legal p {
  margin: 0; font-size: 0.8rem; color: var(--ink-quiet);
  letter-spacing: 0.06em;
}

/* --- Print ------------------------------------------------------------ */
@media print {
  .site-head, .nav-toggle, .cta-row, .foot-nav { display: none; }
  body { background: #fff; color: #111; }
  h1, h2, h3 { color: #111; }
}

.foot-legal-links { margin: 0.5rem 0 0; }
.foot-legal-links a {
  font-size: 0.8rem; letter-spacing: 0.06em;
  color: var(--ink-quiet); text-decoration: none;
}
.foot-legal-links a:hover { color: var(--champagne); text-decoration: underline; }
.foot-legal-links span { color: var(--rule); margin: 0 0.4rem; }

address {
  font-style: normal; font-size: 0.95rem;
  color: var(--ink-quiet); line-height: 1.5; margin: 0 0 1em;
}
.trading-address {
  color: var(--ink); font-size: 1rem;
  padding-left: 1rem; border-left: 2px solid var(--rule);
}
