/* Editorial guide system */
.content-site-header {
  background: color-mix(in srgb, var(--porcelain) 92%, transparent);
}

.article-page,
.guide-index,
.about-page,
.legal-page {
  padding: clamp(2rem, 5vw, 5.5rem) var(--page-x) clamp(5rem, 9vw, 9rem);
}

.article-hero {
  position: relative;
  max-width: 1180px;
  margin: 0 auto clamp(2.5rem, 5vw, 5rem);
  padding: clamp(2rem, 6vw, 6.5rem);
  border: 1px solid var(--gold);
  background:
    radial-gradient(circle at 84% 22%, rgba(169, 182, 162, 0.2), transparent 24%),
    color-mix(in srgb, var(--paper) 90%, transparent);
  text-align: center;
}

.article-hero h1,
.guide-index h1,
.about-hero h1,
.legal-page h1 {
  max-width: 930px;
  margin: 0.5rem auto 1.25rem;
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.article-hero .section-label,
.about-hero .section-label {
  justify-content: center;
}

.article-hero .section-label::before,
.about-hero .section-label::before {
  display: none;
}

.article-dek,
.guide-index > header > p:last-child,
.about-hero > div > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  line-height: 1.35;
}

.article-byline {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 1.6rem;
  margin-top: 2rem;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-byline a {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.article-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--gold);
}

.article-corner-tl { top: 11px; left: 11px; border-top: 1px solid; border-left: 1px solid; }
.article-corner-tr { top: 11px; right: 11px; border-top: 1px solid; border-right: 1px solid; }
.article-corner-bl { bottom: 11px; left: 11px; border-bottom: 1px solid; border-left: 1px solid; }
.article-corner-br { right: 11px; bottom: 11px; border-right: 1px solid; border-bottom: 1px solid; }

.article-grid {
  display: grid;
  grid-template-columns: minmax(170px, 235px) minmax(0, 760px);
  justify-content: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 1.5rem;
  padding: 1.35rem 0;
  border-block: 1px solid var(--hairline);
}

.article-toc > p {
  margin: 0 0 0.85rem;
  color: var(--garnet);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-toc ol {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: toc;
}

.article-toc li {
  display: grid;
  grid-template-columns: 1.6rem 1fr;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.35;
  counter-increment: toc;
}

.article-toc li::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
}

.article-toc a:hover { color: var(--garnet); }

.article-content {
  min-width: 0;
}

.article-content > section,
.article-content > .faq-section,
.article-content > .related-guides {
  margin-top: clamp(4rem, 8vw, 7rem);
  scroll-margin-top: 2rem;
}

.article-content h2,
.about-story h2,
.legal-page h2 {
  margin: 0.35rem 0 1.3rem;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.article-content h3,
.about-story h3 {
  margin: 2rem 0 0.6rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 400;
  line-height: 1.15;
}

.article-content p,
.about-story p,
.legal-page p {
  max-width: 68ch;
}

.article-lead {
  margin: 2.5rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  line-height: 1.55;
}

.quick-answer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  margin-bottom: 2.5rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--gold);
  border-radius: 0 2.5rem 0 0;
  background: rgba(255, 253, 249, 0.72);
}

.quick-answer > span {
  color: var(--gold);
  font-size: 1.35rem;
}

.quick-answer h2 {
  margin: 0 0 0.35rem;
  color: var(--garnet);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.quick-answer p { margin: 0; }

.table-wrap {
  width: 100%;
  margin: 1.7rem 0;
  overflow-x: auto;
  border-block: 1px solid var(--hairline);
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  font-size: 0.83rem;
  line-height: 1.4;
}

.table-wrap th {
  color: var(--garnet);
  background: rgba(169, 182, 162, 0.14);
  font-size: 0.64rem;
  letter-spacing: 0.09em;
  text-align: left;
  text-transform: uppercase;
}

.table-wrap th,
.table-wrap td {
  padding: 0.9rem 0.8rem;
  border-bottom: 1px solid var(--hairline);
  vertical-align: top;
}

.table-wrap tr:last-child td { border-bottom: 0; }
.compact-table table { min-width: 470px; }

.style-card-grid,
.decision-grid,
.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1.8rem;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.style-card,
.decision-grid article,
.principle-grid article {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--paper);
}

.style-card > span,
.decision-grid article > span,
.principle-grid article > span,
.belief-list article > span {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.style-card h3,
.decision-grid h3,
.principle-grid h3 { margin-top: 0.7rem; }
.style-card p { font-size: 0.88rem; }
.style-card dl { margin: 1.4rem 0 0; }
.style-card dl > div { padding: 0.7rem 0; border-top: 1px solid var(--hairline); }
.style-card dt { color: var(--garnet); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.style-card dd { margin: 0.2rem 0 0; font-size: 0.78rem; line-height: 1.45; }

.quiz-bridge {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
  margin: clamp(4rem, 8vw, 7rem) 0;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--paper);
  background: var(--garnet);
  border-radius: 0 5rem 0 0;
}

.bridge-badge {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.25rem;
}

.quiz-bridge .section-label { color: #eadcbf; }
.quiz-bridge .section-label::before { background: #eadcbf; }
.quiz-bridge h2 { margin: 0.2rem 0; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.bridge-copy p { margin: 0; color: rgba(255, 255, 255, 0.8); font-size: 0.82rem; }
.quiz-bridge .primary-button { white-space: nowrap; background: var(--paper); color: var(--garnet); }

.tip-card,
.disclosure-note,
.launch-note {
  margin: 2rem 0;
  padding: 1.4rem 1.6rem;
  border-left: 3px solid var(--gold);
  background: rgba(169, 182, 162, 0.13);
}

.tip-card h3 { margin-top: 0; }
.tip-card p:last-child,
.disclosure-note p:last-child,
.launch-note p:last-child { margin-bottom: 0; }

.budget-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 1.5rem;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.budget-grid article { padding: 1.4rem; background: var(--paper); }
.budget-grid article > p { margin: 0; color: var(--garnet); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.budget-grid h3 { margin: 0.55rem 0; }
.budget-grid span { color: var(--ink-soft); font-size: 0.78rem; line-height: 1.45; }
.fine-print { color: var(--ink-soft); font-size: 0.72rem; }

.faq-list {
  margin-top: 1.5rem;
  border-top: 1px solid var(--hairline);
}

.faq-list details { border-bottom: 1px solid var(--hairline); }
.faq-list summary { cursor: pointer; padding: 1.2rem 2.2rem 1.2rem 0; font-family: var(--display); font-size: 1.2rem; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; float: right; margin-right: -2rem; color: var(--garnet); font-family: var(--body); }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details > div { padding: 0 2rem 1.25rem 0; color: var(--ink-soft); font-size: 0.88rem; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 1.5rem;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.related-grid a { padding: 1.3rem; background: var(--paper); transition: background 160ms ease; }
.related-grid a:hover { background: var(--sage-light); }
.related-grid span { color: var(--gold); font-size: 0.64rem; font-weight: 800; }
.related-grid h3 { margin: 0.75rem 0 0.5rem; font-size: 1.3rem; }
.related-grid p { margin: 0; color: var(--ink-soft); font-size: 0.75rem; line-height: 1.45; }

.club-list { display: grid; gap: 1.25rem; }
.club-card { display: grid; grid-template-columns: 160px 1fr; border: 1px solid var(--hairline); background: var(--paper); }
.club-rank { padding: 1.5rem; background: var(--sage-light); }
.club-rank span { color: var(--garnet); font-family: var(--display); font-size: 2.8rem; }
.club-rank p { font-size: 0.72rem; font-weight: 800; line-height: 1.35; text-transform: uppercase; }
.club-copy { padding: clamp(1.4rem, 4vw, 2.5rem); }
.club-copy h3 { margin-top: 0; font-size: 2.3rem; }
.club-price { color: var(--garnet); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.club-copy li { margin-bottom: 0.35rem; font-size: 0.82rem; }
.club-verdicts { margin: 1.4rem 0; padding-block: 0.7rem; border-block: 1px solid var(--hairline); }
.club-verdicts p { font-size: 0.82rem; }
.secondary-button { display: inline-flex; padding: 0.7rem 1rem; border: 1px solid var(--garnet); color: var(--garnet); font-size: 0.72rem; font-weight: 800; }
.secondary-button:hover { background: var(--garnet); color: var(--paper); }

.numbered-steps { display: grid; gap: 0; padding-left: 1.3rem; }
.numbered-steps li { padding: 0.8rem 0 0.8rem 0.5rem; border-bottom: 1px solid var(--hairline); }
.split-explainer { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 1.5rem 0; background: var(--hairline); border: 1px solid var(--hairline); }
.split-explainer article { padding: 1.5rem; background: var(--paper); }
.split-explainer span { color: var(--garnet); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.split-explainer h3 { margin-top: 0.55rem; }
.split-explainer p { font-size: 0.84rem; }

.label-lab {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) 1.2fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin: 2rem 0 3rem;
  padding: clamp(1.2rem, 4vw, 3rem);
  background: var(--sage-light);
}

.mock-label {
  display: grid;
  min-height: 340px;
  padding: 2rem 1rem;
  place-content: center;
  border: 1px solid var(--gold);
  outline: 5px double rgba(183, 151, 88, 0.55);
  outline-offset: -14px;
  background: var(--paper);
  text-align: center;
}

.mock-label-kicker { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.mock-label strong { margin: 0.8rem 0 0.2rem; font-family: var(--display); font-size: 2.2rem; font-weight: 400; }
.mock-label i { font-family: var(--display); font-size: 1.25rem; }
.mock-label b { margin-top: 0.7rem; color: var(--garnet); font-size: 0.8rem; }
.mock-label small { margin-top: 2.2rem; font-size: 0.55rem; letter-spacing: 0.08em; }
.label-notes { margin: 0; padding-left: 1.4rem; }
.label-notes li { padding: 0.75rem 0; border-bottom: 1px solid rgba(33, 29, 26, 0.12); }

.element-list { border-top: 1px solid var(--hairline); }
.element-list article { display: grid; grid-template-columns: 0.8fr 1.5fr; gap: 2rem; padding: 1.4rem 0; border-bottom: 1px solid var(--hairline); }
.element-list h3 { margin: 0; }
.element-list p { margin: 0; color: var(--ink-soft); font-size: 0.86rem; }

.shelf-clue-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 1.5rem 0;
  border: 1px solid var(--hairline);
  background: var(--hairline);
}

.shelf-clue-list article {
  padding: 1.25rem;
  background: var(--paper);
}

.shelf-clue-list h3 {
  margin: 0 0 0.45rem;
  color: var(--garnet);
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shelf-clue-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.guide-index {
  max-width: 1180px;
  margin: auto;
}

.guide-index > header { max-width: 900px; margin-bottom: 4rem; }
.guide-index h1 { margin-inline: 0; }
.guide-index > header > p:last-child { margin-inline: 0; }
.guide-card-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
.guide-card { display: grid; grid-template-columns: auto 1fr auto; gap: 1.2rem; min-height: 190px; padding: 1.7rem; align-items: start; background: var(--paper); }
.guide-card:hover { background: var(--sage-light); }
.guide-card > span { color: var(--gold); font-size: 0.65rem; font-weight: 800; }
.guide-card h2 { margin: 0; font-family: var(--display); font-size: 2rem; font-weight: 400; }
.guide-card p { color: var(--ink-soft); font-size: 0.8rem; }
.guide-card b { color: var(--garnet); font-size: 1.4rem; }

.browse-card { display: block; }
.browse-card article { height: 100%; }

.about-page { max-width: 1180px; margin: auto; }
.about-hero {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) 1.45fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
  padding: clamp(2rem, 7vw, 6rem);
  border: 1px solid var(--gold);
  background: var(--paper);
}
.about-hero h1 { margin-inline: 0; font-size: clamp(3rem, 7vw, 6.5rem); }
.about-hero .section-label { justify-content: flex-start; }
.founder-mark {
  display: grid;
  aspect-ratio: 1;
  max-width: 320px;
  place-items: center;
  align-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--sage-light);
  box-shadow: 14px 14px 0 var(--paper), 14px 14px 0 1px var(--gold);
}
.founder-mark span { font-family: var(--display); font-size: clamp(5rem, 10vw, 9rem); line-height: 0.9; }
.founder-mark small { margin-top: 1rem; color: var(--sage-deep); font-size: 0.55rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.about-story { max-width: 760px; margin: clamp(3rem, 7vw, 7rem) auto 0; }
.about-story > section { margin-top: clamp(3.5rem, 7vw, 6rem); }
.about-story > section:first-child { margin-top: 0; font-family: var(--display); font-size: 1.3rem; }
.about-manifesto { position: relative; margin: 4rem 0; padding: 2.5rem clamp(1.5rem, 6vw, 4rem); background: var(--garnet); color: var(--paper); }
.about-manifesto > span { position: absolute; top: 0.3rem; left: 1rem; color: rgba(255,255,255,.25); font-family: var(--display); font-size: 5rem; line-height: 1; }
.about-manifesto p { margin: 0; font-family: var(--display); font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.15; }
.belief-list { display: grid; gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
.belief-list article { padding: 1.6rem; background: var(--paper); }
.belief-list h3 { margin-top: 0.5rem; }
.pen-name-note { display: grid; grid-template-columns: 130px 1fr; gap: 2rem; align-items: center; }
.founder-mark-small { width: 120px; box-shadow: 6px 6px 0 var(--paper), 6px 6px 0 1px var(--gold); }
.founder-mark-small span { font-size: 3.5rem; }
.about-start { padding: clamp(1.5rem, 5vw, 3rem); background: var(--sage-light); border-radius: 0 5rem 0 0; }
.about-start > div { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; margin-top: 1.5rem; }
.founder-signoff { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--hairline); }
.founder-signoff strong { display: block; margin-top: 1rem; font-family: var(--display); font-size: 3rem; font-weight: 400; }

.legal-page { max-width: 760px; margin: auto; }
.legal-page > header { margin-bottom: 4rem; padding-bottom: 2rem; border-bottom: 1px solid var(--gold); }
.legal-page h1 { margin-inline: 0; font-size: clamp(3.5rem, 8vw, 6rem); }
.legal-page > header > p:last-child { color: var(--ink-soft); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.legal-page section { margin-top: 3rem; }
.legal-page h2 { font-size: 2.2rem; }
.legal-page a { color: var(--garnet); text-decoration: underline; text-underline-offset: 0.22rem; }

.legal-address {
  width: max-content;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-left: 2px solid var(--gold);
  background: rgba(169, 182, 162, 0.13);
  font-style: normal;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .article-grid { grid-template-columns: 1fr; }
  .article-toc { position: static; }
  .article-toc ol { grid-template-columns: repeat(2, 1fr); }
  .quiz-bridge { grid-template-columns: auto 1fr; }
  .quiz-bridge .primary-button { grid-column: 1 / -1; justify-content: center; }
  .club-card { grid-template-columns: 115px 1fr; }
  .about-hero { grid-template-columns: 180px 1fr; }
}

@media (max-width: 680px) {
  .content-site-header .header-edition,
  .quiz-header .header-edition { display: none; }
  .content-site-header,
  .quiz-header { grid-template-columns: 1fr; gap: 0.5rem; padding-block: 1rem; }
  .content-site-header .main-nav,
  .quiz-header .main-nav { justify-self: start; overflow-x: auto; width: 100%; }
  .content-site-header .main-nav ul,
  .quiz-header .main-nav ul { gap: 1.15rem; width: max-content; }
  .article-page,
  .guide-index,
  .about-page,
  .legal-page { padding-inline: 1rem; }
  .article-hero { padding: 3rem 1.25rem; }
  .article-hero h1 { font-size: clamp(2.75rem, 15vw, 4.8rem); }
  .article-byline { display: grid; gap: 0.25rem; }
  .article-toc ol,
  .style-card-grid,
  .shelf-clue-list,
  .decision-grid,
  .principle-grid,
  .budget-grid,
  .related-grid,
  .guide-card-list,
  .split-explainer { grid-template-columns: 1fr; }
  .quiz-bridge { grid-template-columns: 1fr; border-radius: 0 3rem 0 0; }
  .bridge-badge { width: 52px; height: 52px; }
  .club-card { grid-template-columns: 1fr; }
  .club-rank { display: flex; align-items: center; gap: 1rem; }
  .club-rank p { margin: 0; }
  .label-lab,
  .element-list article,
  .about-hero,
  .pen-name-note { grid-template-columns: 1fr; }
  .about-hero { text-align: left; }
  .founder-mark { width: 180px; }
  .founder-mark span { font-size: 5rem; }
  .about-hero h1 { font-size: 3.5rem; }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--porcelain);
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--sage-deep);
  outline-offset: 4px;
}

.mwm-source-site-header {
  min-height: 82px;
  padding: 0 var(--page-x);
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.wordmark {
  width: max-content;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2vw, 2.05rem);
  letter-spacing: -0.035em;
  line-height: 1;
}

.header-edition {
  justify-self: center;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.main-nav {
  justify-self: end;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.3vw, 2.5rem);
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-nav a {
  position: relative;
  padding-block: 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  min-height: min(690px, calc(100svh - 82px));
  padding: clamp(4rem, 7vw, 7rem) var(--page-x);
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(290px, 4fr);
  gap: clamp(3rem, 8vw, 9rem);
  border-bottom: 1px solid var(--hairline);
}

.hero-copy {
  max-width: 900px;
  align-self: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0 0 1.2rem;
  color: var(--sage-deep);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: var(--gold);
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  text-wrap: balance;
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(4rem, 6.65vw, 7rem);
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.hero-subhead {
  max-width: 690px;
  margin: 1.7rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.24rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.hero-action {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2.15rem;
}

.primary-button {
  min-height: 54px;
  padding: 0.95rem 1.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  color: #fffdf9;
  background: var(--garnet);
  border: 1px solid var(--garnet);
  border-radius: 0;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.primary-button:hover {
  background: var(--garnet-deep);
  border-color: var(--garnet-deep);
  transform: translateY(-2px);
}

.primary-button span {
  font-size: 1rem;
  font-weight: 400;
}

.action-note {
  max-width: 190px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.5;
}

.hero-aside {
  align-self: stretch;
  padding: 1.8rem 0 0 clamp(2rem, 3.5vw, 4.5rem);
  border-left: 1px solid var(--hairline);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.aside-kicker,
.section-label {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.aside-numbers {
  align-self: center;
  display: grid;
  gap: 1.4rem;
}

.metric {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 0.85rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--hairline);
}

.metric strong {
  font-family: var(--display);
  font-size: clamp(4rem, 5.4vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.73;
}

.metric span {
  padding-bottom: 0.2rem;
  color: var(--sage-deep);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.aside-note {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.45vw, 1.45rem);
  line-height: 1.25;
}

.aside-note em {
  color: var(--sage-deep);
  font-weight: 400;
}

.process-section,
.profile-section,
.browse-section {
  padding: clamp(4.5rem, 8vw, 8rem) var(--page-x);
}

.process-section {
  background: var(--paper);
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.5fr);
  gap: clamp(3.5rem, 8vw, 8rem);
}

.process-heading h2,
.profile-intro h2,
.browse-heading h2 {
  max-width: 660px;
  margin: 1rem 0 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.text-link {
  width: max-content;
  display: inline-flex;
  gap: 0.75rem;
  margin-top: 1.8rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--ink);
  font-size: 0.77rem;
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding-top: 1.15rem;
  border-top: 1px solid var(--ink);
}

.steps span {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.steps h3 {
  margin: 1.5rem 0 0.65rem;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.3;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.profile-section {
  border-top: 1px solid var(--hairline);
}

.profile-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
}

.profile-intro > p {
  max-width: 450px;
  margin: 0 0 0.4rem;
  color: var(--ink-soft);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 4rem 0 0;
  padding: 0;
  border-top: 1px solid var(--hairline);
  list-style: none;
}

.profile-item {
  min-height: 175px;
  padding: 1.6rem 1.2rem;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.profile-item:nth-child(4n + 1) {
  border-left: 1px solid var(--hairline);
}

.profile-badge {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 1px solid color-mix(in srgb, var(--profile-color) 55%, white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--profile-color);
  font-size: 1.25rem;
}

.profile-bold {
  --profile-color: #8c1d40;
}

.profile-smooth {
  --profile-color: #7a4a2b;
}

.profile-elegant {
  --profile-color: #4a4643;
}

.profile-crisp {
  --profile-color: #5d6f58;
}

.profile-golden {
  --profile-color: #a6803c;
}

.profile-sweet {
  --profile-color: #9c5a6b;
}

.profile-bubbles {
  --profile-color: #8f793d;
}

.profile-rose {
  --profile-color: #b87484;
}

.profile-item h3 {
  margin: 0 0 0.45rem;
  font-size: 0.9rem;
  line-height: 1.3;
}

.profile-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.74rem;
  line-height: 1.5;
}

.profile-cta {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.profile-cta p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.stat-strip {
  min-height: 82px;
  padding: 1rem var(--page-x);
  background: var(--paper);
  border-block: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  color: var(--sage-deep);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.stat-strip span:not(:last-child)::after {
  content: "·";
  margin-left: 1.5rem;
  color: var(--gold);
}

.browse-section {
  background: var(--paper);
}

.browse-heading {
  text-align: center;
}

.browse-heading h2 {
  margin-inline: auto;
}

.browse-grid {
  max-width: 1160px;
  margin: 3.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}

.browse-grid article {
  min-height: 240px;
  padding: 1.8rem;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.browse-grid article:first-child {
  border-left: 1px solid var(--hairline);
}

.browse-eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.browse-grid h3 {
  margin: 2.2rem 0 0.8rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  font-weight: 400;
  line-height: 1;
}

.browse-grid article > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.browse-quiz-link {
  margin: 2rem auto 0;
}

.site-footer {
  padding: clamp(3rem, 6vw, 5rem) var(--page-x) 2rem;
  color: #f6f1eb;
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  align-items: start;
  gap: 3rem;
}

.footer-wordmark {
  color: #fffdf9;
}

.footer-main > p {
  max-width: 480px;
  margin: 0;
  color: #cfc7bf;
}

.footer-main nav {
  justify-self: end;
  display: grid;
  gap: 0.55rem;
  font-size: 0.78rem;
}

.footer-main nav a {
  width: max-content;
  border-bottom: 1px solid transparent;
}

.footer-main nav a:hover {
  border-bottom-color: currentColor;
}

.footer-legal {
  margin-top: 3.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid #4b4641;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  color: #aaa19a;
  font-size: 0.68rem;
}

.footer-legal p {
  max-width: 560px;
  margin: 0;
}

.sticky-quiz-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 20;
  display: none;
  transform: translateY(calc(100% + 2rem));
  transition: transform 180ms ease;
}

.sticky-quiz-cta a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fffdf9;
  background: var(--garnet);
  font-size: 0.82rem;
  font-weight: 700;
}

.quiz-page {
  min-height: calc(100svh - 82px);
  padding: clamp(2rem, 5vw, 4.5rem) var(--page-x) 5rem;
}

.quiz-shell {
  width: min(100%, 760px);
  min-height: 600px;
  margin: 0 auto;
}

.quiz-landing {
  max-width: 680px;
  padding-top: clamp(2rem, 7vw, 6rem);
}

.quiz-landing h1,
.result-hero h1 {
  margin: 0;
  font-size: clamp(3.6rem, 7vw, 6.4rem);
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.quiz-landing > p:not(.eyebrow) {
  max-width: 580px;
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.quiz-start {
  margin-top: 2.2rem;
}

.quiz-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.5rem;
  margin-top: 2.2rem;
  color: var(--sage-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.quiz-facts span:not(:last-child)::after {
  content: "·";
  margin-left: 1.5rem;
  color: var(--gold);
}

.quiz-progress {
  width: 100%;
  height: 2px;
  border: 0;
  overflow: hidden;
  background: var(--hairline);
  appearance: none;
  -webkit-appearance: none;
}

.quiz-progress::-webkit-progress-bar {
  background: var(--hairline);
}

.quiz-progress::-webkit-progress-value {
  background: var(--gold);
  transition: width 300ms ease;
}

.quiz-progress::-moz-progress-bar {
  background: var(--gold);
}

.quiz-progress-value {
  height: 100%;
  background: var(--gold);
  transition: width 300ms ease;
}

.question-meta {
  margin: 0.8rem 0 clamp(2.5rem, 7vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.quiz-back {
  padding: 0.4rem 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.question-view h2,
.analyzing-view h2 {
  max-width: 650px;
  margin: 0.9rem 0 2.2rem;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.option-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--hairline);
}

.option-button {
  min-height: 72px;
  padding: 1rem 1.15rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  cursor: pointer;
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  align-items: center;
  gap: 1rem;
  text-align: left;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    padding 180ms ease;
}

.option-button:hover {
  padding-inline: 1.4rem 0.9rem;
  background: var(--paper);
}

.option-button > span:first-child {
  font-size: 1.2rem;
}

.option-button strong {
  font-size: 0.92rem;
}

.option-arrow {
  color: var(--gold);
}

.analyzing-view {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.analyzing-view h2 {
  margin: 2rem 0 0.6rem;
}

.analyzing-view p {
  margin: 0;
  color: var(--ink-soft);
}

.analyzing-mark {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.analyzing-mark span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sage);
  animation: taste-pulse 1.2s ease-in-out infinite;
}

.analyzing-mark span:nth-child(2) {
  background: var(--gold);
  animation-delay: 140ms;
}

.analyzing-mark span:nth-child(3) {
  background: var(--garnet);
  animation-delay: 280ms;
}

@keyframes taste-pulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.result-hero {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.result-badge {
  width: 96px;
  height: 96px;
  margin: 1.4rem auto 1.6rem;
  border: 1px solid color-mix(in srgb, var(--gold) 62%, white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  animation: badge-reveal 500ms cubic-bezier(0.2, 1.15, 0.4, 1) both;
}

@keyframes badge-reveal {
  from {
    opacity: 0;
    transform: scale(0.75);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.result-tagline {
  margin: 1rem 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.result-description {
  max-width: 620px;
  margin: 1.1rem auto 0;
  color: var(--ink-soft);
}

.wine-results {
  margin-top: clamp(3rem, 7vw, 5rem);
}

.result-section-heading {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.result-section-heading span {
  color: var(--sage-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.wine-grid article {
  min-height: 220px;
  padding: 1.4rem;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.wine-grid article:first-child {
  border-left: 1px solid var(--hairline);
}

.wine-grid h2 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1;
}

.wine-grid p {
  margin: 1rem 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.wine-grid span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pairing-line {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.pairing-line strong {
  color: var(--ink);
}

.result-actions {
  margin-top: 2rem;
  display: flex;
  gap: 0.8rem;
}

.secondary-button {
  min-height: 54px;
  padding: 0.95rem 1.55rem;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--hairline);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
}

.secondary-button:hover {
  border-color: var(--ink);
}

.responsibility-note {
  margin-top: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.7rem;
  text-align: center;
}

.quiz-enter {
  animation: quiz-enter 360ms ease both;
}

@keyframes quiz-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .mwm-source-site-header {
    grid-template-columns: 1fr auto;
  }

  .header-edition {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
    gap: 3rem;
  }

  .process-section {
    grid-template-columns: 1fr;
  }

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

  .profile-item:nth-child(4n + 1) {
    border-left: 0;
  }

  .profile-item:nth-child(2n + 1) {
    border-left: 1px solid var(--hairline);
  }
}

@media (max-width: 760px) {
  .mwm-source-site-header {
    padding-block: 1.15rem;
    align-items: start;
  }

  .main-nav ul {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 0.15rem 1rem;
  }

  .quiz-header .main-nav ul {
    grid-template-columns: repeat(3, auto);
  }

  .hero {
    min-height: auto;
    padding-block: 3.5rem;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 16vw, 5.2rem);
  }

  .hero-aside {
    padding: 2rem 0 0;
    border-top: 1px solid var(--hairline);
    border-left: 0;
  }

  .aside-numbers {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-block: 2.5rem;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .profile-intro {
    grid-template-columns: 1fr;
  }

  .profile-intro > p {
    margin: 0;
  }

  .profile-grid {
    grid-template-columns: 1fr;
  }

  .profile-item,
  .profile-item:nth-child(2n + 1) {
    border-left: 1px solid var(--hairline);
  }

  .profile-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .browse-grid {
    grid-template-columns: 1fr;
  }

  .browse-grid article {
    min-height: 0;
    border-left: 1px solid var(--hairline);
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main nav {
    justify-self: start;
  }

  .footer-legal {
    flex-direction: column;
  }

  .wine-grid {
    grid-template-columns: 1fr;
  }

  .wine-grid article {
    min-height: 0;
    border-left: 1px solid var(--hairline);
  }

  .sticky-quiz-cta {
    display: block;
  }

  .sticky-quiz-cta.is-visible {
    transform: translateY(0);
  }
}

@media (max-width: 500px) {
  .mwm-source-site-header {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .main-nav {
    justify-self: start;
  }

  .main-nav ul,
  .quiz-header .main-nav ul {
    grid-template-columns: repeat(2, auto);
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-action,
  .result-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .action-note {
    max-width: none;
  }

  .aside-numbers {
    grid-template-columns: 1fr;
  }

  .stat-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .stat-strip span::after {
    display: none;
  }

  .quiz-facts {
    align-items: flex-start;
    flex-direction: column;
  }

  .quiz-facts span::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Editorial Daylight v2 — tactile label system */

body {
  background-color: var(--porcelain);
  background-image:
    linear-gradient(
      104deg,
      transparent 0 47%,
      rgb(33 29 26 / 1.1%) 48% 51%,
      transparent 52% 100%
    ),
    linear-gradient(
      8deg,
      transparent 0 46%,
      rgb(183 151 88 / 1.4%) 47% 50%,
      transparent 51% 100%
    ),
    radial-gradient(ellipse at 28% 36%, rgb(33 29 26 / 2.2%) 0 0.45px, transparent 0.9px),
    radial-gradient(ellipse at 71% 64%, rgb(183 151 88 / 2%) 0 0.4px, transparent 0.85px);
  background-size: 23px 9px, 31px 13px, 11px 15px, 17px 12px;
}

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

.mwm-source-site-header {
  min-height: 92px;
  border-bottom: 0;
}

.mwm-source-site-header::after {
  content: "";
  position: absolute;
  right: var(--page-x);
  bottom: 0;
  left: var(--page-x);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 12%, var(--gold) 88%, transparent);
  opacity: 0.65;
}

.mwm-source-site-header {
  position: relative;
}

.wordmark {
  font-family: var(--body);
  font-size: clamp(1.45rem, 1.8vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.header-edition {
  color: var(--sage-deep);
}

.hero {
  position: relative;
  min-height: min(820px, calc(100svh - 112px));
  margin: 1.25rem clamp(0.75rem, 2vw, 1.5rem) 0;
  padding: clamp(3.5rem, 6vw, 6.5rem) clamp(2rem, 6vw, 6.5rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
  overflow: hidden;
  background:
    linear-gradient(115deg, rgb(255 253 249 / 96%), rgb(247 244 239 / 92%)),
    var(--paper);
  border: 1px solid var(--gold);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(
      101deg,
      transparent 0 47%,
      rgb(33 29 26 / 1.5%) 48% 51%,
      transparent 52% 100%
    ),
    linear-gradient(
      7deg,
      transparent 0 46%,
      rgb(183 151 88 / 1.8%) 47% 50%,
      transparent 51% 100%
    ),
    radial-gradient(ellipse at 31% 42%, rgb(33 29 26 / 2.5%) 0 0.45px, transparent 0.9px),
    radial-gradient(ellipse at 74% 58%, rgb(183 151 88 / 2.2%) 0 0.4px, transparent 0.85px);
  background-size: 21px 8px, 29px 12px, 10px 14px, 16px 11px;
  opacity: 0.72;
}

.hero-corner {
  position: absolute;
  z-index: 4;
  width: 34px;
  height: 34px;
  background: var(--porcelain);
}

.hero-corner-tl {
  top: -1px;
  left: -1px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  border-radius: 0 0 100% 0;
}

.hero-corner-tr {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  border-radius: 0 0 0 100%;
}

.hero-corner-bl {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  border-radius: 0 100% 0 0;
}

.hero-corner-br {
  right: -1px;
  bottom: -1px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  border-radius: 100% 0 0;
}

.hero::after {
  content: "";
  position: absolute;
  top: 12%;
  right: 34%;
  width: 20rem;
  height: 20rem;
  border: 1px solid rgb(183 151 88 / 22%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 930px;
}

.hero .eyebrow {
  margin-bottom: 1.55rem;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(4.2rem, 7.3vw, 8.1rem);
  line-height: 0.82;
  letter-spacing: -0.055em;
}

.hero h1 span {
  display: block;
}

.hero-title-indent {
  padding-left: clamp(0rem, 4vw, 4.25rem);
}

.hero-subhead {
  max-width: 600px;
  margin-top: 1.9rem;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
}

.editorial-rule {
  width: min(310px, 65%);
  height: 16px;
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
}

.editorial-rule::before,
.editorial-rule::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--gold);
}

.editorial-rule span {
  width: 8px;
  height: 8px;
  margin-inline: 0.7rem;
  background: var(--gold);
  transform: rotate(45deg);
}

.hero-action {
  margin-top: 1.3rem;
}

.hero-quiz-link {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.cta-disc {
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: var(--garnet);
  box-shadow: 0 18px 40px rgb(116 22 51 / 16%);
  font-size: 2.15rem;
  font-weight: 300;
  transition:
    transform 220ms ease,
    background-color 220ms ease;
}

.hero-quiz-link:hover .cta-disc {
  background: var(--garnet-deep);
  transform: translateX(5px) rotate(-5deg);
}

.hero-quiz-copy {
  display: grid;
  gap: 0.15rem;
}

.hero-quiz-copy strong {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-quiz-copy small {
  max-width: 240px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  line-height: 1.4;
}

.hero-facts {
  max-width: 560px;
  margin: 2.15rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.hero-facts div {
  display: flex;
  flex-direction: column-reverse;
}

.hero-facts dt {
  color: var(--ink-soft);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  font-family: var(--display);
  font-size: 2.25rem;
  line-height: 1;
}

.hero-visual {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  margin: 0 auto;
  align-self: center;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 48% 48% 1.1rem 1.1rem / 25% 25% 1.1rem 1.1rem;
  box-shadow: 0 30px 70px rgb(63 51 38 / 14%);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0.75rem;
  border: 1px solid rgb(183 151 88 / 72%);
  border-radius: inherit;
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
}

.hero-visual figcaption {
  max-width: calc(100% - 3rem);
  margin: 0.9rem auto 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--gold);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink-soft);
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-visual figcaption span {
  color: var(--sage-deep);
  font-weight: 700;
}

.hero-visual figcaption p {
  margin: 0;
  text-align: right;
}

.taste-stamp {
  position: absolute;
  left: -2.6rem;
  bottom: 4.5rem;
  width: 92px;
  height: 92px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--garnet);
  font-family: var(--display);
  font-size: 1rem;
  line-height: 0.95;
  text-align: center;
  transform: rotate(-8deg);
  box-shadow: 0 12px 30px rgb(116 22 51 / 18%);
}

.process-section {
  position: relative;
  margin: 0 clamp(0.75rem, 2vw, 1.5rem);
  padding-top: clamp(5rem, 9vw, 9rem);
  background: transparent;
  border-bottom: 1px solid var(--gold);
}

.process-section::before {
  content: "M";
  position: absolute;
  top: clamp(4rem, 7vw, 7rem);
  left: 47%;
  color: rgb(183 151 88 / 8%);
  font-family: var(--display);
  font-size: min(25vw, 24rem);
  line-height: 0.7;
  pointer-events: none;
}

.section-intro {
  max-width: 430px;
  margin: 1.4rem 0 0;
  color: var(--ink-soft);
}

.steps {
  position: relative;
  z-index: 1;
  gap: 1rem;
}

.steps li {
  min-height: 315px;
  padding: 1.5rem;
  border: 1px solid rgb(183 151 88 / 48%);
  border-radius: 9rem 9rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgb(255 253 249 / 84%);
  box-shadow: 0 18px 44px rgb(63 51 38 / 5%);
}

.steps span {
  width: 48px;
  height: 48px;
  margin-bottom: auto;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--sage-deep);
  background: var(--sage-light);
}

.steps h3 {
  margin-top: 2.5rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 400;
}

.story-section {
  padding: clamp(4.5rem, 8vw, 8rem) var(--page-x);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  background: var(--sage-light);
  border-bottom: 1px solid rgb(93 111 88 / 28%);
}

.story-image {
  position: relative;
  margin: 0;
}

.story-image::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -0.75rem 0.75rem 0.75rem -0.75rem;
  border: 1px solid var(--gold);
  border-radius: 14rem 1rem 1rem;
}

.story-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14rem 1rem 1rem;
  box-shadow: 0 24px 60px rgb(70 77 65 / 16%);
}

.story-image figcaption {
  position: relative;
  z-index: 2;
  width: max-content;
  max-width: calc(100% - 2rem);
  margin: -1.2rem 1.25rem 0 auto;
  padding: 0.7rem 1.1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.story-copy {
  position: relative;
  padding: clamp(2rem, 4vw, 4rem);
  background: rgb(255 253 249 / 76%);
  border: 1px solid rgb(183 151 88 / 48%);
}

.story-copy::after {
  content: "";
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  width: 42px;
  height: 42px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.story-copy h2 {
  margin: 1rem 0 1.25rem;
  font-size: clamp(2.8rem, 4.8vw, 5.2rem);
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.story-copy > p:not(.section-label) {
  margin: 0;
  color: var(--ink-soft);
}

.taste-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}

.taste-notes li {
  padding: 0.45rem 0.8rem;
  color: var(--sage-deep);
  background: var(--paper);
  border: 1px solid rgb(93 111 88 / 32%);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 1rem;
}

.profile-section {
  border-top: 0;
  background:
    radial-gradient(circle at 82% 10%, rgb(169 182 162 / 18%), transparent 26rem),
    var(--porcelain);
}

.profile-grid {
  gap: 1rem;
  border-top: 0;
}

.profile-item,
.profile-item:nth-child(4n + 1),
.profile-item:nth-child(2n + 1) {
  min-height: 292px;
  padding: 1.2rem 1.15rem 1.5rem;
  border: 1px solid rgb(183 151 88 / 44%);
  border-radius: 9rem 9rem 1.1rem 1.1rem;
  align-items: center;
  flex-direction: column;
  gap: 1.2rem;
  overflow: hidden;
  background: rgb(255 253 249 / 90%);
  text-align: center;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.profile-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgb(63 51 38 / 8%);
}

.profile-badge {
  position: relative;
  width: 108px;
  height: 108px;
  flex: 0 0 108px;
  border: 1px solid var(--gold);
  color: var(--sage-deep);
  background: var(--profile-color);
  box-shadow:
    inset 0 0 0 8px rgb(255 253 249 / 44%),
    0 12px 24px rgb(63 51 38 / 10%);
  font-family: var(--display);
  font-size: 2rem;
}

.profile-badge::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgb(183 151 88 / 62%);
  border-radius: 50%;
}

.profile-bold {
  --profile-color: #ead4dc;
}

.profile-smooth {
  --profile-color: #e6d8cb;
}

.profile-elegant {
  --profile-color: #dfddd9;
}

.profile-crisp {
  --profile-color: #dce5d8;
}

.profile-golden {
  --profile-color: #ede1c8;
}

.profile-sweet {
  --profile-color: #efdce1;
}

.profile-bubbles {
  --profile-color: #eee6cf;
}

.profile-rose {
  --profile-color: #f0d9de;
}

.profile-cue {
  margin: 0 0 0.6rem !important;
  color: var(--sage-deep) !important;
  font-size: 0.58rem !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-item h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
}

.primary-button {
  border-radius: 999px;
}

.stat-strip {
  min-height: 94px;
  color: #f7efe7;
  background: var(--garnet);
  border-block: 1px solid var(--gold);
}

.stat-strip span:not(:last-child)::after {
  content: "✦";
}

.browse-section {
  position: relative;
  overflow: hidden;
}

.browse-section::before {
  content: "03";
  position: absolute;
  top: 1rem;
  left: -1rem;
  color: rgb(183 151 88 / 8%);
  font-family: var(--display);
  font-size: min(30vw, 28rem);
  line-height: 1;
}

.browse-heading,
.browse-grid,
.browse-quiz-link {
  position: relative;
  z-index: 1;
}

.browse-grid {
  gap: 1rem;
  border-top: 0;
}

.browse-grid article,
.browse-grid article:first-child {
  position: relative;
  min-height: 315px;
  padding: 1.65rem;
  overflow: hidden;
  background: var(--porcelain);
  border: 1px solid rgb(183 151 88 / 52%);
  border-radius: 10rem 10rem 1rem 1rem;
}

.browse-grid article::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 34px;
  height: 34px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.browse-number {
  width: 72px;
  height: 72px;
  margin: 0 auto 2.8rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--sage-deep);
  background: var(--sage-light);
  font-family: var(--display);
  font-size: 1.6rem;
}

.browse-grid h3 {
  margin-top: 0.7rem;
}

.quiz-page {
  min-height: calc(100svh - 92px);
  padding-top: clamp(1.25rem, 3vw, 2.5rem);
  background:
    radial-gradient(circle at 12% 18%, rgb(169 182 162 / 26%), transparent 25rem),
    radial-gradient(circle at 88% 70%, rgb(183 151 88 / 12%), transparent 28rem);
}

.quiz-shell {
  position: relative;
  width: min(100%, 840px);
  padding: clamp(1.5rem, 5vw, 4rem);
  background: rgb(255 253 249 / 88%);
  border: 1px solid var(--gold);
  box-shadow: 0 24px 70px rgb(63 51 38 / 8%);
}

.quiz-shell::before,
.quiz-shell::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  pointer-events: none;
}

.quiz-shell::before {
  top: 0.8rem;
  left: 0.8rem;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.quiz-shell::after {
  right: 0.8rem;
  bottom: 0.8rem;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.quiz-landing {
  padding-top: clamp(1.5rem, 5vw, 4rem);
}

.option-list {
  gap: 0.65rem;
  border-top: 0;
}

.option-button {
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: var(--paper);
}

.option-button:hover {
  border-color: var(--gold);
  background: var(--sage-light);
}

.result-badge {
  position: relative;
  width: 118px;
  height: 118px;
  color: var(--sage-deep);
  background: var(--sage-light);
  border-color: var(--gold);
  box-shadow:
    inset 0 0 0 10px var(--paper),
    0 16px 32px rgb(63 51 38 / 10%);
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
    gap: 3.5rem;
  }

  .hero h1 {
    font-size: clamp(4.3rem, 7vw, 6.4rem);
  }

  .story-section {
    grid-template-columns: 1fr;
  }

  .story-copy {
    width: min(90%, 680px);
    margin: -5.5rem 0 0 auto;
    z-index: 3;
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
    padding: 3.5rem clamp(1.4rem, 5vw, 3rem);
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    font-size: clamp(4rem, 13vw, 7rem);
  }

  .hero-visual {
    width: min(82%, 520px);
  }

  .taste-stamp {
    left: -1.5rem;
  }

  .process-section {
    grid-template-columns: 1fr;
  }

  .process-section::before {
    left: auto;
    right: 0;
  }

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

@media (max-width: 620px) {
  .mwm-source-site-header {
    min-height: 0;
  }

  .hero {
    margin-top: 0.75rem;
    padding-block: 3rem;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 17vw, 5.4rem);
    line-height: 0.86;
  }

  .hero-title-indent {
    padding-left: 0;
  }

  .hero-subhead {
    font-size: 0.96rem;
  }

  .hero-quiz-link {
    width: 100%;
  }

  .cta-disc {
    width: 66px;
    height: 66px;
    flex-basis: 66px;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-facts dd {
    font-size: 1.75rem;
  }

  .hero-facts dt {
    font-size: 0.5rem;
  }

  .hero-visual {
    width: calc(100% - 1rem);
  }

  .taste-stamp {
    left: -0.65rem;
    bottom: 4rem;
    width: 78px;
    height: 78px;
  }

  .hero-visual figcaption {
    display: grid;
  }

  .hero-visual figcaption p {
    text-align: left;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps li {
    min-height: 260px;
  }

  .story-section {
    padding-inline: 1.25rem;
  }

  .story-image::before {
    inset: -0.45rem 0.45rem 0.45rem -0.45rem;
  }

  .story-image img {
    min-height: 330px;
    border-radius: 8rem 1rem 1rem;
    object-position: 48% center;
  }

  .story-copy {
    width: calc(100% - 1rem);
    margin-top: -2.5rem;
    padding: 1.5rem;
  }

  .profile-grid {
    grid-template-columns: 1fr;
  }

  .profile-item,
  .profile-item:nth-child(4n + 1),
  .profile-item:nth-child(2n + 1) {
    min-height: 265px;
  }

  .browse-grid {
    gap: 0.8rem;
  }

  .browse-grid article,
  .browse-grid article:first-child {
    min-height: 280px;
  }

  .quiz-shell {
    padding: 1.25rem;
  }

  .option-button {
    border-radius: 1.25rem;
  }
}
