:root {
  color-scheme: dark;
  --ink: #090a0c;
  --graphite: #111318;
  --panel: #171a20;
  --panel-2: #1e2229;
  --line: #30343d;
  --orange: #ff6a00;
  --orange-soft: #ff8d3a;
  --paper: #f4f2ed;
  --paper-2: #fff;
  --text: #f7f7f4;
  --muted: #b8bdc7;
  --dark-text: #17191d;
  --dark-muted: #555b64;
  --success: #59d48b;
  --warning: #ffc24b;
  --danger: #ff6b6b;
  --radius: 18px;
  --shadow: 0 24px 70px rgb(0 0 0 / 24%);
  --shell: min(1180px, calc(100vw - 40px));
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input { font: inherit; }

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--paper-2);
  color: var(--dark-text);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.shell { width: var(--shell); margin-inline: auto; }
.narrow { max-width: 820px; }
.reading-width { max-width: 760px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  line-height: .98;
  letter-spacing: -.035em;
}
h1, h2 {
  font-family: Impact, "Arial Narrow", "Roboto Condensed", ui-sans-serif, system-ui, sans-serif;
  text-transform: uppercase;
  font-weight: 850;
}
h1 { font-size: clamp(3.7rem, 9vw, 8.4rem); }
h2 { font-size: clamp(2.35rem, 5vw, 4.7rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); }

.lead {
  max-width: 66ch;
  color: inherit;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.kicker, .eyebrow {
  margin-bottom: 14px;
  color: var(--orange-soft);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: var(--orange);
  color: #101010;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { background: var(--orange-soft); border-color: var(--orange-soft); transform: translateY(-2px); }
.button-small { min-height: 48px; padding: 11px 18px; }
.button-ghost, .button-outline { background: transparent; color: var(--text); border-color: #666c77; }
.button-ghost:hover, .button-outline:hover { background: var(--paper-2); border-color: var(--paper-2); color: var(--dark-text); }
.button-dark { background: var(--ink); border-color: var(--ink); color: var(--text); }
.button-muted, .button[aria-disabled="true"] { background: #4e535b; border-color: #4e535b; color: #fff; cursor: not-allowed; transform: none; }
.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  color: inherit;
  font-weight: 800;
  text-underline-offset: 5px;
}
.text-link:hover { color: var(--orange-soft); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  background: rgb(9 10 12 / 88%);
  backdrop-filter: blur(18px);
}
.header-inner { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: block; width: 190px; flex: 0 0 auto; }
.brand img { width: 190px; height: 66px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav > a:not(.button) {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 750;
  text-decoration: none;
}
.site-nav > a:hover, .site-nav > a[aria-current="page"] { color: var(--text); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: min(860px, calc(100svh - 76px));
  overflow: hidden;
  isolation: isolate;
}
.hero-media, .hero-media img, .hero-scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center 40%; }
.hero-scrim {
  z-index: 1;
  background: linear-gradient(90deg, rgb(4 5 7 / 96%) 0%, rgb(4 5 7 / 72%) 42%, rgb(4 5 7 / 12%) 73%), linear-gradient(0deg, var(--ink), transparent 34%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(860px, calc(100svh - 76px));
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 80px;
}
.hero h1 { max-width: 790px; margin-bottom: 24px; }
.hero-copy { max-width: 610px; margin-bottom: 30px; color: #e1e3e7; font-size: clamp(1.08rem, 2vw, 1.35rem); }
.hero-search {
  display: grid;
  width: min(590px, 100%);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px;
  border: 1px solid #5a606b;
  border-radius: 999px;
  background: rgb(10 11 13 / 86%);
  box-shadow: 0 16px 48px rgb(0 0 0 / 22%);
}
.hero-search input {
  min-width: 0;
  min-height: 48px;
  padding: 10px 16px;
  border: 0;
  background: transparent;
  color: var(--text);
  outline: 0;
}
.hero-search input::placeholder { color: #aeb3bc; }
.hero-search:focus-within { outline: 3px solid var(--orange-soft); outline-offset: 3px; }
.hero-search .button { min-height: 48px; }
.hero-price {
  display: grid;
  margin-top: 34px;
  padding-left: 18px;
  border-left: 3px solid var(--orange);
}
.hero-price .eyebrow { margin-bottom: 5px; }
.hero-price strong { font-size: 1.25rem; }
.hero-price strong small { font-size: .85rem; font-weight: 650; }
.hero-price span:last-child { color: var(--muted); font-size: .88rem; }
.hero-title-mobile { display: none; }
.hero-opening h1 { max-width: 900px; }
.hero-opening .kicker {
  display: inline-flex;
  padding: 9px 13px;
  border: 1px solid rgb(255 141 58 / 58%);
  border-radius: 999px;
  background: rgb(9 10 12 / 72%);
  box-shadow: 0 10px 36px rgb(0 0 0 / 28%);
}
.opening-lockup {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 13px 18px;
  border: 1px solid rgb(255 106 0 / 70%);
  border-left: 5px solid var(--orange);
  background: linear-gradient(90deg, rgb(255 106 0 / 18%), rgb(9 10 12 / 72%));
  box-shadow: 0 18px 48px rgb(0 0 0 / 28%);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}
.opening-lockup strong {
  color: var(--orange-soft);
  font-family: Impact, "Arial Narrow", "Roboto Condensed", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.55rem;
  letter-spacing: .04em;
}

.reopening-promo {
  padding-block: clamp(64px, 8vw, 100px);
  border-block: 1px solid #6e5320;
  background: radial-gradient(circle at 88% 12%, rgb(255 106 0 / 20%), transparent 30%), #0d0f13;
}
.reopening-promo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, .95fr);
  align-items: center;
  gap: clamp(36px, 7vw, 86px);
}
.reopening-promo-copy h2 { max-width: 780px; margin-bottom: 22px; }
.reopening-promo-copy > p:not(.kicker, .reopening-commerce-note) { max-width: 64ch; color: var(--muted); font-size: 1.1rem; }
.reopening-promo-copy .button-row { margin-top: 28px; }
.reopening-commerce-note { max-width: 66ch; margin: 24px 0 0; color: #f2d495; font-size: .84rem; }
.reopening-promo-media {
  display: block;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgb(255 141 58 / 45%);
  box-shadow: 0 30px 90px rgb(0 0 0 / 35%);
}
.reopening-promo-media img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; }

.reopening-campaign-hero {
  position: relative;
  min-height: min(900px, calc(100svh - 76px));
  overflow: hidden;
  isolation: isolate;
}
.reopening-campaign-media, .reopening-campaign-media img, .reopening-campaign-scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.reopening-campaign-media img { object-fit: cover; object-position: center 46%; }
.reopening-campaign-scrim {
  z-index: 1;
  background: linear-gradient(90deg, rgb(4 5 7 / 97%) 0%, rgb(4 5 7 / 81%) 42%, rgb(4 5 7 / 18%) 76%), linear-gradient(0deg, rgb(4 5 7 / 92%), transparent 38%);
}
.reopening-campaign-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(900px, calc(100svh - 76px));
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 72px;
}
.reopening-campaign-content .breadcrumb { margin-bottom: 22px; }
.reopening-campaign-content h1 { max-width: 920px; margin-bottom: 24px; }
.reopening-campaign-content .lead { max-width: 640px; color: #e1e3e7; }
.reopening-campaign-content .button-row { margin-top: 16px; }
.reopening-date {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding: 13px 18px;
  border: 1px solid rgb(255 106 0 / 70%);
  border-left: 5px solid var(--orange);
  background: rgb(9 10 12 / 80%);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}
.reopening-date strong { color: var(--orange-soft); font-family: Impact, "Arial Narrow", "Roboto Condensed", ui-sans-serif, system-ui, sans-serif; font-size: 1.55rem; letter-spacing: .04em; }
.campaign-evidence-note { max-width: 76ch; margin: 34px 0 0; color: var(--dark-muted); font-size: .8rem; }

.page-hero {
  padding-block: clamp(90px, 14vw, 170px) clamp(70px, 10vw, 120px);
  background: radial-gradient(circle at 82% 18%, rgb(255 106 0 / 16%), transparent 28%), linear-gradient(145deg, #111319, #090a0c 70%);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: 24px; font-size: clamp(3.5rem, 8vw, 7rem); }
.page-hero .lead { color: var(--muted); }
.breadcrumb { display: inline-flex; min-height: 48px; align-items: center; margin-bottom: 36px; color: var(--muted); font-weight: 750; }

.section { padding-block: clamp(76px, 10vw, 130px); }
.section-compact { padding-block: clamp(65px, 8vw, 100px); }
.section-light { background: var(--paper); color: var(--dark-text); }
.section-light .kicker, .section-light .eyebrow { color: #b94700; }
.section-light .lead { color: var(--dark-muted); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.section-heading h2 { margin-bottom: 0; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 48px; border-top: 1px solid var(--line); }
.step { padding: 34px 32px 8px 0; border-right: 1px solid var(--line); }
.step + .step { padding-left: 32px; }
.step:last-child { border-right: 0; }
.step-number { display: block; margin-bottom: 42px; color: var(--orange); font-size: 1rem; font-weight: 850; }
.step p { color: var(--muted); }

.split-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: center; gap: clamp(40px, 7vw, 96px); }
.split-copy h2 { margin-bottom: 26px; }
.editorial-card { display: block; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow); }
.editorial-card img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.check-list { display: grid; gap: 12px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { position: absolute; left: 0; color: var(--orange); content: "✓"; font-weight: 900; }

.card-grid, .plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.plan-card {
  position: relative;
  display: flex;
  min-height: 440px;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}
.plan-card[hidden] { display: none; }
.plan-card h3 { min-height: 54px; margin-bottom: 18px; }
.plan-card > p:not(.eyebrow, .price, .plan-terms, .validity) { color: var(--muted); }
.plan-featured { border-color: var(--orange); box-shadow: 0 0 0 1px var(--orange), 0 28px 90px rgb(255 106 0 / 12%); }
.plan-badge {
  position: absolute;
  top: -14px;
  right: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--orange);
  color: #101010;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.price { margin-bottom: 16px; font-size: 2.25rem; font-weight: 900; letter-spacing: -.04em; line-height: 1; }
.price small { display: block; margin-top: 7px; color: var(--muted); font-size: .78rem; font-weight: 700; letter-spacing: 0; }
.plan-card .button { width: 100%; margin-top: auto; }
.plan-terms { margin-top: 18px; color: var(--muted); font-size: .84rem; }
.validity { margin: 12px 0 0; color: var(--muted); font-size: .72rem; }
.cost-summary { width: 100%; margin: 18px 0; border-top: 1px solid var(--line); }
.cost-summary div { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.cost-summary dt { color: var(--muted); }
.cost-summary dd { margin: 0; font-weight: 800; text-align: right; }
.commerce-note { max-width: 75ch; margin: 30px 0 0; color: var(--muted); font-size: .88rem; }
.more-plans { margin-top: 28px; }
.more-plans[hidden] { display: none; }

.faq-list { margin-block: 38px; border-top: 1px solid #c7c8c8; }
.faq-list details { border-bottom: 1px solid #c7c8c8; }
.faq-list summary { min-height: 68px; padding: 20px 42px 20px 0; cursor: pointer; font-size: 1.08rem; font-weight: 800; }
.faq-list details p { max-width: 64ch; padding: 0 32px 22px 0; color: var(--dark-muted); }

.closure-strip { padding-block: 48px; border-block: 1px solid #6e5320; background: #241c0d; }
.closure-strip .shell, .final-cta .shell { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.closure-strip h2 { margin-bottom: 12px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.closure-strip p:last-child { margin-bottom: 0; color: #f2d495; }

.final-cta { padding-block: 70px; background: var(--graphite); }
.final-cta h2 { margin-bottom: 8px; font-size: clamp(2rem, 4vw, 3.7rem); }
.final-cta p:last-child { margin-bottom: 0; color: var(--muted); }

.location-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 12px;
}
.search-field { display: grid; gap: 8px; font-weight: 800; }
.search-field input {
  min-height: 56px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  color: var(--text);
}
.search-field input::placeholder { color: #8c929d; }
.privacy-note, .location-status { color: var(--muted); font-size: .88rem; }
.location-status { margin-block: 28px 18px; }
.location-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.location-card { display: flex; min-height: 285px; flex-direction: column; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.location-card[hidden] { display: none; }
.location-card h2 { margin: 22px 0 8px; font-family: inherit; font-size: 1.45rem; text-transform: none; }
.location-card-top, .card-actions { display: flex; align-items: start; justify-content: space-between; gap: 14px; }
.card-actions { align-items: end; margin-top: auto; }
.status { display: inline-flex; max-width: 100%; min-height: 30px; align-items: center; padding: 6px 10px; border-radius: 999px; font-size: .7rem; font-weight: 850; line-height: 1.25; }
.status-open { background: rgb(89 212 139 / 14%); color: var(--success); }
.status-reopening { background: rgb(255 106 0 / 18%); color: var(--orange-soft); }
.status-warning { background: rgb(255 194 75 / 14%); color: var(--warning); }
.status-closed { background: rgb(255 107 107 / 14%); color: var(--danger); }
.location-alert { border-color: #6e5320; }
.location-reopening { border-color: var(--orange); box-shadow: 0 0 0 1px rgb(255 106 0 / 28%); }
.distance { color: var(--muted); font-size: .78rem; white-space: nowrap; }
.public-name, .address-note { color: var(--muted); font-size: .9rem; }
.verification-note { margin-top: 40px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.verification-note h2 { font-family: inherit; font-size: 1.25rem; text-transform: none; }

.branch-detail { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: clamp(40px, 7vw, 90px); }
.fact-list { margin: 30px 0; border-top: 1px solid var(--line); }
.fact-list div { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding-block: 18px; border-bottom: 1px solid var(--line); }
.fact-list dt { color: var(--muted); font-weight: 700; }
.fact-list dd { margin: 0; }
.decision-box { align-self: start; padding: 30px; border: 1px solid var(--orange); border-radius: var(--radius); background: var(--panel); }
.decision-box h2 { font-family: inherit; font-size: 1.6rem; text-transform: none; }
.decision-warning { border-color: var(--warning); }
.decision-reopening { border-color: var(--orange); background: linear-gradient(145deg, rgb(255 106 0 / 9%), var(--panel)); }
.notice { padding: 16px; border-left: 3px solid var(--warning); background: #241c0d; color: #f2d495; }

.segmented { display: flex; width: fit-content; max-width: 100%; gap: 5px; margin-bottom: 34px; padding: 5px; border: 1px solid var(--line); border-radius: 999px; overflow-x: auto; }
.segmented button { min-height: 48px; padding: 10px 18px; border: 0; border-radius: 999px; background: transparent; color: var(--muted); cursor: pointer; font-weight: 800; white-space: nowrap; }
.segmented button[aria-pressed="true"] { background: var(--paper-2); color: var(--dark-text); }
.branch-context { margin-bottom: 24px; padding: 16px 18px; border-left: 3px solid var(--orange); background: var(--panel); }
.math-line { display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 20px; padding-block: 17px; border-bottom: 1px solid #c8c8c5; }
.math-line strong { font-size: 1.5rem; }
.math-line small { grid-column: 1 / -1; color: var(--dark-muted); }
.math-total { border-bottom: 3px solid var(--dark-text); }
.math-total strong { font-size: 2rem; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.benefit-grid article { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.benefit-grid h2 { margin-top: 34px; font-family: inherit; font-size: 1.6rem; text-transform: none; }
.benefit-grid p { color: var(--muted); }
.benefit-icon { color: var(--orange); font-weight: 900; }
.number-list { display: grid; gap: 20px; padding-left: 22px; }
.number-list li { padding-left: 10px; }
.number-list strong, .number-list span { display: block; }
.number-list span { color: var(--dark-muted); }

.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.support-grid article { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.support-grid h2 { font-family: inherit; font-size: 1.75rem; text-transform: none; }
.support-grid p:not(.kicker) { color: var(--muted); }
.contact-card { border-color: var(--orange) !important; }
.contact-card h2 { max-width: 100%; overflow-wrap: anywhere; }
.callout { padding: 22px; border-left: 4px solid #b94700; background: #ffe4d1; font-weight: 750; }
.fine-print { color: var(--dark-muted); font-size: .86rem; }
.hero .fine-print { color: #d9dbe0; }
.hero .fine-print a { color: #fff; }
.legal-explainer h2 { margin-top: 56px; font-family: inherit; font-size: 2rem; text-transform: none; }

.legal-page { padding-block: 70px; background: var(--paper); color: var(--dark-text); }
.legal-source { min-width: 0; max-width: 980px; margin-inline: auto; padding: clamp(22px, 5vw, 58px); overflow-x: clip; border-radius: var(--radius); background: var(--paper-2); box-shadow: 0 16px 60px rgb(0 0 0 / 10%); }
.legal-source article { max-width: none; }
.legal-source h1 { font-family: inherit; font-size: clamp(2rem, 4vw, 3rem); text-transform: none; }
.legal-source h2 { margin-top: 2.2rem; font-family: inherit; font-size: clamp(1.4rem, 3vw, 2rem); text-transform: none; }
.legal-source h3 { margin-top: 1.7rem; }
.legal-source table, .directory-table { width: 100%; border-collapse: collapse; }
.legal-source th, .legal-source td, .directory-table th, .directory-table td { padding: 12px; border: 1px solid #c8c8c5; vertical-align: top; text-align: left; }
.legal-source thead th, .directory-table thead th { background: #27292e; color: #fff; }
.legal-source .table-wrap, .legal-table-wrap, .directory-table-wrap { overflow-x: auto; }
.legal-source aside { color: var(--dark-text); }

.hero-disclosure {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 18px;
  max-width: 52ch;
  margin: 0;
  padding: 7px 10px;
  border: 1px solid rgb(255 255 255 / 18%);
  background: rgb(6 7 9 / 78%);
  color: #d7d9de;
  font-size: .68rem;
  line-height: 1.35;
}

.store-intro { border-bottom: 1px solid var(--line); }
.store-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.store-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}
.store-card h3 { min-height: 58px; margin-bottom: 20px; }
.store-card > p:not(.eyebrow, .store-price, .store-total, .validity) { color: var(--muted); }
.store-card .button { width: 100%; margin-top: auto; }
.store-card-featured { border-color: var(--orange); box-shadow: 0 0 0 1px var(--orange), 0 28px 90px rgb(255 106 0 / 12%); }
.store-badge {
  position: absolute;
  top: -14px;
  right: 18px;
  padding: 7px 12px;
  background: var(--orange);
  color: #101010;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.store-price, .product-price { margin-bottom: 12px; font-size: clamp(2.35rem, 5vw, 4rem); font-weight: 900; letter-spacing: -.05em; line-height: .95; }
.store-price small, .product-price small { display: block; margin-top: 9px; color: var(--muted); font-size: .82rem; font-weight: 750; letter-spacing: 0; }
.store-total { color: var(--muted); font-size: .88rem; }
.catalog-freshness { max-width: 78ch; margin: 30px 0 0; color: var(--muted); font-size: .8rem; }
.category-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.category-links a { display: inline-flex; min-height: 48px; align-items: center; padding: 10px 17px; border: 1px solid #626772; color: var(--text); font-weight: 800; text-underline-offset: 4px; }

.media-figure { margin: 0; }
.media-figure picture { display: block; }
.media-figure figcaption, .branch-photo figcaption, .product-context-photo figcaption { padding: 10px 2px 0; color: inherit; font-size: .74rem; line-height: 1.4; opacity: .72; }
.photo-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.branch-photo { margin: 0; overflow: hidden; border: 1px solid var(--line); background: var(--panel); }
.branch-photo a { display: block; overflow: hidden; }
.branch-photo img { width: 100%; aspect-ratio: 800 / 536; object-fit: cover; transition: transform .28s ease; }
.branch-photo a:hover img { transform: scale(1.025); }
.branch-photo figcaption { padding: 11px 13px 13px; color: var(--muted); opacity: 1; }
.gallery-note { max-width: 72ch; margin-bottom: 0; color: var(--muted); }

.merch-row { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border: 1px solid #c8c8c5; }
.merch-row article { display: grid; min-height: 180px; align-content: space-between; gap: 12px; padding: 22px; border-right: 1px solid #c8c8c5; }
.merch-row article:last-child { border-right: 0; }
.merch-row article > span { color: #b94700; font-size: 1.5rem; font-weight: 950; letter-spacing: -.04em; }
.merch-row strong { font-size: 1.05rem; }
.merch-row small { color: var(--dark-muted); font-weight: 800; text-transform: uppercase; }
.merch-section .section-heading .text-link { color: var(--dark-text); }
.merch-card { color: var(--text); }
.merch-store-grid .merch-card { border-color: #d1d1cd; background: var(--paper-2); color: var(--dark-text); }
.merch-store-grid .merch-card > p:not(.eyebrow) { color: var(--dark-muted); }
.merch-store-grid .merch-card .text-link { color: var(--dark-text); }
.merch-placeholder { display: grid; width: 100%; min-height: 150px; margin-bottom: 28px; place-items: center; border: 1px dashed #5d626c; background: linear-gradient(145deg, rgb(255 106 0 / 10%), transparent), var(--panel-2); }
.merch-store-grid .merch-placeholder { border-color: #c5c5c1; background: linear-gradient(145deg, #fff0e5, #f4f2ed); }
.merch-placeholder span { color: var(--orange); font-size: 2.8rem; font-weight: 950; letter-spacing: -.08em; }

.product-page { padding-block: clamp(58px, 8vw, 110px); background: radial-gradient(circle at 85% 15%, rgb(255 106 0 / 10%), transparent 26%); }
.product-page > .shell > .breadcrumb { margin-bottom: 22px; }
.product-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr); align-items: start; column-gap: clamp(34px, 7vw, 90px); row-gap: 0; }
.product-copy-title { grid-column: 1; grid-row: 1; }
.product-copy-context { grid-column: 1; grid-row: 2; }
.product-copy h1 { max-width: 850px; margin-bottom: 24px; font-size: clamp(3.1rem, 7vw, 6.7rem); }
.product-context-photo { max-width: 760px; margin: 32px 0 0; }
.product-context-photo picture { display: block; overflow: hidden; border: 1px solid var(--line); }
.product-context-photo img { width: 100%; aspect-ratio: 800 / 536; object-fit: cover; }
.product-purchase { position: sticky; top: 104px; grid-column: 2; grid-row: 1 / span 2; padding: 32px; border: 1px solid var(--line); background: var(--panel); box-shadow: var(--shadow); }
.product-purchase-featured { border-color: var(--orange); }
.product-purchase h2 { font-family: inherit; font-size: 1.8rem; line-height: 1.08; text-transform: none; }
.product-purchase .button { width: 100%; margin-top: 18px; }
.product-cost-brief { margin-bottom: 0; color: var(--muted); }
.product-offer-disclosure { margin-top: 16px; border-block: 1px solid var(--line); }
.product-offer-disclosure summary { display: flex; min-height: 48px; align-items: center; cursor: pointer; color: var(--text); font-weight: 800; }
.product-offer-disclosure[open] { padding-bottom: 14px; }
.product-offer-disclosure .cost-summary { margin-top: 6px; }
.product-offer-disclosure .plan-terms { margin-top: 14px; }
.product-purchase .branch-context { margin: 20px 0 0; }
.product-branch-selector { display: grid; gap: 10px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.product-branch-selector label { font-weight: 850; }
.product-branch-selector select {
  width: 100%;
  min-height: 54px;
  padding: 11px 42px 11px 14px;
  border: 1px solid #656b76;
  border-radius: 10px;
  background: #0f1115;
  color: var(--text);
  font: inherit;
}
.product-branch-selector select:disabled { cursor: not-allowed; opacity: .62; }
.branch-gate-help, .branch-gate-status { margin: 0; font-size: .78rem; line-height: 1.45; }
.branch-gate-help { color: var(--muted); }
.branch-gate-status { min-height: 2.3em; color: #f2d495; font-weight: 750; }
.checkout-note { margin: 16px 0 0; color: var(--muted); font-size: .78rem; }
.product-next-steps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(30px, 7vw, 80px); }
.product-next-steps article > span { color: #b94700; font-weight: 950; }
.product-next-steps h2 { margin-top: 28px; font-size: clamp(2rem, 4vw, 3.4rem); }
.product-coming-soon .status { margin-bottom: 24px; }

.site-footer { padding-top: 70px; border-top: 1px solid var(--line); background: #050607; color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 46px; padding-bottom: 60px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid a { display: inline-flex; min-height: 48px; align-items: center; text-underline-offset: 4px; }
.footer-brand, .footer-title { color: var(--text); font-weight: 900; }
.footer-brand { font-size: 1.2rem; letter-spacing: .08em; }
.footer-title { margin-bottom: 8px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-block: 22px; border-top: 1px solid var(--line); font-size: .78rem; }

@media (max-width: 980px) {
  .site-nav { gap: 15px; }
  .card-grid, .plan-grid, .location-grid, .store-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .merch-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .merch-row article { border-bottom: 1px solid #c8c8c5; }
  .benefit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 1180px); }
  h1 { font-size: clamp(3.25rem, 16vw, 5rem); }
  h2 { font-size: clamp(2.25rem, 11vw, 3.5rem); }
  .header-inner { min-height: 68px; }
  .brand, .brand img { width: 154px; }
  .brand img { height: 58px; }
  .nav-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    place-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--panel);
    color: var(--text);
  }
  .nav-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; background: currentColor; }
  .site-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px 14px 22px;
    border-bottom: 1px solid var(--line);
    background: #0b0c0f;
  }
  .site-nav[data-open="true"] { display: flex; }
  .site-nav > a:not(.button) { min-height: 54px; padding-inline: 12px; border-bottom: 1px solid var(--line); }
  .site-nav .button { margin-top: 14px; }
  .hero, .hero-content { min-height: calc(100svh - 68px); }
  .hero-media img { object-position: center 35%; }
  .hero-scrim { background: linear-gradient(0deg, rgb(4 5 7 / 98%) 0%, rgb(4 5 7 / 76%) 52%, rgb(4 5 7 / 8%) 100%); }
  .hero-content { justify-content: end; padding-bottom: 48px; }
  .hero h1 { margin-bottom: 18px; }
  .hero-copy { font-size: 1rem; }
  .hero-search { grid-template-columns: 1fr; border-radius: 18px; }
  .hero-search .button { width: 100%; }
  .hero-price { margin-top: 24px; }
  .hero-store { display: block; min-height: calc(100svh - 68px); }
  .hero-store .hero-media { position: absolute; height: 100%; }
  .hero-store .hero-media img { object-position: center 38%; }
  .hero-store .hero-scrim { display: block; background: linear-gradient(0deg, rgb(4 5 7 / 99%) 0%, rgb(4 5 7 / 88%) 43%, rgb(4 5 7 / 12%) 82%); }
  .hero-store .hero-content { min-height: calc(100svh - 68px); justify-content: end; padding-block: 130px 24px; background: transparent; }
  .hero-title-desktop { display: none; }
  .hero-title-mobile { display: inline; }
  .hero-store h1 { margin-bottom: 12px; font-size: clamp(2.8rem, 13.5vw, 3.35rem); line-height: .9; }
  .hero-store .hero-copy { margin-bottom: 15px; font-size: .94rem; line-height: 1.38; }
  .hero-store .button-row { flex-wrap: nowrap; gap: 8px; }
  .hero-store .button-row .button { flex: 1 1 0; min-width: 0; padding-inline: 10px; }
  .hero-store .hero-price { margin-top: 15px; padding-left: 12px; }
  .hero-store .hero-price strong { font-size: 1.08rem; }
  .hero-store .hero-price span:last-child { font-size: .76rem; }
  .hero-opening .kicker { margin-bottom: 10px; padding: 7px 10px; font-size: .65rem; }
  .hero-opening h1 { font-size: clamp(2.7rem, 12.8vw, 3.25rem); }
  .opening-lockup {
    width: 100%;
    grid-template-columns: 1fr auto;
    gap: 5px 10px;
    margin-top: 13px;
    padding: 10px 12px;
    font-size: .62rem;
  }
  .opening-lockup strong { grid-row: span 2; font-size: 1.35rem; }
  .opening-lockup span:last-child { grid-column: 1; grid-row: 2; }
  .reopening-promo { padding-block: 54px; }
  .reopening-promo-grid { grid-template-columns: 1fr; gap: 34px; }
  .reopening-promo-copy h2 { font-size: clamp(2.35rem, 11.5vw, 3.4rem); }
  .reopening-promo-media, .reopening-promo-media img { min-height: 430px; }
  .reopening-promo-media img { object-position: center 48%; }
  .reopening-campaign-hero, .reopening-campaign-content { min-height: calc(100svh - 68px); }
  .reopening-campaign-media img { object-position: center 44%; }
  .reopening-campaign-scrim { background: linear-gradient(0deg, rgb(4 5 7 / 99%) 0%, rgb(4 5 7 / 91%) 55%, rgb(4 5 7 / 18%) 100%); }
  .reopening-campaign-content { justify-content: end; padding-block: 120px 28px; }
  .reopening-campaign-content .breadcrumb { margin-bottom: 12px; }
  .reopening-campaign-content h1 { margin-bottom: 14px; font-size: clamp(2.9rem, 14.6vw, 3.65rem); }
  .reopening-campaign-content .lead { margin-bottom: 12px; font-size: .96rem; line-height: 1.4; }
  .reopening-campaign-content .button-row { flex-wrap: nowrap; gap: 8px; }
  .reopening-campaign-content .button { flex: 1 1 0; min-width: 0; padding-inline: 10px; }
  .reopening-date { width: 100%; grid-template-columns: 1fr auto; gap: 5px 10px; margin-top: 14px; padding: 10px 12px; font-size: .62rem; }
  .reopening-date strong { grid-row: span 2; font-size: 1.3rem; }
  .reopening-date span:last-child { grid-column: 1; grid-row: 2; }
  .button-row { width: 100%; }
  .button-row .button { flex: 1 1 100%; }
  .steps, .split-grid, .branch-detail, .support-grid { grid-template-columns: 1fr; }
  .branch-detail .decision-box { order: -1; }
  .steps { border-top: 0; }
  .step, .step + .step { padding: 28px 0; border-top: 1px solid var(--line); border-right: 0; }
  .step-number { margin-bottom: 24px; }
  .section-heading { align-items: start; flex-direction: column; }
  .card-grid, .plan-grid, .location-grid, .store-grid, .photo-grid, .product-layout, .product-next-steps { grid-template-columns: 1fr; }
  .store-card { min-height: 0; }
  .store-card .button { margin-top: 20px; }
  .product-page { padding-block: 18px 58px; }
  .product-page > .shell > .breadcrumb { min-height: 40px; margin-bottom: 8px; }
  .product-layout { row-gap: 0; }
  .product-copy-title, .product-copy-context, .product-purchase { grid-column: 1; grid-row: auto; }
  .product-copy-title .kicker { margin-bottom: 8px; }
  .product-copy-title h1 { margin-bottom: 14px; font-size: clamp(2.7rem, 12.5vw, 3.2rem); }
  .product-purchase { position: static; padding: 20px; }
  .product-purchase > .eyebrow { display: none; }
  .product-price { margin-bottom: 9px; font-size: 2.65rem; }
  .product-cost-brief { font-size: .82rem; line-height: 1.35; }
  .product-branch-selector { gap: 7px; margin-top: 13px; padding-top: 13px; }
  .product-branch-selector select { min-height: 50px; }
  .branch-gate-help, .branch-gate-status { font-size: .69rem; line-height: 1.35; }
  .branch-gate-status { min-height: 1.9em; }
  .product-offer-disclosure { margin-top: 9px; }
  .product-offer-disclosure summary { min-height: 42px; font-size: .8rem; }
  .product-purchase .button { min-height: 50px; margin-top: 11px; }
  .product-copy-context { padding-top: 34px; }
  .product-copy-context .lead { font-size: 1rem; }
  .product-context-photo { margin-top: 24px; }
  .merch-row { grid-template-columns: 1fr 1fr; }
  .merch-row article { min-height: 150px; }
  .category-links { flex-direction: column; }
  .category-links a { width: 100%; }
  .plan-card { min-height: 0; }
  .plan-card .button { margin-top: 20px; }
  .location-tools { grid-template-columns: 1fr; }
  .button-location { width: 100%; }
  .card-actions { flex-wrap: wrap; }
  .segmented { display: grid; width: 100%; grid-template-columns: 1fr; overflow: visible; border-radius: 20px; }
  .segmented button { width: 100%; }
  .closure-strip .shell, .final-cta .shell { align-items: stretch; flex-direction: column; }
  .closure-strip .button, .final-cta .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 22px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .legal-source { padding: 22px 16px; border-radius: 0; }
  .legal-page .shell { width: 100%; }
}

@media (max-width: 440px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .fact-list div { grid-template-columns: 1fr; gap: 6px; }
  .merch-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
