@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=DM+Serif+Display:ital@0;1&family=Montserrat:ital,wght@0,400;0,600;0,700;1,400&display=swap");

:root {
  /* Loon promo: navy + gold; storefront: CITGO red + charcoal */
  --navy-deep: #050b14;
  --navy: #0c1524;
  --navy-mid: #141f2e;
  --slate: #2b3544;
  --card: #121c2c;
  --card-edge: rgba(238, 23, 31, 0.22);
  --text: #f7f9fc;
  --muted: #a8b8d0;
  --gold: #f0c330;
  --gold-bright: #ffcc33;
  --gold-dim: #c9a227;
  --citgo-red: #ee171f;
  --citgo-red-deep: #c4121a;
  --stroke: rgba(255, 255, 255, 0.08);
  --font-serif: "DM Serif Display", Georgia, "Times New Roman", serif;
  --font-hand: "Caveat", cursive;
  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  background: radial-gradient(ellipse 100% 80% at 50% -20%, rgba(240, 195, 48, 0.06), transparent 55%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 35%, #0a1424 100%);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

a {
  color: var(--gold-bright);
  text-underline-offset: 0.15em;
}

a:hover {
  color: #ffe566;
}

header {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(6, 13, 24, 0.95) 0%, rgba(10, 22, 40, 0.88) 100%);
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1.5rem;
}

.header-bar {
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.header-logo-link {
  display: block;
  flex: 0 0 auto;
  line-height: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--card-edge);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.header-logo-img {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(200px, 44vw);
  object-fit: contain;
  object-position: center center;
}

@media (min-width: 640px) {
  .header-logo-img {
    height: 56px;
    max-width: 220px;
  }
}

.header-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-nav a {
  color: var(--gold-bright);
  text-decoration: none;
  padding: 0.35rem 0.15rem;
  border-bottom: 2px solid transparent;
}

.header-nav a:hover {
  color: #fff;
  border-bottom-color: var(--gold);
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem 3.5rem;
}

/* --- Hero --- */
.hero {
  margin: 1rem -1.25rem 0;
  padding: 0 0 1.75rem;
  border-radius: 20px;
  border: 1px solid var(--card-edge);
  background: linear-gradient(145deg, var(--navy-mid) 0%, var(--navy) 55%, var(--navy-deep) 100%);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 0;
}

@media (min-width: 880px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 46%);
    align-items: stretch;
  }
}

.hero-visual {
  position: relative;
  margin: 0;
  min-height: 200px;
  background: #050a12;
}

@media (min-width: 880px) {
  .hero-visual {
    order: 2;
    min-height: 100%;
  }
}

.hero-brand-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (min-width: 880px) {
  .hero-brand-img {
    min-height: 100%;
    object-position: center center;
  }
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 2px rgba(240, 195, 48, 0.35);
}

.hero-copy {
  padding: 1.75rem 1.35rem 1.5rem;
}

@media (min-width: 880px) {
  .hero-copy {
    padding: 2rem 1.75rem 1.75rem;
  }
}

.hero-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

#brand-taglines {
  margin: 0 0 1rem;
}

.brand-line {
  margin: 0.15rem 0 0;
  font-family: var(--font-hand);
  font-weight: 700;
  line-height: 1.15;
}

.brand-line--primary {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  color: var(--gold-bright);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.brand-line--secondary {
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  color: #fff8dc;
  opacity: 0.95;
}

.hero h1 {
  margin: 0 0 0.65rem;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
}

.hero .lead {
  color: var(--muted);
  max-width: 36rem;
  margin: 0;
  font-size: 1rem;
}

.hero-hours {
  margin: 1.1rem 0 0;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--stroke);
  font-size: 0.88rem;
  color: #e8edf5;
  max-width: 22rem;
}

.hero-hours strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(180deg, #ff3a42 0%, var(--citgo-red) 45%, var(--citgo-red-deep) 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #ff5c63 0%, #ff2028 100%);
  color: #fff;
}

.btn-ghost {
  color: var(--gold-bright);
  background: rgba(240, 195, 48, 0.1);
  border-color: rgba(240, 195, 48, 0.45);
}

.btn-ghost:hover {
  background: rgba(240, 195, 48, 0.2);
  color: #fff;
}

.btn-gold-outline {
  color: var(--text);
  border-color: var(--gold);
  background: transparent;
}

.btn-gold-outline:hover {
  background: rgba(240, 195, 48, 0.12);
  color: #fff;
}

/* --- Value strip --- */
.values-strip {
  margin: 2rem -1.25rem 0;
  padding: 1.5rem 1.25rem;
  border-radius: 16px;
  border: 1px solid var(--card-edge);
  background: rgba(15, 31, 56, 0.65);
}

#values-root {
  display: grid;
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 720px) {
  #values-root {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-cell {
  text-align: center;
  padding: 0.35rem 0.5rem;
}

.value-symbol {
  display: block;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--gold-bright);
  margin-bottom: 0.35rem;
}

.value-title {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.value-blurb {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

/* --- Cards --- */
.cards {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  background: var(--card);
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--stroke);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

.card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--gold);
}

.visit-meta {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.visit-meta a {
  font-weight: 600;
  color: var(--gold-bright);
}

/* --- Spotlight --- */
.page-section {
  margin-top: 2.5rem;
  padding-top: 0.5rem;
}

.page-section h2 {
  font-family: var(--font-hand);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 700;
  color: var(--gold-bright);
  margin: 0 0 1rem;
  line-height: 1.1;
}

.spotlight-panel {
  background: var(--card);
  border: 1px solid var(--card-edge);
  border-radius: 18px;
  padding: 1.5rem 1.35rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.spotlight-title {
  font-family: var(--font-hand);
  font-size: 1.75rem;
  color: var(--gold-bright);
  margin: 0 0 0.75rem;
}

.spotlight-quote {
  margin: 0;
  font-size: 1.05rem;
  font-style: italic;
  color: #eef3fa;
  line-height: 1.55;
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
}

.spotlight-meta {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.spotlight-rating {
  font-weight: 800;
  color: var(--gold-bright);
}

.spotlight-stars {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  color: var(--gold-bright);
}

.spotlight-reviewer {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.spotlight-reviewer cite {
  font-style: normal;
  font-weight: 700;
  color: #dce6f5;
}

.spotlight-neighbors-grid {
  display: grid;
  gap: 1.35rem;
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--stroke);
}

@media (min-width: 720px) {
  .spotlight-neighbors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.spotlight-neighbor-card {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 0.85rem;
}

.spotlight-neighbor-fig {
  margin: 0 0 0.75rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  line-height: 0;
}

.spotlight-neighbor-fig img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 220px;
  object-fit: cover;
  object-position: center;
}

.spotlight-neighbor-quote {
  margin: 0;
  font-size: 0.95rem;
  font-style: italic;
  color: #e8eef8;
  line-height: 1.5;
  border-left: 3px solid var(--gold-dim);
  padding-left: 0.75rem;
}

.spotlight-neighbor-meta {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.spotlight-neighbor-meta cite {
  font-style: normal;
  font-weight: 700;
  color: #dce6f5;
}

/* --- Local photo gallery --- */
.local-gallery-section .sub {
  color: var(--muted);
  margin: 0 0 1.25rem;
  max-width: 52rem;
}

.local-gallery-subsection {
  margin-top: 2rem;
}

.local-gallery-subsection:first-child {
  margin-top: 0;
}

.local-gallery-subtitle {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 0 0 0.35rem;
}

.local-gallery-subblurb {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 48rem;
  line-height: 1.5;
}

.local-gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
}

.local-gallery-cell {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.local-gallery-cell img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.local-gallery-cell figcaption {
  padding: 0.65rem 0.85rem 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

/* --- Pickup order demo --- */
.pickup-section .pickup-sub {
  color: var(--muted);
  margin: 0 0 1.25rem;
  max-width: 48rem;
  font-size: 0.95rem;
}

.pickup-shell {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 860px) {
  .pickup-shell {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 34%);
    align-items: start;
  }
}

.pickup-menu-panel {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 1rem 1rem 1.15rem;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.25);
}

.pickup-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
  max-height: 9.5rem;
  overflow-y: auto;
  padding-bottom: 0.15rem;
  scrollbar-gutter: stable;
}

.pickup-tab {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.2);
  color: var(--muted);
  cursor: pointer;
}

.pickup-tab--active {
  border-color: var(--gold);
  color: #1a1204;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
}

.pickup-item-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.65rem 0.75rem;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--stroke);
}

.pickup-item-row:last-child {
  border-bottom: none;
}

.pickup-item-name {
  font-weight: 600;
  color: var(--text);
}

.pickup-item-hint {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.pickup-item-price {
  font-weight: 700;
  color: var(--gold-bright);
  font-size: 0.9rem;
}

.btn-add {
  font-size: 0.72rem;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--gold);
  background: rgba(240, 195, 48, 0.12);
  color: var(--gold-bright);
  font-weight: 700;
  cursor: pointer;
}

.btn-add:hover {
  background: rgba(240, 195, 48, 0.22);
  color: #fff;
}

.pickup-cart-panel {
  background: rgba(15, 31, 56, 0.85);
  border: 1px solid var(--card-edge);
  border-radius: 16px;
  padding: 1.1rem 1.15rem 1.25rem;
}

.pickup-cart-title {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.pickup-cart-lines {
  min-height: 5rem;
}

.pickup-cart-empty {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.pickup-cart-line {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.35rem 0.5rem;
  align-items: start;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--stroke);
  font-size: 0.88rem;
}

.pickup-cart-hint {
  font-size: 0.75rem;
  color: var(--muted);
}

.pickup-cart-line-price {
  font-weight: 700;
  color: var(--gold-bright);
}

.btn-remove {
  border: none;
  background: transparent;
  color: #f87171;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.15rem;
}

.pickup-cart-foot {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--stroke);
}

.pickup-cart-total {
  font-weight: 800;
  margin-bottom: 0.65rem;
  color: var(--text);
}

.pickup-checkout {
  width: 100%;
  text-align: center;
}

.pickup-checkout:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.pickup-legal {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.45;
}

.pickup-toast {
  margin-top: 1rem;
  padding: 1rem 1rem;
  border-radius: 12px;
  background: #0a1628;
  border: 1px solid var(--gold-dim);
  color: #e8edf5;
  font-size: 0.78rem;
  line-height: 1.5;
  white-space: pre-wrap;
  max-height: 280px;
  overflow: auto;
}

/* --- Social hub (timeline + highlights) --- */
.social-hub .sub {
  color: var(--muted);
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  max-width: 52rem;
}

.social-hub-grid {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 960px) {
  .social-hub-grid {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  }
}

.social-hub-main .social-stream-fb-wrap iframe,
.social-hub-main iframe {
  width: 100% !important;
  max-width: 100%;
  min-height: 420px;
  border: none;
  border-radius: 14px;
  border: 1px solid var(--card-edge);
  background: #050a12;
}

.social-stream-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.social-stream-tab {
  appearance: none;
  font: inherit;
  cursor: pointer;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(10, 22, 40, 0.65);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.social-stream-tab:hover {
  color: var(--text);
  border-color: var(--gold-dim);
}

.social-stream-tab--active {
  color: #0a1628;
  background: linear-gradient(135deg, var(--gold), #e8c85a);
  border-color: var(--gold);
}

.social-stream-panels {
  min-height: 200px;
}

.social-stream-fb-wrap {
  max-width: 100%;
  overflow: hidden;
  border-radius: 14px;
}

.hosted-social-intro {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 48rem;
}

.hosted-social-feed {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hosted-social-post {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
}

.hosted-social-post-fig {
  margin: 0;
  line-height: 0;
}

.hosted-social-post-fig img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}

.hosted-social-post-date {
  margin: 0.85rem 1.1rem 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.hosted-social-post-title {
  margin: 0.35rem 1.1rem 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.hosted-social-post-body {
  margin: 0.5rem 1.1rem 0;
  font-size: 0.9rem;
  color: #dce5f2;
  line-height: 1.55;
}

.hosted-social-post-cta {
  margin: 1rem 1.1rem 1.1rem;
  display: inline-block;
}

.social-hub-side {
  background: var(--card);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  border: 1px solid var(--stroke);
}

.social-side-title {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

#social-highlights-root {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.social-highlight-card {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid var(--stroke);
  background: linear-gradient(135deg, rgba(240, 195, 48, 0.08), rgba(10, 22, 40, 0.6));
  transition: border-color 0.15s ease, transform 0.12s ease;
  overflow: hidden;
}

.social-highlight-card--has-thumb {
  padding-top: 0;
}

.social-highlight-card:hover {
  border-color: var(--citgo-red);
  transform: translateY(-1px);
}

.social-highlight-thumb {
  display: block;
  width: calc(100% + 1.7rem);
  max-width: none;
  height: auto;
  aspect-ratio: 1024 / 500;
  object-fit: cover;
  margin: 0 -0.85rem 0.65rem;
  border-bottom: 1px solid var(--stroke);
}

.social-highlight-label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.social-highlight-blurb {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

.fb-fallback--side {
  margin-top: 1rem;
  padding: 0;
  border: none;
  background: transparent;
}

.fb-fallback--side p {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
}

/* --- Ordering + inventory --- */
.ordering-intro {
  margin: 0 0 1.25rem;
  color: var(--muted);
  max-width: 52rem;
}

.ordering-scenario {
  background: rgba(15, 31, 56, 0.55);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  margin-bottom: 1rem;
}

.ordering-scenario-title {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}

.ordering-steps {
  margin: 0;
  padding-left: 1.2rem;
  color: #dce5f2;
  font-size: 0.92rem;
}

.ordering-steps li {
  margin-bottom: 0.4rem;
}

/* --- Menu / forge sections --- */
.section-band {
  margin: 0 auto;
  padding: 2.5rem 0 0;
}

.section-band h2 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.section-band .sub {
  color: var(--muted);
  margin: 0 0 1.25rem;
  max-width: 48rem;
  font-size: 0.95rem;
}

.offer-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .offer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.offer-cat {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  border-top: 3px solid var(--gold-dim);
}

.offer-cat h3 {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold-bright);
}

.forge-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text);
  font-size: 0.92rem;
}

.forge-list li {
  margin-bottom: 0.35rem;
}

.forge-ops-grid {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
}

@media (min-width: 800px) {
  .forge-ops-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.forge-ops-col {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  border-top: 3px solid rgba(240, 195, 48, 0.45);
}

.forge-ops-col h3 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

footer {
  padding: 2.25rem 1.25rem;
  border-top: 1px solid var(--stroke);
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
  background: rgba(6, 13, 24, 0.6);
}

footer strong {
  color: var(--gold);
  font-weight: 600;
}
