@charset "UTF-8";
/* ── Anniversary design tokens ─────────────────────────────
   Shared variables for both the hub (ivory/paper, Cormorant + Manrope)
   and year-page (dark dossier, Georgia + Segoe) design systems.        */
/* ── Shared presentation mixins ─────────────────────────────── */
/* ── Self-hosted module webfonts ─────────────────────────────
   Manrope is OFL-licensed; the latin variable woff2 is committed
   by `pnpm run build:fonts` to src/view/frontend/web/fonts/anniversaries/
   (sourced from @fontsource-variable/manrope). The theme
   (EternityRose_Theme) self-hosts Cormorant Garamond, Cinzel and
   Jost — this file only covers families the theme does not load. */
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/anniversaries/manrope-wght.woff2") format("woff2");
}
/* ── Shared animations ───────────────────────────────────── */
@keyframes ag-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes ag-rise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ag-pulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}
/* ── Shared layout primitives ────────────────────────────── */
.ag-shell {
  width: min(1190px, 100% - 48px);
  margin-inline: auto;
}

.ag-container {
  width: min(1180px, 100% - 40px);
  margin-inline: auto;
}

.ag-narrow {
  width: min(780px, 100% - 40px);
  margin-inline: auto;
}

.ag-section {
  padding: 120px 0;
}

.ag-section--soft {
  background: #e9e5dd;
}

.ag-section--ink {
  background: #191715;
  color: #fff;
}

/* ── Shared components ───────────────────────────────────── */
.ag-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid #6f1422;
  background: #6f1422;
  color: #fffdf8;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.ag-button:hover {
  background: #4e0c17;
  border-color: #4e0c17;
  color: #fffdf8;
  transform: translateY(-1px);
}

.ag-button--ghost {
  background: transparent;
  color: #6f1422;
}
.ag-button--ghost:hover {
  background: transparent;
  color: #fffdf8;
}

.ag-button--gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 14px 27px;
  border: 0;
  background: #e2c480;
  color: #090909;
  font-family: "Manrope", arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}
.ag-button--gold:hover {
  background: #f0d594;
  /* WeltPixel's `a:hover { color: #444 }` out-specifies the base
     `color` on hovered anchors — keep the label dark. */
  color: #090909;
  transform: translateY(-1px);
}

.ag-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentcolor;
  color: inherit;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}
.ag-text-link:hover span {
  transform: translateY(3px);
}

.ag-text-link span {
  transition: transform 0.2s ease;
}

/* WeltPixel's `a:hover { color: #444 }` (0,1,1) out-specifies the bare
   `.ag-text-link` (0,1,0) — the hub intro link went dark on hover. Re-anchor
   at (0,2,0); the link inherits its section colour. */
.ag-section .ag-text-link,
.ag-section .ag-text-link:hover,
.ag-section .ag-text-link:focus-visible {
  color: inherit;
}

.ag-eyebrow {
  margin: 0 0 12px;
  color: #806b4e;
  font-size: 0.74rem;
  line-height: 1.3;
  font-weight: 750;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.ag-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.ag-product-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  background: #fffdf8;
  color: #1b1a19;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

.ag-product-card__eyebrow {
  margin: 0 0 12px;
  color: #c29b62;
  font-size: 0.74rem;
  line-height: 1.3;
  font-weight: 750;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.ag-product-card__title {
  margin: 0 0 20px;
  font-family: georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.03;
}

.ag-product-card__lead {
  color: #68635e;
}

.ag-product-card__media {
  min-height: 520px;
  padding: 46px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #f8f6f1, #eae5dd);
}

.ag-product-card__media img {
  width: min(100%, 460px);
  max-height: 470px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.ag-product-card__copy {
  padding: clamp(44px, 7vw, 88px);
  align-self: center;
}

.ag-product-card__copy h2 {
  margin: 0 0 20px;
  font-family: georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.03;
}

.ag-product-card__copy p {
  color: #68635e;
}

.ag-product-card__points {
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.ag-product-card__points li {
  position: relative;
  padding-left: 24px;
}

.ag-product-card__points li::before {
  content: "◇";
  position: absolute;
  left: 0;
  color: #b58a4a;
}

.ag-faq {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(39, 31, 25, 0.14);
}

.ag-faq__item {
  border-bottom: 1px solid rgba(39, 31, 25, 0.14);
}

.ag-faq__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 0;
  border: 0;
  background: none;
  color: #1b1a19;
  text-align: left;
  cursor: pointer;
  font-family: georgia, "Times New Roman", serif;
  font-size: 1.18rem;
}

.ag-faq__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6f1422;
  font-family: "Segoe UI", arial, sans-serif;
  font-size: 1.2rem;
}

.ag-faq__answer {
  padding: 0 50px 24px 0;
  color: #68635e;
}

.ag-tabset__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 35px 0 22px;
  padding: 0;
  list-style: none;
}

.ag-tabset__list .ag-tabset__tab {
  padding: 12px 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  font-weight: 750;
}
.ag-tabset__list .ag-tabset__tab:hover:not(.is-active) {
  color: rgba(255, 255, 255, 0.9);
}

/* Reference active tab renders the warm gold #c29b62 (its --er-gold-warm),
   not the year-page gold #b58a4a, with #111 text that survives hover —
   `:not(.is-active)` keeps the theme-style white hover off the active tab. */
.ag-tabset__tab.is-active {
  border-color: #c29b62;
  background: #c29b62;
  color: #111;
}

.ag-tabset__panel {
  min-height: 340px;
  padding: clamp(30px, 5vw, 60px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #1d1d1d;
}

.ag-tabset__panel[hidden] {
  display: none;
}

.ag-tabset__panel h3 {
  margin: 0 0 16px;
  font-family: georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 400;
}

.ag-tabset__panel p {
  color: rgba(255, 255, 255, 0.65);
}

.ag-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #1d1b1a;
}

.ag-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.ag-table th,
.ag-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #3b3732;
  text-align: left;
  vertical-align: middle;
}

.ag-table thead th {
  position: sticky;
  top: 0;
  z-index: 5;
  background: #0c0c0c;
  color: #e2c480;
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ag-table tbody tr {
  transition: background 0.2s ease;
}

.ag-table tbody tr:hover,
.ag-table tbody tr.is-selected {
  background: #2b2825;
}

.ag-table tbody tr.is-selected {
  box-shadow: inset 3px 0 #e2c480;
}

.ag-table td {
  color: #c5bdb3;
  font-size: 0.75rem;
  line-height: 1.45;
}

.ag-table td strong {
  color: #fffdf8;
  font-family: "Cormorant Garamond", georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.ag-chapter-nav {
  position: sticky;
  top: var(--ag-header-height, 60px);
  z-index: 24;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(12px);
  border-block: 1px solid rgba(39, 31, 25, 0.14);
}

.ag-chapter-nav__inner {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ag-chapter-nav__inner::-webkit-scrollbar {
  display: none;
}

.ag-chapter-nav__link {
  flex: 0 0 auto;
  padding: 15px 18px;
  color: #4d4742;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.ag-chapter-nav__link:hover, .ag-chapter-nav__link.is-active {
  color: #6f1422;
}

.ag-chapter-nav__chip {
  margin-right: auto;
  padding-left: 0;
  color: #6f1422;
}

@media (prefers-reduced-motion: reduce) {
  .ag-button,
  .ag-faq__icon,
  .ag-tabset__tab,
  .ag-chapter-nav__link,
  .ag-table tbody tr,
  .ag-product-card {
    transition: none;
  }
}
@media (max-width: 960px) {
  .ag-product-card {
    grid-template-columns: 1fr;
  }
  .ag-product-card__media {
    min-height: 430px;
  }
}
@media (max-width: 680px) {
  .ag-product-card__media {
    min-height: 340px;
    padding: 28px;
  }
  .ag-product-card__copy {
    padding: 36px 27px;
  }
  .ag-table,
  .ag-table tbody,
  .ag-table tr,
  .ag-table th,
  .ag-table td {
    display: block;
  }
}
/* ── Hub hero ────────────────────────────────────────────── */
.ag-hub__hero {
  position: relative;
  padding: 0;
  /* Reference renders 768px at the 800px audit viewport — the plain
     100vh calc capped us at 680px there. */
  min-height: min(820px, max(768px, 100vh - 120px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #111;
  color: #fffdf8;
}

.ag-hub__hero-image,
.ag-hub__hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ag-hub__hero-image {
  object-fit: cover;
  object-position: center;
}

.ag-hub__hero-overlay {
  background: linear-gradient(90deg, rgba(7, 6, 6, 0.96) 0%, rgba(7, 6, 6, 0.78) 40%, rgba(7, 6, 6, 0.16) 72%, rgba(7, 6, 6, 0.06) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.38), transparent 50%);
}

.ag-hub__hero-content {
  position: relative;
  z-index: 2;
  padding: 68px 0 88px;
}

.ag-hub__hero h1 {
  max-width: 760px;
  margin: 0 0 28px;
  color: #fff;
  font-family: "Cormorant Garamond", georgia, serif;
  font-size: clamp(4.2rem, 8vw, 7.6rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.038em;
}

.ag-hub__hero h1 em {
  color: #e2c480;
  font-weight: 500;
}

.ag-hub__hero-lead {
  max-width: 640px;
  margin-bottom: 36px;
  color: #e3dbcf;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.8;
}

.ag-hub__finder {
  width: min(650px, 100%);
  margin-top: 38px;
  padding: 22px 24px 18px;
  background: rgba(250, 246, 238, 0.97);
  color: #151412;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.ag-hub__finder-label {
  display: block;
  margin-bottom: 10px;
  color: #70665a;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ag-hub__finder-control {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 90px 1fr;
  align-items: center;
  border: 1px solid #cfc1ad;
}

.ag-hub__finder-prefix {
  padding-left: 17px;
  color: #95846e;
  font-family: "Cormorant Garamond", georgia, serif;
  font-size: 1.25rem;
}

/* Double-class selector: must out-specify the `.ag-hub input` reset
   in hub.scss so the year number keeps the display serif
   (mirrors the reference's `.finder-control input`). */
.ag-hub__finder-control .ag-hub__finder-input {
  width: 100%;
  height: 56px;
  border: 0;
  background: transparent;
  color: #151412;
  font-family: "Cormorant Garamond", georgia, serif;
  font-size: 1.9rem;
  text-align: center;
  appearance: textfield;
}

.ag-hub__finder-input::-webkit-inner-spin-button {
  appearance: none;
}

.ag-hub__finder-input:focus {
  outline: 0;
  background: #fffdf8;
}

.ag-hub__finder-submit {
  height: 56px;
  border: 0;
  background: #721923;
  color: #fffdf8;
  cursor: pointer;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.ag-hub__finder-submit:hover {
  background: #541018;
}

.ag-hub__finder-note {
  margin: 9px 0 0;
  color: #887d70;
  font-size: 0.68rem;
}

.ag-hub__hero-index {
  position: absolute;
  right: max(24px, (100% - 1190px) / 2);
  bottom: 34px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, auto auto);
  align-items: center;
  gap: 6px 13px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

/* Reference: the number leads in gold, the material label follows muted. */
.ag-hub__hero-index-label {
  color: #cfc5ba;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.ag-hub__hero-index-value {
  margin: 0 12px 0 0;
  color: #e2c480;
  font-family: "Cormorant Garamond", georgia, serif;
  font-size: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .ag-hub__finder-submit,
  .ag-hub__finder-input {
    transition: none;
  }
}
@media (max-width: 790px) {
  .ag-hub__hero {
    min-height: 760px;
    align-items: end;
  }
  .ag-hub__hero-image {
    object-position: 64% center;
  }
  .ag-hub__hero-overlay {
    background: linear-gradient(0deg, rgba(7, 6, 6, 0.98), rgba(7, 6, 6, 0.78) 58%, rgba(7, 6, 6, 0.08) 100%);
  }
  .ag-hub__hero-content {
    padding: 250px 0 55px;
  }
  .ag-hub__hero h1 {
    font-size: clamp(3.7rem, 18vw, 5.4rem);
  }
  .ag-hub__hero-lead {
    font-size: 0.91rem;
    line-height: 1.7;
  }
  .ag-hub__finder {
    padding: 18px 16px 14px;
  }
  .ag-hub__finder-control {
    grid-template-columns: auto 70px 1fr;
  }
  .ag-hub__finder-prefix {
    padding-left: 12px;
    font-size: 1rem;
  }
  .ag-hub__finder-control .ag-hub__finder-input {
    font-size: 1.55rem;
  }
  .ag-hub__finder-submit {
    padding: 0 12px;
    font-size: 0.59rem;
  }
  .ag-hub__hero-index {
    display: none;
  }
}
@media (max-width: 430px) {
  .ag-hub__hero h1 {
    font-size: 3.85rem;
  }
  .ag-hub__finder-control {
    grid-template-columns: 55px 58px 1fr;
  }
  .ag-hub__finder-submit {
    font-size: 0.54rem;
  }
}
/* ── Hub feature card (populated by the finder) ────────────── */
.ag-hub__feature {
  position: relative;
  min-height: 390px;
  display: grid;
  grid-template-columns: 190px 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  margin: 24px 0 52px;
  padding: 48px;
  background: #fffdf8;
  color: #151412;
  overflow: hidden;
}

.ag-hub__feature::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -180px;
  width: 420px;
  height: 300px;
  border: 1px solid #d8cab8;
  border-radius: 50%;
  transform: rotate(-12deg);
}

.ag-hub__feature-year {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 38px;
  border-right: 1px solid #d9cdbc;
}

.ag-hub__feature-year-label {
  margin-top: 16px;
  color: #8b7e6e;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ag-hub__feature-year-number {
  color: #721923;
  font-family: "Cormorant Garamond", georgia, serif;
  font-size: 7.7rem;
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

/* Reference render: "25TH" — small burgundy caps above the big numeral. */
.ag-hub__feature-year-ordinal {
  color: #721923;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ag-hub__feature-return {
  align-self: flex-start;
  margin-top: 28px;
  padding: 8px 0 7px;
  border: 0;
  border-bottom: 1px solid #b9aa96;
  background: transparent;
  color: #665b4f;
  cursor: pointer;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.3;
  text-transform: uppercase;
}
.ag-hub__feature-return:hover {
  border-color: #721923;
  color: #721923;
}
.ag-hub__feature-return:focus-visible {
  outline: 2px solid #721923;
  outline-offset: 4px;
}

.ag-hub__feature-return-icon {
  margin-right: 7px;
  color: #721923;
  font-size: 0.9rem;
  line-height: 0;
}

.ag-hub__feature-story {
  position: relative;
  z-index: 1;
}

.ag-hub__feature-title {
  margin: 0 0 20px;
  font-family: "Cormorant Garamond", georgia, serif;
  font-size: clamp(2.2rem, 3.4vw, 3.55rem);
  font-weight: 600;
  line-height: 1;
}

.ag-hub__feature-meaning {
  color: #625a51;
  font-size: 0.92rem;
}

.ag-hub__feature-idea {
  margin: 25px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid #d9cdbc;
}

.ag-hub__feature-idea-label {
  display: block;
  margin-bottom: 6px;
  color: #c6a25e;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ag-hub__feature-idea-text {
  color: #514940;
  font-family: "Cormorant Garamond", georgia, serif;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.4;
}

.ag-hub__feature-facts {
  position: relative;
  z-index: 1;
  margin: 0;
}

.ag-hub__feature-fact {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid #d9cdbc;
}

.ag-hub__feature-fact-label {
  color: #8c7f70;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ag-hub__feature-fact-value {
  margin: 0;
  font-family: "Cormorant Garamond", georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
}

.ag-hub__feature-fact-value .ag-swatch {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  vertical-align: 0;
}

.ag-hub__feature-link {
  position: absolute;
  right: 48px;
  bottom: 24px;
  z-index: 2;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.ag-hub__feature-link-icon {
  color: #721923;
}

@media (prefers-reduced-motion: reduce) {
  .ag-hub__feature,
  .ag-hub__feature-return {
    transition: none;
  }
}
@media (max-width: 1050px) {
  .ag-hub__feature {
    grid-template-columns: 155px 1fr;
  }
  .ag-hub__feature-facts {
    grid-column: 2;
  }
  .ag-hub__feature-link {
    right: 48px;
  }
}
@media (max-width: 790px) {
  .ag-hub__feature {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 35px 26px 70px;
  }
  /* The wide breakpoint pins the facts to column 2 — without this reset
     they force a second implicit column at one-column widths and the
     story text clips mid-word at 390px. */
  .ag-hub__feature-facts {
    grid-column: auto;
  }
  .ag-hub__feature-year {
    align-self: auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: end;
    padding: 0 0 24px;
    border-right: 0;
    border-bottom: 1px solid #d9cdbc;
  }
  .ag-hub__feature-year-number {
    font-size: 5.8rem;
  }
  .ag-hub__feature-year-ordinal {
    text-align: right;
  }
  .ag-hub__feature-return {
    grid-column: 1/-1;
    justify-self: start;
    margin-top: 18px;
  }
  .ag-hub__feature-facts {
    grid-column: 1;
  }
  .ag-hub__feature-link {
    left: 26px;
    right: auto;
    bottom: 24px;
  }
}
@media (max-width: 430px) {
  .ag-hub__feature {
    padding-inline: 22px;
  }
  .ag-hub__feature-year-number {
    font-size: 5rem;
  }
}
/* ── Hub quick-year strip ─────────────────────────────────── */
.ag-quick-years {
  padding: 0;
  background: #191817;
  color: #eee6dc;
}

.ag-quick-years__inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 17px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.ag-quick-years__inner::-webkit-scrollbar {
  display: none;
}

.ag-quick-years__label {
  flex: 0 0 auto;
  color: #e2c480;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ag-quick-years__buttons {
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ag-quick-years__button {
  width: 46px;
  height: 34px;
  border: 1px solid transparent;
  background: transparent;
  color: #ddd3c7;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 700;
  scroll-snap-align: start;
}
.ag-quick-years__button:hover, .ag-quick-years__button:focus-visible {
  border-color: #c6a25e;
  color: #fffdf8;
}

@media (max-width: 1050px) {
  .ag-quick-years__inner {
    justify-content: flex-start;
  }
  .ag-quick-years__inner > * {
    flex: 0 0 auto;
  }
  .ag-quick-years__label {
    display: none;
  }
}
@media (max-width: 790px) {
  .ag-quick-years__inner {
    min-height: 58px;
  }
}
/* ── Hub intro ─────────────────────────────────────────────── */
.ag-hub__intro {
  background: #fffdf8;
}

.ag-hub__intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 85px;
}

.ag-hub .ag-hub__intro h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.4vw, 5.25rem);
  font-weight: 600;
}

.ag-hub__intro h2 em {
  color: #721923;
}

.ag-hub__intro-copy {
  padding-top: 34px;
}

.ag-hub__intro-copy > p {
  color: #6d655b;
}

.ag-hub__intro-copy .ag-hub__intro-lead {
  color: #151412;
  font-family: "Cormorant Garamond", georgia, serif;
  font-size: clamp(1.65rem, 2.7vw, 2.25rem);
  line-height: 1.24;
}

.ag-hub__stats {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 45px 0 0;
  border-top: 1px solid #d9cdbc;
  border-bottom: 1px solid #d9cdbc;
}

.ag-hub__stat {
  min-height: 150px;
  padding: 30px;
  border-right: 1px solid #d9cdbc;
}

.ag-hub__stat:first-child {
  padding-left: 0;
}

.ag-hub__stat:last-child {
  border: 0;
}

.ag-hub__stat-value {
  display: block;
  color: #721923;
  font-family: "Cormorant Garamond", georgia, serif;
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1;
}

.ag-hub__stat-label {
  display: block;
  margin: 10px 0 0;
  color: #7b7063;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 790px) {
  .ag-hub__intro-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .ag-hub__intro-copy {
    padding-top: 0;
  }
  .ag-hub__stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
  }
  .ag-hub__stat {
    min-height: 130px;
    padding: 24px;
    border-bottom: 1px solid #d9cdbc;
  }
  .ag-hub__stat:nth-child(2) {
    border-right: 0;
  }
  .ag-hub__stat:nth-child(n+3) {
    border-bottom: 0;
  }
  .ag-hub__stat:nth-child(3) {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .ag-hub__stats {
    grid-template-columns: 1fr;
  }
  .ag-hub__stat {
    border-right: 0;
  }
}
/* ── Hub milestones ────────────────────────────────────────── */
.ag-hub__milestones {
  background: #ece4d9;
}

.ag-hub__section-heading {
  max-width: 810px;
  margin-bottom: 58px;
}
.ag-hub__section-heading.is-centred {
  margin-inline: auto;
  text-align: center;
}

.ag-hub__section-heading h2 {
  margin-bottom: 0;
}

.ag-hub__section-heading h2 em {
  color: #721923;
}

.ag-hub__section-intro {
  max-width: 640px;
  margin-inline: auto;
  color: #6d655b;
}

.ag-hub__milestones-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 1px solid #cfc1b0;
  border-bottom: 1px solid #cfc1b0;
}

.ag-hub__milestone-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 15px 22px;
  border: 0;
  border-right: 1px solid #cfc1b0;
  background: transparent;
  color: #151412;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.ag-hub__milestone-card:last-child {
  border-right: 0;
}
.ag-hub__milestone-card:hover {
  position: relative;
  z-index: 2;
  transform: translateY(-7px);
  background: #fffdf8;
  box-shadow: 0 15px 35px rgba(40, 30, 20, 0.1);
}

.ag-hub__milestone-number {
  align-self: flex-start;
  color: #877a6b;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.ag-hub__material-disc {
  width: 82px;
  height: 82px;
  margin: 45px 0 30px;
  border-radius: 50%;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.28), 0 10px 24px rgba(50, 35, 20, 0.14);
}

.ag-hub__milestone-card.is-paper .ag-hub__material-disc {
  background: repeating-linear-gradient(8deg, #eee3cf 0 2px, #faf5e9 2px 5px);
}

.ag-hub__milestone-card.is-wood .ag-hub__material-disc {
  background: repeating-linear-gradient(92deg, #76502f 0 4px, #9c704a 4px 10px, #6e4729 10px 13px);
}

.ag-hub__milestone-card.is-tin .ag-hub__material-disc {
  background: linear-gradient(135deg, #d8d9d5, #878b8c 48%, #edf0ee 50%, #8e9290);
}

.ag-hub__milestone-card.is-silver .ag-hub__material-disc {
  background: radial-gradient(circle at 32% 28%, #fff, #a7acaf 53%, #5b6164);
}

.ag-hub__milestone-card.is-ruby .ag-hub__material-disc {
  background: radial-gradient(circle at 33% 28%, #d14252, #8b101f 58%, #3e060d);
}

.ag-hub__milestone-card.is-gold .ag-hub__material-disc {
  background: radial-gradient(circle at 33% 28%, #f7db87, #c18b24 58%, #684813);
}

.ag-hub__milestone-card.is-diamond .ag-hub__material-disc {
  background: conic-gradient(from 20deg, #fdfdf7, #a9c0c7, #fff, #c9d6d9, #fdfdf7);
  clip-path: polygon(50% 0, 90% 25%, 76% 80%, 50% 100%, 24% 80%, 10% 25%);
  border-radius: 0;
}

.ag-hub__milestone-title {
  margin: 0;
  font-family: "Cormorant Garamond", georgia, serif;
  font-size: 1.65rem;
  font-weight: 600;
}

.ag-hub__milestone-theme {
  margin: 0;
  color: #827666;
  font-size: 0.68rem;
}

.ag-hub__milestone-card .ag-hub__milestone-cta {
  margin-top: auto;
  color: #721923;
  font-size: 0.59rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}
.ag-hub__milestone-card .ag-hub__milestone-cta:hover {
  color: #541018;
}

@media (prefers-reduced-motion: reduce) {
  .ag-hub__milestone-card {
    transition: none;
  }
}
@media (max-width: 1050px) {
  .ag-hub__milestones-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .ag-hub__milestone-card {
    border-bottom: 1px solid #cfc1b0;
  }
  .ag-hub__milestone-card:nth-child(4) {
    border-right: 0;
  }
  .ag-hub__milestone-card:nth-child(n+5) {
    border-bottom: 0;
  }
}
@media (max-width: 790px) {
  .ag-hub__milestones-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ag-hub__milestone-card {
    min-height: 310px;
    border-right: 1px solid #cfc1b0 !important;
  }
  .ag-hub__milestone-card:nth-child(even) {
    border-right: 0 !important;
  }
  .ag-hub__milestone-card:nth-child(n+5) {
    border-bottom: 1px solid #cfc1b0;
  }
  .ag-hub__milestone-card:last-child {
    grid-column: 1/-1;
    border-right: 0 !important;
    border-bottom: 0;
    min-height: 300px;
  }
  .ag-hub__material-disc {
    margin: 32px 0 23px;
  }
}
/* ── Hub complete guide (filters, table, search) ──────────── */
.ag-hub__guide {
  background: #171615;
  color: #fffdf8;
}

.ag-hub__guide-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
}

.ag-hub .ag-hub__guide-heading h2 {
  margin-bottom: 0;
}

.ag-hub__guide-heading > p {
  margin-bottom: 8px;
  color: #bbb1a4;
}

.ag-hub__guide-tools {
  margin-top: 58px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  padding: 22px 0;
  border-top: 1px solid #45403a;
  border-bottom: 1px solid #45403a;
}

.ag-hub__filter-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ag-hub__filter-button {
  padding: 10px 15px;
  border: 1px solid #4c4640;
  background: transparent;
  color: #bdb3a6;
  cursor: pointer;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ag-hub__filter-button:hover, .ag-hub__filter-button.is-active {
  border-color: #e2c480;
  background: #e2c480;
  color: #1b160e;
}

.ag-hub__search {
  display: flex;
  align-items: center;
  gap: 0;
}

.ag-hub__search-label {
  margin-right: 12px;
  color: #948b80;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ag-hub__search-input {
  width: 82px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid #4c4640;
  border-right: 0;
  background: #242220;
  color: #fffdf8;
}

.ag-hub__search-submit {
  height: 38px;
  padding: 0 16px;
  border: 0;
  background: #e2c480;
  color: #1b160e;
  cursor: pointer;
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ag-hub__finder-message {
  min-height: 26px;
  padding-top: 12px;
  color: #e3b9bd;
  font-size: 0.77rem;
}

.ag-hub__table-scroller {
  border: 1px solid #3f3a35;
}

.ag-hub__table .ag-table {
  background: #1d1b1a;
}

.ag-hub__table .ag-table th:nth-child(1) {
  width: 13%;
}

.ag-hub__table .ag-table th:nth-child(2) {
  width: 20%;
}

.ag-hub__table .ag-table th:nth-child(3) {
  width: 20%;
}

.ag-hub__table .ag-table th:nth-child(4) {
  width: 17%;
}

.ag-hub__table .ag-table th:nth-child(5) {
  width: 25%;
}

.ag-hub__table .ag-table th:nth-child(6) {
  width: 5%;
}

.ag-hub__table .ag-table td.is-empty {
  color: #766f67;
  font-style: italic;
}

.ag-hub__year-select {
  border: 0;
  background: transparent;
  color: #fffdf8;
  cursor: pointer;
  font-family: "Cormorant Garamond", georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  /* Reference row rhythm: 77px rows come from this 1.7 line-height on the
     select button (line box 38px + 18px cell padding top/bottom). */
  line-height: 1.7;
}

.ag-hub__year-select span,
.ag-hub__year-select-prefix {
  color: #81796f;
  font-family: "Manrope", arial, sans-serif;
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ag-hub__table .ag-table td:last-child a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid #514b44;
  color: #e2c480;
  text-decoration: none;
}
.ag-hub__table .ag-table td:last-child a:hover {
  background: #e2c480;
  color: #090909;
}

.ag-hub__table .ag-swatch {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  vertical-align: 0;
}

.ag-swatch--ochre {
  background: #c89f3b;
}

.ag-swatch--red {
  background: #9e1725;
}

.ag-swatch--ruby {
  background: #9e1725;
}

.ag-swatch--jade {
  background: #6a927c;
}

.ag-swatch--blue {
  background: #325e87;
}

.ag-swatch--sapphire {
  background: #325e87;
}

.ag-swatch--turquoise {
  background: #52a7a2;
}

.ag-swatch--purple {
  background: #725385;
}

.ag-swatch--cream {
  background: #e7dcc1;
}

.ag-swatch--bronze {
  background: #9a653e;
}

.ag-swatch--terracotta {
  background: #a9583c;
}

.ag-swatch--silver {
  background: #bbc0c2;
}

.ag-swatch--pearl {
  background: #f2eee2;
}

.ag-swatch--white {
  background: #f2eee2;
}

.ag-swatch--ivory {
  background: #f2eee2;
}

.ag-swatch--diamond {
  background: #f2eee2;
}

.ag-swatch--yellow {
  background: #e0b63c;
}

.ag-swatch--emerald {
  background: #267052;
}

.ag-swatch--green {
  background: #267052;
}

.ag-swatch--orange {
  background: #d77a2a;
}

.ag-swatch--lavender {
  background: #a989ba;
}

.ag-swatch--neutral {
  background: #77716a;
}

.ag-swatch--coral {
  background: #d66e6d;
}

.ag-swatch--gold {
  background: #d1a741;
}

.ag-hub__table-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  margin-top: 28px;
  color: #9f968b;
  font-size: 0.74rem;
}

.ag-hub__table-notes strong {
  color: #ddd3c6;
}

@media (prefers-reduced-motion: reduce) {
  .ag-hub__filter-button,
  .ag-hub__table .ag-table tbody tr,
  .ag-hub__year-select,
  .ag-hub__table .ag-table td:last-child a {
    transition: none;
  }
}
/* NOTE: the .ag-hub__feature responsive rules live in _finder.scss only —
   a duplicate max-width:$bp-hub-wide block here used to load after the
   tablet breakpoint and re-instate a 2-column grid at 390px, clipping the
   feature panel mid-word. */
@media (max-width: 790px) {
  .ag-hub__guide-heading {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .ag-hub__guide-tools {
    align-items: stretch;
    flex-direction: column;
  }
  .ag-hub__filter-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }
  .ag-hub__filter-button {
    padding-inline: 8px;
  }
  .ag-hub__search {
    width: 100%;
  }
  .ag-hub__search-label {
    flex: 1;
  }
  .ag-hub__search-input {
    width: 78px;
  }
  .ag-hub__table-scroller {
    border: 0;
  }
  .ag-hub__table .ag-table,
  .ag-hub__table .ag-table tbody,
  .ag-hub__table .ag-table tr {
    display: block;
  }
  .ag-hub__table .ag-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }
  .ag-hub__table .ag-table tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 13px;
    padding: 20px;
    background: #211f1d;
    border: 1px solid #403b36;
  }
  .ag-hub__table .ag-table th,
  .ag-hub__table .ag-table td {
    display: block;
    width: auto !important;
    padding: 10px 8px;
    border: 0;
  }
  .ag-hub__table .ag-table th:first-child,
  .ag-hub__table .ag-table td:first-child {
    grid-column: 1/-1;
    padding-bottom: 12px;
    border-bottom: 1px solid #3e3934;
  }
  .ag-hub__table .ag-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 5px;
    color: #81786e;
    font-size: 0.53rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .ag-hub__table .ag-table td:last-child {
    grid-column: 1/-1;
    padding-top: 14px;
  }
  .ag-hub__table .ag-table td:last-child a {
    width: 100%;
    height: 40px;
  }
  .ag-hub__year-select {
    font-size: 1.65rem;
  }
  .ag-hub__table-notes {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
@media (max-width: 430px) {
  .ag-hub__filter-group {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ── Hub tradition story ───────────────────────────────────── */
.ag-hub__tradition {
  min-height: 720px;
  padding: 0;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  background: #fffdf8;
}

.ag-hub__tradition-image {
  min-height: 720px;
  overflow: hidden;
}

.ag-hub__tradition-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ag-hub__tradition-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(55px, 7vw, 105px);
}

.ag-hub .ag-hub__tradition-copy h2 {
  font-size: clamp(3.2rem, 5vw, 5rem);
  font-weight: 600;
}

.ag-hub__tradition-copy h2 em {
  color: #721923;
}

.ag-hub__tradition-copy > p:not(.ag-eyebrow) {
  color: #6d655b;
}

.ag-hub__tradition-lead {
  color: #151412;
  font-family: "Cormorant Garamond", georgia, serif;
  font-size: 1.5rem;
  line-height: 1.35;
}

.ag-hub__authority-links {
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid #d9cdbc;
  list-style: none;
}

.ag-hub__authority-link {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid #d9cdbc;
  color: #5e564c;
  font-size: 0.73rem;
  text-decoration: none;
}
.ag-hub__authority-link:hover {
  color: #721923;
}

.ag-hub__authority-link-label {
  display: block;
  margin-bottom: 3px;
  color: #c6a25e;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .ag-hub__tradition {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 790px) {
  .ag-hub__tradition {
    grid-template-columns: 1fr;
  }
  .ag-hub__tradition-image {
    min-height: 470px;
  }
  .ag-hub__tradition-copy {
    padding: 78px 24px;
  }
  .ag-hub .ag-hub__tradition-copy h2 {
    font-size: 3.4rem;
  }
}
/* ── Hub choosing guide ────────────────────────────────────── */
.ag-hub__choosing {
  background: #e9dfd2;
}

.ag-hub__choosing-heading {
  max-width: 810px;
  margin: 0 auto 65px;
  text-align: center;
}

.ag-hub__choosing-heading h2 em {
  color: #721923;
}

.ag-hub__choosing-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid #cdbfad;
  list-style: none;
}

.ag-hub__choosing-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 35px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid #cdbfad;
}

.ag-hub__choosing-step-number {
  color: #721923;
  font-family: "Cormorant Garamond", georgia, serif;
  font-size: 2.7rem;
}

.ag-hub__choosing-step-body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 55px;
  align-items: baseline;
}

.ag-hub__choosing-step-title {
  margin: 0;
  font-family: "Cormorant Garamond", georgia, serif;
  font-size: 2rem;
  font-weight: 600;
}

.ag-hub__choosing-step-copy {
  margin: 0;
  color: #675f55;
}

@media (max-width: 790px) {
  .ag-hub__choosing-step {
    grid-template-columns: 65px 1fr;
    gap: 15px;
  }
  .ag-hub__choosing-step-body {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .ag-hub__choosing-step-title {
    font-size: 1.65rem;
  }
  .ag-hub__choosing-step-copy {
    font-size: 0.87rem;
  }
}
/* ── Hub gift idea ─────────────────────────────────────────── */
.ag-hub__gift-idea {
  min-height: 680px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #0f0f0e;
  color: #fffdf8;
}

.ag-hub__gift-product {
  min-height: 680px;
  background: #f4f2ee;
}

.ag-hub__gift-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ag-hub__gift-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(60px, 8vw, 120px);
}

.ag-hub .ag-hub__gift-copy h2 {
  font-size: clamp(3.6rem, 6vw, 5.9rem);
  font-weight: 600;
}

.ag-hub__gift-copy > p:not(.ag-eyebrow) {
  max-width: 520px;
  color: #c3baaf;
}

.ag-hub__gift-years {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.ag-hub__gift-years .ag-hub__gift-year {
  padding: 8px 11px;
  border: 1px solid #454039;
  color: #b9b0a5;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ag-hub__gift-copy .ag-button--gold {
  width: auto;
}

@media (max-width: 790px) {
  .ag-hub__gift-idea {
    grid-template-columns: 1fr;
  }
  .ag-hub__gift-product {
    min-height: 390px;
  }
  .ag-hub__gift-copy {
    padding: 75px 24px 85px;
  }
  .ag-hub__gift-copy .ag-button--gold {
    width: 100%;
  }
}
/* ── Hub page scope ────────────────────────────────────────── */
.ag-hub {
  margin: 0;
  background: #f5f0e7;
  color: #151412;
  font-family: "Manrope", arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.ag-hub button,
.ag-hub input {
  font-family: inherit;
}

.ag-hub :focus-visible {
  outline: 3px solid #e2c480;
  outline-offset: 3px;
}

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

.ag-hub h1,
.ag-hub h2,
.ag-hub h3 {
  text-wrap: balance;
}

.ag-hub h1,
.ag-hub h2 {
  font-family: "Cormorant Garamond", georgia, serif;
  font-weight: 600;
  letter-spacing: -0.038em;
  line-height: 0.95;
}

/* Reference: <em> accents run burgundy on the light sections and gold on the
   dark ones — not gold everywhere. */
.ag-hub h1 em,
.ag-hub h2 em {
  color: #e2c480;
  font-weight: 500;
}

.ag-hub__intro h2 em,
.ag-hub__milestones h2 em,
.ag-hub__tradition h2 em,
.ag-hub__choosing h2 em {
  color: #721923;
}

.ag-hub h2 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 5.4vw, 5.25rem);
}

/* Reference: `.er-anniversary-hub a { color: inherit }` — without it the
   theme's link blue leaks onto unstyled links (feature CTA, text links). */
.ag-hub a {
  color: inherit;
}

.ag-hub .ag-button--gold {
  color: #090909;
}

.ag-hub__hero .ag-eyebrow,
.ag-hub__guide-heading .ag-eyebrow,
.ag-hub__gift-idea .ag-eyebrow {
  color: #e2c480;
}

/* Hub reference eyebrows are smaller and lighter than the shared year-page
   component (anniversary-hub.css `.eyebrow`). */
.ag-hub .ag-eyebrow {
  margin-bottom: 19px;
  font-size: 0.67rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.2em;
}

@media (max-width: 790px) {
  .ag-shell {
    width: min(100% - 36px, 650px);
  }
  .ag-section {
    padding: 82px 0;
  }
  .ag-hub h2 {
    font-size: clamp(2.9rem, 14vw, 4.3rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ag-hub {
    scroll-behavior: auto;
  }
  .ag-hub,
  .ag-hub *,
  .ag-hub *::before,
  .ag-hub *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
