:root {
  --ink: #14242c;
  --paper: #f6f0e2;
  --white: #fffaf0;
  --gold: #dca52e;
  --rust: #bd4c31;
  --sage: #849072;
  --line: rgba(20, 36, 44, .25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
}
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }

.utility-bar {
  min-height: 31px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 3vw;
  background: var(--ink);
  color: var(--paper);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .13em;
}
.utility-bar > span:last-child { justify-self: end; }
.date-panel {
  grid-column: 1;
  justify-self: start;
  min-width: 245px;
  padding: 11px 15px;
  border: 1px solid var(--ink);
  background: var(--white);
}
.date-label {
  display: block;
  margin-bottom: 4px;
  color: var(--rust);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.date-panel > strong {
  display: block;
  font-family: "DM Serif Display", serif;
  font-size: 1.35rem;
  font-weight: 400;
}
.nameday-strip {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 4px;
}
.nameday-button {
  border: 0;
  padding: 4px 0;
  background: transparent;
  color: var(--ink);
  font-size: .75rem;
  font-weight: 600;
  cursor: pointer;
}
.nameday-button strong { color: var(--rust); }
.nameday-button:hover strong { text-decoration: underline; text-underline-offset: 3px; }
.masthead {
  min-height: 124px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 12px 3vw 5px;
}
.brand-lockup {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
}
.brand-symbol {
  justify-self: start;
  width: 66px;
  height: 66px;
  position: relative;
  display: block;
  border-radius: 50%;
  transition: transform .25s ease, filter .25s ease;
}
.brand-symbol img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}
.brand-symbol:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 0 10px rgba(220, 165, 46, .65));
}
.logo-whisper {
  width: max-content;
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  padding: 7px 10px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-5px, -50%);
  background: var(--ink);
  color: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 5;
}
.brand-symbol:hover .logo-whisper,
.brand-symbol:focus-visible .logo-whisper {
  opacity: 1;
  transform: translate(0, -50%);
}
.wordmark, .footer-logo {
  text-decoration: none;
  font-family: "DM Serif Display", Georgia, serif;
  letter-spacing: -.06em;
}
.wordmark { font-size: clamp(3.6rem, 7vw, 7.3rem); line-height: .8; }
.wordmark span, .footer-logo span { color: var(--rust); }
.mast-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}
.shop-link, .wish-link {
  padding: 11px 15px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .07em;
  cursor: pointer;
}
.wish-link {
  border-color: var(--rust);
  background: var(--rust);
  color: var(--white);
}
.shop-link:hover { background: var(--ink); color: var(--paper); }
.wish-link:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  padding: 0 3vw;
  border-block: 1px solid var(--ink);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(246, 240, 226, .96);
  position: sticky;
  top: 0;
  z-index: 20;
  max-width: 100vw;
}
nav a {
  min-width: 0;
  padding: 15px 7px;
  border-right: 1px solid var(--line);
  text-align: center;
  text-decoration: none;
}
nav a:first-child { border-left: 1px solid var(--line); }
nav a:hover { color: var(--rust); }

.front-page {
  display: grid;
  grid-template-columns: minmax(0, 2.15fr) minmax(280px, .85fr);
  gap: 34px;
  padding: 34px 3vw 58px;
  border-bottom: 1px solid var(--ink);
  align-items: start;
}
.lead-story {
  display: grid;
  grid-template-columns: minmax(330px, 1.15fr) minmax(290px, .85fr);
  gap: 31px;
  align-items: start;
}
.image-wrap {
  min-height: 610px;
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--ink);
}
.image-wrap img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease;
}
.image-wrap:hover img { transform: scale(1.018); }
.edition-tag {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--gold);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
}
.eyebrow, .small-label {
  margin: 0 0 14px;
  color: var(--rust);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
h1, h2, h3, blockquote { font-family: "DM Serif Display", Georgia, serif; font-weight: 400; }
h1 {
  margin: 0;
  font-size: clamp(3.15rem, 5.15vw, 6.9rem);
  line-height: .91;
  letter-spacing: -.052em;
}
.standfirst {
  margin: 27px 0;
  max-width: 580px;
  font-size: 1.08rem;
  line-height: 1.58;
}
.read-more {
  display: inline-flex;
  gap: 15px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--ink);
  text-decoration: none;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .07em;
}
.read-more span { color: var(--rust); }
.news-rail { border-left: 1px solid var(--ink); padding-left: 27px; }
.rail-heading { display: flex; align-items: center; gap: 15px; font-size: .7rem; font-weight: 800; letter-spacing: .11em; }
.rail-heading i { flex: 1; height: 1px; background: var(--ink); }
.news-rail article {
  position: relative;
  padding: 30px 36px 30px 0;
  border-bottom: 1px solid var(--line);
}
.news-rail .clickable-story { padding-top: 18px; }
.news-rail .clickable-story .story-no { top: 19px; }
.news-rail h2 {
  margin: 0 0 11px;
  font-size: clamp(1.7rem, 2.1vw, 2.55rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}
.rail-post-image {
  display: block;
  margin: 0 0 22px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--ink);
}
.rail-post-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}
.rail-post-image:hover img { transform: scale(1.018); }
.news-rail h2 a { text-decoration: none; }
.news-rail h2 a:hover { color: var(--rust); }
.news-rail article > p:not(.eyebrow) { margin: 0; font-size: .89rem; line-height: 1.5; }
.rail-read {
  display: inline-block;
  margin-top: 16px;
  color: var(--rust);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
}
.story-no { position: absolute; right: 0; top: 31px; color: var(--rust); font-size: .66rem; font-weight: 800; }

.credo {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 26px;
  padding: 19px 4vw;
  background: var(--ink);
  color: var(--paper);
}
.credo p { margin: 0; color: var(--gold); font-family: "DM Serif Display", serif; font-size: clamp(1.6rem, 2.6vw, 3rem); }
.credo span { font-size: .82rem; letter-spacing: .04em; }

.wisdom-section {
  display: grid;
  grid-template-columns: .63fr 1.37fr;
  min-height: 650px;
  border-bottom: 1px solid var(--ink);
}
.section-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7vw;
  border-right: 1px solid var(--ink);
}
.section-intro h2, .decision h2, .section-heading h2, .merch h2 {
  margin: 0;
  font-size: clamp(3.6rem, 6.1vw, 7.7rem);
  line-height: .88;
  letter-spacing: -.055em;
}
.section-intro h2 em, .merch h2 em { color: var(--rust); }
.wisdom-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 4vw 6vw;
  background: var(--gold);
}
.wisdom-number { justify-self: end; font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
blockquote {
  max-width: 950px;
  margin: auto;
  font-size: clamp(3.2rem, 5.7vw, 7.2rem);
  line-height: .96;
  letter-spacing: -.048em;
}
#next-wisdom {
  justify-self: end;
  border: 0;
  border-bottom: 2px solid var(--ink);
  padding: 7px 0;
  background: transparent;
  cursor: pointer;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
}
#next-wisdom span { margin-left: 9px; font-size: 1rem; }

.decision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  padding: 100px 7vw;
  background: var(--white);
  border-bottom: 1px solid var(--ink);
}
.decision-copy > p:last-child { max-width: 520px; font-size: 1.13rem; line-height: 1.6; }
.poll { align-self: center; }
.poll-label {
  margin-bottom: 16px;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
}
.poll-option {
  width: 100%;
  min-height: 61px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  padding: 10px 17px;
  border: 1px solid var(--ink);
  border-bottom: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  isolation: isolate;
}
.poll-option:last-of-type { border-bottom: 1px solid var(--ink); }
.poll-option::before {
  content: "";
  width: var(--result, 0%);
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  background: rgba(220, 165, 46, .48);
  transition: width .6s ease;
}
.poll-option span:first-child {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 800;
}
.poll-option .percent { margin-left: auto; font-weight: 800; }
.poll-option:hover, .poll-option.selected { background: var(--ink); color: var(--paper); }
.poll-option:hover span:first-child, .poll-option.selected span:first-child { border-color: var(--paper); }
.poll-option:disabled { opacity: 1; color: inherit; cursor: default; }
.poll-option.selected:disabled { color: var(--paper); }
.poll-status { margin: 14px 0 0; font-size: .78rem; opacity: .72; }

.club-stories { padding: 100px 5vw 0; }
.section-heading {
  display: grid;
  grid-template-columns: 1fr .55fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 45px;
}
.section-heading h2 { font-size: clamp(4.5rem, 8.5vw, 10rem); }
.section-heading > p { max-width: 480px; font-size: 1rem; line-height: 1.55; }
.story-grid { display: grid; grid-template-columns: 1.2fr .9fr .9fr; border: 1px solid var(--ink); }
.story-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-right: 1px solid var(--ink);
  background: var(--white);
}
.story-card:last-child { border-right: 0; }
.feature-card { background: var(--gold); }
.dark-card { background: var(--ink); color: var(--paper); }
.dark-card .eyebrow { color: var(--gold); }
.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 70px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "DM Serif Display", serif;
  font-size: 1.8rem;
}
.story-card h3 { margin: 0; font-size: clamp(2rem, 2.8vw, 3.3rem); line-height: 1.02; letter-spacing: -.035em; }
.author { margin: auto 0 0; padding-top: 30px; font-size: .63rem; font-weight: 800; letter-spacing: .08em; }
.club-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 45px 5vw;
  margin-top: 38px;
  transform: translateY(50%);
  background: var(--rust);
  color: var(--white);
}
.club-cta h3 { margin: 5px 0 0; font-size: clamp(2rem, 3vw, 3.4rem); line-height: 1; }
.club-cta .small-label { color: var(--white); opacity: .75; }
.outline-button, .solid-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid currentColor;
  text-decoration: none;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .07em;
  cursor: pointer;
}
.outline-button { background: transparent; color: var(--white); }
.outline-button:hover { background: var(--white); color: var(--rust); }

.merch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: center;
  padding: 180px 7vw 110px;
  background: #ddd4bd;
}
.merch-copy > p:not(.eyebrow) { max-width: 620px; margin: 32px 0; font-size: 1.08rem; line-height: 1.65; }
.solid-button { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.solid-button:hover { background: var(--rust); border-color: var(--rust); }
.muted-button { cursor: default; }
.muted-button:hover { background: var(--ink); border-color: var(--ink); }
.shirt-stage {
  min-height: 590px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}
.sun-disc { width: 420px; height: 420px; position: absolute; border-radius: 50%; background: var(--gold); }
.shirt {
  width: 340px;
  height: 450px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 115px 45px 40px;
  color: var(--paper);
  background: var(--ink);
  clip-path: polygon(23% 0, 38% 8%, 62% 8%, 77% 0, 100% 18%, 88% 36%, 78% 30%, 78% 100%, 22% 100%, 22% 30%, 12% 36%, 0 18%);
  filter: drop-shadow(15px 18px 0 rgba(20, 36, 44, .18));
}
.shirt-mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-family: "DM Serif Display", serif;
  font-size: 2.25rem;
}
.shirt-mark img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.shirt strong { text-align: center; font-family: "DM Serif Display", serif; font-size: 1.7rem; line-height: 1; }
.shirt small { margin-top: 14px; letter-spacing: .15em; }
.shirt-stage > p { position: absolute; right: 18px; bottom: 8px; font-size: .65rem; font-weight: 800; letter-spacing: .1em; }

footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 40px;
  align-items: end;
  padding: 65px 5vw;
  background: var(--ink);
  color: var(--paper);
}
.footer-logo { font-size: clamp(2.5rem, 4.5vw, 5rem); }
footer p { margin: 0; font-size: .79rem; line-height: 1.55; }
.footer-links { display: flex; flex-direction: column; gap: 7px; font-size: .78rem; }
.copyright { opacity: .55; }

.article-header {
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 14px 4vw;
  border-bottom: 1px solid var(--ink);
}
.article-header .brand-lockup { grid-column: 2; }
.article-header .wordmark { font-size: clamp(3rem, 5.5vw, 5.8rem); }
.article-header .shop-link { justify-self: end; }
.article-page { padding: 38px 5vw 110px; }
.back-link {
  display: inline-block;
  margin-bottom: 65px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
}
.back-link:hover { color: var(--rust); }
.article-page article { max-width: 1180px; margin: 0 auto; }
.article-page h1 {
  max-width: 1050px;
  font-size: clamp(4.3rem, 8vw, 9rem);
}
.article-lead {
  max-width: 780px;
  margin: 35px 0 55px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.7rem, 2.7vw, 3rem);
  line-height: 1.2;
}
.article-page figure { margin: 0 0 65px; }
.article-page figure img {
  width: min(680px, 100%);
  display: block;
  margin: 0 auto;
  border: 1px solid var(--ink);
}
.article-page figcaption {
  width: min(680px, 100%);
  margin: 10px auto 0;
  font-size: .75rem;
  opacity: .7;
}
.article-body { max-width: 760px; margin: 0 auto; }
.article-body > p {
  margin: 0 0 27px;
  font-size: 1.14rem;
  line-height: 1.75;
}
.article-body h2 {
  margin: 58px 0 18px;
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -.04em;
}
.article-body blockquote {
  margin: 55px -9vw;
  padding: 45px 6vw;
  border-block: 1px solid var(--ink);
  color: var(--rust);
  font-size: clamp(2.8rem, 5vw, 5.6rem);
}
.dropcap::first-letter {
  float: left;
  margin: .1em .12em 0 0;
  color: var(--rust);
  font-family: "DM Serif Display", serif;
  font-size: 5.5rem;
  line-height: .72;
}
.article-body .article-signoff {
  margin-top: 60px;
  padding: 27px;
  border: 1px solid var(--ink);
  background: var(--gold);
}

dialog {
  width: min(620px, calc(100% - 28px));
  border: 1px solid var(--ink);
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 15px 15px 0 var(--gold);
}
#wish-dialog { width: min(720px, calc(100% - 28px)); }
dialog::backdrop { background: rgba(20, 36, 44, .74); backdrop-filter: blur(3px); }
dialog form { position: relative; padding: 42px; }
dialog h2 { margin: 0 0 15px; font-size: 4rem; }
.dialog-close { position: absolute; right: 17px; top: 13px; border: 0; background: transparent; font-size: 2rem; cursor: pointer; }
label { display: grid; gap: 7px; margin-top: 19px; font-size: .75rem; font-weight: 800; }
input, textarea, select { width: 100%; min-height: 46px; border: 1px solid var(--ink); padding: 12px; background: var(--white); resize: vertical; }
dialog .solid-button { margin-top: 20px; }
.form-result { color: var(--rust); font-weight: 700; }
.dialog-intro { max-width: 570px; line-height: 1.55; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.optional { opacity: .55; font-weight: 500; }
.wish-styles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  border: 0;
}
.wish-styles legend {
  width: 100%;
  margin-bottom: 7px;
  font-size: .75rem;
  font-weight: 800;
}
.wish-styles label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 9px 12px;
  border: 1px solid var(--ink);
  cursor: pointer;
}
.wish-styles input { width: auto; min-height: 0; margin: 0; }
.wish-result {
  margin-top: 27px;
  padding: 22px;
  border-left: 5px solid var(--gold);
  background: var(--white);
}
.wish-result > p { margin: 0 0 20px; font-family: "DM Serif Display", serif; font-size: 1.55rem; line-height: 1.3; }
.share-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.share-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  font-size: .68rem;
  font-weight: 800;
  cursor: pointer;
}
.share-button:hover { background: var(--ink); color: var(--paper); }
.share-button.whatsapp { background: #1f8f56; border-color: #1f8f56; color: white; }
#copy-status { display: block; min-height: 1.2em; margin-top: 10px; color: var(--rust); }

@media (max-width: 1050px) {
  .lead-story { grid-template-columns: 1fr; align-items: start; }
  .image-wrap { min-height: 590px; }
  .front-page { grid-template-columns: 1.55fr .8fr; }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .story-card:last-child { grid-column: 1 / -1; border-top: 1px solid var(--ink); }
  .story-card:nth-child(2) { border-right: 0; }
}

@media (max-width: 980px) {
  .utility-bar { grid-template-columns: 1fr auto; }
  .utility-bar > span:nth-child(2) { display: none; }
  .masthead { grid-template-columns: 1fr; gap: 11px; padding-block: 18px 14px; }
  .date-panel { grid-column: 1; justify-self: center; text-align: center; }
  .nameday-strip { justify-content: center; }
  .brand-lockup { grid-column: 1; justify-self: center; }
  .mast-actions { grid-column: 1; justify-self: center; }
  .logo-whisper { display: none; }
}

@media (max-width: 760px) {
  .utility-bar { grid-template-columns: 1fr auto; gap: 5px; padding: 6px 4vw; }
  .utility-bar > span:nth-child(2) { display: none; }
  .masthead { min-height: 92px; grid-template-columns: 1fr; gap: 10px; padding-block: 18px 13px; }
  .date-panel { grid-column: 1; justify-self: center; text-align: center; }
  .nameday-strip { justify-content: center; }
  .brand-lockup { grid-column: 1; justify-self: center; }
  .brand-symbol { width: 51px; height: 51px; }
  .logo-whisper { display: none; }
  .wordmark { font-size: clamp(3.2rem, 15vw, 5.8rem); }
  .mast-actions { grid-column: 1; justify-self: center; flex-direction: row; align-items: stretch; gap: 7px; }
  .shop-link, .wish-link { padding: 8px 11px; font-size: .68rem; text-align: center; }
  nav { grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 0; }
  nav a { display: grid; place-items: center; min-height: 48px; padding: 8px 5px; white-space: normal; line-height: 1.15; }
  nav a:nth-child(4) { border-left: 1px solid var(--line); }
  nav a:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .front-page { grid-template-columns: 1fr; padding-inline: 4vw; }
  .image-wrap { min-height: min(590px, 115vw); }
  .lead-copy { padding-bottom: 25px; }
  h1 { font-size: clamp(3.5rem, 13vw, 6rem); }
  .news-rail { border-left: 0; padding-left: 0; border-top: 1px solid var(--ink); padding-top: 25px; }
  .credo { align-items: center; flex-direction: column; gap: 3px; text-align: center; }
  .wisdom-section { grid-template-columns: 1fr; }
  .section-intro { min-height: 340px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .wisdom-card { min-height: 500px; padding: 30px 7vw; }
  .decision { grid-template-columns: 1fr; padding: 80px 6vw; }
  .section-heading { grid-template-columns: 1fr; gap: 10px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-card, .story-card:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--ink); }
  .story-card:last-child { grid-column: auto; border-top: 0; border-bottom: 0; }
  .club-cta { align-items: flex-start; flex-direction: column; }
  .merch { grid-template-columns: 1fr; padding: 170px 6vw 80px; }
  .shirt-stage { min-height: 520px; }
  footer { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .article-header { grid-template-columns: 1fr auto; }
  .article-header .brand-lockup { grid-column: 1; justify-self: start; }
  .article-header .brand-symbol { display: block; }
  .article-page { padding-inline: 6vw; }
  .article-body blockquote { margin-inline: -3vw; padding-inline: 5vw; }
}

@media (max-width: 480px) {
  .masthead { grid-template-columns: 1fr; padding-bottom: 13px; }
  .brand-symbol { width: 47px; height: 47px; }
  .wordmark { justify-self: auto; }
  .mast-actions { grid-column: 1; width: min(100%, 340px); flex-direction: row; }
  .date-panel { width: min(100%, 340px); min-width: 0; }
  .mast-actions > * { flex: 1; }
  .front-page { padding-top: 20px; }
  .image-wrap { min-height: 128vw; }
  .section-intro h2, .decision h2, .section-heading h2, .merch h2 { font-size: 3.8rem; }
  blockquote { font-size: 3.25rem; }
  .story-grid { margin-inline: -2vw; }
  .club-cta { margin-inline: -2vw; }
  .shirt-stage { min-height: 450px; }
  .sun-disc { width: 340px; height: 340px; }
  .shirt { transform: scale(.82); }
  footer { grid-template-columns: 1fr; align-items: start; }
  dialog form { padding: 34px 24px; }
  dialog h2 { font-size: 3.25rem; }
  .wish-styles { display: grid; grid-template-columns: 1fr; }
  .article-header { grid-template-columns: auto 1fr; }
  .article-header .shop-link { grid-column: 1 / -1; width: 100%; text-align: center; }
  .article-page h1 { font-size: 3.8rem; }
  .back-link { margin-bottom: 45px; }
}
