:root {
  color-scheme: dark;
  --ink: #110c0f;
  --ink-2: #1a1216;
  --ink-3: #26191d;
  --ivory: #f7f1e8;
  --paper: #fffaf2;
  --muted: #cbbfc2;
  --wine: #78172f;
  --rose: #b73556;
  --gold: #c99a43;
  --gold-2: #efd39b;
  --teal: #2b8d87;
  --line: rgba(247, 241, 232, 0.16);
  --dark-line: rgba(17, 12, 15, 0.12);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.gate-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  transform: translateY(-140%);
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 4px;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  align-items: center;
  background: rgba(17, 12, 15, 0.84);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  left: 0;
  padding: 12px 32px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 0;
}

.brand img {
  border-radius: 50%;
  height: 46px;
  width: 46px;
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1;
  white-space: nowrap;
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ivory);
  cursor: pointer;
  display: none;
  height: 42px;
  justify-content: center;
  width: 46px;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  background: currentColor;
  content: "";
  display: block;
  height: 2px;
  position: relative;
  width: 20px;
}

.menu-toggle span::before {
  position: absolute;
  top: -7px;
}

.menu-toggle span::after {
  position: absolute;
  top: 7px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 4px;
}

.nav-links a {
  border-radius: 4px;
  color: rgba(247, 241, 232, 0.82);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 12px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  background: rgba(247, 241, 232, 0.1);
  color: var(--ivory);
  outline: none;
}

.hero {
  display: grid;
  min-height: 88svh;
  overflow: hidden;
  place-items: end start;
  position: relative;
}

.hero.compact {
  min-height: 62svh;
}

.hero-media {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center 18%;
  position: absolute;
  width: 100%;
  z-index: -3;
}

.home-hero .hero-media {
  object-position: center 20%;
}

.focus-top {
  object-position: center 12% !important;
}

.focus-center-top {
  object-position: center 16% !important;
}

.focus-left-top {
  object-position: 38% 14% !important;
}

.focus-right-top {
  object-position: 62% 14% !important;
}

.focus-contact {
  object-position: center top !important;
}

.focus-center {
  object-position: center center !important;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(17, 12, 15, 0.97) 0%, rgba(17, 12, 15, 0.72) 42%, rgba(17, 12, 15, 0.24) 74%),
    linear-gradient(180deg, rgba(17, 12, 15, 0.22) 0%, rgba(17, 12, 15, 0.14) 48%, rgba(17, 12, 15, 0.98) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -2;
}

.hero-content {
  padding: 136px 32px 84px;
  width: min(760px, 100%);
}

.hero.compact .hero-content {
  padding-bottom: 64px;
}

.eyebrow {
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.display {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  font-size: clamp(46px, 7vw, 88px);
  margin-bottom: 22px;
  max-width: 820px;
}

h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 10px;
}

p {
  color: rgba(247, 241, 232, 0.78);
  line-height: 1.72;
}

.hero-copy {
  color: rgba(247, 241, 232, 0.9);
  font-size: 20px;
  max-width: 700px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.center-row {
  justify-content: center;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gold);
  color: #180f11;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-2);
}

.button-secondary {
  background: rgba(247, 241, 232, 0.08);
  border-color: rgba(247, 241, 232, 0.28);
  color: var(--ivory);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(247, 241, 232, 0.16);
}

.section {
  padding: 92px 32px;
}

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

.section-wine {
  background: var(--wine);
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(120, 23, 47, 0.34), rgba(17, 12, 15, 0) 42%),
    var(--ink-2);
}

.section-heading {
  margin: 0 auto 44px;
  max-width: 820px;
  text-align: center;
}

.wide-heading {
  max-width: 980px;
}

.section-heading p {
  margin-left: auto;
  margin-right: auto;
  max-width: 710px;
}

.section-light p,
.section-light li {
  color: rgba(17, 12, 15, 0.72);
}

.section-light .eyebrow {
  color: var(--wine);
}

.content-grid {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: var(--content);
}

.content-grid.reverse .media-card {
  order: 2;
}

.media-card {
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.media-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center 18%;
  width: 100%;
}

.copy-block p:last-child {
  margin-bottom: 0;
}

.feature-grid,
.values-grid,
.event-grid,
.article-grid,
.social-grid {
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: var(--content);
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

.social-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.value-card,
.event-card,
.article-card,
.social-card,
.info-panel {
  border-radius: 8px;
  padding: 24px;
}

.feature-card,
.value-card,
.event-card,
.social-card,
.info-panel {
  background: rgba(247, 241, 232, 0.075);
  border: 1px solid var(--line);
}

.section-light .feature-card,
.section-light .value-card,
.section-light .event-card,
.section-light .info-panel {
  background: #ffffff;
  border-color: rgba(17, 12, 15, 0.1);
  box-shadow: 0 18px 50px rgba(17, 12, 15, 0.08);
}

.feature-card strong {
  color: var(--gold-2);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 8px;
}

.section-light .feature-card strong {
  color: var(--wine);
}

.feature-card p,
.value-card p,
.event-card p,
.social-card p {
  margin-bottom: 0;
}

.event-card ul,
.info-panel ul {
  line-height: 1.7;
  margin: 0;
  padding-left: 20px;
}

.event-card li + li,
.info-panel li + li {
  margin-top: 6px;
}

.calendar-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.calendar-card {
  display: grid;
  gap: 12px;
}

.calendar-card strong {
  color: var(--gold-2);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
}

.section-light .calendar-card strong {
  color: var(--wine);
}

.highlight-band {
  background: var(--ivory);
  color: var(--ink);
  padding: 36px 32px;
}

.highlight-inner {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto;
  margin: 0 auto;
  max-width: var(--content);
}

.highlight-inner p {
  color: rgba(17, 12, 15, 0.72);
  margin-bottom: 0;
}

.event-detail {
  background: #ffffff;
  border: 1px solid rgba(17, 12, 15, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(17, 12, 15, 0.08);
  color: var(--ink);
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: var(--content);
  overflow: hidden;
}

.event-detail-intro {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: 1.05fr 0.95fr;
}

.event-detail img {
  align-self: start;
  aspect-ratio: 4 / 3;
  background: #120c10;
  display: block;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center center;
  width: 100%;
}

.event-detail-copy {
  padding: 34px;
}

.event-meta {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 26px 0;
}

.event-meta div {
  background: #f7f1e8;
  border: 1px solid rgba(17, 12, 15, 0.08);
  border-radius: 6px;
  padding: 14px;
}

.event-meta span {
  color: var(--wine);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.event-detail p,
.event-detail li {
  color: rgba(17, 12, 15, 0.72);
}

.event-stack {
  display: grid;
  gap: 34px;
  margin: 0 auto;
  max-width: var(--content);
}

.event-payment {
  border-top: 1px solid rgba(17, 12, 15, 0.12);
  margin: 0 34px 34px;
  padding-top: 24px;
}

.event-payment > div,
.payment-panel > div {
  min-height: 48px;
}

.paypal-box {
  background: #f7f1e8;
  border: 1px solid rgba(17, 12, 15, 0.12);
  border-radius: 8px;
  color: var(--ink);
  margin-top: 24px;
  padding: 22px;
}

.form-shell {
  background: rgba(247, 241, 232, 0.075);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 980px;
  padding: 28px;
}

.section-light .form-shell {
  background: #ffffff;
  border-color: rgba(17, 12, 15, 0.1);
  box-shadow: 0 18px 50px rgba(17, 12, 15, 0.08);
}

.form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 8px;
}

.field-wide {
  grid-column: 1 / -1;
}

label {
  color: rgba(247, 241, 232, 0.9);
  font-weight: 900;
}

.section-light label,
.event-detail label,
.paypal-box label {
  color: rgba(17, 12, 15, 0.84);
}

input,
select,
textarea {
  background: rgba(247, 241, 232, 0.08);
  border: 1px solid rgba(247, 241, 232, 0.22);
  border-radius: 4px;
  color: var(--ivory);
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

.section-light input,
.section-light select,
.section-light textarea,
.event-detail input,
.event-detail select,
.event-detail textarea,
.paypal-box input,
.paypal-box select,
.paypal-box textarea {
  background: #f7f1e8;
  border-color: rgba(17, 12, 15, 0.18);
  color: var(--ink);
}

select option {
  background: var(--ink);
  color: var(--ivory);
}

.section-light select option,
.event-detail select option {
  background: #ffffff;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 154, 67, 0.18);
  outline: none;
}

.check-row {
  align-items: start;
  display: grid;
  gap: 12px;
  grid-template-columns: 22px 1fr;
}

.check-row input {
  accent-color: var(--gold);
  height: 20px;
  margin-top: 2px;
  min-height: 20px;
  padding: 0;
}

.check-row span {
  color: rgba(247, 241, 232, 0.78);
  line-height: 1.55;
}

.section-light .check-row span,
.event-detail .check-row span {
  color: rgba(17, 12, 15, 0.72);
}

.newsletter {
  background: var(--ink-3);
  border-top: 1px solid var(--line);
  padding: 70px 32px;
}

.newsletter-inner {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: 0.9fr 1.1fr;
  margin: 0 auto;
  max-width: var(--content);
}

.newsletter-photo {
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.newsletter-photo img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 16%;
  width: 100%;
}

.newsletter-form {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr auto;
}

.newsletter-form .field-wide {
  grid-column: 1 / -1;
}

.article-card {
  background: #ffffff;
  border: 1px solid rgba(17, 12, 15, 0.1);
  color: var(--ink);
  overflow: hidden;
  padding: 0;
}

.article-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 18%;
  width: 100%;
}

.article-card div {
  padding: 22px;
}

.article-card p {
  color: rgba(17, 12, 15, 0.72);
  margin-bottom: 0;
}

.article-list {
  display: grid;
  gap: 34px;
  margin: 0 auto;
  max-width: 1040px;
}

.longform-list {
  gap: 42px;
  max-width: 1080px;
}

.content-stat-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto 28px;
  max-width: var(--content);
}

.content-stat-grid div {
  background: #ffffff;
  border: 1px solid rgba(17, 12, 15, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(17, 12, 15, 0.06);
  padding: 22px;
}

.content-stat-grid strong {
  color: var(--wine);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
  margin-bottom: 8px;
}

.content-stat-grid span {
  color: rgba(17, 12, 15, 0.7);
  display: block;
  font-weight: 800;
  line-height: 1.35;
}

.article-directory {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto 42px;
  max-width: var(--content);
}

.article-directory a {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 12, 15, 0.12);
  border-radius: 8px;
  color: var(--ink);
  display: grid;
  gap: 8px;
  min-height: 128px;
  padding: 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.article-directory a:hover,
.article-directory a:focus-visible {
  border-color: rgba(120, 23, 47, 0.34);
  box-shadow: 0 14px 34px rgba(17, 12, 15, 0.1);
  outline: none;
  transform: translateY(-2px);
}

.article-directory span {
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.article-directory strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.1;
}

.article-directory small {
  color: rgba(17, 12, 15, 0.66);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.resource-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--content);
}

.resource-card {
  background: #ffffff;
  border: 1px solid rgba(17, 12, 15, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(17, 12, 15, 0.06);
  color: var(--ink);
  overflow: hidden;
}

.resource-card-link {
  align-items: center;
  display: grid;
  grid-template-columns: 170px 1fr;
  height: 100%;
}

.resource-card img {
  align-self: center;
  aspect-ratio: auto;
  background: transparent;
  display: block;
  height: auto;
  object-fit: contain;
  object-position: center center;
  width: 100%;
}

.resource-card div {
  align-content: center;
  display: grid;
  min-width: 0;
  padding: 20px;
}

.resource-card h3 {
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.05;
  margin-bottom: 10px;
}

.resource-card p:not(.article-kicker) {
  color: rgba(17, 12, 15, 0.68);
  font-size: 15px;
  line-height: 1.5;
}

.text-link {
  color: var(--wine);
  font-weight: 900;
  margin-top: 6px;
}

.detail-page-hero {
  padding-top: 118px;
}

.breadcrumb {
  color: rgba(17, 12, 15, 0.62);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 auto 22px;
  max-width: var(--content);
}

.breadcrumb a {
  color: var(--wine);
  font-weight: 900;
}

.detail-hero {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(280px, 0.82fr) 1.18fr;
  margin: 0 auto;
  max-width: var(--content);
}

.detail-hero-media {
  background: transparent;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.detail-hero-media img {
  aspect-ratio: auto;
  background: transparent;
  display: block;
  height: auto;
  object-fit: contain;
  object-position: center center;
  width: 100%;
}

.detail-hero-media figcaption {
  background: rgba(8, 6, 7, 0.76);
  bottom: 12px;
  border-radius: 4px;
  color: rgba(247, 241, 232, 0.86);
  font-size: 12px;
  font-weight: 800;
  left: 12px;
  max-width: calc(100% - 24px);
  padding: 8px 10px;
  position: absolute;
}

.detail-hero-copy h1 {
  font-size: clamp(42px, 7vw, 88px);
}

.detail-hero-copy p {
  color: rgba(17, 12, 15, 0.72);
  font-size: 20px;
}

.section-tight {
  padding-top: 0;
}

.standalone-longform {
  margin: 0 auto;
  max-width: 900px;
}

.article-full {
  background: #ffffff;
  border: 1px solid rgba(17, 12, 15, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(17, 12, 15, 0.08);
  color: var(--ink);
  overflow: hidden;
}

.article-full figure,
.blog-story figure {
  margin: 0;
  position: relative;
}

.article-full img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 18%;
  width: 100%;
}

.article-full figcaption,
.blog-story figcaption {
  background: rgba(8, 6, 7, 0.76);
  bottom: 14px;
  border: 1px solid rgba(247, 241, 232, 0.16);
  border-radius: 4px;
  color: rgba(247, 241, 232, 0.86);
  font-size: 12px;
  font-weight: 800;
  left: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 10px;
  position: absolute;
}

.blog-story {
  background: #ffffff;
  border: 1px solid rgba(17, 12, 15, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(17, 12, 15, 0.08);
  color: var(--ink);
  overflow: hidden;
}

.blog-story img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 20%;
  width: 100%;
}

.article-body {
  padding: 34px;
}

.article-body p {
  color: rgba(17, 12, 15, 0.74);
}

.article-kicker {
  color: var(--wine);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.article-body p:last-child {
  margin-bottom: 0;
}

.article-cta {
  border-top: 1px solid rgba(17, 12, 15, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
}

.social-card {
  text-align: center;
}

.social-card strong {
  color: var(--gold-2);
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.membership-price,
.payment-grid {
  display: grid;
  gap: 24px;
  margin: 0 auto;
  max-width: var(--content);
}

.membership-price {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(17, 12, 15, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(17, 12, 15, 0.08);
  grid-template-columns: 1fr auto;
  margin-bottom: 28px;
  padding: 28px;
}

.membership-price span {
  color: var(--wine);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.membership-price strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 78px);
  font-weight: 500;
  line-height: 0.95;
  margin-bottom: 12px;
}

.membership-price p {
  margin-bottom: 0;
}

.membership-dates {
  margin-top: 28px;
}

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

.payment-panel {
  background: rgba(247, 241, 232, 0.075);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.payment-panel p:last-child {
  margin-bottom: 0;
}

.payment-phone {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  line-height: 1.1;
}

.payment-phone a {
  color: var(--gold-2);
}

.site-footer {
  background: #080607;
  border-top: 1px solid var(--line);
  padding: 38px 32px;
}

.footer-inner {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  margin: 0 auto;
  max-width: var(--content);
}

.footer-inner p {
  margin-bottom: 0;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.contact-link {
  color: var(--gold-2);
  font-weight: 800;
}

.age-gate {
  align-items: center;
  background: rgba(8, 6, 7, 0.95);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 120;
}

.age-gate.is-visible {
  display: flex;
}

.age-panel {
  background: #171114;
  border: 1px solid rgba(247, 241, 232, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-width: 520px;
  padding: 34px;
  text-align: center;
}

.age-panel img {
  border-radius: 50%;
  height: 88px;
  margin: 0 auto 20px;
  width: 88px;
}

.age-panel h2 {
  font-size: 40px;
}

.age-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 12px 20px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    flex-wrap: wrap;
    width: 100%;
  }

  .site-header.nav-open .nav-links {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .nav-links a {
    text-align: center;
  }

  .content-grid,
  .content-grid.reverse,
  .event-detail,
  .event-detail-intro,
  .newsletter-inner,
  .footer-inner,
  .membership-price,
  .payment-grid,
  .highlight-inner,
  .detail-hero {
    grid-template-columns: 1fr;
  }

  .content-grid.reverse .media-card {
    order: 0;
  }

  .feature-grid,
  .values-grid,
  .event-grid,
  .article-grid,
  .social-grid,
  .content-stat-grid,
  .article-directory,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-detail img {
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 0;
    position: static;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 16px;
  }

  .brand span {
    font-size: 18px;
  }

  .brand img {
    height: 38px;
    width: 38px;
  }

  .site-header.nav-open .nav-links {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero.compact {
    min-height: 82svh;
  }

  .hero-content,
  .hero.compact .hero-content {
    padding: 124px 18px 50px;
  }

  .hero-media,
  .focus-top,
  .focus-center-top,
  .focus-contact {
    object-position: center center !important;
  }

  .focus-left-top {
    object-position: 38% center !important;
  }

  .focus-right-top {
    object-position: 62% center !important;
  }

  .hero-copy {
    font-size: 18px;
  }

  .section,
  .newsletter,
  .highlight-band,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .button {
    width: 100%;
  }

  .feature-grid,
  .values-grid,
  .event-grid,
  .article-grid,
  .social-grid,
  .content-stat-grid,
  .article-directory,
  .resource-grid,
  .form-grid,
  .event-meta {
    grid-template-columns: 1fr;
  }

  .home-hero .hero-media {
    object-position: 52% 14% !important;
  }

  .resource-card-link {
    grid-template-columns: 118px 1fr;
  }

  .resource-card div {
    padding: 16px;
  }

  .resource-card h3 {
    font-size: 22px;
  }

  .resource-card p:not(.article-kicker) {
    display: none;
  }

  .detail-page-hero {
    padding-top: 94px;
  }

  .form-shell,
  .article-body,
  .event-detail-copy,
  .age-panel {
    padding: 24px 18px;
  }

  .event-payment {
    margin: 0 18px 26px;
  }

  .article-directory a {
    min-height: auto;
  }

  .article-full figcaption,
  .blog-story figcaption {
    bottom: 10px;
    font-size: 11px;
    left: 10px;
    max-width: calc(100% - 20px);
  }

  .article-cta {
    display: grid;
  }

  .age-actions {
    flex-direction: column;
  }
}
