/* ============================================================
   SNPSLV — main stylesheet
   Brand colors pulled from official logo artwork
   ============================================================ */
:root {
  /* Navy / black / white palette. Legacy accent names are repointed to navy
     so all existing rules adopt the new theme. */
  --navy: #20AADD;        /* legacy name repointed to the logo's cyan */
  --navy-dark: #1488b4;
  --cyan: #20AADD;        /* logo cyan — primary */
  --cyan-dark: #1488b4;
  --cyan-soft: #e6f6fc;   /* light cyan tint */
  --ink: #231F20;         /* logo black */
  --ink-soft: #54545c;
  --red: #231F20;         /* badges / cart count -> logo black */
  --orange: #20AADD;
  --gold: #20AADD;
  --cream: #f2fbfe;       /* light cyan-tinted off-white */
  --white: #ffffff;
  --line: #d9eef6;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(27,27,29,.08);
  --shadow: 0 14px 40px rgba(27,27,29,.12);
  --shadow-lg: 0 30px 70px rgba(35,55,106,.22);
  --maxw: 1160px;
  --font: 'Archivo', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --display: 'Archivo Black', 'Archivo', sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font); font-weight: 700; font-size: 1rem;
  padding: .9rem 1.7rem; border-radius: 3px; border: 2px solid transparent;
  text-transform: uppercase; letter-spacing: .04em; font-size: .92rem;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap; line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--cyan); color: var(--white); box-shadow: 0 8px 20px rgba(32,170,221,.32); }
.btn-primary:hover { background: var(--cyan-dark); box-shadow: 0 10px 26px rgba(32,170,221,.42); }
/* All button variants are blue per brand direction */
.btn-ghost { background: var(--cyan); color: var(--white); border-color: transparent; box-shadow: 0 8px 20px rgba(32,170,221,.32); }
.btn-ghost:hover { background: var(--cyan-dark); color: var(--white); }
.btn-light { background: var(--cyan); color: var(--white); box-shadow: 0 8px 20px rgba(32,170,221,.32); }
.btn-light:hover { background: var(--cyan-dark); color: var(--white); }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: .6rem 1.1rem; font-size: .9rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 1rem; }
.brand-logo { height: 40px; width: auto; }
.main-nav { display: flex; gap: 1.6rem; margin-left: auto; }
.main-nav a { font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink); transition: color .15s; }
.main-nav a:hover { color: var(--cyan); }
.header-actions { display: flex; align-items: center; gap: .9rem; margin-left: 1.6rem; }

.cart-toggle {
  position: relative; background: none; border: none; cursor: pointer; color: var(--ink);
  padding: 6px; display: inline-flex; border-radius: 10px;
}
.cart-toggle:hover { color: var(--cyan); }
.cart-count {
  position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--red); color: #fff; font-size: .68rem; font-weight: 700;
  border-radius: 999px; display: grid; place-items: center; line-height: 1;
}
.social-link { display: inline-flex; align-items: center; color: var(--ink); padding: 4px; border-radius: 8px; transition: color .15s, transform .15s; }
.social-link:hover { color: var(--cyan); transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .2s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(160deg, var(--cream) 0%, #fff 55%); }
.hero-inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center;
  padding: clamp(3rem, 6vw, 5.5rem) 24px clamp(4rem, 7vw, 6rem);
}
.eyebrow {
  display: inline-block; font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cyan-dark); background: var(--cyan-soft); padding: .4rem .8rem; border-radius: 999px; margin-bottom: 1.2rem;
}
.hero-title {
  font-family: var(--display); font-weight: 900; line-height: .92; margin: 0 0 1.2rem;
  font-size: clamp(3rem, 7vw, 5.4rem); letter-spacing: -.01em; text-transform: uppercase;
}
.hero-title .accent { color: var(--cyan); }
.hero-sub { font-size: 1.18rem; color: var(--ink-soft); max-width: 30rem; margin: 0 0 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.8rem; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 1.2rem; padding: 0; margin: 0; font-weight: 600; color: var(--ink); font-size: .95rem; }
.hero-trust li { color: var(--ink-soft); }

.hero-visual { position: relative; display: flex; flex-direction: column; align-items: center; }
.hero-hat {
  width: 100%; max-width: 460px; aspect-ratio: 5/4; background: var(--white);
  border-radius: 28px; box-shadow: var(--shadow-lg); padding: 1.5rem;
  display: grid; place-items: center; border: 1px solid var(--line);
}
.hero-hat svg { width: 100%; height: auto; }
.img-note { font-size: .76rem; color: var(--ink-soft); margin-top: .8rem; opacity: .8; }
.img-note.center { text-align: center; display: block; margin-top: 1.5rem; }
.img-note code { background: var(--cream); padding: .1rem .35rem; border-radius: 5px; font-size: .9em; }

/* ---------- Marquee ---------- */
.hero-marquee { background: var(--ink); color: var(--cream); overflow: hidden; padding: .75rem 0; }
.marquee-track { display: inline-flex; gap: 1.5rem; white-space: nowrap; animation: marquee 26s linear infinite; font-family: var(--display); letter-spacing: .04em; font-size: .95rem; }
.marquee-track span { opacity: .92; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--ink); color: #fff; }
.section-head { max-width: 44rem; margin: 0 auto 3rem; text-align: center; }
.kicker { display: inline-block; font-weight: 700; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan-dark); margin-bottom: .8rem; }
.section-head h2 { font-family: var(--display); font-size: clamp(2rem, 4.2vw, 3rem); line-height: 1.05; margin: 0 0 1rem; text-transform: uppercase; letter-spacing: -.01em; }
.lead { font-size: 1.12rem; color: var(--ink-soft); margin: 0; }
.section-dark .lead { color: rgba(255,255,255,.8); }

/* ---------- Feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon { width: 54px; height: 54px; border-radius: 14px; background: var(--cyan-soft); color: var(--cyan-dark); display: grid; place-items: center; margin-bottom: 1.2rem; }
.feature-card h3 { font-size: 1.25rem; margin: 0 0 .6rem; }
.feature-card p { color: var(--ink-soft); margin: 0; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step { text-align: center; padding: 1rem; }
.step-num { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--cyan); color: #fff; font-family: var(--display); font-size: 1.5rem; margin-bottom: 1rem; }
.step h3 { margin: 0 0 .5rem; font-size: 1.3rem; }
.step p { color: var(--ink-soft); margin: 0; max-width: 18rem; margin-inline: auto; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery-item .swatch-stage { aspect-ratio: 1; display: grid; place-items: center; padding: 1.4rem; }
.gallery-item .swatch-stage svg { width: 100%; height: auto; }
.gallery-label { position: absolute; left: 12px; bottom: 12px; background: rgba(27,27,29,.78); color: #fff; font-size: .78rem; font-weight: 600; padding: .25rem .65rem; border-radius: 999px; }

/* ---------- Shop ---------- */
.shop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; max-width: 880px; margin: 0 auto; }
.product-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.product-media { background: linear-gradient(150deg, var(--cyan-soft), #fff); padding: 2rem; display: grid; place-items: center; position: relative; }
.product-media svg { width: 80%; height: auto; }
.product-badge { position: absolute; top: 14px; right: 14px; background: var(--red); color: #fff; font-size: .72rem; font-weight: 700; padding: .3rem .65rem; border-radius: 999px; letter-spacing: .03em; }
.product-body { padding: 1.6rem; display: flex; flex-direction: column; gap: 1rem; flex: 1; }
.product-title-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.product-title-row h3 { margin: 0; font-size: 1.3rem; }
.product-price { font-family: var(--display); font-size: 1.3rem; color: var(--ink); white-space: nowrap; }
.product-desc { color: var(--ink-soft); margin: 0; font-size: .95rem; }

.field-label { font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); display: block; margin-bottom: .5rem; }
.color-options { display: flex; flex-wrap: wrap; gap: .5rem; }
.color-swatch { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--line); cursor: pointer; position: relative; transition: transform .12s; }
.color-swatch:hover { transform: scale(1.1); }
.color-swatch[aria-pressed="true"] { box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--cyan); border-color: #fff; }
.custom-row { display: flex; align-items: center; gap: .6rem; font-size: .92rem; color: var(--ink-soft); }
.custom-row input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--cyan); }
.custom-text { width: 100%; padding: .7rem .9rem; border: 1px solid var(--line); border-radius: var(--radius-sm); font: inherit; margin-top: .4rem; }
.custom-text:focus { outline: 2px solid var(--cyan); border-color: var(--cyan); }
.product-actions { margin-top: auto; display: flex; align-items: center; gap: .8rem; }
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty-stepper button { background: none; border: none; width: 34px; height: 38px; font-size: 1.1rem; cursor: pointer; color: var(--ink); }
.qty-stepper button:hover { background: var(--cream); }
.qty-stepper span { min-width: 28px; text-align: center; font-weight: 700; }

.shop-note { text-align: center; margin-top: 2.5rem; color: var(--ink-soft); }
.shop-note a { color: var(--cyan-dark); font-weight: 700; }

/* ---------- Customize ---------- */
.customize-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.customize-copy h2 { font-family: var(--display); font-size: clamp(1.9rem, 4vw, 2.8rem); text-transform: uppercase; line-height: 1.05; margin: .4rem 0 1rem; }
.customize-copy > p { font-size: 1.1rem; color: var(--ink-soft); }
.check-list { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; gap: .7rem; }
.check-list li { padding-left: 2rem; position: relative; font-weight: 500; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; background: var(--cyan); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: .8rem; font-weight: 700; }
.customize-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.8rem; }
.customize-hint { font-size: .85rem; color: var(--ink-soft); }
.customize-card { position: relative; background: linear-gradient(150deg, var(--navy), #2f4a8f); border-radius: 24px; padding: 2.5rem; box-shadow: var(--shadow-lg); }
.customize-hat { background: #fff; border-radius: 18px; padding: 1.5rem; display: grid; place-items: center; }
.customize-hat svg { width: 100%; height: auto; }
.customize-tag { color: #fff; text-align: center; font-weight: 600; margin: 1.2rem 0 0; opacity: .9; }

/* ---------- Email signup ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.signup-inner { max-width: 40rem; margin: 0 auto; text-align: center; }
.signup-copy h2 { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.05; margin: .4rem 0 .8rem; }
.signup-copy p { color: var(--ink-soft); font-size: 1.08rem; margin: 0 0 1.8rem; }
.signup-form { display: flex; gap: .6rem; max-width: 28rem; margin: 0 auto; }
.signup-form input { flex: 1; padding: .95rem 1.1rem; border: 1px solid var(--line); border-radius: 999px; font: inherit; background: #fff; }
.signup-form input:focus { outline: 2px solid var(--cyan); border-color: var(--cyan); }
.signup-msg { margin: 1rem 0 0; font-weight: 600; }
.signup-msg.ok { color: var(--cyan-dark); }
.signup-msg.err { color: var(--red); }
@media (max-width: 480px) { .signup-form { flex-direction: column; } .signup-form .btn { width: 100%; } }

/* ---------- Contact ---------- */
.contact-inner { text-align: center; max-width: 40rem; margin: 0 auto; }
.contact-inner h2 { font-family: var(--display); font-size: clamp(2rem, 4.5vw, 3.2rem); text-transform: uppercase; margin: 0 0 1rem; }
.contact-inner p { font-size: 1.15rem; color: rgba(255,255,255,.82); margin: 0 0 2rem; }
.contact-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.contact-ig { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.6rem; font-weight: 600; color: rgba(255,255,255,.85); transition: color .15s; }
.contact-ig:hover { color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.75); padding: 3rem 0 2rem; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand img { height: 40px; }
.footer-brand p { margin: 0; font-family: var(--display); font-size: .9rem; letter-spacing: .04em; color: #fff; text-transform: uppercase; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer-nav a { font-weight: 600; font-size: .95rem; transition: color .15s; }
.footer-nav a:hover { color: var(--cyan); }
.footer-ig { display: inline-flex; align-items: center; gap: .4rem; }
.footer-legal { width: 100%; border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.5rem; margin: 1rem 0 0; font-size: .82rem; }

/* ---------- Mobile nav ---------- */
.mobile-nav { position: fixed; inset: 72px 0 auto 0; z-index: 45; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
.mobile-nav nav { display: flex; flex-direction: column; padding: .5rem 24px 1rem; }
.mobile-nav a { padding: .9rem 0; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-nav a:last-child { border-bottom: none; }

/* ---------- Cart drawer ---------- */
.cart-backdrop { position: fixed; inset: 0; background: rgba(27,27,29,.45); z-index: 60; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(400px, 100%); background: #fff; z-index: 61;
  transform: translateX(100%); transition: transform .28s ease; display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 1.3rem 1.5rem; border-bottom: 1px solid var(--line); }
.cart-header h3 { margin: 0; font-size: 1.3rem; }
.cart-close { background: none; border: none; font-size: 1.8rem; line-height: 1; cursor: pointer; color: var(--ink-soft); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-empty { text-align: center; color: var(--ink-soft); padding: 3rem 1rem; }
.cart-line { display: grid; grid-template-columns: 56px 1fr auto; gap: .9rem; padding: 1rem 0; border-bottom: 1px solid var(--line); align-items: start; }
.cart-line-media { width: 56px; height: 56px; border-radius: 10px; background: var(--cyan-soft); display: grid; place-items: center; padding: 6px; }
.cart-line-media svg { width: 100%; height: auto; }
.cart-line-info h4 { margin: 0 0 .2rem; font-size: .98rem; }
.cart-line-meta { font-size: .8rem; color: var(--ink-soft); margin: 0 0 .5rem; }
.cart-line-qty { display: inline-flex; align-items: center; gap: .5rem; }
.cart-line-qty button { width: 24px; height: 24px; border: 1px solid var(--line); background: #fff; border-radius: 6px; cursor: pointer; font-size: .9rem; line-height: 1; }
.cart-line-price { font-weight: 700; white-space: nowrap; }
.cart-line-remove { background: none; border: none; color: var(--ink-soft); font-size: .78rem; cursor: pointer; text-decoration: underline; padding: 0; margin-top: .3rem; }
.cart-footer { border-top: 1px solid var(--line); padding: 1.3rem 1.5rem; }
.cart-subtotal { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.15rem; margin-bottom: .4rem; }
.cart-fineprint { font-size: .8rem; color: var(--ink-soft); margin: 0 0 1rem; }
.cart-error { color: var(--red); font-size: .85rem; margin: .8rem 0 0; text-align: center; }

/* ---------- Active nav ---------- */
.main-nav a.active { color: var(--navy); }
.main-nav a.active::after { content: ""; display: block; height: 2px; background: var(--navy); border-radius: 2px; margin-top: 3px; }

/* ---------- Page hero (subpages) ---------- */
.page-hero { background: linear-gradient(160deg, var(--cream) 0%, #fff 70%); padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem); border-bottom: 1px solid var(--line); text-align: center; }
.page-title { font-family: var(--display); text-transform: uppercase; font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.02; margin: .5rem 0 1rem; letter-spacing: -.01em; }
.page-lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 42rem; margin: 0 auto; }
.center-cta { text-align: center; margin-top: 2.5rem; }

/* ---------- Featured band (home) ---------- */
.feature-band { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; align-items: center; }
.feature-band-visual { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 2rem; box-shadow: var(--shadow); }
.feature-band-visual svg { width: 100%; height: auto; }
.feature-band-copy h2 { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.9rem, 4vw, 2.8rem); line-height: 1.05; margin: .4rem 0 1rem; }
.feature-band-copy p { font-size: 1.1rem; color: var(--ink-soft); margin: 0 0 1.6rem; }
.feature-band-cta { display: flex; flex-wrap: wrap; gap: .9rem; }

/* ---------- About split ---------- */
.about-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; align-items: center; }
.about-visual { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 2rem; box-shadow: var(--shadow); }
.about-visual svg { width: 100%; height: auto; }
.about-copy h2 { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin: 0 0 1rem; }
.about-copy p { font-size: 1.1rem; color: var(--ink-soft); }

/* ---------- Shop: Hat Trick card ---------- */
.product-card--wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
.product-card--wide .product-media { min-height: 320px; }
.set-includes { margin: .2rem 0; }
.set-colors { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.set-swatch { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--line); display: inline-block; }
.set-swatch-label { font-size: .9rem; color: var(--ink-soft); margin-right: .4rem; }
.product-note { font-size: .92rem; color: var(--ink-soft); margin: 0; }
.product-note a, .shop-note a { color: var(--navy); font-weight: 700; }

/* ---------- Bulk ---------- */
.bulk-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.1rem; }
.bulk-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1rem; text-align: center; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.bulk-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.bulk-qty { font-family: var(--display); font-size: 2.2rem; line-height: 1; color: var(--navy); }
.bulk-unit-label { text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; color: var(--ink-soft); margin-bottom: .9rem; }
.bulk-price { font-family: var(--display); font-size: 1.3rem; margin-bottom: .1rem; }
.bulk-per { font-size: .82rem; color: var(--ink-soft); margin-bottom: 1.1rem; }

/* Bulk configurator */
.bulk-config { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: start; max-width: 920px; margin: 0 auto; }
.bulk-config-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.alloc-list { display: grid; gap: .7rem; margin: .4rem 0 1rem; }
.alloc-row { display: flex; align-items: center; gap: .8rem; padding: .55rem .8rem; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.alloc-swatch { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--line); }
.alloc-name { font-weight: 600; flex: 1; }
.alloc-status { font-size: .95rem; color: var(--ink-soft); margin: 0 0 1.1rem; }
.alloc-ready { color: var(--cyan-dark); font-weight: 700; }
.bulk-config-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line); padding-top: 1.1rem; }
.bulk-config-price { font-family: var(--display); font-size: 1.5rem; }
.bulk-config-visual { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); text-align: center; position: sticky; top: 96px; }
.bulk-config-visual svg { width: 100%; height: auto; }

/* ---------- Personalize builder ---------- */
.personalize-builder { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.personalize-preview-wrap { position: sticky; top: 96px; text-align: center; }
.personalize-preview { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 2rem; box-shadow: var(--shadow); }
.personalize-preview svg { width: 100%; height: auto; }
.personalize-form { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 2rem; box-shadow: var(--shadow-sm); }
.personalize-form h2 { font-family: var(--display); text-transform: uppercase; font-size: 1.6rem; margin: .3rem 0 1.3rem; }
.text-input { width: 100%; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm); font: inherit; margin-bottom: 1.1rem; background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
select.text-input { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2354545c' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem; cursor: pointer; }
.text-input:focus { outline: 2px solid var(--navy); border-color: var(--navy); }
textarea.text-input { resize: vertical; }
.form-fineprint { font-size: .8rem; color: var(--ink-soft); margin: 1rem 0 0; text-align: center; }
.personalize-msg { margin: 1rem 0 0; font-weight: 600; text-align: center; }
.personalize-msg.ok { color: var(--navy); }
.personalize-msg.err { color: #b02020; }

/* ---------- Contact cards ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; max-width: 980px; margin: 0 auto; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); }
.contact-card h3 { font-size: 1.4rem; margin: 0 0 .6rem; }
.contact-card p { color: var(--ink-soft); margin: 0 0 1.3rem; }
.contact-fineprint { font-size: .82rem; margin-top: 1rem !important; }
.contact-fineprint a { color: var(--navy); font-weight: 600; }

/* ---------- Signup heading ---------- */
.signup-h { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.05; margin: .4rem 0 .8rem; }

/* ---------- Footer IG icon ---------- */
.footer-ig svg { width: 16px; height: 16px; }

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 900px) {
  .main-nav, .header-shop { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .feature-grid, .steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: 1fr; }
  .customize-inner { grid-template-columns: 1fr; gap: 2rem; }
  .feature-band, .about-split, .personalize-builder { grid-template-columns: 1fr; gap: 2rem; }
  .feature-band-visual, .about-visual { order: -1; }
  .product-card--wide { grid-template-columns: 1fr; }
  .bulk-grid { grid-template-columns: repeat(2, 1fr); }
  .bulk-config { grid-template-columns: 1fr; }
  .bulk-config-visual { position: static; order: -1; }
  .personalize-preview-wrap { position: static; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .btn-lg { width: 100%; }
  .hero-cta .btn, .contact-cta .btn { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   YETI-style layout components
   ============================================================ */
.promo-bar { background: var(--ink); color: #fff; text-align: center; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; padding: .55rem 1rem; font-weight: 600; }
.promo-bar a { color: #fff; text-decoration: underline; }

/* Hero (full-bleed) */
.hero-yeti { position: relative; background: radial-gradient(130% 120% at 78% 8%, #20AADD 0%, #231F20 52%, #1a1718 100%); color: #fff; overflow: hidden; }
.hero-yeti-inner { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 2rem; min-height: 72vh; padding: 3.5rem 24px; }
.hero-yeti-copy { max-width: 34rem; }
.eyebrow.light { background: rgba(255,255,255,.12); color: #cdeefc; }
.hero-yeti-title { font-family: var(--display); text-transform: uppercase; font-size: clamp(3rem, 7vw, 6rem); line-height: .9; letter-spacing: -.01em; margin: 0 0 1.3rem; }
.hero-yeti-sub { font-size: 1.2rem; color: rgba(255,255,255,.85); max-width: 28rem; margin: 0 0 2rem; }
.hero-yeti-cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-yeti-visual { justify-self: center; width: 100%; max-width: 440px; filter: drop-shadow(0 30px 50px rgba(0,0,0,.45)); }
.hero-yeti-visual svg { width: 100%; height: auto; }

/* Category tiles */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.tile { position: relative; display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; color: #fff; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.tile--cyan { background: linear-gradient(160deg, #20AADD, #1488b4); }
.tile--dark { background: linear-gradient(160deg, #2c2728, #171314); }
.tile-visual { position: absolute; inset: 7% 10% 26%; display: grid; place-items: center; }
.tile-visual svg { width: 100%; height: auto; filter: drop-shadow(0 14px 24px rgba(0,0,0,.3)); }
.tile-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1.5rem; background: linear-gradient(to top, rgba(0,0,0,.5), transparent); }
.tile-cap h3 { font-family: var(--display); text-transform: uppercase; font-size: 1.5rem; margin: 0 0 .2rem; }
.tile-cta { font-weight: 700; font-size: .9rem; letter-spacing: .03em; }

/* Editorial split (full-bleed) */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.split--reverse .split-visual { order: 2; }
.split-visual { min-height: 56vh; display: grid; place-items: center; padding: 3rem; }
.split-visual--cyan { background: linear-gradient(150deg, #20AADD, #1488b4); }
.split-visual--dark { background: linear-gradient(150deg, #2c2728, #171314); }
.split-visual svg { width: 100%; max-width: 360px; height: auto; filter: drop-shadow(0 24px 40px rgba(0,0,0,.35)); }
.split-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2.5rem, 5vw, 5rem); }
.split-copy h2 { font-family: var(--display); text-transform: uppercase; font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1; margin: .6rem 0 1.2rem; }
.split-copy p { font-size: 1.12rem; color: var(--ink-soft); margin: 0 0 1.8rem; max-width: 34rem; }

/* Brand statement */
.statement { background: var(--ink); color: #fff; text-align: center; padding: clamp(4rem, 9vw, 7rem) 0; }
.kicker.light { color: #5cc6ee; }
.statement-title { font-family: var(--display); text-transform: uppercase; font-size: clamp(2.4rem, 6vw, 4.5rem); line-height: 1; margin: .4rem 0 1rem; }
.statement p { font-size: 1.15rem; color: rgba(255,255,255,.8); max-width: 34rem; margin: 0 auto 2rem; }

/* Dark button */
.btn-dark { background: var(--cyan); color: #fff; box-shadow: 0 8px 20px rgba(32,170,221,.32); }
.btn-dark:hover { background: var(--cyan-dark); color: #fff; }

/* Big footer */
.site-footer-big { background: var(--ink); color: rgba(255,255,255,.72); padding: 4rem 0 2rem; }
.footer-cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-col h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 1.1rem; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,.72); font-size: .95rem; margin: 0 0 .65rem; text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-brand-col img { height: 44px; margin-bottom: 1rem; }
.footer-tag { font-family: var(--display); text-transform: uppercase; letter-spacing: .04em; color: #fff; font-size: .95rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.5rem; padding-top: 1.5rem; font-size: .82rem; }
.footer-social { display: flex; gap: .9rem; align-items: center; }
.footer-social a { color: rgba(255,255,255,.72); }
.footer-social a:hover { color: #fff; }

@media (max-width: 900px) {
  .hero-yeti-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-yeti-visual { order: -1; max-width: 280px; }
  .tiles { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-visual { order: -1 !important; min-height: 40vh; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .footer-cols { grid-template-columns: 1fr; }
}
.field-hint { font-size: .8rem; color: var(--ink-soft); margin: -.6rem 0 1.2rem; }

/* Email buttons (long addresses): keep on one line, never overflow the card */
.btn-email { text-transform: none; letter-spacing: 0; font-size: clamp(.8rem, 2.4vw, .98rem); white-space: nowrap; padding-left: 1rem; padding-right: 1rem; max-width: 100%; overflow: hidden; text-overflow: ellipsis; display: inline-block; text-align: center; }

/* ============================================================
   Real product photos
   ============================================================ */
.hero-photo { width: 100%; border-radius: 16px; display: block; box-shadow: 0 28px 60px rgba(0,0,0,.5); }

/* Category tiles -> clean product cards with the photo on top */
.tile { aspect-ratio: auto; background: #fff; color: var(--ink); border: 1px solid var(--line); }
.tile-img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.tile .tile-cap { position: static; background: none; padding: 1.1rem 1.3rem 1.3rem; }
.tile .tile-cap h3 { color: var(--ink); }
.tile .tile-cta { color: var(--cyan-dark); }

/* Editorial split panels -> full-bleed photo */
.split-visual { padding: 0; overflow: hidden; }
.split-img { width: 100%; height: 100%; min-height: 56vh; object-fit: cover; display: block; }

/* Featured band + about -> framed photo */
.band-img { width: 100%; height: auto; display: block; border-radius: 10px; }

/* Shop + bulk product card image */
.media-card { width: 100%; max-width: 320px; height: auto; display: block; border-radius: 12px; margin: 0 auto; }

/* Gallery photos */
.gallery-photo { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }

/* Personalize example photo (replaces the old SVG preview) */
.personalize-photo { width: 100%; border-radius: 18px; display: block; box-shadow: var(--shadow); }
/* Cart line thumbnails use real product photos */
.cart-line-media { padding: 0; overflow: hidden; background: var(--cream); }
.cart-line-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Trio of cap graphics (Shop set-of-3 + Bulk colorways) */
.cap-trio { display: flex; flex-direction: column; align-items: center; gap: .85rem; width: 100%; }
.cap-trio svg { width: 100%; max-width: 230px; height: auto; }

/* ============================================================
   Mobile polish (phones ≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  .container { padding: 0 18px; }

  /* Header sits lighter on a phone */
  .promo-bar { font-size: .7rem; letter-spacing: .03em; padding: .5rem .7rem; }
  .header-inner { height: 60px; }
  .brand-logo { height: 32px; }
  html { scroll-padding-top: 70px; }

  /* Hero */
  .hero-yeti-inner { padding: 1.75rem 18px 2.5rem; gap: 1.4rem; }
  .hero-yeti-visual { max-width: 230px; }
  .hero-yeti-title { font-size: 2.6rem; line-height: 1; margin-bottom: 1rem; }
  .hero-yeti-sub { font-size: 1.04rem; margin-bottom: 1.5rem; }
  .hero-yeti-cta { width: 100%; }
  .hero-yeti-cta .btn { width: 100%; }
  .eyebrow.light, .eyebrow { font-size: .72rem; }

  /* Section rhythm + headings */
  .section { padding: 2.75rem 0; }
  .section-head { margin-bottom: 2rem; }
  .section-head h2 { font-size: 1.95rem; }
  .lead, .page-lead { font-size: 1.05rem; }
  .page-hero { padding: 1.9rem 0 1.4rem; }
  .page-title { font-size: 2.1rem; }

  /* Editorial splits */
  .split-copy { padding: 2.25rem 18px; }
  .split-copy h2 { font-size: 2.1rem; }
  .split-visual, .split-img { min-height: 280px; }

  /* Featured + statement */
  .feature-band-copy h2 { font-size: 1.95rem; }
  .feature-band-cta .btn { width: 100%; }
  .statement { padding: 3.25rem 0; }
  .statement-title { font-size: 2.3rem; }

  /* Forms full-width */
  .signup-form { flex-direction: column; }
  .signup-form .btn, .signup-form input { width: 100%; }
  .center-cta .btn { width: 100%; }

  /* Footer breathing room */
  .site-footer-big { padding: 3rem 0 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .8rem; }
}

/* ============================================================
   Gallery — full-bleed cycling showcase
   ============================================================ */
.gallery-showcase { position: relative; min-height: 84vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: radial-gradient(125% 110% at 50% 6%, #ffffff 0%, #eaf6fb 60%, #d6ecf6 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.gs-stage { width: 100%; max-width: 760px; padding: 3rem 1.5rem 4rem; text-align: center; }
.gs-inner { animation: gsIn .5s ease both; }
@keyframes gsIn { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: none; } }
.gs-kicker { display: inline-block; font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan-dark); margin-bottom: 1rem; }
.gs-cap { margin: 0 auto; }
.gs-cap svg { width: 100%; max-width: 540px; height: auto; filter: drop-shadow(0 28px 40px rgba(20,40,60,.18)); }
.gs-name { font-family: var(--display); text-transform: uppercase; font-size: clamp(2rem, 5vw, 3.4rem); margin: .6rem 0 0; letter-spacing: -.01em; }
.gs-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: 50%; border: none; background: rgba(255,255,255,.92); box-shadow: var(--shadow); color: var(--ink); font-size: 2rem; line-height: 0; cursor: pointer; display: grid; place-items: center; transition: background .15s, transform .15s; z-index: 2; }
.gs-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.gs-prev { left: 24px; }
.gs-next { right: 24px; }
.gs-dots { position: absolute; bottom: 22px; left: 0; right: 0; display: flex; gap: .5rem; justify-content: center; z-index: 2; }
.gs-dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(20,40,60,.25); cursor: pointer; padding: 0; transition: background .15s, transform .15s; }
.gs-dot.active { background: var(--cyan); transform: scale(1.3); }
@media (max-width: 600px) {
  .gallery-showcase { min-height: 72vh; }
  .gs-stage { padding: 2rem 1rem 3.5rem; }
  .gs-cap svg { max-width: 250px; }
  .gs-arrow { width: 42px; height: 42px; font-size: 1.5rem; }
  .gs-prev { left: 10px; } .gs-next { right: 10px; }
}

/* ============================================================
   Balanced text wrapping (no awkward orphan lines)
   ============================================================ */
h1, h2, h3,
.hero-yeti-title, .statement-title, .page-title, .gs-name,
.section-head h2, .split-copy h2, .feature-band-copy h2, .signup-h {
  text-wrap: balance;
}
p, .lead, .page-lead, .hero-yeti-sub, .product-desc,
.feature-card p, .step p, .split-copy p, .feature-band-copy p {
  text-wrap: pretty;
}

/* ============================================================
   Justified body copy — flush left & right edges (clean blocks)
   ============================================================ */
.page-lead, .lead, .hero-yeti-sub,
.about-copy p, .split-copy p, .feature-band-copy p, .statement p {
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}
/* On phones, justify gets gappy in a narrow column — keep it left there */
@media (max-width: 600px) {
  .page-lead, .lead, .hero-yeti-sub,
  .about-copy p, .split-copy p, .feature-band-copy p, .statement p {
    text-align: left;
    hyphens: none;
  }
}
