/* =========================================================
   LEWIS HUNTER WEBSITE
   Global stylesheet. Dark editorial palette.
   ========================================================= */

/* ---------- 1. Design tokens ---------- */

:root {
  /* Surface */
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #1a1a1a;
  --bg-4: #232323;

  /* Text */
  --text: #f5f1ea;
  --text-dim: #a8a39c;
  --text-mute: #7a766f;

  /* Accent */
  --gold: #d4a24c;
  --gold-bright: #e5b547;
  --gold-soft: #f0c878;

  /* Lines and cards */
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.18);
  --border-gold: rgba(212, 162, 76, 0.4);
  --card: rgba(255, 255, 255, 0.03);
  --card-hover: rgba(255, 255, 255, 0.05);

  /* Type */
  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1200px;
  --container-wide: 1320px;
  --gutter: 24px;

  /* Spacing */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 48px;
  --s-6: 64px;
  --s-7: 96px;
  --s-8: 128px;

  /* Radius */
  --r-pill: 999px;
  --r-card: 18px;
  --r-card-lg: 24px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
}

/* ---------- 2. Reset and base ---------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    radial-gradient(ellipse 60% 40% at 15% 0%, rgba(212, 162, 76, 0.06), transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 100%, rgba(212, 162, 76, 0.04), transparent 60%);
  background-attachment: fixed;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ---------- 3. Typography ---------- */

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  margin: 0 0 var(--s-3);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(40px, 5.8vw, 76px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.12;
}

h3 {
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.25;
}

h4 {
  font-size: clamp(18px, 1.5vw, 22px);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
}

p {
  margin: 0 0 var(--s-3);
  max-width: 68ch;
  color: var(--text-dim);
}

p.lead {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--text);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-3);
}

.eyebrow.on-dark { color: var(--gold); }

/* Italic gold emphasis in display headings */
h1 em, h2 em, h3 em, .hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}

strong { color: var(--text); font-weight: 600; }

::selection {
  background: rgba(212, 162, 76, 0.25);
  color: var(--text);
}

/* ---------- 4. Layout ---------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container.wide { max-width: var(--container-wide); }

section {
  padding: var(--s-7) 0;
  position: relative;
}

section.tight { padding: var(--s-6) 0; }

.section-head {
  max-width: 760px;
  margin-bottom: var(--s-6);
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Section backgrounds. Class names preserved from earlier build,
   repurposed to dark variants. */
.bg-cream-alt,
.bg-alt { background: var(--bg-2); }

.bg-navy,
.bg-deep {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4,
.bg-deep h1, .bg-deep h2, .bg-deep h3, .bg-deep h4 { color: var(--text); }

.bg-navy p, .bg-deep p { color: var(--text-dim); }

.divider {
  height: 1px;
  background: var(--border);
  border: 0;
  margin: 0;
}

/* ---------- 5. Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-1);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #0a0a0a;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background 0.2s var(--ease),
              border-color 0.2s var(--ease),
              color 0.2s var(--ease),
              transform 0.2s var(--ease),
              box-shadow 0.2s var(--ease);
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(212, 162, 76, 0.18);
}

.btn:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 32px rgba(212, 162, 76, 0.32);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

.btn--outline:hover {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: none;
}

.btn--gold { /* alias to primary */
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
}

.btn--gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.btn--on-dark { /* same as primary on dark */
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
}

.btn--on-dark:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.btn--ghost-dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text);
  box-shadow: none;
}

.btn--ghost-dark:hover {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-4);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 4px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.link-arrow::after { content: "→"; }
.link-arrow:hover { color: var(--gold-bright); border-color: var(--gold-bright); }

.link-arrow.on-dark { color: var(--gold); border-color: var(--border-gold); }
.link-arrow.on-dark:hover { color: var(--gold-bright); border-color: var(--gold-bright); }

/* ---------- 6. Navigation ---------- */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.site-nav.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(10, 10, 10, 0.95);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--text);
}

.brand .dot {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s var(--ease);
}

.nav-links a:hover { color: var(--text); }

.nav-links a[aria-current="page"] {
  color: var(--text);
}

.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 0;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }

body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- 7. Footer ---------- */

.site-footer {
  background: var(--bg);
  color: var(--text-dim);
  padding: var(--s-7) 0 var(--s-5);
  margin-top: var(--s-7);
  border-top: 1px solid var(--border);
}

.site-footer .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--s-6);
}

.site-footer__brand .brand {
  color: var(--text);
  font-size: 28px;
}

.site-footer__brand p {
  margin-top: var(--s-3);
  max-width: 36ch;
  color: var(--text-dim);
}

.site-footer h5 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 var(--s-3);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: var(--text-dim);
  font-size: 15px;
}

.site-footer a:hover { color: var(--text); }

.site-footer__base {
  border-top: 1px solid var(--border);
  margin-top: var(--s-6);
  padding-top: var(--s-3);
  display: flex;
  justify-content: space-between;
  gap: var(--s-3);
  font-size: 13px;
  color: var(--text-mute);
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- 8. Hero ---------- */

.hero {
  position: relative;
  padding: var(--s-7) 0 var(--s-6);
}

.hero--split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--s-6);
  align-items: center;
}

.hero__content { max-width: 640px; }

.hero__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-3);
  overflow: hidden;
  border-radius: var(--r-card);
  border: 1px solid var(--border);
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 10, 10, 0) 50%,
    rgba(10, 10, 10, 0.5) 100%);
  pointer-events: none;
}

.hero h1 {
  margin-bottom: var(--s-3);
}

.hero__identity {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-3);
  padding: 7px 18px;
  border: 1px solid var(--border-gold);
  border-radius: var(--r-pill);
  background: rgba(212, 162, 76, 0.06);
}

.hero__lede {
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 56ch;
}

.hero--centered {
  text-align: center;
  padding-top: var(--s-7);
  padding-bottom: var(--s-6);
}

.hero--centered .hero__content {
  margin: 0 auto;
}

.hero--centered .eyebrow,
.hero--centered .hero__identity {
  display: inline-block;
}

/* ---------- 9. Editorial blocks ---------- */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-6);
  align-items: start;
}

.two-col--reversed {
  grid-template-columns: 1.2fr 1fr;
}

.prose p { font-size: 17px; color: var(--text-dim); }
.prose p + p { margin-top: 0; }

.prose p.lead { color: var(--text); }

.bg-navy .prose p,
.bg-deep .prose p { color: var(--text-dim); }

/* ---------- 10. Cards and tiles ---------- */

.card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: var(--s-5);
  border-radius: var(--r-card);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}

.card:hover {
  border-color: var(--border-gold);
  background: var(--card-hover);
  transform: translateY(-2px);
}

.split-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
}

.tile {
  background: var(--card);
  border: 1px solid var(--border);
  padding: var(--s-6) var(--s-5);
  border-radius: var(--r-card);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}

.tile:hover {
  border-color: var(--border-gold);
  background: var(--card-hover);
  transform: translateY(-3px);
}

.tile--dark { /* on dark site, dark tile is same surface treatment */
  background: var(--bg-3);
  border-color: var(--border);
  color: var(--text);
}

.tile--dark h3 { color: var(--text); }
.tile--dark p { color: var(--text-dim); }

.tile .eyebrow {
  margin-bottom: var(--s-2);
}

.tile h3 { margin-bottom: var(--s-3); }

/* ---------- 11. Engine block ---------- */

.engine {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--s-4);
  padding: var(--s-6) 0;
  border-top: 1px solid var(--border);
}

.engine:last-child { border-bottom: 1px solid var(--border); }

.engine__number {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.engine__body { max-width: 720px; }

.engine__meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: var(--s-4);
  margin: var(--s-3) 0 var(--s-4);
  padding: var(--s-3) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.engine__meta dt {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 4px;
}

.engine__meta dd {
  margin: 0;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}

.engine .quote {
  margin-top: var(--s-4);
}

/* ---------- 12. Quote / pullquote ---------- */

.quote {
  position: relative;
  padding-left: var(--s-3);
  border-left: 3px solid var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.4;
  color: var(--text);
}

.bg-navy .quote,
.bg-deep .quote { color: var(--text); }

.quote-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: var(--s-5);
  border-radius: var(--r-card);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}

.quote-card:hover {
  border-color: var(--border-gold);
  background: var(--card-hover);
  transform: translateY(-2px);
}

.quote-card__mark {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 0.8;
  color: var(--gold);
  margin-bottom: var(--s-2);
  opacity: 0.85;
}

.quote-card blockquote {
  margin: 0 0 var(--s-3);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.4;
  color: var(--text);
  font-style: italic;
  flex-grow: 1;
}

.quote-card cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
}

/* ---------- 13. Testimonials carousel ---------- */

.testimonials {
  background: var(--bg-2);
  color: var(--text);
  padding: var(--s-7) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials h2 { color: var(--text); }

.testimonial-slider {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}

.testimonial-track {
  display: grid;
  grid-template-areas: "slide";
  position: relative;
}

.testimonial-slide {
  grid-area: slide;
  padding: 0 var(--s-3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0s linear 0.5s;
}

.testimonial-slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s var(--ease), visibility 0s linear 0s;
}

.testimonial-slide blockquote {
  margin: 0 0 var(--s-4);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 1.9vw, 30px);
  line-height: 1.45;
  color: var(--text);
  position: relative;
}

.testimonial-slide blockquote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: var(--s-2);
  opacity: 0.7;
}

.testimonial-slide cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial-slide cite span {
  display: block;
  margin-top: 4px;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
  font-size: 14px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--s-3);
  margin-top: var(--s-5);
}

.slider-controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text);
  font-size: 18px;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.slider-controls button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
}

.slider-dots {
  display: flex;
  gap: 6px;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.slider-dots button.is-active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ---------- 14. Seen With carousel ---------- */

.seen-with {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.seen-with-track {
  display: flex;
  gap: var(--s-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--s-3);
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.seen-with-track::-webkit-scrollbar { height: 6px; }
.seen-with-track::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
.seen-with-track::-webkit-scrollbar-track { background: transparent; }

.seen-with-card {
  flex: 0 0 clamp(240px, 28vw, 320px);
  scroll-snap-align: start;
  border: 1px solid var(--border);
  background: var(--bg-3);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.seen-with-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.seen-with-card__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-4);
}

.seen-with-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seen-with-card__name {
  padding: var(--s-2) var(--s-3) var(--s-3);
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* ---------- 15. Book block ---------- */

.book-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--s-6);
  align-items: center;
}

.book-cover {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}

.book-cover img {
  width: 100%;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
              0 10px 30px rgba(212, 162, 76, 0.15);
  border-radius: 4px;
}

.book-meta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-2);
}

/* ---------- 16. Forms ---------- */

.form {
  display: grid;
  gap: var(--s-3);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.bg-navy .form-row label,
.bg-deep .form-row label,
.tile--dark .form-row label {
  color: var(--gold);
}

.form-row input,
.form-row select,
.form-row textarea {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 16px 20px;
  background: var(--bg-3);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  color: var(--text);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  width: 100%;
}

.form-row textarea {
  min-height: 160px;
  resize: vertical;
  font-family: var(--font-body);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--text-mute);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 162, 76, 0.18);
  background: var(--bg-4);
}

.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path fill='%23d4a24c' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 10px;
  padding-right: 44px;
}

.form-inline {
  display: flex;
  gap: 8px;
  max-width: 520px;
  background: var(--bg-3);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  padding: 6px;
  transition: border-color 0.25s var(--ease);
}

.form-inline:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 162, 76, 0.18);
}

.form-inline input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 12px 20px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  outline: none;
}

.form-inline input::placeholder { color: var(--text-mute); }

.form-inline .btn { flex-shrink: 0; padding: 12px 24px; }

.form-note {
  font-size: 13px;
  color: var(--text-mute);
  margin-top: var(--s-2);
}

.bg-navy .form-note,
.bg-deep .form-note { color: var(--text-mute); }

.form-success {
  display: none;
  padding: var(--s-3) var(--s-4);
  background: rgba(212, 162, 76, 0.08);
  color: var(--text);
  font-size: 15px;
  border: 1px solid var(--border-gold);
  border-radius: var(--r-card);
}

.form-success.is-visible { display: block; }

/* ---------- 17. Photo strip ---------- */

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-2);
}

.photo-strip__item {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-3);
  border-radius: var(--r-card);
  border: 1px solid var(--border);
}

.photo-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.photo-strip__item:hover img { transform: scale(1.05); }

.stage-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--s-2);
  height: 640px;
}

.stage-gallery__item {
  overflow: hidden;
  background: var(--bg-3);
  border-radius: var(--r-card);
  border: 1px solid var(--border);
  min-width: 0;
  min-height: 0;
}

.stage-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.stage-gallery__item:hover img { transform: scale(1.05); }

.stage-gallery__item:first-child {
  grid-row: span 2;
}

/* ---------- 18. Credibility strip ---------- */

.credibility {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-5);
  padding: var(--s-4) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.credibility__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.credibility__items {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5);
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.credibility__items li {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--text);
  letter-spacing: -0.01em;
  transition: color 0.2s var(--ease);
}

.credibility__items li:hover { color: var(--gold); }

/* ---------- 19. Speaking topic list ---------- */

.topic {
  padding: var(--s-5) 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-5);
  align-items: start;
}

.topic:last-child { border-bottom: 1px solid var(--border); }

.topic h3 { margin-bottom: var(--s-2); }

.topic__best {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: var(--s-3);
}

.topic__best span {
  display: block;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 14px;
  margin-top: 4px;
}

/* ---------- 20. FAQ ---------- */

.faq-item {
  border-top: 1px solid var(--border);
  padding: var(--s-4) 0;
}

.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  letter-spacing: -0.01em;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 24px;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item__answer {
  padding-top: var(--s-3);
  color: var(--text-dim);
  font-size: 17px;
  max-width: 64ch;
}

/* ---------- 21. CTA banner ---------- */

.cta-banner {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: var(--s-7) var(--s-5);
  border-radius: var(--r-card-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 162, 76, 0.08), transparent 70%);
  pointer-events: none;
}

.cta-banner > * { position: relative; z-index: 1; }

.cta-banner h2 { color: var(--text); }
.cta-banner p { color: var(--text-dim); max-width: 56ch; margin: 0 auto var(--s-4); }

/* ---------- 22. Principles list ---------- */

.principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}

.principle {
  border-top: 1px solid var(--border);
  padding-top: var(--s-3);
}

.principle h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--text);
  margin-bottom: var(--s-1);
  letter-spacing: -0.01em;
}

.principle p {
  font-size: 16px;
  color: var(--text-dim);
  margin: 0;
}

/* ---------- 23. Today list (About) ---------- */

.today-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4) var(--s-5);
}

.today-list .principle h4 {
  color: var(--text);
}

/* ---------- 24. Bullet list ---------- */

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--s-2);
}

.bullet-list li {
  position: relative;
  padding-left: 28px;
  font-size: 17px;
  color: var(--text);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 14px;
  height: 1.5px;
  background: var(--gold);
}

.bg-navy .bullet-list li,
.bg-deep .bullet-list li { color: var(--text); }

/* ---------- 25. Utility ---------- */

.hidden { display: none !important; }
.center-text { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-3 { margin-top: var(--s-3); }
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }
.no-margin-bottom { margin-bottom: 0; }

/* ---------- 26. Responsive ---------- */

@media (max-width: 960px) {
  section { padding: var(--s-6) 0; }

  .hero { padding: var(--s-5) 0 var(--s-5); }

  .hero--split {
    grid-template-columns: 1fr;
    gap: var(--s-5);
  }

  .hero__photo { aspect-ratio: 4 / 3; order: -1; }

  .two-col,
  .two-col--reversed,
  .book-block,
  .split-tiles,
  .principles,
  .today-list {
    grid-template-columns: 1fr;
    gap: var(--s-4);
  }

  .topic {
    grid-template-columns: 1fr;
    gap: var(--s-3);
  }

  .engine {
    grid-template-columns: 1fr;
    gap: var(--s-2);
  }

  .engine__number { font-size: 56px; }

  .engine__meta {
    grid-template-columns: 1fr;
    gap: var(--s-2);
  }

  .quote-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .stage-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .stage-gallery__item {
    aspect-ratio: 4 / 3;
  }

  .stage-gallery__item:first-child {
    grid-row: auto;
    grid-column: span 2;
    aspect-ratio: 16 / 10;
  }

  .site-footer .container {
    grid-template-columns: 1fr;
    gap: var(--s-5);
  }

  .site-footer__base {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Mobile nav */
  .nav-toggle { display: block; }

  .nav-links {
    position: fixed;
    inset: 76px 0 0 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: var(--s-5) var(--gutter);
    gap: var(--s-3);
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    border-top: 1px solid var(--border);
  }

  body.nav-open .nav-links {
    transform: translateX(0);
  }

  .nav-links a {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--text);
  }

  .form-inline {
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--r-card);
    padding: 8px;
  }

  .form-inline input { text-align: center; }

  .credibility {
    gap: var(--s-3);
  }
}

@media (max-width: 560px) {
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .stage-gallery {
    grid-template-columns: 1fr;
  }

  .stage-gallery__item:first-child {
    grid-column: auto;
  }

  .photo-strip {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- 27. Print friendliness ---------- */

@media print {
  .site-nav, .site-footer, .nav-toggle, .slider-controls { display: none !important; }
  body { background: white; color: black; }
  body::after { display: none; }
  .bg-navy, .bg-deep, .testimonials, .seen-with, .bg-cream-alt, .bg-alt { background: white !important; color: black !important; }
}

/* ---------- 28. Full-bleed hero variant (Vincent style) ---------- */

.hero--bleed {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: var(--s-7) 0 var(--s-6);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero--bleed .hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.55;
}

.hero--bleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 10, 10, 0.45) 0%,
    rgba(10, 10, 10, 0.7) 60%,
    rgba(10, 10, 10, 0.95) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero--bleed .hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.hero--bleed .hero__inner .btn-row {
  justify-content: center;
}

/* ---------- 29. Feature band (full-bleed image strip) ---------- */

.feature-band {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.feature-band__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.5;
}

.feature-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 10, 10, 0.55) 0%,
    rgba(10, 10, 10, 0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

.feature-band__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--s-7) var(--gutter);
  max-width: 920px;
}

.feature-band__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-3);
  padding: 7px 18px;
  border: 1px solid var(--border-gold);
  border-radius: var(--r-pill);
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(6px);
}

.feature-band__line {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}

.feature-band__line em {
  color: var(--gold);
  font-style: italic;
}

@media (max-width: 960px) {
  .hero--bleed { min-height: 70vh; }
  .feature-band { min-height: 40vh; }
  .feature-band__inner { padding: var(--s-5) var(--gutter); }
}
