/* Gozo Guitar Lessons
   Palette supplied by Rob: black, ink navy, slate, steel blue, mist grey.
   Cream and brass gold are taken from the logo. */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
  font-family: "DM Serif Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/dm-serif-display-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "DM Serif Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/dm-serif-display-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "DM Serif Display";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/dm-serif-display-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "DM Serif Display";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/dm-serif-display-italic-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/jost-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/jost-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokens ---------- */
:root {
  --black: #000000;
  --ink: #050e17;
  --navy: #0a1a29;
  --slate: #2b475e;
  --steel: #306e99;
  --steel-light: #8dbcdc;
  --steel-deep: #245678;
  --mist: #909ea6;
  --mist-light: #c6d0d5;
  --paper: #e9edf0;
  --cream: #f3efe6;
  --gold: #c9a25a;
  --gold-light: #e2c182;
  --line: rgba(144, 158, 166, 0.24);
  --line-strong: rgba(144, 158, 166, 0.45);

  --display: "DM Serif Display", "Georgia", "Times New Roman", serif;
  --text: "Jost", "Futura", "Century Gothic", "Avenir Next", "Segoe UI", system-ui, sans-serif;

  --step--1: clamp(1rem, 0.98rem + 0.1vw, 1.06rem);
  --step-0: clamp(1.125rem, 1.08rem + 0.2vw, 1.25rem);
  --step-1: clamp(1.25rem, 1.17rem + 0.4vw, 1.5rem);
  --step-2: clamp(1.55rem, 1.37rem + 0.9vw, 2.1rem);
  --step-3: clamp(2rem, 1.62rem + 1.9vw, 3.15rem);
  --step-4: clamp(2.55rem, 1.8rem + 3.7vw, 4.9rem);

  --gutter: clamp(1.25rem, 0.6rem + 3.2vw, 3.5rem);
  --section: clamp(4.5rem, 3rem + 7vw, 9rem);
  --wrap: 78rem;
  --measure: 38rem;
  --ease-out: cubic-bezier(0.22, 0.8, 0.3, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 6rem; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--text);
  font-size: var(--step-0);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-synthesis: none;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); line-height: 1.06; }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); line-height: 1.2; letter-spacing: 0; }
p, ul, ol, dl, figure, blockquote { margin: 0; }
p + p { margin-top: 1.1em; }
/* An empty string keeps list semantics in Safari/VoiceOver, which "none" removes. */
.socials, .footer-links, ol.offers { padding: 0; list-style-type: ""; }
a { color: var(--steel-light); text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--cream); }
strong { font-weight: 500; }
::selection { background: var(--gold); color: var(--ink); }

:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; border-radius: 2px; }
.on-paper :focus-visible { outline-color: var(--steel-deep); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: var(--gutter); top: 0; z-index: 100; padding: 0.7rem 1.1rem;
  background: var(--gold); color: var(--ink); font-weight: 500; text-decoration: none;
  transform: translateY(-120%);
}
.skip-link:focus { transform: translateY(0.6rem); color: var(--ink); }

.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.lede { font-size: var(--step-1); line-height: 1.5; font-weight: 400; color: var(--mist-light); max-width: var(--measure); }
.muted { color: var(--mist-light); }
.prose { max-width: var(--measure); }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { margin-top: 2.2em; font-size: var(--step-2); }
.prose h3 { margin-top: 1.8em; }
.prose ul { padding-left: 1.2em; }
.prose li + li { margin-top: 0.4em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  min-height: 3.25rem; padding: 0.8rem 1.7rem;
  border: 1px solid transparent; border-radius: 0;
  font: inherit; font-weight: 500; font-size: var(--step-0); line-height: 1.2; letter-spacing: 0.02em;
  text-decoration: none; text-align: center; cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-light); color: var(--ink); }
.btn--line { border-color: var(--line-strong); color: var(--cream); background: transparent; }
.btn--line:hover { border-color: var(--gold); color: var(--gold-light); }
.btn--ink { background: var(--ink); color: var(--cream); }
.btn--ink:hover { background: var(--slate); color: var(--cream); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(5, 14, 23, 0.94);
  border-bottom: 1px solid var(--line);
}
@supports (backdrop-filter: blur(8px)) {
  .site-header { background: rgba(5, 14, 23, 0.82); backdrop-filter: blur(12px); }
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; min-height: 4.75rem; flex-wrap: wrap; }
.brand { display: inline-flex; align-items: center; gap: 0.85rem; color: var(--cream); text-decoration: none; padding-block: 0.5rem; }
.brand img { width: 3.1rem; height: 3.1rem; flex: none; }
.brand-name { font-weight: 500; font-size: 0.86rem; letter-spacing: 0.2em; text-transform: uppercase; line-height: 1.35; }
.brand-name span { display: block; color: var(--gold); letter-spacing: 0.34em; }

.nav-toggle { display: none; }
.site-nav ul { display: flex; flex-wrap: wrap; align-items: center; gap: 0.25rem clamp(0.75rem, 2vw, 2rem); margin: 0; padding: 0; list-style: none; }
.site-nav a { display: inline-flex; align-items: center; min-height: 2.75rem; color: var(--cream); text-decoration: none; font-size: 1.02rem; letter-spacing: 0.02em; }
.site-nav a:not(.btn) { border-bottom: 1px solid transparent; }
.site-nav a:not(.btn):hover { color: var(--gold-light); }
.site-nav a[aria-current="page"] { border-bottom-color: var(--gold); }
.site-nav .btn { min-height: 2.75rem; padding: 0.5rem 1.2rem; font-size: 1rem; }

@media (max-width: 52rem) {
  .js .nav-toggle {
    display: inline-flex; align-items: center; gap: 0.6rem; min-height: 2.75rem; padding: 0.4rem 0.9rem;
    background: transparent; color: var(--cream); border: 1px solid var(--line-strong);
    font: inherit; font-size: 1rem; cursor: pointer;
  }
  .nav-toggle-bars { display: grid; gap: 4px; width: 1.2rem; }
  .nav-toggle-bars span { height: 1px; background: var(--gold); transition: transform 0.25s var(--ease-out), opacity 0.2s; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
  .site-nav { flex-basis: 100%; }
  .js .site-nav { display: none; padding-bottom: 1.25rem; }
  .js .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav li { border-top: 1px solid var(--line); }
  .site-nav a:not(.btn) { display: flex; min-height: 3.25rem; font-size: 1.15rem; border-bottom: 0; }
  .site-nav a[aria-current="page"] { color: var(--gold-light); }
  .site-nav li:last-child { padding-top: 1rem; }
  .site-nav .btn { width: 100%; min-height: 3.25rem; }
}

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; overflow: hidden; background: var(--ink); }
/* Small screens: Rob's photo sits above the headline, so no text ever crosses his face. */
.hero-media { position: relative; z-index: -2; aspect-ratio: 1 / 1; max-height: 68vh; width: 100%; overflow: hidden; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5, 14, 23, 0.25) 0%, rgba(5, 14, 23, 0) 35%, rgba(5, 14, 23, 0.15) 70%, var(--ink) 100%); }
.hero-media picture { display: block; width: 100%; height: 100%; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 0%; }
@media (min-width: 56rem) {
  /* The photo is 960px wide, so it is never stretched beyond that. */
  .hero-media { position: absolute; inset: 0 0 0 auto; aspect-ratio: auto; max-height: none; width: min(60%, 60rem); }
  .hero-media img { object-position: 50% 0%; }
  .hero-media::after {
    background:
      linear-gradient(90deg, var(--ink) 0%, rgba(5, 14, 23, 0.92) 10%, rgba(5, 14, 23, 0.6) 26%, rgba(5, 14, 23, 0.08) 56%, rgba(5, 14, 23, 0.2) 100%),
      linear-gradient(180deg, rgba(5, 14, 23, 0.4) 0%, rgba(5, 14, 23, 0) 22%, rgba(5, 14, 23, 0) 62%, var(--ink) 100%);
  }
}
.hero-copy { padding-block: 2rem clamp(1.5rem, 1rem + 2vw, 3rem); max-width: 46rem; }
@media (min-width: 56rem) { .hero-copy { padding-top: clamp(5rem, 2rem + 9vw, 9rem); max-width: 40rem; } }
.hero h1 { max-width: 13ch; }
.hero .lede { margin-top: 1.6rem; color: var(--cream); max-width: 33rem; }
.hero .btn-row { margin-top: 2.4rem; }

/* The six strings. Decorative; thickness runs low E to high E like the real thing. */
.strings { position: relative; height: clamp(9rem, 6rem + 12vw, 15rem); touch-action: pan-y; cursor: crosshair; }
.strings svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.strings path { fill: none; stroke: var(--gold); vector-effect: non-scaling-stroke; stroke-linecap: round; }
.strings path:nth-child(1) { stroke-width: 3.4; stroke: #b8924f; }
.strings path:nth-child(2) { stroke-width: 2.8; stroke: #c09a55; }
.strings path:nth-child(3) { stroke-width: 2.2; }
.strings path:nth-child(4) { stroke-width: 1.7; }
.strings path:nth-child(5) { stroke-width: 1.2; stroke: var(--gold-light); }
.strings path:nth-child(6) { stroke-width: 0.9; stroke: var(--gold-light); }
.strings-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.5rem 1.5rem; padding-bottom: 1.75rem; font-size: var(--step--1); color: var(--mist-light); }
.sound-toggle {
  display: inline-flex; align-items: center; gap: 0.6rem; min-height: 2.75rem; padding: 0.35rem 0.95rem;
  background: transparent; color: var(--cream); border: 1px solid var(--line-strong);
  font: inherit; font-size: var(--step--1); cursor: pointer; transition: border-color 0.2s, color 0.2s;
}
.sound-toggle:hover { border-color: var(--gold); }
.sound-toggle[aria-pressed="true"] { border-color: var(--gold); color: var(--gold-light); }
.sound-toggle svg { width: 1.1rem; height: 1.1rem; }
.sound-toggle .wave { opacity: 0; transition: opacity 0.2s; }
.sound-toggle[aria-pressed="true"] .wave { opacity: 1; }
.sound-toggle[aria-pressed="true"] .mute { opacity: 0; }

/* Page hero for inner pages */
.page-hero { padding-block: clamp(3.5rem, 2rem + 6vw, 7rem) clamp(2.5rem, 2rem + 3vw, 4.5rem); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, var(--navy), var(--ink)); }
.page-hero h1 { font-size: var(--step-4); max-width: 16ch; }
.page-hero .lede { margin-top: 1.5rem; }

/* Six hairlines, used once per page as a rule */
.string-rule { display: grid; gap: 5px; margin-block: 0; padding: 0; border: 0; }
.string-rule span { display: block; background: var(--gold); opacity: 0.85; }
.string-rule span:nth-child(1) { height: 3px; }
.string-rule span:nth-child(2) { height: 2.5px; }
.string-rule span:nth-child(3) { height: 2px; }
.string-rule span:nth-child(4) { height: 1.5px; }
.string-rule span:nth-child(5), .string-rule span:nth-child(6) { height: 1px; }

/* ---------- Sections ---------- */
.section { padding-block: var(--section); }
.section--navy { background: var(--navy); }
.section--slate { background: var(--slate); }
.section--tight { padding-block: calc(var(--section) * 0.6); }
.section-head { display: grid; gap: 1.25rem; margin-bottom: clamp(2.5rem, 2rem + 3vw, 4.5rem); max-width: 46rem; }

.on-paper { background: var(--paper); color: var(--ink); }
.on-paper a { color: var(--steel-deep); }
.on-paper a:hover { color: var(--ink); }
.on-paper .btn--ink, .on-paper .btn--ink:hover { color: var(--cream); }
.on-paper .muted, .on-paper .lede { color: #3b4d5a; }

/* Liner notes: Rob's record, in a sentence rather than stat tiles */
.liner { font-family: var(--display); font-size: var(--step-2); line-height: 1.32; font-weight: 400; font-synthesis: none; max-width: 56rem; text-wrap: pretty; }
.liner em { font-style: italic; color: var(--gold-light); }
.liner-source { margin-top: 1.5rem; font-size: var(--step--1); color: var(--mist-light); max-width: var(--measure); }

/* Split: text beside a photograph */
.split { display: grid; gap: clamp(2rem, 1rem + 5vw, 6rem); align-items: center; }
@media (min-width: 56rem) {
  .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); }
  .split--flip > :first-child { order: 2; }
}
.split-copy > * + * { margin-top: 1.35rem; }
.split-copy .btn-row { margin-top: 2.2rem; }
.photo { position: relative; margin: 0; background: var(--black); }
.photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.photo--tall img { aspect-ratio: 4 / 5; }
.photo--square img { aspect-ratio: 1 / 1; }
.photo::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(201, 162, 90, 0.35); transform: translate(0.9rem, 0.9rem); z-index: -1; pointer-events: none; }
.photo { isolation: isolate; }

/* Offer list: what Rob does. Rows, not cards. */
.offers { border-top: 1px solid var(--line-strong); }
.offer { display: grid; gap: 0.6rem 3rem; padding-block: clamp(1.75rem, 1.4rem + 1.5vw, 2.75rem); border-bottom: 1px solid var(--line-strong); }
@media (min-width: 48rem) { .offer { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); align-items: baseline; } }
.offer h3 { font-size: var(--step-2); line-height: 1.12; }
.offer p { color: var(--mist-light); max-width: var(--measure); }
.offer p strong { color: var(--cream); }

/* Pull quote */
.quote { max-width: 54rem; }
.quote blockquote { font-family: var(--display); font-style: italic; font-size: var(--step-3); line-height: 1.26; font-weight: 400; text-wrap: balance; }
.quote blockquote::before { content: "\201C"; display: block; color: var(--gold); font-size: 2.2em; line-height: 0.6; margin-bottom: 0.15em; font-style: normal; }
.quote figcaption { margin-top: 1.75rem; color: var(--mist-light); font-size: var(--step--1); }

/* Contact details */
.contact-list { display: grid; gap: 0; border-top: 1px solid var(--line-strong); }
.contact-list > div { display: grid; gap: 0.15rem 2rem; padding-block: 1.3rem; border-bottom: 1px solid var(--line-strong); }
@media (min-width: 34rem) { .contact-list > div { grid-template-columns: 8rem minmax(0, 1fr); align-items: baseline; } }
.contact-list dt { color: var(--mist-light); font-size: var(--step--1); letter-spacing: 0.04em; }
.contact-list dd { margin: 0; font-size: var(--step-1); line-height: 1.35; }
.contact-list dd a { color: var(--cream); text-decoration-color: var(--gold); }
.contact-list dd a:hover { color: var(--gold-light); }
.contact-list dd small { display: block; margin-top: 0.3rem; font-size: var(--step--1); color: var(--mist-light); }

.socials { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.socials a {
  display: inline-flex; align-items: center; gap: 0.6rem; min-height: 2.75rem; padding: 0.4rem 1rem;
  border: 1px solid var(--line-strong); color: var(--cream); text-decoration: none; font-size: 1rem;
  transition: border-color 0.2s, color 0.2s;
}
.socials a:hover { border-color: var(--gold); color: var(--gold-light); }
.socials svg { width: 1.15rem; height: 1.15rem; fill: currentColor; flex: none; }

/* Closing band */
.closing { position: relative; isolation: isolate; overflow: hidden; background: var(--black); }
.closing-media { position: absolute; inset: 0; z-index: -2; }
.closing-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; opacity: 0.75; }
.closing::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 45%, rgba(0, 0, 0, 0.25) 100%); }
.closing-copy { max-width: 36rem; }
.closing-copy > * + * { margin-top: 1.4rem; }
.closing-copy .btn-row { margin-top: 2.2rem; }

/* Contact: how to reach Rob */
.reach-list { margin-top: 1.5rem; padding: 0; list-style-type: ""; border-top: 1px solid var(--line-strong); }
.reach-list li { padding-block: 0.95rem; border-bottom: 1px solid var(--line-strong); color: var(--cream); }
.reach-actions { margin-top: 2.25rem; }

/* FAQ */
.faq { border-top: 1px solid var(--line-strong); max-width: 52rem; }
.faq details { border-bottom: 1px solid var(--line-strong); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; padding-block: 1.3rem; cursor: pointer; list-style: none; font-family: var(--display); font-size: var(--step-1); line-height: 1.25; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; flex: none; width: 0.7rem; height: 0.7rem; border-right: 1px solid var(--gold); border-bottom: 1px solid var(--gold); transform: rotate(45deg) translate(-2px, -2px); transition: transform 0.25s var(--ease-out); }
.faq details[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.faq summary:hover { color: var(--gold-light); }
.faq .answer { padding-bottom: 1.6rem; color: var(--mist-light); max-width: var(--measure); }
.faq .answer a { color: var(--steel-light); }

/* Legal pages */
.table-scroll { overflow-x: auto; margin-top: 1.25rem; }
.table-scroll:focus-visible { outline-offset: 0; }
.cookie-table { width: 100%; min-width: 34rem; border-collapse: collapse; font-size: var(--step--1); }
.cookie-table th, .cookie-table td { padding: 0.75rem; border: 1px solid var(--line-strong); text-align: left; vertical-align: top; }
.cookie-table th { background: var(--navy); font-weight: 500; }
.link-button { padding: 0; background: none; border: 0; font: inherit; color: var(--steel-light); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 0.2em; cursor: pointer; }
.link-button:hover { color: var(--cream); }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); border-top: 1px solid var(--line); padding-block: clamp(3.5rem, 3rem + 3vw, 5.5rem) 2rem; font-size: 1.02rem; }
.footer-grid { display: grid; gap: 2.75rem; }
@media (min-width: 48rem) { .footer-grid { grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 1fr)); } }
.footer-brand img { width: 7rem; height: 7rem; }
.footer-brand p { margin-top: 1.25rem; color: var(--mist-light); max-width: 22rem; }
.site-footer h2 { font-family: var(--text); font-size: 0.86rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-links li + li { margin-top: 0.1rem; }
.footer-links a, .footer-links button { display: inline-flex; align-items: center; min-height: 2.5rem; color: var(--cream); text-decoration: none; }
.footer-links a:hover, .footer-links button:hover { color: var(--gold-light); text-decoration: underline; }
.footer-links button { padding: 0; background: none; border: 0; font: inherit; cursor: pointer; }
.footer-base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem 2rem; margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: var(--step--1); color: var(--mist-light); }
.footer-base a { color: var(--mist-light); }
.footer-base a:hover { color: var(--cream); }

/* ---------- Cookie consent ---------- */
.consent {
  position: fixed; z-index: 90; left: 1rem; right: 1rem; bottom: 1rem; margin-inline: auto;
  width: min(100% - 2rem, 40rem); max-height: calc(100dvh - 2rem); overflow-y: auto;
  padding: 1.5rem; background: var(--navy); color: var(--cream);
  border: 1px solid var(--line-strong); border-top: 2px solid var(--gold);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.6); font-size: 1rem; line-height: 1.5;
}
.consent h2 { font-size: var(--step-1); margin-bottom: 0.6rem; }
.consent h2:focus { outline: none; }
.consent p { color: var(--mist-light); }
.consent-prefs { margin: 1.25rem 0 0; padding: 0; border: 0; display: grid; gap: 0.9rem; }
.consent-prefs[hidden] { display: none; }
.consent-prefs legend { padding: 0; margin-bottom: 0.75rem; font-weight: 500; }
.consent-option { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 0.2rem 1rem; align-items: center; padding-top: 0.9rem; border-top: 1px solid var(--line); }
.consent-option label, .consent-option-name { font-weight: 500; }
.consent-option-desc { grid-column: 1 / -1; font-size: 0.94rem; }
.consent-always { font-size: 0.9rem; color: var(--mist-light); }
.switch { appearance: none; position: relative; width: 3rem; height: 1.7rem; margin: 0; border: 1px solid var(--mist); border-radius: 1rem; background: transparent; cursor: pointer; transition: background-color 0.2s, border-color 0.2s; }
.switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 1.2rem; height: 1.2rem; border-radius: 50%; background: var(--mist-light); transition: transform 0.2s var(--ease-out), background-color 0.2s; }
.switch:checked { background: var(--gold); border-color: var(--gold); }
.switch:checked::after { transform: translateX(1.3rem); background: var(--ink); }
.consent-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem; }
.consent-actions .btn { flex: 1 1 9rem; min-height: 2.9rem; padding: 0.55rem 1rem; font-size: 1rem; }

/* ---------- 404 ---------- */
.lost { min-height: 60vh; display: grid; align-content: center; gap: 1.5rem; }

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

@media print {
  .site-header, .strings, .strings-bar, .consent, .hero-media, .closing-media { display: none; }
  body { background: #fff; color: #000; }
}

/* ---------- Spacing helpers ---------- */
.offers--spaced { margin-top: clamp(3rem, 2rem + 4vw, 6rem); }
.btn-row--spaced { margin-top: 2.5rem; }
.split--top { align-items: start; }
.stack-s { margin-top: 1rem; }
.stack-m { margin-top: 2rem; }
.sub-head { margin-top: 3rem; margin-bottom: 1.1rem; }

/* ---------- Fixes from browser QA ---------- */
[hidden] { display: none !important; }
html:not(.js) .strings-bar { display: none; }
html:not(.js) .strings { cursor: default; }
.footer-base a, .footer-base .link-button { display: inline-block; padding-block: 0.45rem; }
.site-nav a.btn--gold, .site-nav a.btn--gold:hover { color: var(--ink); }
@media (max-width: 55.99rem) {
  .closing::before { background: linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.72)); }
}

/* ---------- Platform polish ---------- */
html { color-scheme: dark; }
a, button, summary, select, input, textarea, label { touch-action: manipulation; -webkit-tap-highlight-color: rgba(201, 162, 90, 0.25); }

/* ---------- Videos: Rob's most-watched, played in place ---------- */
.section--slate .lede, .section--slate .muted { color: #dbe3e8; }
.section--slate .lede a { color: var(--cream); }
.videos { display: grid; gap: clamp(1.75rem, 1.2rem + 2vw, 2.75rem) clamp(1.25rem, 1rem + 1.5vw, 2rem); margin: 0; padding: 0; list-style-type: ""; }
@media (min-width: 40rem) { .videos { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 64rem) { .videos { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.video-frame { position: relative; aspect-ratio: 16 / 9; background: var(--black); overflow: hidden; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-play { position: absolute; inset: 0; display: block; color: var(--ink); }
.video-play img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out), opacity 0.3s; }
.video-play::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5, 14, 23, 0) 45%, rgba(5, 14, 23, 0.55) 100%); pointer-events: none; }
.video-button {
  position: absolute; z-index: 1; left: 50%; top: 50%; width: 3.5rem; height: 3.5rem; margin: -1.75rem 0 0 -1.75rem;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.5);
  transition: transform 0.25s var(--ease-out), background-color 0.2s;
}
.video-button svg { width: 45%; height: 45%; fill: var(--ink); transform: translateX(6%); }
.video-play:hover img { transform: scale(1.03); }
.video-play:hover .video-button, .video-play:focus-visible .video-button { transform: scale(1.08); background: var(--gold-light); }
.video-play:focus-visible { outline: 3px solid var(--gold-light); outline-offset: -3px; }
.video-title { margin-top: 1rem; font-size: var(--step-1); line-height: 1.22; }
.video-meta { margin-top: 0.4rem; font-size: var(--step--1); color: #dbe3e8; font-variant-numeric: tabular-nums; }
.videos-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem 2rem; margin-top: clamp(2.5rem, 2rem + 2vw, 4rem); padding-top: 1.75rem; border-top: 1px solid rgba(243, 239, 230, 0.25); }
.videos-foot p { font-size: var(--step--1); color: #dbe3e8; max-width: 38rem; }
.videos-foot a:not(.btn) { color: var(--cream); }
