/* Oak & Mason — v2 Multi-Asset site stylesheet
   Editorial / auction-house typography on stone & oak tokens.
   Layout, components, sections — no new colours, no new families. */

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--page-x);
}

.section {
  padding-top: 120px;
  padding-bottom: 120px;
}
.section--lg { padding-top: 140px; padding-bottom: 140px; }
.section--xl { padding-top: 160px; padding-bottom: 160px; }
.section--md { padding-top: 96px; padding-bottom: 96px; }

.section--ivory { background: var(--ivory); }
.section--paper { background: var(--paper); }
.section--ink   { background: var(--ink); color: var(--ivory); }

@media (max-width: 1024px) {
  .section, .section--lg, .section--xl { padding-top: 80px; padding-bottom: 80px; }
}

/* ─────────────── Wordmark ─────────────── */
.wordmark {
  font-family: var(--f-mono);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.wordmark--sm { font-size: 13px; letter-spacing: 0.34em; }
.wordmark--lg { font-size: 16px; letter-spacing: 0.36em; }
.wordmark--ivory { color: var(--ivory); }
.wordmark .amp {
  font-family: var(--f-display);
  font-style: italic;
  letter-spacing: 0;
  font-weight: 400;
}
.wordmark-img {
  display: block;
  height: 18px;
  width: auto;
  user-select: none;
}
.wordmark-img--sm { height: 16px; }
.wordmark-img--lg { height: 26px; }

/* ─────────────── Mono labels ─────────────── */
.lot {
  font-family: var(--f-mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.lot--gold { color: var(--gold); }

/* ─────────────── Pill (square auction-style) ─────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  height: 52px;
  padding: 0 28px;
  border-radius: 0;
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--f-mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 220ms ease, color 220ms ease;
}
.pill::after {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: currentColor;
  transform: scaleX(calc(16 / 28));
  transform-origin: left center;
  transition: transform 220ms ease;
}
.pill:hover::after { transform: scaleX(1); }
.pill:hover { background: var(--ink); color: var(--ivory); }
.pill--inkfill { background: var(--ink); color: var(--ivory); }
.pill--inkfill:hover { background: transparent; color: var(--ink); }
.pill--ivory { border-color: var(--ivory); color: var(--ivory); }
.pill--ivory:hover { background: var(--ivory); color: var(--ink); }
.pill--ivoryf { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.pill--ivoryf:hover { background: transparent; color: var(--ivory); }

/* ─────────────── Arrow link ─────────────── */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}
.arrow-link::after {
  content: "";
  display: inline-block;
  width: 24px; height: 1px;
  background: currentColor;
  transition: width 220ms ease;
}
.arrow-link:hover::after { width: 36px; }
.arrow-link--ivory { color: var(--ivory); }
.arrow-link--gold { color: var(--gold-soft); }

/* ─────────────── Top nav ─────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 239, 230, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
  padding: 0 var(--page-x);
  height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav__links {
  display: flex; gap: 36px;
  justify-content: center;
}
.nav__links a {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 220ms ease;
}
.nav__links a.is-active { border-bottom-color: var(--ink); }
.nav__links a:hover { border-bottom-color: var(--ink); }
.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  position: relative;
}
.nav__toggle span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 320ms cubic-bezier(0.2, 0, 0, 1), opacity 220ms 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; }
.nav__toggle:hover span:nth-child(1) { top: 15px; }
.nav__toggle:hover span:nth-child(3) { top: 29px; }

.nav__cta {
  display: flex; gap: 28px; align-items: center;
  justify-content: flex-end;
}
.nav__cta .mono-up { font-family: var(--f-mono); font-weight: 400; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); }

@media (max-width: 1024px) {
  .nav { grid-template-columns: 1fr auto; height: 72px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: block; }
}

/* ─────────────── Inner-page hero (text-only, with TOC card) ─────────────── */
/* Used on content pages like /how-it-works. Distinct from home (brand pitch)
   and product pages (chapter opener with letterbox plate). */
.page-hero {
  background: var(--ivory);
  padding: clamp(40px, 5vw, 80px) 0 clamp(72px, 8vw, 128px);
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  padding-top: clamp(32px, 4vw, 64px);
  border-top: 1px solid var(--ink);
}
.page-hero__copy .lot { display: inline-block; margin-bottom: 18px; }
.page-hero__title {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.page-hero__title em { font-style: italic; color: var(--oak); font-weight: 300; }
.page-hero__lede {
  margin-top: 28px;
  max-width: 480px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
}
.page-hero__cta {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.page-hero__toc {
  background: var(--paper);
  padding: clamp(28px, 3.5vw, 48px);
  border: 1px solid var(--hairline);
}
.page-hero__toc .lot {
  display: block;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 8px;
}
.page-hero__toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: toc-counter;
}
.page-hero__toc li {
  counter-increment: toc-counter;
  border-bottom: 1px solid var(--hairline);
}
.page-hero__toc li:last-child { border-bottom: none; }
.page-hero__toc a {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 16px 0;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 18px;
  transition: color 200ms ease;
}
.page-hero__toc a:hover { color: var(--oak); }
.page-hero__toc a::before {
  content: counter(toc-counter, decimal-leading-zero);
  font-family: var(--f-mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  align-self: center;
}
.page-hero__toc-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
@media (max-width: 980px) {
  .page-hero__grid { grid-template-columns: 1fr; }
}

/* ─────────────── Long-form article (privacy / terms / single-column content) ─────────────── */
.article__body {
  max-width: 720px;
  margin: 0 auto;
}
.article__meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 36px;
}
.article__notice {
  background: var(--paper);
  border-left: 3px solid var(--oak);
  padding: 22px 28px;
  margin: 0 0 48px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
}
.article__body h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin: 56px 0 16px;
  color: var(--ink);
}
.article__body h2:first-child { margin-top: 0; }
.article__body h2 em { font-style: italic; color: var(--oak); font-weight: 400; }
.article__body h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.3;
  margin: 32px 0 8px;
  color: var(--ink);
}
.article__body p {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 16px;
}
.article__body ul, .article__body ol {
  margin: 16px 0;
  padding-left: 24px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
}
.article__body li { margin: 6px 0; }
.article__body strong { font-weight: 500; color: var(--ink); }
.article__body a { color: var(--oak); border-bottom: 1px solid var(--hairline-2); transition: border-color 200ms ease; }
.article__body a:hover { border-bottom-color: var(--oak); }

/* Resources hub: card grid for articles */
.resources__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.resources__card {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.5vw, 36px);
  background: var(--paper);
  border: 1px solid var(--hairline);
  text-decoration: none;
  color: inherit;
  transition: border-color 240ms ease, background 240ms ease, transform 240ms cubic-bezier(0.2, 0, 0, 1);
}
.resources__card:hover {
  border-color: var(--ink);
  background: var(--ivory);
  transform: translateY(-2px);
}
.resources__card-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 16px;
}
.resources__card-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 14px;
}
.resources__card-title em { font-style: italic; color: var(--oak); font-weight: 400; }
.resources__card-excerpt {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  flex: 1 1 0;
  margin: 0 0 18px;
}
.resources__card-arrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oak);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.resources__card-arrow::after {
  content: '→';
  font-family: var(--f-display);
  transition: transform 240ms cubic-bezier(0.2, 0, 0, 1);
}
.resources__card:hover .resources__card-arrow::after { transform: translateX(4px); }

/* Worked tax example callout */
.tax__example {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(28px, 3vw, 44px);
  margin: 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
}
.tax__example > div { font-family: var(--f-display); }
.tax__example .lot { color: var(--gold-soft); display: block; margin-bottom: 12px; }
.tax__example-title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ivory);
  margin: 0 0 14px;
}
.tax__example-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.18);
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 16px;
  color: rgba(244, 239, 230, 0.85);
}
.tax__example-line:last-of-type { border-bottom: none; }
.tax__example-line strong {
  font-family: var(--f-display);
  font-weight: 300;
  color: var(--ivory);
  font-variant-numeric: tabular-nums;
}
.tax__example-result {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(244, 239, 230, 0.4);
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--gold-soft);
}
@media (max-width: 720px) {
  .tax__example { grid-template-columns: 1fr; }
}

/* About page: 4-pillar grid (similar to pillars but with prose paragraphs) */
.about__why {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.about__why h2 {
  margin: 16px 0 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.about__why h2 em { font-style: italic; color: var(--oak); font-weight: 300; }
.about__why p {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 18px;
}
.about__why p:last-child { margin-bottom: 0; }
@media (max-width: 980px) {
  .about__why { grid-template-columns: 1fr; gap: 32px; }
}

/* ─────────────── Contact page ─────────────── */
.contact__methods {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact__methods li {
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact__methods li:first-child { padding-top: 0; }
.contact__methods li:last-child { border-bottom: none; padding-bottom: 0; }
.contact__method-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.contact__method-value {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.2;
  color: var(--ink);
  text-decoration: none;
  transition: color 200ms ease;
}
a.contact__method-value:hover { color: var(--oak); }
.contact__method-meta {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.4;
}

.contact__form-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.contact__form-head .lot { display: inline-block; margin-bottom: 14px; }
.contact__form-title {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.contact__form-title em { font-style: italic; color: var(--oak); font-weight: 300; }
.contact__form-intro {
  margin-top: 24px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--ivory);
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--hairline);
}
.contact__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact__field .lot { padding-bottom: 4px; }
.contact__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline-2);
  padding: 10px 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 18px;
  color: var(--ink);
  outline: none;
  border-radius: 0;
  transition: border-color 200ms ease;
}
.contact__input:focus { border-bottom-color: var(--ink); }
.contact__input::placeholder {
  color: var(--ink-faint);
  font-style: italic;
}
select.contact__input {
  appearance: none;
  -webkit-appearance: none;
  padding: 10px 26px 10px 0;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%231B2A2E' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 12px;
}
.contact__textarea {
  border: 1px solid var(--hairline-2);
  padding: 14px 16px;
  min-height: 132px;
  resize: vertical;
  line-height: 1.55;
  font-size: 17px;
}
.contact__textarea:focus { border-color: var(--ink); }
.contact__consent {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-mute);
}
.contact__form button {
  align-self: flex-start;
  margin-top: 4px;
}
@media (max-width: 980px) {
  .contact__form-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .contact__field-row { grid-template-columns: 1fr; gap: 22px; }
}

.contact__office {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
  border-top: 1px solid var(--ink);
  padding-top: 36px;
}
.contact__office .lot { display: block; margin-bottom: 14px; }
.contact__office p {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
}
@media (max-width: 860px) {
  .contact__office { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .contact__office { grid-template-columns: 1fr; gap: 28px; }
}

/* ─────────────── Path fork (2-up parallel cards for product divergence) ─────────────── */
.path-fork__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  margin-top: clamp(48px, 6vw, 80px);
}
.path-fork__card {
  background: var(--ivory);
  padding: clamp(32px, 4vw, 56px);
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
}
.path-fork__card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 28px;
}
.path-fork__title {
  margin: 0 0 28px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.path-fork__title em { font-style: italic; color: var(--oak); font-weight: 300; }
.path-fork__card h4 {
  margin: 24px 0 8px;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: var(--oak);
}
.path-fork__card h4:first-of-type { margin-top: 0; }
.path-fork__card p {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
}
.path-fork__card ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.path-fork__card li {
  padding: 10px 0 10px 22px;
  position: relative;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  border-bottom: 1px solid var(--hairline);
}
.path-fork__card li:last-child { border-bottom: none; }
.path-fork__card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 19px;
  width: 10px;
  height: 1px;
  background: var(--oak);
}
.path-fork__card .path-fork__caveat {
  margin-top: 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  line-height: 1.5;
  text-transform: none;
}
@media (max-width: 860px) {
  .path-fork__grid { grid-template-columns: 1fr; }
}

/* ─────────────── Mobile menu (full-screen branded overlay) ─────────────── */
.menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--ink);
  color: var(--ivory);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .menu {
    transition: opacity 420ms cubic-bezier(0.2, 0, 0, 1), visibility 420ms;
  }
}
.menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.menu__inner {
  height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 0 var(--page-x) 28px;
  max-width: 720px;
  margin: 0 auto;
}
.menu__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  padding-top: 6px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.18);
}
.menu__head .wordmark { color: var(--ivory); }
.menu__close {
  position: relative;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 0;
}
.menu__close span {
  position: absolute;
  top: 50%;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--ivory);
  transform-origin: center;
}
.menu__close span:first-child { transform: rotate(45deg); }
.menu__close span:last-child { transform: rotate(-45deg); }

.menu__list {
  list-style: none;
  margin: 0;
  padding: clamp(40px, 8vw, 80px) 0 0;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.menu__list li {
  border-bottom: 1px solid rgba(244, 239, 230, 0.12);
}
.menu__list a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(32px, 7.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ivory);
  text-decoration: none;
  transition: color 260ms ease, transform 320ms cubic-bezier(0.2, 0, 0, 1);
}
.menu__list a:hover,
.menu__list a:focus {
  color: var(--gold-soft);
  font-style: italic;
}
.menu__list a::before {
  content: counter(menu-counter, decimal-leading-zero);
  counter-increment: menu-counter;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(244, 239, 230, 0.45);
  align-self: center;
  flex-shrink: 0;
}
.menu__list { counter-reset: menu-counter; }

.menu__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(244, 239, 230, 0.18);
}
.menu__cta .pill { width: 100%; justify-content: center; }
.menu__foot {
  padding: 24px 0 0;
  text-align: center;
}
.menu__foot .lot {
  color: rgba(244, 239, 230, 0.5);
}

@media (prefers-reduced-motion: no-preference) {
  .menu__list li,
  .menu__cta,
  .menu__foot {
    opacity: 0;
    transform: translateY(20px);
  }
  .menu.is-open .menu__list li {
    animation: menu-stagger 720ms cubic-bezier(0.2, 0, 0, 1) forwards;
  }
  .menu.is-open .menu__list li:nth-child(1) { animation-delay: 220ms; }
  .menu.is-open .menu__list li:nth-child(2) { animation-delay: 290ms; }
  .menu.is-open .menu__list li:nth-child(3) { animation-delay: 360ms; }
  .menu.is-open .menu__list li:nth-child(4) { animation-delay: 430ms; }
  .menu.is-open .menu__list li:nth-child(5) { animation-delay: 500ms; }
  .menu.is-open .menu__cta { animation: menu-stagger 760ms cubic-bezier(0.2, 0, 0, 1) 620ms forwards; }
  .menu.is-open .menu__foot { animation: menu-stagger 760ms cubic-bezier(0.2, 0, 0, 1) 720ms forwards; }
}
@keyframes menu-stagger {
  to { opacity: 1; transform: translateY(0); }
}

body.menu-open { overflow: hidden; }

/* ─────────────── Open an account: full-screen takeover form ─────────────── */
/* Darken html + body so iOS overscroll / address-bar reveal stays on-brand */
html:has(body.account-body),
body.account-body { background: var(--ink); }
.account {
  min-height: 100svh;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--f-display);
}
.account__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--page-x) 96px;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.account__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.18);
  position: sticky;
  top: 0;
  background: var(--ink);
  z-index: 10;
}
.account__head .wordmark { color: var(--ivory); }
.account__close {
  position: relative;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 0;
}
.account__close span {
  position: absolute;
  top: 50%;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--ivory);
}
.account__close span:first-child { transform: rotate(45deg); }
.account__close span:last-child { transform: rotate(-45deg); }

.account__progress {
  display: flex;
  gap: 8px;
  padding-top: 32px;
  padding-bottom: 8px;
}
.account__progress-step {
  flex: 1 1 0;
  height: 2px;
  background: rgba(244, 239, 230, 0.18);
  transition: background 360ms cubic-bezier(0.2, 0, 0, 1);
}
.account__progress-step.is-done,
.account__progress-step.is-current { background: var(--ivory); }

.account__progress-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.55);
  margin: 12px 0 32px;
  display: flex;
  justify-content: space-between;
}

.account__step {
  display: none;
  flex: 1 1 0;
  flex-direction: column;
  padding: 16px 0 24px;
}
.account__step.is-active { display: flex; }
@media (prefers-reduced-motion: no-preference) {
  .account__step.is-active {
    animation: account-step-in 480ms cubic-bezier(0.2, 0, 0, 1) both;
  }
}
@keyframes account-step-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.account__step-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
}
.account__step-title {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ivory);
}
.account__step-title em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 300;
}
.account__step-help {
  margin: 16px 0 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: rgba(244, 239, 230, 0.72);
  max-width: 580px;
}
.account__step-body {
  margin-top: clamp(32px, 4vw, 48px);
}

/* Chips: single-select and multi-select pickers */
.account__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.account__chip {
  display: inline-flex;
  align-items: center;
  padding: 14px 22px;
  border: 1px solid rgba(244, 239, 230, 0.32);
  background: transparent;
  color: var(--ivory);
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 120ms cubic-bezier(0.2, 0, 0, 1);
}
.account__chip:hover {
  background: rgba(244, 239, 230, 0.08);
  border-color: rgba(244, 239, 230, 0.55);
}
.account__chip:active { transform: scale(0.97); }
.account__chip.is-selected {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}

/* Big tactile chip cards (used for product picker on step 1) */
.account__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.account__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 24px;
  border: 1px solid rgba(244, 239, 230, 0.32);
  background: transparent;
  color: var(--ivory);
  text-align: left;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease, transform 120ms cubic-bezier(0.2, 0, 0, 1);
}
.account__card:hover {
  background: rgba(244, 239, 230, 0.06);
  border-color: rgba(244, 239, 230, 0.55);
}
.account__card:active { transform: scale(0.99); }
.account__card.is-selected {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}
.account__card-title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
}
.account__card-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.55);
}
.account__card.is-selected .account__card-meta { color: var(--ink-mute); }

/* Buckets: portfolio item with optional amount sub-selection */
.account__buckets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.account__bucket {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(244, 239, 230, 0.18);
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
  width: 100%;
  font-family: var(--f-display);
  font-weight: 300;
  transition: border-color 200ms ease, background 200ms ease;
}
.account__bucket:hover { background: rgba(244, 239, 230, 0.04); }
.account__bucket.is-selected { border-color: var(--ivory); background: rgba(244, 239, 230, 0.04); }
.account__bucket-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-size: 17px;
}
.account__bucket-row::after {
  content: '+';
  font-family: var(--f-mono);
  font-size: 18px;
  font-weight: 300;
  color: rgba(244, 239, 230, 0.5);
  transition: transform 240ms cubic-bezier(0.2, 0, 0, 1);
}
.account__bucket.is-selected .account__bucket-row::after {
  content: '−';
  color: var(--gold-soft);
  transform: rotate(180deg);
}
.account__bucket-amounts {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 22px 18px;
}
.account__bucket.is-selected .account__bucket-amounts { display: flex; }
.account__bucket-amount {
  padding: 8px 14px;
  border: 1px solid rgba(244, 239, 230, 0.22);
  background: transparent;
  color: var(--ivory);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.account__bucket-amount:hover { background: rgba(244, 239, 230, 0.08); }
.account__bucket-amount.is-selected {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}

/* Inputs */
.account__field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 28px; }
.account__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 28px;
}
.account__field-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.55);
}
.account__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.28);
  padding: 10px 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 20px;
  color: var(--ivory);
  outline: none;
  transition: border-color 200ms ease;
}
.account__input:focus { border-bottom-color: var(--ivory); }
.account__input::placeholder { color: rgba(244, 239, 230, 0.32); font-style: italic; }
@media (max-width: 540px) {
  .account__field-row { grid-template-columns: 1fr; gap: 28px; }
}

/* Textarea variant of the input (used for the optional message at the end) */
.account__textarea {
  border: 1px solid rgba(244, 239, 230, 0.28);
  border-bottom: 1px solid rgba(244, 239, 230, 0.28);
  padding: 14px 16px;
  font-size: 17px;
  line-height: 1.55;
  min-height: 96px;
  resize: vertical;
  font-family: var(--f-display);
}
.account__textarea:focus {
  border-color: var(--ivory);
}

/* Experience step: two conditional blocks (whisky and/or gold) */
.account__experience-block + .account__experience-block { margin-top: 36px; }
.account__experience-block[hidden] { display: none; }
.account__experience-label {
  display: block;
  margin-bottom: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory);
}

/* Inline form-field validation messages (used by /js/form-validate.js) */
.field-msg {
  margin: 6px 0 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.4;
  min-height: 0;
}
.field-msg:empty { display: none; }
.field-msg--err {
  color: #d97a6c;
  font-style: italic;
}
.field-msg--sug { color: var(--gold-soft); }
.field-msg-btn {
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: inherit;
  font: inherit;
  padding: 0 0 1px;
  margin: 0 2px;
  cursor: pointer;
}
.field-msg-btn:hover { color: var(--ivory); }
/* On ivory backgrounds (guide form sits on dark, contact form on ivory) */
.contact__field .field-msg--err { color: #b04332; }
.contact__field .field-msg--sug { color: var(--ink); }
.contact__field .field-msg-btn:hover { color: var(--oak); }

/* Calendar slot picker (book-a-call step 2) */
.account__cal {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.account__cal-col { display: flex; flex-direction: column; min-width: 0; }
.account__cal-dates {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
}
.account__cal-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 12px;
  border: 1px solid rgba(244, 239, 230, 0.32);
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 120ms cubic-bezier(0.2, 0, 0, 1);
}
.account__cal-date:hover {
  background: rgba(244, 239, 230, 0.06);
  border-color: rgba(244, 239, 230, 0.55);
}
.account__cal-date:active { transform: scale(0.97); }
.account__cal-date.is-selected {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}
.account__cal-date-day {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.account__cal-date-num {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 30px;
  line-height: 1;
}
.account__cal-date-mon {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}
.account__cal-date.is-selected .account__cal-date-mon { opacity: 0.6; }
.account__cal-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 8px;
}
.account__cal-slot {
  padding: 14px 8px;
  border: 1px solid rgba(244, 239, 230, 0.32);
  background: transparent;
  color: var(--ivory);
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 120ms cubic-bezier(0.2, 0, 0, 1);
}
.account__cal-slot:hover {
  background: rgba(244, 239, 230, 0.08);
  border-color: rgba(244, 239, 230, 0.55);
}
.account__cal-slot:active { transform: scale(0.97); }
.account__cal-slot.is-selected {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}
.account__cal-empty {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 15px;
  font-style: italic;
  color: rgba(244, 239, 230, 0.5);
}
@media (max-width: 720px) {
  .account__cal-dates { grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 8px; }
  .account__cal-date { padding: 14px 8px; }
  .account__cal-date-num { font-size: 24px; }
  .account__cal-slots { grid-template-columns: repeat(auto-fill, minmax(82px, 1fr)); }
  .account__cal-slot { padding: 12px 6px; font-size: 12px; }
}
@media (min-width: 720px) {
  .account__cal { grid-template-columns: minmax(240px, 280px) 1fr; gap: 40px; }
  .account__cal-dates {
    grid-template-columns: 1fr;
    gap: 8px;
    max-height: 460px;
    overflow-y: auto;
    padding-right: 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(244, 239, 230, 0.3) transparent;
  }
  .account__cal-date {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 14px 18px;
    gap: 14px;
  }
  .account__cal-date-num { font-size: 22px; }
  .account__cal-slots {
    grid-template-columns: repeat(auto-fill, minmax(86px, 1fr));
    max-height: 460px;
    overflow-y: auto;
    padding-right: 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(244, 239, 230, 0.3) transparent;
  }
}
@media (min-width: 980px) {
  .book-body .account__inner { max-width: 1040px; }
}

/* Summary block on the final step */
.account__summary {
  border: 1px solid rgba(244, 239, 230, 0.18);
  margin: 32px 0;
}
.account__summary-row {
  display: grid;
  grid-template-columns: 0.7fr 1.6fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.1);
  font-family: var(--f-display);
}
.account__summary-row:last-child { border-bottom: none; }
.account__summary-row .lot { color: rgba(244, 239, 230, 0.5); }
.account__summary-row .value {
  color: var(--ivory);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.4;
}
.account__summary-row .edit {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
}
.account__summary-row .edit:hover { color: var(--ivory); }

/* Bottom navigation (Back / Next or Submit) */
.account__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: clamp(40px, 6vw, 64px);
  padding-top: 24px;
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  gap: 16px;
}
.account__back, .account__next, .account__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 0;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--ivory);
  background: transparent;
  color: var(--ivory);
  transition: background 200ms ease, color 200ms ease;
}
.account__back { padding-left: 16px; }
.account__back::before { content: '←'; font-family: var(--f-display); }
.account__next::after,
.account__submit::after { content: '→'; font-family: var(--f-display); }
.account__next, .account__submit {
  background: var(--ivory);
  color: var(--ink);
}
.account__back[hidden],
.account__next[hidden],
.account__submit[hidden],
.account__skip[hidden] { display: none; }
.account__next:hover,
.account__submit:hover {
  background: transparent;
  color: var(--ivory);
}
.account__back:hover { background: rgba(244, 239, 230, 0.08); }
.account__back:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.account__next:disabled,
.account__submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: rgba(244, 239, 230, 0.4);
}

.account__skip {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.5);
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.account__skip:hover { color: var(--ivory); }

.account__success {
  display: none;
  flex: 1 1 0;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 48px 0;
}
.account__success.is-active { display: flex; }
.account__success h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  margin: 0 0 16px;
}
.account__success h2 em { font-style: italic; color: var(--gold-soft); }
.account__success p {
  max-width: 520px;
  margin: 0 auto 24px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(244, 239, 230, 0.78);
}

/* ─────────────── Hero (viewport-fit) ─────────────── */
.hero {
  background: var(--ivory);
  min-height: calc(100svh - 84px);
  padding: 24px 0 32px;
  display: flex;
  align-items: center;
}
.hero .wrap { width: 100%; }
.hero__masthead {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 10px;
  margin-bottom: 28px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
}
.hero__title {
  margin: 16px 0 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero__title em { font-weight: 300; font-style: italic; color: var(--oak); }
.hero__lede {
  margin-top: 20px;
  max-width: 480px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.5;
  color: var(--ink-2);
}
.hero__cta { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero__reviews {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 40px);
  margin: 32px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--hairline);
  list-style: none;
  align-items: baseline;
}
.hero__reviews li {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.hero__reviews li > .lot { min-width: 56px; }
.hero__review-score {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 300;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.hero__review-score small { font-size: 12px; color: var(--ink-mute); }
.hero__review-count {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.14em;
}

/* ─────────────── Hero — product page variant (compact 2-col spread) ─────────────── */
/* Tighter rhythm than the old letterbox layout. Copy left, image right. */
.hero--product {
  display: block;
  min-height: 0;
  padding: 32px 0 32px;
  align-items: stretch;
}
.hero--product .hero__masthead { display: none; }

.hero__chapter {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--f-mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 32px;
}
.hero__chapter span:last-child {
  letter-spacing: 0.22em;
  color: var(--ink-mute);
}

.hero__wordmark {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(96px, 17vw, 260px);
  line-height: 0.84;
  letter-spacing: -0.05em;
  color: var(--ink);
}
.hero__wordmark em {
  font-style: italic;
  color: var(--oak);
  font-weight: 300;
}

/* Product hero row: copy stack on the left, image on the right */
.hero--product .hero__row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 4.5vw, 72px);
  align-items: stretch;
}
.hero--product .hero__copy-stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.hero--product .hero__caption {
  margin: 0;
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero--product .hero__wordmark {
  position: static;
  margin: 0;
  font-size: clamp(56px, 7.5vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
  background-image: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  white-space: normal;
}
.hero--product .hero__wordmark em {
  color: var(--oak);
  -webkit-text-fill-color: var(--oak);
}
.hero--product .hero__subhead {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.hero--product .hero__subhead em {
  font-style: italic;
  color: var(--oak);
  font-weight: 300;
}
.hero--product .hero__lede {
  margin: 0;
  max-width: 480px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
}
.hero--product .hero__cta {
  margin: 4px 0 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__plate {
  width: 100%;
  background-size: cover;
  background-position: center;
  filter: saturate(0.88) contrast(1) sepia(0.06) brightness(0.96);
}
.hero--product .hero__plate {
  margin: 0;
  height: 100%;
  min-height: 360px;
  aspect-ratio: auto;
  position: relative;
}
.hero--product .hero__plate::after { display: none; }

.hero__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 36px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--ink);
  list-style: none;
  padding-left: 0;
}
.hero__facts li {
  padding: 8px 18px 8px 0;
  border-right: 1px solid var(--hairline);
}
.hero__facts li:last-child { border-right: none; padding-right: 0; }
.hero__facts li:not(:first-child) { padding-left: 18px; }
.hero__facts .lot {
  display: block;
  margin-bottom: 6px;
}
.hero__facts strong {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.2;
  color: var(--oak);
}

@media (max-width: 980px) {
  .hero--product .hero__row { grid-template-columns: 1fr; gap: 28px; }
  .hero--product .hero__plate {
    aspect-ratio: 16 / 10;
    min-height: 0;
    height: auto;
    order: 2;
  }
  .hero--product .hero__copy-stack { order: 1; }
  .hero__facts { grid-template-columns: 1fr 1fr; }
  .hero__facts li { padding: 12px 18px 12px 0; }
  .hero__facts li:nth-child(odd) { border-right: 1px solid var(--hairline); }
  .hero__facts li:nth-child(even) { border-right: none; padding-right: 0; padding-left: 18px; }
  .hero__facts li:nth-child(1),
  .hero__facts li:nth-child(2) { border-bottom: 1px solid var(--hairline); }
  .hero__facts li:not(:first-child) { padding-left: 18px; }
  .hero__facts li:nth-child(odd):not(:first-child) { padding-left: 0; }
}
@media (max-width: 640px) {
  .hero--product { padding: 24px 0 28px; }
  .hero--product .hero__plate { aspect-ratio: 3 / 2; }
  .hero--product .hero__wordmark { font-size: clamp(56px, 16vw, 96px); }
  .hero--product .hero__subhead { font-size: clamp(20px, 5.4vw, 28px); }
  .hero__chapter {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    letter-spacing: 0.22em;
    margin-bottom: 24px;
  }
  .hero__facts { grid-template-columns: 1fr; }
  .hero__facts li,
  .hero__facts li:nth-child(odd),
  .hero__facts li:nth-child(even) {
    padding: 12px 0;
    border-right: none;
    border-bottom: 1px solid var(--hairline);
  }
  .hero__facts li:last-child { border-bottom: none; }
}

.plates {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
}
.plate {
  width: 100%;
  background-size: cover;
  background-position: center;
  filter: saturate(0.78) contrast(0.95) sepia(0.18);
}
.plate--hero {
  flex: 1 1 0;
  min-height: 280px;
  background-image: url('../assets/warehouse.webp');
}
.plate-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

@media (max-width: 980px) {
  .plate--hero { aspect-ratio: 16 / 10; min-height: 0; flex: none; }
  .plates { min-height: 0; }
}

/* Short laptops: trim further so everything fits */
@media (max-height: 820px) and (min-width: 981px) {
  .hero { padding: 16px 0 24px; }
  .hero__masthead { margin-bottom: 20px; padding-bottom: 8px; }
  .hero__title { font-size: clamp(36px, 4vw, 56px); margin-top: 12px; }
  .hero__lede { margin-top: 16px; font-size: 15px; }
  .hero__cta { margin-top: 20px; }
  .hero__reviews { margin-top: 22px; padding-top: 16px; }
  .pill { height: 44px; }
  .plates { gap: 6px; }
}

@media (max-height: 720px) and (min-width: 981px) {
  .hero__title { font-size: clamp(32px, 3.6vw, 48px); }
}

/* Tablet and below: release viewport lock, allow natural flow */
@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 28px 0 56px;
    align-items: stretch;
  }
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__masthead { margin-bottom: 24px; }
  .hero__reviews { margin-top: 24px; }
}

@media (max-width: 600px) {
  .hero__title { font-size: clamp(34px, 9vw, 52px); }
  .hero__masthead { flex-wrap: wrap; gap: 6px; }
  .hero__reviews li > .lot { min-width: 0; }
}

/* ─────────────── Press strip ─────────────── */
.press {
  background: var(--paper);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.press__inner {
  padding: 28px var(--page-x);
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.press__list {
  display: flex; gap: clamp(28px, 4vw, 56px);
  align-items: center;
  flex-wrap: wrap;
}
.press__list span { white-space: nowrap; color: var(--ink); }
.press-bi { font-family: var(--f-mono); font-weight: 500; font-size: 11px; letter-spacing: 0.2em; }
.press-forbes { font-family: var(--f-display); font-style: italic; font-size: 22px; }
.press-gj { font-family: var(--f-display); font-size: 18px; }
.press-times { font-family: var(--f-display); font-style: italic; font-weight: 500; font-size: 22px; }
.press-economist { font-family: var(--f-display); font-weight: 500; font-size: 18px; }
.press-bloomberg { font-family: var(--f-mono); font-weight: 500; font-size: 13px; letter-spacing: 0.1em; }
.press-ft { font-family: var(--f-display); font-style: italic; font-weight: 500; font-size: 20px; }

@media (max-width: 860px) {
  .press__inner { flex-wrap: wrap; gap: 16px; }
}

/* ─────────────── Tax section (dark) ─────────────── */
.tax__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 96px;
  align-items: end;
}
.tax__title {
  margin: 24px 0 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ivory);
}
.tax__title em { color: var(--gold-soft); font-style: italic; }
.tax__copy {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(244, 239, 230, 0.85);
}
.tax__copy em { font-style: italic; color: var(--gold-soft); }
.tax__split {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.tax__split > div {
  background: var(--ink);
  padding: 32px 28px;
}
.tax__split-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.tax__split-title {
  margin-top: 14px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 26px;
  font-weight: 400;
  color: var(--ivory);
}
.tax__split-meta {
  margin-top: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: rgba(244, 239, 230, 0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.tax__disclaimer {
  margin-top: 20px;
  font-family: var(--f-mono);
  font-size: 10px;
  color: rgba(244, 239, 230, 0.5);
  letter-spacing: 0.08em;
  line-height: 1.7;
}
@media (max-width: 980px) {
  .tax__grid { grid-template-columns: 1fr; gap: 32px; }
  .tax__split { grid-template-columns: 1fr; }
}

/* ─────────────── Stats ─────────────── */
.stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.stats__cell {
  padding: 56px 32px;
  border-right: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stats__cell:last-child { border-right: none; }
.stats__num {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.stats__label {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 19px;
  font-weight: 400;
  color: var(--oak);
}
.stats__sub {
  margin-top: 6px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
@media (max-width: 860px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stats__cell { border-right: none; border-bottom: 1px solid var(--hairline); padding: 40px 0; }
  .stats__cell:last-child { border-bottom: none; }
}

/* ─────────────── Asset split (used for casks, sovereigns, app, operations) ─────────────── */
.asset-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 96px;
  align-items: start;
}
.asset-split--reverse { grid-template-columns: 1fr 1.1fr; }
.asset-split--reverse .asset-split__copy { order: 2; }
.asset-split--reverse .asset-split__media { order: 1; }
.asset-split__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 36px;
}
.asset-split__title {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.asset-split__title em { font-weight: 300; font-style: italic; color: var(--oak); }
.asset-split__copy p {
  margin-top: 32px;
  max-width: 480px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
}
.asset-split__bullets {
  margin-top: 36px;
  border-top: 1px solid var(--hairline);
}
.asset-split__bullets > div {
  display: grid;
  grid-template-columns: 60px 1fr 0.8fr;
  gap: 24px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
}
.asset-split__bullets .b-num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.asset-split__bullets .b-label {
  font-family: var(--f-display);
  font-size: 17px;
  color: var(--ink);
}
.asset-split__bullets .b-value {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: right;
}
.asset-split__cta { margin-top: 36px; }
.asset-split__plate {
  width: 100%;
  aspect-ratio: 5 / 6;
  background-size: cover;
  background-position: center;
  filter: saturate(0.78) contrast(0.95) sepia(0.16);
}
.asset-split__plate--gold {
  background-image: url('../assets/sovereign.webp');
}
.asset-split__plate--app {
  filter: none;
  background-color: var(--paper);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Stretch modifier: image fills left column's height instead of dictating its own */
.asset-split--stretch { align-items: stretch; }
.asset-split--stretch .asset-split__media {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.asset-split--stretch .asset-split__plate {
  flex: 1 1 0;
  min-height: 280px;
  aspect-ratio: auto;
}
.asset-split__caption {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
@media (max-width: 980px) {
  .asset-split, .asset-split--reverse { grid-template-columns: 1fr; gap: 48px; }
  .asset-split--reverse .asset-split__copy { order: 1; }
  .asset-split--reverse .asset-split__media { order: 2; }
  .asset-split__plate { aspect-ratio: 4 / 3; }
}

/* ─────────────── How it works ─────────────── */
.how__head { text-align: center; margin-bottom: 80px; }
.how__title {
  margin: 20px auto 0;
  max-width: 820px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.how__title em { font-style: italic; color: var(--oak); font-weight: 300; }
.how__list { border-top: 1px solid var(--ink); }
.how__row {
  display: grid;
  grid-template-columns: 120px 1fr 1.4fr;
  gap: 40px;
  padding: 44px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: start;
}
.how__roman {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 44px;
  font-weight: 300;
  color: var(--gold);
  line-height: 0.9;
}
.how__row-title {
  margin-top: 12px;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  color: var(--ink);
}
.how__row p {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
}
@media (max-width: 860px) {
  .how__row { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
  .how__roman { font-size: 40px; }
}

/* ─────────────── Exits ledger ─────────────── */
.exits__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 96px;
  align-items: start;
}
.exits__head h2 {
  margin: 24px 0 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.exits__head h2 em { font-style: italic; color: var(--oak); font-weight: 300; }
.exits__head p {
  margin-top: 28px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
}
.ledger { width: 100%; }
.ledger__head {
  display: grid;
  grid-template-columns: 60px 0.7fr 1.6fr 0.7fr 0.8fr;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--ink);
}
.ledger__head span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.ledger__head span:nth-child(4),
.ledger__head span:nth-child(5) { text-align: right; }
.ledger__row {
  display: grid;
  grid-template-columns: 60px 0.7fr 1.6fr 0.7fr 0.8fr;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid var(--hairline);
}
.ledger__lot {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.12em;
}
.ledger__class {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ledger__class--cask { color: var(--oak); }
.ledger__class--sovereign { color: var(--gold); }
.ledger__desc {
  font-family: var(--f-display);
  font-size: 19px;
  color: var(--ink);
}
.ledger__held {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--ink);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.ledger__return {
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--ink);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 980px) {
  .exits__grid { grid-template-columns: 1fr; gap: 48px; }
  .ledger__head, .ledger__row {
    grid-template-columns: 50px 1fr 0.7fr;
    grid-template-areas:
      "lot class held"
      "lot desc return";
    row-gap: 8px;
  }
  .ledger__head { display: none; }
  .ledger__row { padding: 20px 0; }
  .ledger__lot { grid-area: lot; }
  .ledger__class { grid-area: class; }
  .ledger__desc { grid-area: desc; font-size: 16px; }
  .ledger__held { grid-area: held; text-align: right; }
  .ledger__return { grid-area: return; font-size: 20px; text-align: right; }
}

/* ─────────────── Activity (simple 3-col list) ─────────────── */
.activity__head,
.activity__row {
  display: grid;
  grid-template-columns: 2fr 0.7fr 1.4fr;
  gap: 24px;
  align-items: baseline;
}
.activity__head {
  padding: 0 0 14px;
  border-bottom: 1px solid var(--ink);
}
.activity__head span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.activity__head span:nth-child(2),
.activity__head span:nth-child(3) { text-align: right; }
.activity__row {
  padding: 24px 0;
  border-bottom: 1px solid var(--hairline);
}
.activity__what {
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--ink);
}
.activity__held {
  font-family: var(--f-mono);
  font-size: 13px;
  text-align: right;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.activity__sold {
  font-family: var(--f-display);
  font-size: 18px;
  text-align: right;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
@media (max-width: 720px) {
  .activity__head { display: none; }
  .activity__row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 18px 0;
  }
  .activity__held, .activity__sold { text-align: left; }
}

/* ─────────────── Testimonials ─────────────── */
.testi__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 96px;
  align-items: start;
}
.testi__head h2 {
  margin: 24px 0 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.testi__head h2 em { font-style: italic; color: var(--oak); font-weight: 300; }
.testi__head p {
  margin-top: 28px;
  max-width: 380px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
}
.testi__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.testi__card {
  background: var(--ivory);
  padding: 32px 28px;
  border: 1px solid var(--hairline);
}
.testi__card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
}
.testi__card-quote {
  margin: 20px 0 0;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
}
.testi__card-meta {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--f-display);
  font-size: 16px;
  color: var(--ink);
}
.testi__card-meta em { color: var(--ink-mute); font-style: italic; }
@media (max-width: 980px) {
  .testi__grid { grid-template-columns: 1fr; gap: 48px; }
  .testi__cards { grid-template-columns: 1fr; gap: 24px; }
}

/* ─────────────── FAQ ─────────────── */
.faq__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 96px;
  align-items: start;
}
.faq__head h2 {
  margin: 24px 0 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.faq__head h2 em { font-style: italic; color: var(--oak); font-weight: 300; }
.faq__list { border-top: 1px solid var(--ink); }
.faq__item { border-bottom: 1px solid var(--hairline); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 60px 1fr 32px;
  gap: 16px;
  align-items: baseline;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.faq__item summary .q {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
}
.faq__item summary .pm {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 28px;
  text-align: right;
  color: var(--ink-mute);
}
.faq__item[open] summary .pm::before { content: "−"; }
.faq__item:not([open]) summary .pm::before { content: "+"; }
.faq__item p {
  margin: 0;
  padding: 0 0 28px 76px;
  max-width: 720px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
}
@media (max-width: 980px) {
  .faq__grid { grid-template-columns: 1fr; gap: 32px; }
  .faq__item summary .q { font-size: 18px; }
  .faq__item p { padding-left: 60px; font-size: 15px; }
}

/* ─────────────── CTA ─────────────── */
.cta {
  background: var(--ink);
  color: var(--ivory);
  padding: 160px var(--page-x);
}
.cta__inner { max-width: var(--container); margin: 0 auto; }
.cta__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 96px;
  align-items: end;
}
.cta__title {
  margin: 28px 0 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--ivory);
}
.cta__title em { font-style: italic; color: var(--gold-soft); font-weight: 300; }
.cta__copy {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ivory);
  opacity: 0.85;
}
.cta__buttons { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }
@media (max-width: 980px) {
  .cta { padding: 96px var(--page-x); }
  .cta__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ─────────────── Footer ─────────────── */
.foot {
  background: var(--ink);
  color: var(--ivory);
  padding: 80px var(--page-x) 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.foot__inner { max-width: var(--container); margin: 0 auto; }
.foot__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.foot__intro {
  margin-top: 28px;
  max-width: 380px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244, 239, 230, 0.7);
}
.foot__reg {
  margin-top: 24px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.foot__col h5 {
  margin: 0;
  font-family: var(--f-mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.foot__col ul {
  margin: 20px 0 0; padding: 0;
  list-style: none;
  display: flex; flex-direction: column;
  gap: 12px;
}
.foot__col a {
  font-family: var(--f-display);
  font-size: 16px;
  color: rgba(244, 239, 230, 0.85);
}
.foot__col a:hover { color: var(--ivory); }
.foot__legal {
  padding-top: 32px;
  font-family: var(--f-mono);
  font-size: 10px;
  line-height: 1.7;
  color: rgba(244, 239, 230, 0.5);
  letter-spacing: 0.04em;
  max-width: 1100px;
}
@media (max-width: 980px) {
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .foot__grid { grid-template-columns: 1fr; }
}

/* ─────────────── Guide form (mid-roll lead capture) ─────────────── */
.guide__box {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(40px, 5.5vw, 80px);
}
.guide__box .guide__copy .lot { color: var(--gold-soft); }
.guide__box .guide__title { color: var(--ivory); }
.guide__box .guide__title em { color: var(--gold-soft); }
.guide__box .guide__lede { color: rgba(244, 239, 230, 0.78); }
.guide__box .guide__bullets { border-top-color: rgba(244, 239, 230, 0.18); }
.guide__box .guide__bullets li {
  border-bottom-color: rgba(244, 239, 230, 0.18);
  color: rgba(244, 239, 230, 0.85);
}
.guide__box .guide__bullets li::before { color: var(--gold-soft); }
.guide__box .guide__form-wrap { border: none; }

.guide__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.guide__copy .lot { display: inline-block; margin-bottom: 14px; }
.guide__title {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.guide__title em { font-style: italic; color: var(--oak); font-weight: 300; }
.guide__lede {
  margin: 24px 0 0;
  max-width: 480px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
}
.guide__bullets {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--hairline);
}
.guide__bullets li {
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink-2);
}
.guide__bullets li::before {
  content: counter(guide-counter, decimal-leading-zero);
  counter-increment: guide-counter;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  padding-top: 4px;
}
.guide__bullets { counter-reset: guide-counter; }

.guide__form-wrap {
  background: var(--ivory);
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--ink);
}
.guide__form-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 28px;
}
.guide__form-title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
  color: var(--oak);
  margin: 0;
}
.guide__form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.guide__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 480px) {
  .guide__field-row { grid-template-columns: 1fr; gap: 22px; }
}
.guide__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.guide__field .lot { padding-bottom: 4px; }
.guide__field input {
  border: 0;
  border-bottom: 1px solid var(--hairline-2);
  background: transparent;
  padding: 8px 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 18px;
  color: var(--ink);
  outline: none;
  transition: border-color 200ms ease;
}
.guide__field input:focus {
  border-bottom-color: var(--ink);
}
.guide__field input::placeholder {
  color: var(--ink-faint);
  font-style: italic;
}
.guide__consent {
  margin: 4px 0 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}
.guide__form button {
  width: 100%;
  margin-top: 4px;
}
.guide__small {
  margin: 8px 0 0;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: center;
}
@media (max-width: 980px) {
  .guide__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ─────────────── Talk strip (end-roll book-a-call) ─────────────── */
.talk__strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding-top: 48px;
  border-top: 1px solid var(--ink);
}
.talk__copy .lot { display: inline-block; margin-bottom: 12px; }
.talk__title {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.talk__title em { font-style: italic; color: var(--oak); font-weight: 300; }
.talk__lede {
  margin: 12px 0 0;
  max-width: 560px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
}
@media (max-width: 720px) {
  .talk__strip { grid-template-columns: 1fr; gap: 28px; }
}

/* ─────────────── Pillars (3-up cards used on product pages) ─────────────── */
.pillars__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}
.pillars__head .lot { display: inline-block; margin-bottom: 18px; }
.pillars__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.pillars__title em { font-style: italic; color: var(--oak); font-weight: 300; }
.pillars__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.pillar {
  padding: 56px 36px 56px 0;
  border-right: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
}
.pillar:last-child { border-right: none; padding-right: 0; }
.pillar:not(:first-child) { padding-left: 36px; }
.pillar__num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 56px;
  color: var(--gold);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.pillar__label {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.2;
  color: var(--oak);
  margin: 0 0 14px;
}
.pillar__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin: 0 0 16px;
  color: var(--ink);
}
.pillar p {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}
@media (max-width: 980px) {
  .pillars__row { grid-template-columns: 1fr; }
  .pillar {
    padding: 44px 0;
    border-right: none;
    border-bottom: 1px solid var(--hairline);
  }
  .pillar:last-child { border-bottom: none; padding-bottom: 0; }
  .pillar:not(:first-child) { padding-left: 0; }
  .pillar__num { font-size: 48px; }
}

/* ─────────────── Reason list (numbered narrative used in why-hold) ─────────────── */
.reason__list {
  border-top: 1px solid var(--ink);
}
.reason__row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: start;
}
.reason__row:last-child { border-bottom: 1px solid var(--ink); }
.reason__num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 48px;
  color: var(--gold);
  line-height: 0.85;
  letter-spacing: -0.02em;
}
.reason__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 12px;
}
.reason__row p {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}
@media (max-width: 640px) {
  .reason__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 32px 0;
  }
  .reason__num { font-size: 40px; }
}

/* ─────────────── Motion ─────────────── */
@view-transition { navigation: auto; }

@keyframes om-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes om-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: no-preference) {
  /* Hero first-paint reveal, gently staggered */
  .hero__masthead { animation: om-fade-in   900ms ease 100ms both; }
  .hero .lot--gold { animation: om-fade-up 1000ms cubic-bezier(0.2,0,0,1)  350ms both; }
  .hero__chapter   { animation: om-fade-up 1000ms cubic-bezier(0.2,0,0,1)  200ms both; }
  .hero__title     { animation: om-fade-up 1100ms cubic-bezier(0.2,0,0,1)  550ms both; }
  .hero__plate     { animation: om-fade-in 1500ms ease 400ms both; }
  .hero__wordmark  { animation: om-fade-up 1300ms cubic-bezier(0.2,0,0,1)  900ms both; }
  .hero__caption   { animation: om-fade-in  900ms ease 1300ms both; }
  .hero__subhead   { animation: om-fade-up 1100ms cubic-bezier(0.2,0,0,1) 1300ms both; }
  .hero__copy-aside { animation: om-fade-up 1000ms cubic-bezier(0.2,0,0,1) 1500ms both; }
  .hero__lede      { animation: om-fade-up 1000ms cubic-bezier(0.2,0,0,1)  850ms both; }
  .hero__cta       { animation: om-fade-up 1000ms cubic-bezier(0.2,0,0,1) 1100ms both; }
  .hero__reviews   { animation: om-fade-up 1000ms cubic-bezier(0.2,0,0,1) 1300ms both; }
  .hero__facts     { animation: om-fade-up 1000ms cubic-bezier(0.2,0,0,1) 1700ms both; }
  .plates          { animation: om-fade-in 1500ms ease 400ms both; }

  /* Scroll-reveal: class added by JS to a curated list of targets */
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
      opacity   1100ms cubic-bezier(0.2, 0, 0, 1),
      transform 1100ms cubic-bezier(0.2, 0, 0, 1);
    will-change: opacity, transform;
  }
  .reveal.is-revealed { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════════════════════
   Paid-traffic landing page (/whisky-investment)
   Stripped-back nav, hero with above-fold form, honesty strip,
   numbers table, exits grid, prominent risk, mirrored final CTA.
   ════════════════════════════════════════════════════════════════════ */

.lp-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
  padding: 0 var(--page-x);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lp-nav__right { display: flex; align-items: center; gap: 24px; }
.lp-nav__phone { white-space: nowrap; }
.lp-nav__phone-label { display: none; }
@media (max-width: 720px) {
  .lp-nav { height: 64px; }
  .lp-nav__phone span:first-child { display: none; }
  .lp-nav__phone-label { display: inline; }
}

/* Hero with side-by-side form */
.lp-hero {
  background: var(--ivory);
  padding: clamp(48px, 7vw, 96px) var(--page-x) clamp(64px, 8vw, 112px);
}
.lp-hero__wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.lp-hero__copy { display: flex; flex-direction: column; gap: 22px; }
.lp-hero__eyebrow { display: inline-block; }
.lp-hero__title {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.lp-hero__title em { font-style: italic; color: var(--oak); font-weight: 300; }
.lp-hero__lede {
  margin: 0;
  max-width: 560px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--ink-2);
}
.lp-hero__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--hairline);
  padding-top: 22px;
}
.lp-hero__bullets li {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  padding-left: 24px;
  position: relative;
}
.lp-hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 14px; height: 1px;
  background: var(--oak);
}
.lp-hero__bullets strong {
  color: var(--ink);
  font-weight: 400;
  font-style: italic;
}

/* Form card (used in hero and final CTA) */
.lp-form-card {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(28px, 3.4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-form-card--ivory {
  background: var(--ivory);
  color: var(--ink);
  border: 1px solid var(--ink);
}
.lp-form-card__title {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.lp-form-card__title em { font-style: italic; color: var(--gold-soft); font-weight: 300; }
.lp-form-card--ivory .lp-form-card__title em { color: var(--oak); }
.lp-form-card__copy {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.85;
}
.lp-form { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.lp-form__field { display: flex; flex-direction: column; gap: 6px; }
.lp-form__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) {
  .lp-form__field-row { grid-template-columns: 1fr; gap: 16px; }
}
.lp-form__field .lot {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.6);
}
.lp-form-card--ivory .lp-form__field .lot { color: var(--ink-mute); }
.lp-form__field input {
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.32);
  padding: 10px 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 17px;
  color: var(--ivory);
  border-radius: 0;
}
.lp-form-card--ivory .lp-form__field input {
  border-bottom-color: var(--hairline);
  color: var(--ink);
}
.lp-form__field input::placeholder { color: rgba(244, 239, 230, 0.32); font-style: italic; }
.lp-form-card--ivory .lp-form__field input::placeholder { color: var(--ink-mute); }
.lp-form__field input:focus {
  outline: none;
  border-bottom-color: var(--ivory);
}
.lp-form-card--ivory .lp-form__field input:focus { border-bottom-color: var(--ink); }
.lp-form__submit { margin-top: 8px; align-self: flex-start; }
.lp-form-card--ivory .lp-form__submit { background: var(--ink); color: var(--ivory); }
.lp-form__note {
  margin: 4px 0 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(244, 239, 230, 0.55);
}
.lp-form__note a { color: var(--gold-soft); text-decoration: underline; }
.lp-form-card--ivory .lp-form__note { color: var(--ink-mute); }
.lp-form-card--ivory .lp-form__note a { color: var(--oak); }
.lp-form__alt { margin: 4px 0 0; }

/* Honesty strip (counter-position to hype) */
.lp-honesty { max-width: 920px; margin: 0 auto; }
.lp-honesty__title {
  margin: 14px 0 28px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ivory);
}
.lp-honesty__title em { font-style: italic; color: var(--gold-soft); font-weight: 300; }
.lp-honesty__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-top: 1px solid rgba(244, 239, 230, 0.18);
  padding-top: 28px;
}
.lp-honesty__list li {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: rgba(244, 239, 230, 0.85);
  padding-left: 26px;
  position: relative;
}
.lp-honesty__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 14px; height: 1px;
  background: var(--gold-soft);
}
.lp-honesty__list strong { color: var(--ivory); font-weight: 400; font-style: italic; }

/* Numbers / returns table */
.lp-numbers { max-width: 980px; margin: 0 auto; }
.lp-numbers__title {
  margin: 14px 0 24px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.lp-numbers__title em { font-style: italic; color: var(--oak); font-weight: 300; }
.lp-numbers__lede {
  margin: 0 0 36px;
  max-width: 720px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
}
.lp-numbers__table {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.lp-numbers__row {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 1fr;
  align-items: baseline;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 17px;
  color: var(--ink);
}
.lp-numbers__row:last-child { border-bottom: none; }
.lp-numbers__row--head {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 400;
  padding: 14px 0 12px;
}
.lp-numbers__row--note {
  grid-template-columns: 1.4fr 2.6fr;
  font-style: italic;
  color: var(--ink-mute);
  font-size: 15px;
}
.lp-numbers__row--note span:last-child { color: var(--ink-2); font-style: normal; }
.lp-numbers__row span:nth-child(2) { color: var(--oak); font-style: italic; }
.lp-numbers__source {
  margin: 28px 0 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-mute);
  font-style: italic;
}
.lp-numbers__source strong { color: var(--ink); font-style: normal; font-weight: 400; }

/* Tax cells */
.lp-tax { max-width: 1080px; margin: 0 auto; }
.lp-tax__title {
  margin: 14px 0 16px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ivory);
}
.lp-tax__title em { font-style: italic; color: var(--gold-soft); font-weight: 300; }
.lp-tax__lede {
  margin: 0 0 36px;
  max-width: 720px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(244, 239, 230, 0.78);
}
.lp-tax__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(244, 239, 230, 0.18);
}
.lp-tax__cell {
  padding: 36px 28px 36px 0;
  border-right: 1px solid rgba(244, 239, 230, 0.18);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-tax__cell:last-child { border-right: none; padding-right: 0; }
.lp-tax__cell:not(:first-child) { padding-left: 28px; }
.pillar__num--ivory {
  color: var(--gold-soft);
}
.lp-tax__cell h3 {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.25;
  color: var(--ivory);
}
.lp-tax__cell p {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244, 239, 230, 0.78);
}
.lp-tax__cell em { color: var(--gold-soft); font-style: italic; }
.lp-tax__caveat {
  margin: 36px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(244, 239, 230, 0.18);
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(244, 239, 230, 0.65);
}
.lp-tax__caveat strong { color: var(--ivory); font-weight: 400; }

/* Exits grid */
.lp-exits { display: flex; flex-direction: column; }
.lp-exits__row {
  display: grid;
  grid-template-columns: 0.7fr 2fr;
  gap: clamp(24px, 4vw, 64px);
  padding: 32px 0;
  border-top: 1px solid var(--hairline);
}
.lp-exits__row:last-child { border-bottom: 1px solid var(--hairline); }
.lp-exits__col-num {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-exits__col-num strong {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--oak);
  line-height: 1.1;
}
.lp-exits__col-body p {
  margin: 0 0 16px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 580px;
}
.lp-exits__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lp-exits__meta li {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
}
.lp-exits__meta .lot { display: block; margin-bottom: 4px; }
.lp-exits__note {
  margin: 28px 0 0;
  max-width: 720px;
  font-family: var(--f-display);
  font-weight: 300;
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-mute);
}

/* Trust strip */
.lp-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.lp-trust__cell {
  padding: 32px 24px 32px 0;
  border-right: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-trust__cell:last-child { border-right: none; padding-right: 0; }
.lp-trust__cell:not(:first-child) { padding-left: 24px; }
.lp-trust__cell strong {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.25;
  color: var(--ink);
}
.lp-trust__sub {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-mute);
}
.lp-trust__sub a { color: var(--oak); border-bottom: 1px solid currentColor; }

/* Risk disclaimer block */
.lp-risk { max-width: 920px; margin: 0 auto; }
.lp-risk__title {
  margin: 14px 0 28px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ivory);
}
.lp-risk__title em { font-style: italic; color: var(--gold-soft); font-weight: 300; }
.lp-risk__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid rgba(244, 239, 230, 0.18);
  padding-top: 24px;
}
.lp-risk__list li {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244, 239, 230, 0.85);
  padding-left: 26px;
  position: relative;
}
.lp-risk__list li::before {
  content: "·";
  position: absolute;
  left: 6px; top: 0;
  color: var(--gold-soft);
}
.lp-risk__list strong { color: var(--ivory); font-weight: 400; }

/* Final CTA mirror */
.lp-final {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.lp-final__copy { display: flex; flex-direction: column; gap: 18px; }
.lp-final__title {
  margin: 14px 0 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.lp-final__title em { font-style: italic; color: var(--oak); font-weight: 300; }
.lp-final__lede {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 520px;
}
.lp-final__lede a + a { margin-left: 4px; }

/* Minimal footer */
.lp-foot {
  background: var(--ink);
  color: var(--ivory);
  padding: 48px var(--page-x) 36px;
}
.lp-foot__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.18);
}
.lp-foot__line {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.55);
}
.lp-foot__risk {
  margin: 18px 0 0;
  max-width: 760px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(244, 239, 230, 0.55);
  font-style: italic;
}
.lp-foot__links {
  margin: 14px 0 0;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.55);
}
.lp-foot__links a { color: var(--gold-soft); }

/* ─────────────── LP additions: gold pill, hero image, form section, stats grid ─────────────── */
.pill--gold {
  background: var(--gold-soft);
  color: var(--ink);
  border-color: var(--gold-soft);
}
.pill--gold:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.lp-form-card--ivory .lp-form__submit,
.lp-form-card--ivory .lp-form__submit.pill--gold {
  background: var(--gold-soft);
  color: var(--ink);
  border-color: var(--gold-soft);
}
.lp-form-card--ivory .lp-form__submit:hover {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

/* Hero image (right side of LP hero) */
.lp-hero__image {
  width: 100%;
  height: 100%;
  min-height: 440px;
  background-size: cover;
  background-position: center;
  filter: saturate(0.92) contrast(1) brightness(0.96);
}

/* Hero CTA (under bullets) */
.lp-hero__cta {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Form section (after hero) */
.lp-form-section { padding-top: clamp(56px, 6vw, 88px); padding-bottom: clamp(56px, 6vw, 88px); }
.lp-form-section__wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.lp-form-section__copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-form-section__title {
  margin: 8px 0 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.lp-form-section__title em { font-style: italic; color: var(--oak); font-weight: 300; }
.lp-form-section__lede {
  margin: 0;
  max-width: 520px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
}
/* Scroll-pinned "Why whisky" section */
.lp-why {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(56px, 6vw, 96px) var(--page-x);
}
.lp-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: stretch;
}
.lp-why__media {
  position: relative;
}
.lp-why__sticky {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: calc(100vh - 96px);
}
.lp-why__title {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ivory);
}
.lp-why__title em { font-style: italic; color: var(--gold-soft); font-weight: 300; }
.lp-why__images {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 60vh;
  overflow: hidden;
}
.lp-why__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 700ms ease, transform 1400ms cubic-bezier(0.2, 0, 0, 1);
  filter: saturate(0.9) contrast(1) brightness(0.92);
}
.lp-why__image.is-active {
  opacity: 1;
  transform: scale(1);
}
.lp-why__image--chart {
  background: transparent;
  filter: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px clamp(8px, 2vw, 24px);
}
.lp-why__image--chart svg {
  width: 100%;
  height: 100%;
  max-height: 100%;
  display: block;
}
.lp-why__progress {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}
.lp-why__progress li {
  flex: 1;
  height: 2px;
  background: rgba(244, 239, 230, 0.18);
  transition: background 400ms ease;
}
.lp-why__progress li.is-active { background: var(--gold-soft); }

.lp-why__stages {
  display: flex;
  flex-direction: column;
}
.lp-why__stage {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 24px 0;
  opacity: 0.4;
  transition: opacity 600ms ease;
}
.lp-why__stage.is-active { opacity: 1; }
.lp-why__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.lp-why__stage h3 {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ivory);
}
.lp-why__stage h3 em { font-style: italic; color: var(--gold-soft); font-weight: 300; }
.lp-why__stage p {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(244, 239, 230, 0.78);
  max-width: 520px;
}

@media (max-width: 980px) {
  .lp-why__grid { grid-template-columns: 1fr; gap: 32px; }
  .lp-why__sticky { position: static; }
  .lp-why__images { aspect-ratio: 16 / 10; }
  .lp-why__stage { min-height: auto; padding: 24px 0; opacity: 1; }
  .lp-why__progress { display: none; }
}

.lp-guide-cards {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.lp-guide-cards li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  background: var(--ivory);
  border: 1px solid var(--hairline);
}
.lp-guide-cards__num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--oak);
  text-transform: uppercase;
}
.lp-guide-cards strong {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.25;
}
.lp-guide-cards span:last-child {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-2);
}
@media (max-width: 720px) {
  .lp-guide-cards { grid-template-columns: 1fr; }
}

/* Supply-story stats (replaces returns table) */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  margin: 32px 0 24px;
}
.lp-stats > article {
  padding: 36px 24px 36px 0;
  border-right: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-stats > article:last-child { border-right: none; padding-right: 0; }
.lp-stats > article:not(:first-child) { padding-left: 24px; }
.lp-stats__num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  color: var(--oak);
  margin-bottom: 4px;
}
.lp-stats > article strong {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.3;
  color: var(--ink);
}
.lp-stats > article p {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}

@media (max-width: 980px) {
  .lp-form-section__wrap { grid-template-columns: 1fr; gap: 32px; }
  .lp-stats { grid-template-columns: 1fr; }
  .lp-stats > article {
    padding: 24px 0;
    border-right: none;
    border-bottom: 1px solid var(--hairline);
  }
  .lp-stats > article:last-child { border-bottom: none; }
  .lp-stats > article:not(:first-child) { padding-left: 0; }
  .lp-hero__image { min-height: 280px; aspect-ratio: 16 / 10; }
}
@media (max-width: 720px) {
  .lp-hero__image { min-height: 240px; aspect-ratio: 4 / 3; }
}

/* LP responsive */
@media (max-width: 980px) {
  .lp-hero__wrap { grid-template-columns: 1fr; gap: 36px; }
  .lp-tax__grid { grid-template-columns: 1fr; }
  .lp-tax__cell {
    padding: 28px 0;
    border-right: none;
    border-bottom: 1px solid rgba(244, 239, 230, 0.18);
  }
  .lp-tax__cell:last-child { border-bottom: none; padding-bottom: 0; }
  .lp-tax__cell:not(:first-child) { padding-left: 0; }
  .lp-trust__grid { grid-template-columns: 1fr 1fr; }
  .lp-trust__cell {
    padding: 24px 18px 24px 0;
    border-bottom: 1px solid var(--hairline);
  }
  .lp-trust__cell:nth-child(odd) { border-right: 1px solid var(--hairline); }
  .lp-trust__cell:nth-child(even) { border-right: none; padding-left: 18px; padding-right: 0; }
  .lp-trust__cell:nth-last-child(-n+2) { border-bottom: none; }
  .lp-exits__row { grid-template-columns: 1fr; gap: 18px; }
  .lp-exits__meta { grid-template-columns: 1fr; gap: 12px; }
  .lp-final { grid-template-columns: 1fr; }
  .lp-numbers__row {
    grid-template-columns: 1fr;
    padding: 14px 0;
    gap: 4px;
  }
  .lp-numbers__row--head { display: none; }
  .lp-numbers__row span:first-child {
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-mute);
  }
  .lp-numbers__row--note { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .lp-trust__grid { grid-template-columns: 1fr; }
  .lp-trust__cell {
    padding: 20px 0;
    border-right: none;
    border-bottom: 1px solid var(--hairline);
  }
  .lp-trust__cell:last-child { border-bottom: none; }
  .lp-foot__row { flex-direction: column; align-items: flex-start; gap: 12px; }
}
