/*
Theme Name: Luke Music
Theme URI: https://lukemusic.co.uk/
Author: Claude Code
Description: Bespoke editorial theme for Luke Edwards Guitar Tuition. Custom homepage with GSAP animations and a WooCommerce-aware store, built for performance, accessibility, and SEO.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: luke-music
*/

/* ===================================================================
   Luke Music — Design system
   =================================================================== */
:root {
  --bg: #0E0D0B;
  --bg-2: #15130F;
  --surface: #1B1813;
  --surface-2: #221E18;
  --line: rgba(242, 236, 223, 0.10);
  --line-strong: rgba(242, 236, 223, 0.18);

  --fg: #F2ECDF;
  --fg-muted: #C8BFAE;
  --fg-dim: #8C8472;

  --gold: oklch(0.78 0.11 78);
  --gold-2: oklch(0.86 0.07 78);
  --tan: oklch(0.62 0.06 55);
  --wood: oklch(0.42 0.05 45);

  --font-serif: 'Instrument Serif', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Manrope', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;

  --rad-sm: 8px;
  --rad: 14px;
  --rad-lg: 22px;
  --rad-xl: 32px;

  --max: 1240px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a,
a:hover,
a:focus { text-decoration: none; }
.wp-element-button,
.wp-element-button:hover,
.wp-element-button:focus { text-decoration: none !important; }
a { color: inherit; }

#password_strength { color: #000 !important; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Every interactive element gets the pointer cursor. */
a[href],
button,
label[for],
summary,
select,
[role="button"],
[role="link"],
[role="tab"],
[onclick],
input[type="submit"],
input[type="button"],
input[type="reset"],
input[type="radio"],
input[type="checkbox"],
.btn,
.chip {
  cursor: pointer;
}
button:disabled,
input:disabled,
.btn:disabled,
[aria-disabled="true"] {
  cursor: not-allowed;
}
img, svg { display: block; max-width: 100%; }
ul { margin: 0; }

/* ===== Typography ===== */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 500;
}
h1, h2, h3, h4 { margin: 0; font-weight: 400; letter-spacing: -0.01em; }
.display {
  font-family: var(--font-serif);
  font-size: clamp(48px, 8vw, 112px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
  padding-bottom: 0.12em;
}
.display em { font-style: italic; color: var(--gold-2); font-weight: 400; }
.h-xl {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  padding-bottom: 0.15em;
}
.h-xl em { font-style: italic; color: var(--gold-2); }
.h-lg {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.h-lg em { font-style: italic; color: var(--gold-2); }
.h-md {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15;
}
.h-sm {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 60ch;
  text-wrap: pretty;
}
.body { color: var(--fg-muted); font-size: 15.5px; line-height: 1.6; text-wrap: pretty; }
.label-sm { font-size: 13px; color: var(--fg-dim); }
.muted { color: var(--fg-muted); }
.dim { color: var(--fg-dim); }

/* ===== Layout ===== */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section { padding: clamp(72px, 10vw, 140px) 0; }
.section-tight { padding: clamp(48px, 7vw, 96px) 0; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.band { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--fg); color: #14110D; }
.btn-primary:hover { background: var(--gold-2); }
.btn-gold { background: var(--gold); color: #14110D; }
.btn-gold:hover { background: var(--gold-2); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--fg); }
.btn-ghost:hover { background: rgba(242, 236, 223, 0.06); border-color: var(--fg-muted); }
.btn-sm { padding: 9px 14px; font-size: 13px; }
.btn .arrow { display: inline-block; transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ===== Cards ===== */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  padding: clamp(20px, 2.2vw, 28px);
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.card:hover { border-color: var(--line-strong); }

/* ===== Placeholder imagery ===== */
.ph {
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg,
      rgba(242, 236, 223, 0.035) 0px,
      rgba(242, 236, 223, 0.035) 1px,
      transparent 1px,
      transparent 8px),
    linear-gradient(180deg, #221E18 0%, #14110D 100%);
  border: 1px solid var(--line);
  color: var(--fg-dim);
}
.media-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ===== Form controls ===== */
input, textarea, select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.4;
  transition: border-color .15s, background .15s;
}
textarea { resize: vertical; min-height: 100px; }
input::placeholder, textarea::placeholder { color: var(--fg-dim); }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(242,236,223,0.02);
}

/* ===== Misc ===== */
.divider-dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: 0.5; }
*:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--gold); color: #14110D; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--wood); }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--gold); color: #14110D; padding: 10px 18px;
  border-radius: 0 0 8px 0; font-weight: 600; font-size: 14px;
}
.skip-link:focus { left: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ===================================================================
   GSAP reveal — base hidden state, removed if reduced motion
   =================================================================== */
/* Reveal elements start hidden only when JS is confirmed available, so a
   no-JS visitor always sees content. */
html.js .reveal { opacity: 0; transform: translateY(24px); }
html.js.is-ready .reveal { will-change: opacity, transform; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; }
}

/* ===================================================================
   NAV
   =================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 200;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(14, 13, 11, 0.20);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}
.site-header.scrolled {
  background: rgba(14, 13, 11, 0.78);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-serif); font-size: 22px; letter-spacing: -0.01em; }
.logomark {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(140deg, var(--gold) 0%, var(--wood) 100%);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 0 0 oklch(0.78 0.11 78 / 0);
  transition: box-shadow .3s ease, transform .3s ease;
}
.brand:hover .logomark {
  box-shadow: 0 0 18px 2px oklch(0.78 0.11 78 / 0.55);
  transform: translateY(-1px);
}
.logomark span {
  font-family: var(--font-serif); font-size: 22px; font-style: italic;
  color: #14110D; line-height: 1; margin-top: 2px;
}
.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-desktop a { font-size: 14px; color: var(--fg-muted); transition: color .15s; }
.nav-desktop a:hover { color: var(--fg); }

/* Desktop dropdowns */
.has-dropdown { position: relative; display: flex; align-items: center; }
.nav-parent { display: inline-flex; align-items: center; gap: 5px; }
.nav-caret { opacity: 0.65; transition: transform .2s ease; }
.has-dropdown:hover .nav-caret,
.has-dropdown:focus-within .nav-caret { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 210px;
  background: rgba(27, 24, 19, 0.97);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong);
  border-radius: var(--rad);
  padding: 8px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 60;
}
/* Invisible bridge so the cursor can cross the gap without losing hover. */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -18px; left: 0; right: 0; height: 18px;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--fg-muted);
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.nav-dropdown a:hover { background: rgba(242, 236, 223, 0.06); color: var(--fg); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-burger {
  width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  display: none; align-items: center; justify-content: center;
  transition: background .2s ease, border-color .2s ease;
}
.nav-burger:hover { background: rgba(242,236,223,0.05); }
.nav-burger[aria-expanded="true"] { background: var(--gold); border-color: var(--gold); }
.burger-box {
  position: relative; width: 18px; height: 14px;
  display: block;
}
.burger-bar {
  position: absolute; left: 0; right: 0; height: 1.8px;
  background: var(--fg); border-radius: 2px;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), opacity .2s ease, background .2s ease;
}
.burger-bar:nth-child(1) { top: 0; }
.burger-bar:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger-bar:nth-child(3) { bottom: 0; }
.nav-burger[aria-expanded="true"] .burger-bar { background: #14110D; }
.nav-burger[aria-expanded="true"] .burger-bar:nth-child(1) {
  top: 50%; transform: translateY(-50%) rotate(45deg);
}
.nav-burger[aria-expanded="true"] .burger-bar:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] .burger-bar:nth-child(3) {
  bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg);
}
.nav-mobile {
  display: none; border-top: 1px solid var(--line);
  padding: 14px var(--pad) 24px; flex-direction: column; gap: 2px;
  background: rgba(14,13,11,0.98);
  overflow: hidden;
}
.nav-mobile.is-visible { display: flex; }
.nav-mobile a {
  padding: 15px 4px; font-size: 19px;
  border-bottom: 1px solid var(--line); font-family: var(--font-serif);
  transition: color .15s ease, padding-left .2s ease;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--gold-2); padding-left: 10px; }
.nav-mobile-group {
  padding: 18px 4px 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.nav-mobile a.nav-mobile-sub {
  padding-left: 18px;
  font-size: 17px;
}
.nav-mobile a.nav-mobile-sub:hover { padding-left: 26px; }

/* ===================================================================
   HERO
   =================================================================== */
.hero { position: relative; padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(60px, 8vw, 120px); overflow: hidden; }
.hero-glow {
  position: absolute; top: -10%; right: -10%; width: 60%; height: 70%;
  background: radial-gradient(closest-side, oklch(0.55 0.08 70 / 0.18), transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 64px; align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.rating-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px 6px 8px;
  border: 1px solid var(--line-strong); border-radius: 999px;
  background: rgba(242,236,223,0.03); margin-bottom: 28px;
}
.rating-pill .star-badge {
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--gold); color: #14110D;
  display: inline-flex; align-items: center; justify-content: center;
}
.rating-pill span.txt { font-size: 13px; color: var(--fg-muted); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.trust-row { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 18px 28px; align-items: center; }
.trust-chip { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--fg-muted); }
.trust-chip .dot { width: 5px; height: 5px; border-radius: 999px; background: var(--gold); }
.hero-media { position: relative; z-index: 1; }
.hero-portrait {
  aspect-ratio: 5 / 6; border-radius: var(--rad-xl);
  position: relative; overflow: hidden; border: 1px solid var(--line);
}
.pub-card {
  position: absolute;
  left: -28px;
  bottom: -100px;
  width: min(420px, calc(100% + 40px));
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--rad-lg);
  padding: 20px 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
}
.pub-row { display: grid; grid-template-columns: 96px 1fr; gap: 18px; align-items: center; min-height: 96px; color: inherit; }
.pub-art { width: 96px; height: 96px; border-radius: 12px; overflow: hidden; position: relative; flex-shrink: 0; }
.pub-art img { width: 100%; height: 100%; object-fit: cover; object-position: 65% center; }
.pub-text { transition: opacity .4s ease; }
.pub-eyebrow { font-size: 10px; margin-bottom: 5px; }
.pub-title { font-family: var(--font-serif); font-size: 18px; line-height: 1.2; letter-spacing: -0.005em; text-wrap: balance; transition: color .15s ease; }
.pub-sub { font-size: 12px; margin-top: 4px; line-height: 1.35; }
a.pub-slide:hover .pub-title { color: var(--gold-2); }
.pub-dots { display: flex; align-items: center; gap: 6px; margin-top: 8px; }
.pub-dots button {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0; border: 0; background: transparent; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.pub-dots button::before {
  content: "";
  width: 9px; height: 9px; border-radius: 999px;
  background: rgba(242,236,223,0.38);
  transition: width .3s ease, background .3s ease;
}
.pub-dots button:hover::before { background: rgba(242,236,223,0.62); }
.pub-dots button.active::before { width: 26px; background: var(--gold); }
.pub-count { margin-left: auto; font-size: 10px; font-family: var(--font-mono); letter-spacing: 0.05em; color: var(--fg-dim); }

/* ===== Proof strip ===== */
.proof-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.proof-cell { padding: 28px 20px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; }
.proof-cell:last-child { border-right: none; }
.proof-cell .v { font-family: var(--font-serif); font-size: 18px; line-height: 1.2; }

/* ===== Section heads ===== */
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 28px; }
.section-head.center { text-align: center; margin: 0 auto; max-width: 760px; }
.section-head.center .lede { margin: 0 auto; }
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 56px; }

/* ===== Lesson paths ===== */
.path-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.path-card {
  display: flex; flex-direction: column; gap: 18px; min-height: 260px;
  position: relative;
  transition: transform .25s ease, border-color .25s, background .25s;
}
.path-card:hover { transform: translateY(-2px); border-color: var(--gold); background: var(--surface-2); }
.path-card:hover .arrow { transform: translateX(3px); }
.path-card .top { display: flex; justify-content: space-between; align-items: baseline; }
.path-card .for { font-size: 11px; color: var(--fg-dim); font-family: var(--font-mono); }
.path-card h3 { margin-top: auto; }
.path-card .start { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gold); }

/* ===== How it works ===== */
/* Steps sit side by side, and stack once the screen is too narrow. */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.step {
  padding: 32px 28px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--rad-lg);
}
.step .n { font-family: var(--font-serif); font-size: 56px; line-height: 1; color: var(--gold); margin-bottom: 18px; font-style: italic; }
@media (max-width: 820px) {
  .steps-grid { grid-template-columns: 1fr; }
}
.center-cta { display: flex; justify-content: center; margin-top: 48px; }

/* ===== Included ===== */
.included-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 64px; align-items: start; }
.included-sticky { position: sticky; top: 100px; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.feature {
  padding: 22px; border: 1px solid var(--line);
  border-radius: var(--rad); background: var(--surface);
}
.feature .ico {
  width: 28px; height: 28px; border-radius: 7px;
  background: rgba(242,236,223,0.06); color: var(--gold);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}

/* ===== Online section ===== */
.split-grid { display: grid; gap: 56px; align-items: start; }
.online-split { grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); }
.benefit {
  padding: 24px 26px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--rad-lg);
  display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start;
  transition: border-color .2s, transform .2s;
}
.benefit:hover { border-color: var(--line-strong); }
.benefit .n { font-family: var(--font-serif); font-size: 36px; line-height: 1; color: var(--gold); font-style: italic; }
.benefit h4 { font-size: 18px; margin-bottom: 8px; }
.setup-strip {
  margin-top: 64px; padding: clamp(28px, 4vw, 44px);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--rad-xl);
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 40px; align-items: center;
}
.setup-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; }
.setup-item { padding: 16px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--rad); }
.setup-item .ico { width: 30px; height: 30px; color: var(--gold); display: flex; align-items: center; margin-bottom: 10px; }
.setup-item .t { font-size: 14px; font-weight: 600; margin-bottom: 3px; }

/* ===== Reviews ===== */
.reviews-split { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 64px; align-items: center; }
.rating-box {
  margin-top: 28px; padding: 22px 24px;
  border: 1px solid var(--line-strong); border-radius: var(--rad-lg);
  background: var(--surface); display: inline-flex; align-items: center; gap: 18px;
}
.rating-box .big { font-family: var(--font-serif); font-size: 56px; line-height: 1; color: var(--gold); }
.review-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.review-card { display: flex; flex-direction: column; gap: 14px; }
.stars { display: flex; gap: 3px; color: var(--gold); }
.review-card .quote { margin: 0; font-family: var(--font-serif); font-size: 18px; line-height: 1.45; color: var(--fg); }
.review-meta { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-avatar {
  width: 32px; height: 32px; border-radius: 999px; background: var(--wood);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 15px; color: var(--fg);
}

/* ===== UK coverage ===== */
.uk-section { position: relative; overflow: hidden; }
.uk-glow {
  position: absolute; top: -20%; left: -20%; width: 60%; height: 120%;
  background: radial-gradient(closest-side, oklch(0.45 0.05 70 / 0.18), transparent 70%);
  pointer-events: none;
}
.uk-split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: center; }
.note-box {
  margin-top: 32px; padding: 18px 22px;
  border: 1px solid var(--line-strong); border-radius: var(--rad);
  background: var(--surface); max-width: 460px;
}
.cities { display: flex; flex-wrap: wrap; gap: 10px; align-content: center; }
.city {
  padding: 10px 16px; border: 1px solid var(--line-strong); border-radius: 999px;
  font-size: 14.5px; font-family: var(--font-serif); color: var(--fg-muted);
}
.city.primary { color: var(--gold); background: rgba(242,236,223,0.04); }
.city.italic { font-style: italic; }
.city.more { font-size: 14px; color: var(--fg-dim); font-family: var(--font-mono); border: none; }

/* ===== Transcriptions ===== */
.trans-split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: start; }
.check-list { margin-top: 32px; display: grid; gap: 14px; }
.check-list .item { display: flex; gap: 12px; align-items: flex-start; }
.check-list .item .ic { color: var(--gold); margin-top: 3px; }
.check-list .item span.tx { color: var(--fg-muted); font-size: 15px; }
/* ===== Transcription flipbook ===== */
.flipbook { margin: 0; }
.flip-stage {
  position: relative;
  aspect-ratio: 636 / 900;
  perspective: 2000px;
  cursor: grab;
  touch-action: pan-y;
}
.flipbook.is-grabbing .flip-stage { cursor: grabbing; }
.flipbook.is-grabbing .flip-page { user-select: none; }
.flip-page {
  position: absolute;
  inset: 0;
  border-radius: 0;
  overflow: visible;
  background: #fff;
  transform-origin: left center;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.45);
}
.flip-page img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
.flip-page.is-curling > img,
.flip-page.is-curling > .sheet-fade { visibility: hidden; }

/* Segmented page curl — many strips that bend + shade like paper */
.curl-layer {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
}
.curl-seg {
  position: absolute; top: 0; height: 100%;
  transform-origin: left center;
  transform-style: preserve-3d;
  background-repeat: no-repeat;
  background-color: #fff;
}
/* Per-strip shading — darkens as a strip turns away, giving the faceted
   strips the look of one continuously lit, curved paper surface. */
.curl-shade {
  position: absolute; inset: 0;
  background: #0b0a08;
  opacity: 0;
  pointer-events: none;
}

/* Hover affordance — the top page's corner peels up to invite a turn */
.flip-page.is-top::after {
  content: '';
  position: absolute;
  right: 0; bottom: 0;
  width: 0; height: 0;
  background: linear-gradient(315deg,
    #b0a589 0%, #ebe4d2 32%, #d4cab1 50%, rgba(0,0,0,0) 51%);
  box-shadow: -7px -7px 18px rgba(0,0,0,0.32);
  border-top-left-radius: 10px;
  transition: width .36s cubic-bezier(.2,.8,.2,1), height .36s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
  z-index: 6;
}
.flipbook:hover .flip-page.is-top::after { width: 72px; height: 72px; }
.flip-page.is-curling::after { display: none; }
.sheet-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 24%;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 38%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 38%);
  background: linear-gradient(180deg, rgba(14,13,11,0) 0%, rgba(14,13,11,0.18) 100%);
  pointer-events: none;
}
.sheet-tag {
  position: absolute; left: 14px; bottom: 14px;
  z-index: 40;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--fg);
  background: rgba(14,13,11,0.72); border: 1px solid var(--line-strong);
  padding: 6px 11px; border-radius: 999px;
}
.flip-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 18px;
}
.flip-btn {
  width: 42px; height: 42px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg);
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.flip-btn:hover { background: var(--gold); border-color: var(--gold); color: #14110D; }
.flip-counter {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.08em; color: var(--fg-dim);
  min-width: 48px; text-align: center;
}
.flip-counter .flip-current { color: var(--fg); }
.quote-panel {
  padding: clamp(24px, 3vw, 32px); background: var(--surface);
  border: 1px solid var(--gold); border-radius: var(--rad-xl);
  display: grid; gap: 14px;
}

/* ===== About ===== */
.about-split { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: 72px; align-items: start; }
.about-media { position: relative; }
.about-portrait { aspect-ratio: 4 / 5; border-radius: var(--rad-xl); position: relative; overflow: hidden; border: 1px solid var(--line); }
.book-inset {
  position: absolute;
  right: -83px;
  bottom: -68px;
  width: min(400px, 79%);
  border-radius: var(--rad);
  overflow: hidden;
  display: block;
  will-change: transform;
  transform-style: preserve-3d;
}
.book-inset img { width: 100%; height: auto; display: block; }

/* Book feature — the inset placed in its own Mel Bay section */
#book .split-grid.book-split {
  display: flex;
  align-items: center;
  gap: 56px;
}
#book .book-split > :first-child { flex: 0 0 60%; }
#book .book-split > .book-feature-media { flex: 0 0 40%; }
@media (max-width: 782px) {
  #book .split-grid.book-split { flex-direction: column; }
  #book .book-split > :first-child,
  #book .book-split > .book-feature-media { flex: 0 0 auto; width: 100%; }
}
.book-feature.book-inset {
  position: static;
  right: auto; bottom: auto;
  width: min(380px, 90%);
  margin: 0 auto;
  border-radius: 0;
  overflow: visible;
}

/* ===== As featured in (Acoustic Guitar) ===== */
.mag-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 68px);
  max-width: 940px;
  margin: 0 auto;
}
.mag-card { text-align: center; }
.mag-cover {
  display: block;
  width: 100%;
  margin-bottom: 22px;
  will-change: transform;
  transform-style: preserve-3d;
}
.mag-cover img { width: 100%; height: auto; display: block; }
.mag-meta .eyebrow { margin-bottom: 10px; }
.mag-meta p {
  margin: 0 auto;
  max-width: 40ch;
  font-size: 14.5px;
}
.mag-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold);
  transition: gap .15s ease;
}
.mag-card:hover .mag-link { gap: 11px; }
@media (max-width: 620px) {
  .mag-features { grid-template-columns: 1fr; max-width: 380px; gap: 44px; }
}
.creds { list-style: none; padding: 0; margin: 0; }
.cred {
  display: grid; grid-template-columns: 110px 1fr; gap: 20px;
  padding: 16px 0; border-top: 1px solid var(--line); align-items: baseline;
}
.cred .t { font-family: var(--font-serif); font-size: 18px; line-height: 1.3; }

/* ===== Video proof ===== */
.video-grid { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: 16px; }
.video-tile { aspect-ratio: 16 / 9; border-radius: var(--rad-lg); position: relative; }
.video-tile.big { border-radius: var(--rad-xl); }
.play-badge { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.play-badge .circle {
  width: 52px; height: 52px; border-radius: 999px;
  background: rgba(242, 236, 223, 0.95); color: #14110D;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
}
.play-badge.large .circle { width: 76px; height: 76px; }
.play-badge .circle { transition: transform .25s ease, background .2s ease; }

/* YouTube facade */
.yt-facade {
  position: relative; display: block; width: 100%; padding: 0;
  border: 1px solid var(--line); overflow: hidden; cursor: pointer;
  background: var(--surface-2);
}
.yt-facade img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .4s ease, opacity .2s ease;
}
.yt-facade::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,13,11,0.1), rgba(14,13,11,0.45));
  transition: background .25s ease;
}
.yt-facade:hover img { transform: scale(1.04); }
.yt-facade:hover::after { background: linear-gradient(180deg, rgba(14,13,11,0.05), rgba(14,13,11,0.3)); }
.yt-facade:hover .play-badge .circle { transform: scale(1.08); background: var(--gold); }
.yt-facade .play-badge { z-index: 2; }
.yt-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt-facade.is-playing img,
.yt-facade.is-playing .play-badge,
.yt-facade.is-playing::after { display: none; }

/* ===== FAQ ===== */
.faq-split { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 64px; align-items: start; }
.faq-item { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; padding: 22px 0;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
}
.faq-q .q-text {
  font-family: var(--font-serif); font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25; color: var(--fg); text-wrap: pretty;
}
.faq-q .q-icon {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease, background .2s ease, color .2s ease;
}
.faq-item.open .q-icon { transform: rotate(45deg); background: var(--gold); color: #14110D; }
.faq-a { overflow: hidden; max-height: 0; opacity: 0; transition: max-height .35s ease, opacity .25s ease; }
.faq-item.open .faq-a { max-height: 320px; opacity: 1; }
.faq-a p { margin: 0; padding-bottom: 24px; max-width: 62ch; }

/* ===== Final CTA ===== */
.final-cta { position: relative; overflow: hidden; }
.final-cta .glow {
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, oklch(0.30 0.05 70 / 0.6), transparent 70%);
  pointer-events: none;
}
.final-cta .inner { position: relative; text-align: center; }

/* ===== Contact ===== */
.contact-split { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 64px; align-items: start; }
.contact-rows { margin-top: 32px; display: grid; gap: 18px; }
.contact-row { display: flex; align-items: flex-start; gap: 16px; }
.contact-row .ico {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.form-shell {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--rad-xl); padding: clamp(24px, 3vw, 36px);
}

/* ===== Footer ===== */
.site-footer { background: #0A0907; border-top: 1px solid var(--line); padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: 48px; padding-bottom: 56px; }
.footer-col .eyebrow { margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--fg-muted); }
.footer-col a:hover { color: var(--fg); }
.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 999px; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fg-muted); font-size: 11px; letter-spacing: 0.05em;
}
.footer-bar {
  border-top: 1px solid var(--line); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px; font-size: 12.5px; color: var(--fg-dim);
}

/* ===== Sticky mobile CTA ===== */
.sticky-cta {
  position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 40;
  transform: translateY(120%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  pointer-events: none; display: none;
}
.sticky-cta.show { transform: translateY(0); pointer-events: auto; }
.sticky-cta .btn { width: 100%; justify-content: center; padding: 16px 20px; box-shadow: 0 18px 40px rgba(0,0,0,0.5); }

/* ===== Pricing card ===== */
.pricing-card { transition: transform .25s ease, border-color .2s ease; }
.pricing-card:hover { transform: translateY(-3px); }

/* ===== Duration toggle ===== */
.duration-toggle {
  display: flex; gap: 6px; width: max-content;
  margin: 36px auto 0; padding: 4px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 999px;
}
.dur-btn {
  padding: 10px 20px; border-radius: 999px;
  font-size: 13px; color: var(--fg-muted);
  transition: background .15s ease, color .15s ease;
}
.dur-btn:hover { color: var(--fg); }
.dur-btn.is-active { background: var(--fg); color: #14110D; font-weight: 600; }
.price-bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.dur-30 { display: none; }
.pricing-section.show-30 .dur-60 { display: none; }
.pricing-section.show-30 span.dur-30 { display: inline; }
.pricing-section.show-30 ul.dur-30 { display: grid; }
.price-tag {
  position: absolute; top: -10px; left: 20px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--surface-2); color: var(--fg-muted);
  border: 1px solid var(--line-strong);
  font-size: 11px; font-weight: 600; font-family: var(--font-mono);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.price-tag.featured { background: var(--gold); color: #14110D; border: none; }

/* ===== Publication carousel art ===== */
.pub-art--book { background: linear-gradient(180deg, #7eb9d5 0%, #4d8aa0 100%); }
.pub-art--magazine {
  background: linear-gradient(180deg, #c7b89e 0%, #8a7656 100%);
}
.pub-art--magazine img { object-fit: cover; object-position: center; transform: scale(1.06); }
.pub-mag-title { font-family: var(--font-serif); font-style: italic; font-size: 10px; line-height: 1; letter-spacing: -0.02em; }
.pub-art--conservatoire {
  background: #ffffff;
  display: flex; align-items: center; justify-content: center;
}
.pub-art--conservatoire img { object-fit: contain; object-position: center; transform: scale(1.55); }
.pub-art--nyjb {
  background: linear-gradient(140deg, #5c1f2a 0%, #2a0f15 100%);
  display: flex; align-items: center; justify-content: center; color: #e6cb8a;
}
.pub-slide[hidden] { display: none; }

/* ===== Cart count badge ===== */
.cart-link { position: relative; }
.cart-count {
  background: var(--gold); color: #14110D;
  font-size: 11px; font-weight: 700; font-family: var(--font-mono);
  min-width: 20px; height: 20px; padding: 0 6px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
}
.cart-count:empty, .cart-count[data-cart-count="0"] { display: none; }

/* ===== Generic page ===== */
.page-shell { padding: clamp(48px, 8vw, 120px) 0; }
.page-shell .entry-content { max-width: 70ch; }
.page-id-9 .page-shell .entry-content { max-width: 100% !important; }
.page-id-9 .wc-block-grid__product-link { text-decoration: none !important; }
.page-id-9 .page-shell .entry-content h2 { margin-top: 0 !important; }
.page-shell .entry-content p { color: var(--fg-muted); margin: 0 0 1.1em; }
.page-shell .entry-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.page-shell .entry-content h2 { font-family: var(--font-serif); font-size: clamp(24px, 3vw, 34px); margin: 1.6em 0 0.5em; }
.page-shell .entry-content h3 { font-family: var(--font-serif); font-size: 22px; margin: 1.4em 0 0.4em; }
.page-shell .entry-content ul { color: var(--fg-muted); padding-left: 1.2em; margin: 0 0 1.1em; }
.page-shell .entry-content li { margin: 0.3em 0; }
.page-shell .entry-content strong { color: var(--fg); }

/* ===== Blog post grid ===== */
.post-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.post-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--rad-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .2s ease, transform .2s ease;
}
.post-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.post-card-media { display: block; position: relative; aspect-ratio: 16 / 10; background: var(--surface-2); }
.post-card-body { padding: 26px; display: flex; flex-direction: column; flex-grow: 1; }
.post-card-body h2 a:hover { color: var(--gold-2); }
.post-card-link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gold); }
.post-card-link:hover .arrow { transform: translateX(3px); }

/* ===================================================================
   Forminator contact form
   =================================================================== */
.forminator-ui.forminator-custom-form { font-family: var(--font-sans) !important; }
.forminator-ui .forminator-row { margin-bottom: 18px !important; }
.forminator-ui .forminator-label,
.forminator-ui .forminator-field label,
.forminator-ui label.forminator-label {
  font-family: var(--font-mono) !important;
  font-size: 11px !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: var(--fg-dim) !important;
  font-weight: 500 !important;
  margin-bottom: 8px !important;
}
.forminator-ui .forminator-label .forminator-required,
.forminator-ui .forminator-required { color: var(--gold) !important; }
.forminator-ui input.forminator-input,
.forminator-ui textarea.forminator-textarea,
.forminator-ui select.forminator-select,
.forminator-ui .forminator-select2 .select2-selection {
  width: 100% !important;
  padding: 14px 16px !important;
  background: var(--bg) !important;
  border: 1px solid var(--line) !important;
  border-radius: 10px !important;
  color: var(--fg) !important;
  font-family: var(--font-sans) !important;
  font-size: 14.5px !important;
  height: auto !important;
}
.forminator-ui input.forminator-input:focus,
.forminator-ui textarea.forminator-textarea:focus,
.forminator-ui select.forminator-select:focus {
  border-color: var(--gold) !important;
  outline: none !important;
}
/* Radio field label always on its own line, segmented control below it */
.forminator-ui [id*="forminator-radiogroup"][id$="-label"],
.forminator-ui .forminator-field-radio > .forminator-label {
  display: block !important;
  width: 100% !important;
  margin-bottom: 10px !important;
}

/* Radio fields rendered as the design's segmented control */
.forminator-ui [role="radiogroup"].forminator-field {
  display: flex !important;
  flex-wrap: wrap;
  gap: 6px;
  padding: 4px !important;
  background: var(--bg) !important;
  border: 1px solid var(--line) !important;
  border-radius: 12px !important;
}
.forminator-ui [role="radiogroup"] .forminator-radio {
  flex: 1 1 auto;
  min-width: 110px;
  margin: 0 !important;
  padding: 10px 14px !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
  cursor: pointer;
  font-size: 13px !important;
  color: var(--fg-muted) !important;
  transition: background .15s ease, color .15s ease;
  position: relative;
}
.forminator-ui [role="radiogroup"] .forminator-radio-bullet { display: none !important; }
.forminator-ui [role="radiogroup"] .forminator-radio input {
  position: absolute !important;
  opacity: 0 !important;
  width: 1px; height: 1px;
}
.forminator-ui [role="radiogroup"] .forminator-radio-label {
  color: inherit !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}
.forminator-ui [role="radiogroup"] .forminator-radio:hover {
  background: rgba(242,236,223,0.04);
}
.forminator-ui [role="radiogroup"] .forminator-radio.forminator-is_checked,
.forminator-ui [role="radiogroup"] .forminator-radio:has(input:checked) {
  background: var(--fg) !important;
  color: #14110D !important;
  font-weight: 600;
}
.forminator-ui button.forminator-button-submit,
.forminator-ui .forminator-button.forminator-button-submit {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: var(--gold) !important;
  color: #14110D !important;
  border-radius: 999px !important;
  padding: 14px 26px !important;
  font-family: var(--font-sans) !important;
  font-weight: 600 !important;
  font-size: 14.5px !important;
  border: none !important;
  transition: background .2s ease !important;
}
.forminator-ui button.forminator-button-submit:hover {
  background: var(--gold-2) !important;
}
.forminator-ui .forminator-response-message {
  background: var(--surface) !important;
  border: 1px solid var(--gold) !important;
  border-radius: var(--rad) !important;
  color: var(--fg-muted) !important;
  padding: 14px 16px !important;
}
.forminator-ui .forminator-label--more,
.forminator-ui .forminator-description { color: var(--fg-dim) !important; }
.form-microcopy {
  margin: 16px 0 0;
  font-size: 12.5px;
  color: var(--fg-dim);
}

/* ===================================================================
   Responsive
   =================================================================== */
/* Intermediate nav: brand + CTA on their own line above the links */
@media (min-width: 901px) and (max-width: 1300px) {
  .nav-inner {
    flex-wrap: wrap;
    height: auto;
    padding-top: 12px;
    padding-bottom: 8px;
    row-gap: 8px;
  }
  .brand { order: 1; }
  .nav-actions { order: 2; }
  .nav-desktop {
    order: 3;
    flex-basis: 100%;
    justify-content: center;
    gap: 26px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .nav-desktop { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-cta { display: none; }
  .split-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .included-grid { grid-template-columns: 1fr; }
  .included-sticky { position: static; }
  .video-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr !important; }
  .setup-strip { grid-template-columns: 1fr; }
  .sticky-cta { display: block; }
  /* Publications card sits beneath the hero image, full width — and with
     a touch more presence now it stands on its own. */
  .pub-card {
    position: static;
    left: auto; bottom: auto;
    width: 100%;
    margin-top: 16px;
    padding: 20px 22px;
    box-shadow: none;
    backdrop-filter: none;
  }
  .pub-row {
    grid-template-columns: 92px 1fr;
    gap: 20px;
    min-height: 92px;
  }
  .pub-art { width: 92px; height: 92px; border-radius: 12px; }
  .pub-eyebrow { font-size: 10.5px; margin-bottom: 6px; }
  .pub-title { font-size: 20px; }
  .pub-sub { font-size: 13px; margin-top: 5px; }
  .pub-art--magazine .pub-mag-title { font-size: 14px; }
  .book-inset { right: -40px; }
}
@media (max-width: 760px) {
  .proof-cell { border-right: none; border-bottom: 1px solid var(--line); }
}
@media (max-width: 580px) {
  .account-link .btn-label,
  .cart-link .btn-label { display: none; }
  .account-link { padding-left: 11px; padding-right: 11px; gap: 0; }
  .cart-link { padding-left: 11px; padding-right: 11px; gap: 5px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .display { font-size: 56px; }
}
