/* Butts and Guts: red, white and blue, with beer gold, palm green and citrus accents.
   Display: Anton (banner lettering). Labels: Barlow Condensed. Body: Barlow. */

:root {
  --red: #c8202e;
  --red-dark: #9e1621;
  --navy: #15224f;
  --navy-2: #1d2f6b;
  --blue: #2e6fd8;
  --sky: #8ec5e8;
  --white: #ffffff;
  --cream: #fff7ea;
  --paper: #fffdf8;
  --gold: #f2a922;
  --green: #1e9e4a;
  --orange: #f57c1f;
  --ink: #15224f;
  --muted: #5c6583;
  --line: #e6dccb;
  --danger: #c8202e;
  --radius: 14px;
  --shadow: 0 1px 0 rgba(21, 34, 79, .06), 0 8px 24px rgba(21, 34, 79, .08);
  --display: "Anton", Impact, "Arial Narrow", sans-serif;
  --label: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 6px; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 720px) { .container { padding: 0 28px; } }
.section { padding: 56px 0; }
@media (min-width: 900px) { .section { padding: 80px 0; } }
.muted { color: var(--muted); }
.center { text-align: center; }
.display, h1, h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: .01em;
  text-transform: uppercase;
  line-height: 1.02;
  margin: 0 0 .4em;
}
h1 { font-size: clamp(2.3rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-family: var(--label); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: 1rem; margin: 0 0 .5em; }
.eyebrow {
  font-family: var(--label); font-weight: 700; text-transform: uppercase; letter-spacing: .14em;
  font-size: .85rem; color: var(--red); margin: 0 0 .6em;
}
.lede { font-size: 1.2rem; max-width: 40rem; }

/* ---------- stripe band (flag nod) ---------- */
.stripes { height: 8px; background: repeating-linear-gradient(90deg, var(--red) 0 28px, var(--white) 28px 56px); }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 40; background: var(--navy); color: var(--white); box-shadow: 0 2px 0 var(--red); }
.site-header .container { display: flex; align-items: center; gap: 14px; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand span { font-family: var(--display); font-size: 1.35rem; letter-spacing: .02em; text-transform: uppercase; line-height: 1; }
.brand span b { color: var(--gold); font-weight: 400; }
.nav-links { display: none; gap: 22px; margin-left: 18px; }
.nav-links a {
  font-family: var(--label); font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  text-decoration: none; font-size: 1.02rem; opacity: .88; padding: 6px 0; border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { opacity: 1; border-bottom-color: var(--gold); }
.nav-links a.hot { color: var(--gold); opacity: 1; }
@media (min-width: 860px) { .nav-links { display: flex; } }
.header-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.region {
  display: inline-flex; border: 1px solid rgba(255, 255, 255, .28); border-radius: 999px; overflow: hidden;
  font-family: var(--label); font-weight: 700; font-size: .85rem; letter-spacing: .06em;
}
.region button { background: none; border: 0; padding: 6px 10px; cursor: pointer; color: rgba(255, 255, 255, .75); }
.region button[aria-pressed="true"] { background: var(--white); color: var(--navy); }
.cart-btn {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  background: var(--red); color: var(--white); padding: 8px 14px; border-radius: 999px;
  font-family: var(--label); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .95rem;
}
.cart-count { background: var(--white); color: var(--red); border-radius: 999px; min-width: 22px; height: 22px; display: inline-grid; place-items: center; font-size: .8rem; padding: 0 6px; }
.menu-btn { display: inline-grid; place-items: center; width: 40px; height: 40px; background: none; border: 1px solid rgba(255, 255, 255, .28); border-radius: 10px; color: var(--white); cursor: pointer; }
@media (min-width: 860px) { .menu-btn { display: none; } }
.mobile-nav { display: none; background: var(--navy-2); color: var(--white); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 14px 16px; border-top: 1px solid rgba(255, 255, 255, .1); text-decoration: none; font-family: var(--label); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
@media (max-width: 420px) { .brand span { display: none; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 22px; border-radius: 999px; border: 2px solid var(--navy);
  background: var(--white); color: var(--navy); text-decoration: none; cursor: pointer;
  font-family: var(--label); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 1.02rem;
  transition: transform .12s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.btn-primary { background: var(--red); border-color: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-gold { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.btn-ghost { background: transparent; }
.btn-block { width: 100%; }

/* ---------- hero ---------- */
.hero { position: relative; background: var(--navy); color: var(--white); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .14;
  background-image: url("/img/pattern-maple-beer.jpg"); background-size: 520px;
}
.hero .container { position: relative; display: grid; gap: 28px; padding-top: 48px; padding-bottom: 56px; align-items: center; }
@media (min-width: 900px) { .hero .container { grid-template-columns: 1.1fr .9fr; padding-top: 72px; padding-bottom: 80px; } }
.hero h1 { font-size: clamp(2.8rem, 8vw, 5.6rem); }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero .lede { color: rgba(255, 255, 255, .88); }
.hero-logo { max-width: 460px; width: 100%; margin: 0 auto; filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .35)); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero .btn-ghost { border-color: var(--white); color: var(--white); }

/* ---------- ticker ---------- */
.ticker { background: var(--red); color: var(--white); overflow: hidden; white-space: nowrap; border-block: 3px solid var(--navy); }
.ticker-track { display: inline-block; padding: 10px 0; animation: ticker 38s linear infinite; font-family: var(--display); font-size: 1.25rem; letter-spacing: .04em; text-transform: uppercase; }
.ticker-track span { margin: 0 22px; }
.ticker-track span::after { content: "★"; color: var(--gold); margin-left: 44px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ---------- category tiles ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 720px) { .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.cat-tile {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 150px;
  padding: 16px; border-radius: var(--radius); text-decoration: none; color: var(--white); overflow: hidden;
  background: var(--navy); box-shadow: var(--shadow);
}
.cat-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .9; transition: transform .3s ease; }
.cat-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(21, 34, 79, 0) 35%, rgba(21, 34, 79, .92)); }
.cat-tile:hover img { transform: scale(1.04); }
.cat-tile b { position: relative; z-index: 1; font-family: var(--display); font-weight: 400; font-size: 1.5rem; text-transform: uppercase; line-height: 1; }
.cat-tile small { position: relative; z-index: 1; font-family: var(--label); letter-spacing: .08em; text-transform: uppercase; opacity: .85; }
.cat-tile:nth-child(4n+2) { background: var(--red); }
.cat-tile:nth-child(4n+3) { background: var(--green); }
.cat-tile:nth-child(4n+4) { background: var(--orange); }

/* ---------- product grid + cards ---------- */
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.section-head h2, .section-head h1 { margin: 0; }
.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
@media (min-width: 720px) { .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; } }
@media (min-width: 1040px) { .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.card {
  display: flex; flex-direction: column; background: var(--paper); border-radius: var(--radius);
  overflow: hidden; text-decoration: none; box-shadow: var(--shadow); border: 1px solid var(--line);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(21, 34, 79, .14); }
.card-media { aspect-ratio: 1 / 1; background: #f3ecdf; display: block; position: relative; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-media img + img { position: absolute; inset: 0; opacity: 0; transition: opacity .2s ease; }
.card:hover .card-media img + img { opacity: 1; }
.card-body { padding: 12px 12px 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-title { font-weight: 700; line-height: 1.25; font-size: .98rem; }
.card-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; }
.price { font-family: var(--label); font-weight: 700; font-size: 1.15rem; letter-spacing: .02em; }
.tag-chip {
  align-self: flex-start; font-family: var(--label); font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  font-size: .72rem; padding: 3px 8px; border-radius: 999px; background: var(--navy); color: var(--white);
}
.tag-chip.custom { background: var(--gold); color: var(--navy); }
.dots { display: inline-flex; align-items: center; gap: 4px; }
.dot { width: 12px; height: 12px; border-radius: 50%; border: 1px solid rgba(0, 0, 0, .18); }
.more { font-size: .75rem; color: var(--muted); }

/* ---------- shop toolbar: the big dropdown ---------- */
.finder {
  background: var(--navy); color: var(--white); border-radius: var(--radius); padding: 18px;
  display: grid; gap: 12px; margin-bottom: 26px; box-shadow: var(--shadow);
}
@media (min-width: 860px) { .finder { grid-template-columns: 1.4fr 1fr 1fr 1fr; align-items: end; padding: 22px; } }
.finder label { display: block; font-family: var(--label); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; opacity: .85; margin-bottom: 6px; }
.finder .primary label { color: var(--gold); opacity: 1; font-size: .9rem; }
.select {
  width: 100%; min-height: 48px; border-radius: 10px; border: 2px solid transparent; padding: 10px 40px 10px 14px;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%2315224f' stroke-width='2.2' fill='none'/%3E%3C/svg%3E") no-repeat right 14px center;
  color: var(--navy); appearance: none; font-weight: 600; cursor: pointer;
}
.finder .primary .select { font-family: var(--display); font-size: 1.35rem; text-transform: uppercase; font-weight: 400; min-height: 56px; border-color: var(--gold); }
.chips { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; margin: -8px 0 22px; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex-shrink: 0; border: 2px solid var(--navy); background: var(--white); color: var(--navy); border-radius: 999px;
  padding: 6px 14px; font-family: var(--label); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; cursor: pointer;
}
.chip[aria-pressed="true"] { background: var(--navy); color: var(--white); }
.empty { padding: 40px 16px; text-align: center; color: var(--muted); }

/* ---------- product page ---------- */
.product { display: grid; gap: 28px; }
@media (min-width: 900px) { .product { grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: start; } }
.gallery-main { aspect-ratio: 1 / 1; background: #f3ecdf; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.gallery-main img, .gallery-main canvas { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; }
.gallery-thumbs button { flex: 0 0 72px; height: 72px; padding: 0; border: 2px solid transparent; border-radius: 10px; overflow: hidden; background: #f3ecdf; cursor: pointer; }
.gallery-thumbs button[aria-current="true"] { border-color: var(--red); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 900px) { .buybox { position: sticky; top: 90px; } }
.buybox h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
.price-lg { font-size: 1.7rem; margin-bottom: 18px; }
.opt-group { margin: 18px 0; }
.swatches, .sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.swatch { width: 36px; height: 36px; border-radius: 50%; border: 2px solid rgba(0, 0, 0, .15); cursor: pointer; }
.swatch[aria-pressed="true"] { outline: 3px solid var(--red); outline-offset: 2px; }
.size-btn {
  min-width: 52px; min-height: 42px; padding: 6px 12px; border-radius: 10px; border: 2px solid var(--navy);
  background: var(--white); cursor: pointer; font-family: var(--label); font-weight: 700; letter-spacing: .04em;
}
.size-btn[aria-pressed="true"] { background: var(--navy); color: var(--white); }
.size-btn:disabled { opacity: .3; cursor: not-allowed; text-decoration: line-through; }
.qty { display: inline-flex; align-items: center; border: 2px solid var(--navy); border-radius: 999px; overflow: hidden; background: var(--white); }
.qty button { width: 40px; height: 40px; border: 0; background: none; cursor: pointer; font-size: 1.2rem; }
.qty span { min-width: 30px; text-align: center; font-weight: 700; }
.note { font-size: .95rem; color: var(--muted); }
.desc { white-space: pre-line; }
.final-sale { display: inline-block; background: var(--navy); color: var(--white); font-family: var(--label); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; padding: 3px 9px; border-radius: 6px; }

/* ---------- custom uploader ---------- */
.side-tabs { display: flex; gap: 8px; margin-bottom: 10px; }
.side-tabs button { flex: 1; min-height: 44px; border-radius: 10px; border: 2px solid var(--navy); background: var(--white); cursor: pointer; font-family: var(--label); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.side-tabs button[aria-pressed="true"] { background: var(--navy); color: var(--white); }
.side-tabs button .ok { color: var(--green); margin-left: 4px; }
.side-tabs button[aria-pressed="true"] .ok { color: var(--gold); }
.drop {
  border: 2px dashed var(--navy); border-radius: var(--radius); padding: 18px; text-align: center; background: var(--paper);
}
.drop.drag { background: #fff0d1; border-color: var(--gold); }
.art-controls { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 10px; }
.art-controls button { min-width: 42px; min-height: 40px; border-radius: 10px; border: 2px solid var(--navy); background: var(--white); cursor: pointer; font-weight: 700; }
.warn { background: #fff0d1; border-left: 4px solid var(--gold); padding: 8px 12px; border-radius: 8px; font-size: .92rem; }
.agree { display: flex; gap: 10px; align-items: flex-start; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 12px; font-size: .93rem; }
.agree input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--red); flex-shrink: 0; }

/* ---------- custom landing ---------- */
.steps { display: grid; gap: 14px; counter-reset: step; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; position: relative; }
.step::before { counter-increment: step; content: counter(step); font-family: var(--display); font-size: 2.6rem; color: var(--red); line-height: 1; display: block; margin-bottom: 6px; }

/* ---------- story / split ---------- */
.split { display: grid; gap: 28px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 56px; } }
.band-navy { background: var(--navy); color: var(--white); }
.band-navy .muted { color: rgba(255, 255, 255, .72); }
.band-red { background: var(--red); color: var(--white); }
.band-sky { background: var(--sky); }
.band-pattern { background: var(--red) url("/img/pattern-tropical.jpg") center / 520px; color: var(--white); }
.panel { background: rgba(21, 34, 79, .92); border-radius: var(--radius); padding: 28px; }
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 16px 0 0; list-style: none; }
.pill-list li { background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .25); padding: 6px 12px; border-radius: 999px; font-family: var(--label); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: .9rem; }

/* ---------- prose pages ---------- */
.prose { max-width: 46rem; }
.prose h2 { font-size: 1.7rem; margin-top: 1.6em; }
.prose p, .prose li { color: #2a3560; }
.prose strong { color: var(--ink); }
.faq details { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 700; }

/* ---------- cart ---------- */
.cart-wrap { display: grid; gap: 24px; }
@media (min-width: 900px) { .cart-wrap { grid-template-columns: 1fr 380px; align-items: start; } }
.line { display: grid; grid-template-columns: 72px 1fr auto; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); align-items: start; }
.line-thumb { width: 72px; height: 72px; border-radius: 10px; overflow: hidden; background: #f3ecdf; display: block; }
.line-thumb img { width: 100%; height: 100%; object-fit: cover; }
.line-title { font-weight: 700; line-height: 1.25; }
.line-variant { font-size: .9rem; color: var(--muted); }
.line-remove { background: none; border: 0; padding: 0; margin-top: 4px; color: var(--red); cursor: pointer; font-size: .9rem; text-decoration: underline; }
.line-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.line-right .qty button { width: 32px; height: 32px; }
.cart-summary { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
@media (min-width: 900px) { .cart-summary { position: sticky; top: 90px; } }
.sum-row { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; }
.sum-row.total { border-top: 2px solid var(--navy); margin-top: 8px; padding-top: 12px; font-size: 1.15rem; font-weight: 700; }
.ship-to { display: flex; gap: 8px; margin: 8px 0 14px; }
.ship-to button { flex: 1; min-height: 42px; border-radius: 10px; border: 2px solid var(--navy); background: var(--white); cursor: pointer; font-family: var(--label); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.ship-to button[aria-pressed="true"] { background: var(--navy); color: var(--white); }
.fine { font-size: .85rem; color: var(--muted); }

/* ---------- drawer, toast, mobile bar ---------- */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(21, 34, 79, .45); opacity: 0; transition: opacity .22s ease; z-index: 60; }
.drawer-backdrop.open { opacity: 1; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 100%); background: var(--cream); z-index: 61;
  transform: translateX(100%); transition: transform .24s ease; display: flex; flex-direction: column; box-shadow: -10px 0 30px rgba(0, 0, 0, .2);
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 16px; background: var(--navy); color: var(--white); }
.drawer-head b { font-family: var(--display); font-weight: 400; font-size: 1.5rem; text-transform: uppercase; }
.drawer-close { background: none; border: 0; color: var(--white); font-size: 1.8rem; cursor: pointer; line-height: 1; }
.drawer-body { flex: 1; overflow-y: auto; padding: 0 16px; }
.drawer-foot { padding: 16px; border-top: 1px solid var(--line); background: var(--paper); }
.toast-wrap { position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%); z-index: 80; display: flex; flex-direction: column; gap: 8px; width: min(92vw, 420px); }
.toast { background: var(--navy); color: var(--white); padding: 12px 16px; border-radius: 12px; border-left: 5px solid var(--gold); opacity: 0; transform: translateY(8px); transition: all .2s ease; box-shadow: var(--shadow); }
.toast.show { opacity: 1; transform: none; }
.mobile-cartbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; background: var(--navy); color: var(--white); padding: 10px 16px; display: none; align-items: center; justify-content: space-between; gap: 12px; }
.mobile-cartbar.show { display: flex; }
@media (min-width: 860px) { .mobile-cartbar.show { display: none; } }
body.has-cart { padding-bottom: 70px; }
@media (min-width: 860px) { body.has-cart { padding-bottom: 0; } }

/* ---------- skeleton ---------- */
.skeleton { background: linear-gradient(90deg, #efe6d6 25%, #f7f0e3 37%, #efe6d6 63%); background-size: 400% 100%; animation: sk 1.4s ease infinite; border-radius: 8px; display: block; }
@keyframes sk { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: var(--white); padding: 48px 0 28px; margin-top: 40px; }
.footer-grid { display: grid; gap: 28px; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-grid img { width: 96px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { text-decoration: none; opacity: .85; }
.footer-links a:hover { opacity: 1; color: var(--gold); }
.footer-fine { font-size: .88rem; opacity: .7; margin-top: 24px; }
.ig { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 700; color: var(--gold); }
.ig svg { width: 22px; height: 22px; }
