:root {
  --brand-red: #ed1c24;
  --brand-red-dark: #c81019;
  --gold: #d8ad4b;
  --gold-bright: #f1ca70;
  --gold-deep: #9d7224;
  --silver: #c9ced5;
  --silver-dark: #89919b;
  --ink: #181411;
  --ink-soft: #2b2521;
  --charcoal: #201b18;
  --cream: #f8f3e9;
  --paper: #fffdf8;
  --muted: #6f6862;
  --line: rgba(24, 20, 17, 0.14);
  --white-line: rgba(255, 255, 255, 0.15);
  --shadow: 0 24px 70px rgba(35, 23, 12, 0.14);
  --radius: 1.5rem;
  --container: 74rem;
  --page-gutter: clamp(1.5rem, 4vw, 4rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

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

h1,
h2,
h3 {
  line-height: 1.05;
  text-wrap: balance;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 1.6rem;
  font-size: clamp(3.05rem, 6.2vw, 5.7rem);
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
  letter-spacing: -0.025em;
}

p {
  margin-bottom: 1rem;
}

em {
  color: var(--gold-bright);
  font-style: italic;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--page-gutter) + var(--page-gutter));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.section {
  padding-block: clamp(5rem, 9vw, 8.5rem);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  color: white;
  background: var(--ink);
  border-radius: 0.5rem;
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

.announcement {
  display: flex;
  position: relative;
  z-index: 11;
  min-height: 2.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.4rem var(--page-gutter);
  color: white;
  background: var(--brand-red-dark);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.announcement-divider {
  width: 0.25rem;
  height: 0.25rem;
  flex: 0 0 auto;
  background: white;
  border-radius: 50%;
  opacity: 0.55;
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 5.1rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: block;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: 13rem;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.2rem);
  margin-left: auto;
}

.desktop-nav a {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--brand-red-dark);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 2.75rem;
  padding-inline: 1.15rem;
  font-size: 0.82rem;
}

.button-large {
  min-height: 3.65rem;
  padding-inline: 1.65rem;
}

.button-red {
  color: white;
  background: var(--brand-red-dark);
  box-shadow: 0 12px 28px rgba(200, 16, 25, 0.22);
}

.button-red:hover {
  background: #ab0d15;
  box-shadow: 0 14px 32px rgba(200, 16, 25, 0.3);
}

.button-dark {
  color: white;
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(24, 20, 17, 0.18);
}

.button-dark:hover {
  background: #302722;
}

.button-outline-light {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.035), transparent 45%),
    var(--ink);
}

.hero::after {
  position: absolute;
  right: -12rem;
  bottom: -24rem;
  width: 45rem;
  height: 45rem;
  background:
    radial-gradient(circle, rgba(216, 173, 75, 0.12), transparent 64%);
  border: 1px solid rgba(216, 173, 75, 0.17);
  border-radius: 50%;
  content: "";
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero-glow-gold {
  top: -8rem;
  right: 22%;
  width: 24rem;
  height: 24rem;
  background: rgba(190, 132, 37, 0.14);
}

.hero-glow-silver {
  right: -10rem;
  bottom: -5rem;
  width: 23rem;
  height: 23rem;
  background: rgba(197, 206, 218, 0.09);
}

.hero-grid {
  display: grid;
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 7.35rem);
  grid-template-columns: minmax(0, 1.02fr) minmax(26rem, 0.98fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding-block: clamp(4rem, 8vw, 7.5rem);
}

.hero-copy {
  max-width: 43rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.3rem;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.eyebrow-dark {
  color: var(--gold-deep);
}

.hero h1 em {
  display: block;
}

.hero-lead {
  max-width: 38rem;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.hero-value-note {
  max-width: 36rem;
  margin: 0 0 2rem;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.72);
  border-left: 2px solid var(--gold-bright);
  font-size: 0.88rem;
}

.hero-value-note strong {
  color: white;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.text-link,
.inline-link,
.map-link,
.phone-link {
  font-weight: 800;
  text-decoration: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: white;
  font-size: 0.9rem;
}

.text-link span {
  color: var(--gold-bright);
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  margin: 2.2rem 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.83rem;
  font-weight: 700;
  list-style: none;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-checks li::before {
  width: 0.35rem;
  height: 0.35rem;
  background: var(--gold-bright);
  border-radius: 50%;
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 38rem;
}

.metal-card {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: #28211c;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9rem 9rem 1.25rem 1.25rem;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.metal-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 14, 12, 0.92), transparent 52%);
  content: "";
}

.metal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metal-card figcaption {
  display: grid;
  position: absolute;
  z-index: 1;
  right: 1.5rem;
  bottom: 1.35rem;
  left: 1.5rem;
  gap: 0.1rem;
}

.metal-card figcaption span {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-style: italic;
}

.metal-card figcaption strong {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.metal-card-gold {
  z-index: 2;
  top: 0;
  left: 0;
  width: 65%;
  height: 78%;
}

.metal-card-silver {
  z-index: 1;
  right: 0;
  bottom: 0;
  width: 57%;
  height: 62%;
}

.metal-card-silver figcaption span {
  color: #e2e7ec;
}

.since-seal {
  display: grid;
  position: absolute;
  z-index: 3;
  top: 47%;
  left: 54%;
  width: 7.5rem;
  height: 7.5rem;
  place-content: center;
  color: var(--ink);
  background: var(--gold-bright);
  border: 0.45rem solid var(--ink);
  border-radius: 50%;
  line-height: 1;
  text-align: center;
  transform: translate(-50%, -50%) rotate(-7deg);
}

.since-seal span {
  margin-bottom: 0.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  font-style: italic;
}

.since-seal strong {
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.trust-strip {
  color: white;
  background: var(--brand-red-dark);
}

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

.trust-grid article {
  display: flex;
  min-height: 8.25rem;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem clamp(1.25rem, 2vw, 2rem);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-grid article:first-child {
  padding-left: 0;
}

.trust-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-number {
  color: rgba(255, 255, 255, 0.45);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-style: italic;
}

.trust-grid strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.96rem;
}

.trust-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.77rem;
}

.section-light {
  background:
    linear-gradient(rgba(157, 114, 36, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 114, 36, 0.035) 1px, transparent 1px),
    var(--cream);
  background-size: 3rem 3rem;
}

.section-heading {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(17rem, 0.55fr);
  align-items: end;
  gap: 3rem;
}

.split-heading h2 {
  max-width: 48rem;
  margin-bottom: 0;
}

.split-heading > p {
  max-width: 28rem;
  margin-bottom: 0.45rem;
  color: var(--muted);
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.item-card {
  min-height: 20rem;
  padding: clamp(1.5rem, 2.8vw, 2.25rem);
  background: rgba(255, 253, 248, 0.86);
  border-right: 1px solid var(--line);
}

.item-card:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.item-card:last-child {
  border-right: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.item-card > span {
  display: block;
  margin-bottom: 6.5rem;
  color: var(--gold-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-style: italic;
}

.item-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.item-card-accent {
  color: white;
  background: var(--ink);
}

.item-card-accent > span,
.item-card-accent p {
  color: rgba(255, 255, 255, 0.63);
}

.item-card-accent p {
  margin-bottom: 1.2rem;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-red-dark);
  font-size: 0.83rem;
}

.item-card-accent .inline-link,
.inline-link-light {
  color: var(--gold-bright);
}

.process-section {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 20% 10%, rgba(216, 173, 75, 0.1), transparent 25rem),
    var(--charcoal);
}

.process-section::before {
  position: absolute;
  top: -8rem;
  right: -8rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(216, 173, 75, 0.12);
  border-radius: 50%;
  content: "";
}

.centered-heading {
  max-width: 50rem;
  margin-inline: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading > p:last-child {
  max-width: 38rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.66);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 1.6rem;
  padding-inline: clamp(1rem, 3vw, 2.5rem);
}

.process-list li:first-child {
  padding-left: 0;
}

.process-list li:last-child {
  padding-right: 0;
}

.step-number {
  grid-column: 1;
  grid-row: 1;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  font-style: italic;
}

.step-line {
  align-self: center;
  height: 1px;
  grid-column: 2;
  grid-row: 1;
  background: linear-gradient(90deg, rgba(216, 173, 75, 0.72), rgba(255, 255, 255, 0.1));
}

.step-copy {
  grid-column: 1 / -1;
  grid-row: 2;
}

.step-copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 500;
}

.step-copy p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.centered-action {
  margin-top: 3.75rem;
  text-align: center;
}

.credit-section {
  background:
    radial-gradient(circle at 86% 20%, rgba(216, 173, 75, 0.23), transparent 20rem),
    linear-gradient(135deg, #faf3df, #e9d7a9);
}

.credit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.7fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.credit-copy {
  max-width: 43rem;
}

.credit-copy h2 em {
  color: var(--brand-red-dark);
}

.credit-copy > p {
  max-width: 39rem;
  color: #5e5144;
  font-size: 1.04rem;
}

.credit-copy .credit-note {
  margin-bottom: 1.7rem;
  padding-left: 1rem;
  border-left: 2px solid var(--gold-deep);
  font-size: 0.86rem;
}

.credit-example {
  position: relative;
  padding: clamp(2rem, 4vw, 3.2rem);
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(157, 114, 36, 0.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.credit-example::before {
  position: absolute;
  inset: 0.6rem;
  border: 1px solid rgba(157, 114, 36, 0.2);
  border-radius: calc(var(--radius) - 0.4rem);
  content: "";
  pointer-events: none;
}

.credit-example > p {
  position: relative;
  margin-bottom: 2rem;
  color: var(--gold-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.value-row {
  display: grid;
  position: relative;
  gap: 0.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.value-row span {
  color: var(--muted);
  font-size: 0.8rem;
}

.value-row strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.credit-plus {
  position: relative;
  width: 2.3rem;
  height: 2.3rem;
  margin: -1.15rem auto;
  color: white;
  background: var(--brand-red-dark);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.15rem;
  text-align: center;
}

.value-row-highlight {
  padding-top: 2rem;
  border-bottom: 0;
}

.value-row-highlight strong {
  color: var(--brand-red-dark);
}

.credit-example small {
  display: block;
  position: relative;
  margin-top: 1.3rem;
  color: var(--muted);
  font-size: 0.7rem;
}

.expertise-section {
  color: white;
  background:
    linear-gradient(120deg, transparent, rgba(216, 173, 75, 0.07)),
    var(--ink);
}

.expertise-grid {
  display: grid;
  grid-template-columns: minmax(15rem, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.expertise-mark {
  display: flex;
  position: relative;
  align-items: baseline;
  justify-content: center;
  color: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(6rem, 14vw, 11rem);
  font-weight: 700;
  letter-spacing: -0.13em;
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(216, 173, 75, 0.55);
}

.expertise-mark span:last-child {
  color: var(--gold-bright);
  -webkit-text-stroke: 0;
}

.expertise-mark::after {
  position: absolute;
  right: 5%;
  bottom: -2rem;
  left: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
}

.expertise-copy {
  max-width: 43rem;
}

.expertise-copy > p {
  max-width: 39rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.02rem;
}

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

.stores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.store-card {
  display: flex;
  min-height: 31rem;
  flex-direction: column;
  padding: clamp(1.7rem, 3vw, 2.35rem);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.store-card-featured {
  background:
    linear-gradient(135deg, rgba(216, 173, 75, 0.14), transparent),
    var(--cream);
  border-color: rgba(157, 114, 36, 0.42);
}

.store-city {
  margin-bottom: 2.7rem;
  color: var(--brand-red-dark);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-card h3 {
  min-height: 3.1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.store-card address {
  min-height: 3.5rem;
  margin-bottom: 1.65rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: normal;
}

.store-details {
  display: grid;
  margin: 0 0 2rem;
  border-top: 1px solid var(--line);
}

.store-details div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.65rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
}

.store-details dt {
  color: var(--muted);
}

.store-details dd {
  margin: 0;
  font-weight: 800;
}

.store-actions {
  display: grid;
  gap: 0.7rem;
  margin-top: auto;
  text-align: center;
}

.map-link {
  padding: 0.45rem;
  color: var(--ink);
  font-size: 0.8rem;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.phone-link {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
}

.stores-note {
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.faq-section {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(17rem, 0.6fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-intro {
  position: sticky;
  top: 7.5rem;
}

.faq-intro > p {
  margin-bottom: 1.6rem;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.45rem 3rem 1.45rem 0;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  right: 0.25rem;
  width: 1.5rem;
  height: 1.5rem;
  color: white;
  background: var(--ink);
  border-radius: 50%;
  content: "+";
  font-family: ui-sans-serif, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.37rem;
  text-align: center;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 43rem;
  padding: 0 3rem 1.5rem 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 6.5rem);
  color: white;
  background:
    radial-gradient(circle at 80% 50%, rgba(216, 173, 75, 0.15), transparent 17rem),
    var(--brand-red-dark);
}

.final-cta::before {
  position: absolute;
  top: 50%;
  right: -7rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.final-cta-inner {
  display: flex;
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.final-cta .eyebrow {
  color: white;
}

.final-cta h2 {
  max-width: 45rem;
  margin-bottom: 0.7rem;
}

.final-cta p:last-child {
  max-width: 38rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.final-cta .button-red {
  color: var(--ink);
  background: var(--gold-bright);
  box-shadow: 0 12px 30px rgba(52, 25, 0, 0.24);
}

.final-cta .button-red:hover {
  background: white;
}

.site-footer {
  padding: 4rem 0 1.5rem;
  color: white;
  background: #100d0b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
}

.footer-logo {
  width: 16rem;
  height: auto;
  margin-bottom: 1.25rem;
}

.footer-grid strong {
  display: block;
  margin-bottom: 1rem;
  color: var(--gold-bright);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin: 0.25rem 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}

.footer-grid a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.68rem;
}

.store-dialog {
  width: min(calc(100% - 3rem), 42rem);
  max-height: min(90svh, 46rem);
  margin: auto;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.36);
}

.store-dialog::backdrop {
  background: rgba(15, 11, 9, 0.78);
  backdrop-filter: blur(6px);
}

.store-dialog[open] {
  animation: dialog-in 200ms ease-out both;
}

.dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.dialog-header .eyebrow {
  margin-bottom: 0.6rem;
}

.dialog-header h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 6vw, 3rem);
}

.dialog-close {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 auto;
  place-items: center;
  padding: 0 0 0.15rem;
  color: white;
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.dialog-intro {
  margin: 0.8rem 0 1.7rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.dialog-stores {
  display: grid;
  gap: 0.65rem;
}

.dialog-store {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}

.dialog-store:hover {
  background: white;
  border-color: var(--brand-red);
  transform: translateX(3px);
}

.dialog-store span {
  display: grid;
  gap: 0.2rem;
}

.dialog-store small {
  color: var(--brand-red-dark);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dialog-store strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 500;
}

.dialog-store b {
  color: var(--gold-deep);
  font-size: 1.2rem;
}

.mobile-sticky {
  display: none;
}

.privacy-main {
  min-height: 70svh;
  padding-block: clamp(4rem, 9vw, 7rem);
  background: var(--cream);
}

.privacy-content {
  max-width: 48rem;
}

.privacy-content h1 {
  color: var(--ink);
  font-size: clamp(2.8rem, 7vw, 4.6rem);
}

.privacy-content h2 {
  margin-top: 2.8rem;
  font-family: inherit;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.privacy-content p,
.privacy-content li {
  color: var(--muted);
}

.privacy-content a {
  color: var(--brand-red-dark);
  font-weight: 800;
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(1rem) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 68rem) {
  .desktop-nav {
    display: none;
  }

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

  .hero-visual {
    min-height: 32rem;
  }

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

  .item-card {
    min-height: 17rem;
    border-bottom: 1px solid var(--line);
  }

  .item-card:nth-child(2) {
    border-right: 0;
  }

  .item-card:nth-child(3),
  .item-card:nth-child(4) {
    border-bottom: 0;
  }

  .item-card:first-child {
    border-radius: var(--radius) 0 0 0;
  }

  .item-card:nth-child(2) {
    border-radius: 0 var(--radius) 0 0;
  }

  .item-card:nth-child(3) {
    border-radius: 0 0 0 var(--radius);
  }

  .item-card:last-child {
    border-radius: 0 0 var(--radius) 0;
  }

  .item-card > span {
    margin-bottom: 4.5rem;
  }
}

@media (max-width: 54rem) {
  html {
    scroll-padding-top: 6.8rem;
  }

  .announcement {
    min-height: 2.1rem;
    font-size: 0.63rem;
  }

  .header-inner {
    position: relative;
    min-height: 4.5rem;
    justify-content: center;
  }

  .brand img {
    width: 11rem;
  }

  .header-inner .brand {
    margin-inline: auto;
  }

  .header-inner > .button {
    display: none;
  }

  .menu-toggle {
    display: grid;
    position: absolute;
    top: 50%;
    right: var(--page-gutter);
    width: 2.75rem;
    height: 2.75rem;
    place-content: center;
    gap: 0.28rem;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    transform: translateY(-50%);
  }

  .menu-toggle span {
    width: 1.1rem;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(0.39rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-0.39rem) rotate(-45deg);
  }

  .mobile-nav {
    background: rgba(255, 253, 248, 0.98);
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(24, 20, 17, 0.1);
  }

  .mobile-nav:not([hidden]) {
    display: block;
  }

  .mobile-nav-inner {
    display: grid;
    padding-block: 0.45rem 0.85rem;
  }

  .mobile-nav a {
    display: flex;
    min-height: 3.35rem;
    align-items: center;
    gap: 0.9rem;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-nav a:last-child {
    border-bottom: 0;
  }

  .mobile-nav a span {
    color: var(--gold-deep);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.8rem;
    font-style: italic;
    font-weight: 500;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: 4.5rem 5.5rem;
  }

  .hero-copy {
    max-width: 45rem;
  }

  .hero-visual {
    width: min(100%, 35rem);
    min-height: 35rem;
    margin-inline: auto;
  }

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

  .trust-grid article,
  .trust-grid article:first-child,
  .trust-grid article:last-child {
    min-height: auto;
    padding: 1.15rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .trust-grid article:last-child {
    border-bottom: 0;
  }

  .split-heading,
  .credit-grid,
  .expertise-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process-list li,
  .process-list li:first-child,
  .process-list li:last-child {
    padding: 0;
  }

  .credit-example {
    width: min(100%, 34rem);
    margin-inline: auto;
  }

  .expertise-mark {
    justify-content: flex-start;
  }

  .expertise-mark::after {
    right: 0;
    left: 0;
  }

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

  .store-card {
    min-height: auto;
  }

  .store-city {
    margin-bottom: 1.5rem;
  }

  .store-card h3,
  .store-card address {
    min-height: auto;
  }

  .faq-intro {
    position: static;
  }

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

  .footer-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 2.5rem;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 38rem) {
  body {
    padding-bottom: 4.6rem;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11.5vw, 3.3rem);
  }

  .section {
    padding-block: 4.75rem;
  }

  .announcement {
    gap: 0.45rem;
  }

  .announcement span:last-child {
    display: none;
  }

  .announcement-divider {
    display: none;
  }

  .brand img {
    width: 10.5rem;
  }

  .hero-grid {
    padding-block: 4rem 4.5rem;
  }

  .hero-lead {
    font-size: 1.03rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-checks {
    display: grid;
    gap: 0.6rem;
  }

  .hero-visual {
    min-height: 28rem;
  }

  .metal-card-gold {
    width: 72%;
    height: 73%;
  }

  .metal-card-silver {
    width: 61%;
    height: 57%;
  }

  .metal-card figcaption {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }

  .metal-card figcaption span {
    font-size: 1.3rem;
  }

  .since-seal {
    left: 55%;
    width: 6rem;
    height: 6rem;
  }

  .since-seal strong {
    font-size: 1.2rem;
  }

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

  .item-card,
  .item-card:nth-child(2),
  .item-card:nth-child(3),
  .item-card:last-child {
    min-height: auto;
    padding: 1.65rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .item-card:first-child {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .item-card:last-child {
    border-bottom: 0;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .item-card > span {
    margin-bottom: 2.5rem;
  }

  .process-list {
    gap: 2rem;
  }

  .step-copy h3 {
    font-size: 1.55rem;
  }

  .credit-example {
    transform: none;
  }

  .expertise-mark {
    font-size: 7rem;
  }

  .store-card {
    padding: 1.5rem;
  }

  .faq-list summary {
    padding-block: 1.25rem;
    font-size: 1.1rem;
  }

  .faq-list details p {
    padding-right: 0.5rem;
  }

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-sticky {
    display: flex;
    position: fixed;
    z-index: 8;
    right: max(1rem, env(safe-area-inset-right));
    bottom: calc(0.65rem + env(safe-area-inset-bottom));
    left: max(1rem, env(safe-area-inset-left));
    min-height: 3.65rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 1rem;
    color: white;
    background: var(--brand-red-dark);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    box-shadow: 0 15px 40px rgba(40, 10, 10, 0.35);
    text-decoration: none;
  }

  .mobile-sticky span {
    padding: 0.25rem 0.5rem;
    color: var(--ink);
    background: var(--gold-bright);
    border-radius: 999px;
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .mobile-sticky strong {
    font-size: 0.76rem;
    text-align: right;
  }
}

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

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