/* ==========================================================================
   Rough Cut Apparel — mockup
   ========================================================================== */

:root {
  --bg:        #0e0d0c;
  --bg-2:      #141210;
  --panel:     #1a1714;
  --panel-2:   #211d18;
  --line:      rgba(243, 236, 223, 0.10);
  --bone:      #f3ecdf;
  --bone-dim:  #b7ad9c;
  --muted:     #8a8073;
  --red:       #b5271f;
  --red-2:     #d9503c;
  --red-deep:  #7d1a15;

  --maxw: 1200px;
  --radius: 4px;
  --ease: cubic-bezier(.2,.7,.2,1);

  --font-display: "Oswald", "Barlow Condensed", Impact, sans-serif;
  --font-cond: "Barlow Condensed", "Oswald", sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* subtle grain */
  background-image:
    radial-gradient(circle at 20% 10%, rgba(181,39,31,0.05), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(120,90,50,0.05), transparent 45%);
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 700; line-height: 1.02; }

.section { max-width: var(--maxw); margin: 0 auto; padding: 96px 24px; }

.eyebrow {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .8rem;
  font-weight: 600;
  color: var(--red-2);
  margin: 0 0 14px;
}

.section-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: .01em;
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-lead { color: var(--bone-dim); margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 1rem;
  padding: 15px 30px;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: .9rem; }
.btn-primary {
  background: var(--red);
  color: var(--bone);
  border-color: var(--red);
  box-shadow: 0 6px 22px -8px rgba(181,39,31,.7);
}
.btn-primary:hover { background: var(--red-2); border-color: var(--red-2); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--bone);
  border-color: rgba(243,236,223,.35);
}
.btn-ghost:hover { border-color: var(--bone); background: rgba(243,236,223,.06); transform: translateY(-2px); }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--red-deep);
  color: var(--bone);
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,.3);
}
/* Track holds two identical groups and slides exactly one group width (-50%),
   so the second group lands precisely where the first began — no blank gap. */
.announce-track {
  display: flex;
  width: max-content;
  animation: marquee 55s linear infinite;
}
.announce-group {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 8px 0;
  padding-right: 22px; /* keeps spacing even across the seam */
  flex: 0 0 auto;
  white-space: nowrap;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 600;
}
.announce-group .dot { color: var(--red-2); font-size: .6rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14,13,12,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled { background: rgba(14,13,12,.94); }
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
/* Big at rest, shrinks on scroll (same behaviour as razor-republic) */
.brand img {
  height: 120px;
  width: auto;
  transition: height .3s var(--ease);
}
.site-header.scrolled .brand img { height: 62px; }
.nav-links { display: flex; gap: 34px; }
.nav-links a {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
  font-size: .98rem;
  color: var(--bone-dim);
  transition: color .2s var(--ease);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--red);
  transition: width .25s var(--ease);
}
.nav-links a:hover { color: var(--bone); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 16px; }

/* Contact block lives inside the drawer — desktop nav hides it */
.nav-contact { display: none; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--bone); transition: .25s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background: url("assets/hero.jpg") center 28% / cover no-repeat;
  transform: scale(1.04);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,13,12,.55) 0%, rgba(14,13,12,.35) 45%, rgba(14,13,12,.92) 100%),
    linear-gradient(90deg, rgba(14,13,12,.7) 0%, rgba(14,13,12,.15) 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 24px 80px;
  width: 100%;
}
.kicker {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .3em;
  font-weight: 600;
  font-size: .85rem;
  color: var(--bone);
  margin: 0 0 18px;
}
.hero-title {
  font-size: clamp(3.4rem, 11vw, 8.5rem);
  text-transform: uppercase;
  letter-spacing: .01em;
  text-shadow: 0 8px 40px rgba(0,0,0,.6);
}
.hero-title .accent { color: var(--red-2); }
.hero-sub {
  max-width: 540px;
  margin: 22px 0 34px;
  font-size: 1.15rem;
  color: var(--bone);
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  padding: 9px 18px;
  border: 1px solid rgba(243,236,223,.28);
  border-radius: 999px;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .8rem;
  font-weight: 600;
  background: rgba(14,13,12,.35);
}
.hero-pill .pill-dot { color: var(--red-2); }
/* ---------- Feature strip ---------- */
.feature-strip {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 100%;
}
.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 30px;
  border-right: 1px solid var(--line);
}
.feature:last-child { border-right: 0; }
.feature-ico { color: var(--red-2); font-size: 1.1rem; }
.feature strong {
  display: block;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 1.02rem;
  font-weight: 700;
}
.feature small { color: var(--muted); font-size: .85rem; }

/* ---------- Shop ---------- */
.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.chip {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  font-size: .85rem;
  padding: 9px 20px;
  border-radius: 999px;
  background: transparent;
  color: var(--bone-dim);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.chip:hover { color: var(--bone); border-color: rgba(243,236,223,.35); }
.chip-active { background: var(--red); color: var(--bone); border-color: var(--red); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(181,39,31,.5); }
.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #000;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product-media.dark img { object-fit: contain; padding: 22px; background: #0a0908; }
.product-card:hover .product-media img { transform: scale(1.05); }
.badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--red);
  color: var(--bone);
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  font-size: .72rem;
  padding: 5px 11px;
  border-radius: 3px;
  z-index: 2;
}
.product-info { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-name {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 1.25rem;
  font-weight: 700;
}
.product-meta { color: var(--muted); font-size: .85rem; margin: 0; }
.product-foot {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* Special-order card (Razor Republic — hidden in Square, order by contacting) */
.badge-special {
  background: var(--bone);
  color: var(--bg);
}
.special-order { border-color: rgba(243, 236, 223, 0.28); }

/* Shirt-color swatches (added by script.js on every shirt card) */
.product-media.mock { background: #fff; }
.product-media.mock img { object-fit: contain; }
.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 8px;
}
.swatch {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  border: 1px solid rgba(243, 236, 223, 0.28);
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
  transition: transform .15s var(--ease), box-shadow .15s var(--ease);
}
.swatch:hover { transform: scale(1.18); }
.swatch-active {
  box-shadow: 0 0 0 2px var(--panel), 0 0 0 4px var(--red-2);
  transform: scale(1.08);
}
.price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }

.shop-all { text-align: center; margin-top: 48px; }

.shop-note {
  margin: 18px 0 0;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .82rem;
  font-weight: 600;
  color: var(--bone-dim);
}
.shop-note .pill-dot { color: var(--red-2); margin-right: 6px; }

/* ---------- Size guide ---------- */
.size-guide {
  max-width: 560px;
  margin: 40px auto 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.size-guide summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 20px;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: baseline;
  gap: 12px;
  transition: color .2s var(--ease);
}
.size-guide summary::-webkit-details-marker { display: none; }
.size-guide summary::after {
  content: "+";
  margin-left: auto;
  color: var(--red-2);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1;
}
.size-guide[open] summary::after { content: "–"; }
.size-guide summary:hover { color: var(--red-2); }
.sg-hint {
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .08em;
  font-size: .8rem;
  text-transform: none;
}
.sg-body { padding: 4px 20px 20px; }
.sg-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}
.sg-table th {
  text-align: left;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  font-weight: 700;
  color: var(--red-2);
  padding: 10px 12px;
  border-bottom: 1px solid rgba(243,236,223,.2);
}
.sg-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--bone-dim);
}
.sg-table td:first-child { color: var(--bone); font-weight: 600; }
.sg-table tbody tr:last-child td { border-bottom: 0; }
.sg-fit {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--red);
  background: rgba(181,39,31,.06);
  color: var(--bone-dim);
  font-size: .9rem;
  line-height: 1.55;
}
.sg-fit strong { color: var(--bone); }

/* ---------- Instagram feed ---------- */
.ig {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 80px 0;
  overflow: hidden;
}
.ig-head {
  max-width: var(--maxw);
  margin: 0 auto 40px;
  padding: 0 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.ig-handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--bone-dim);
  transition: color .2s var(--ease);
}
.ig-handle:hover { color: var(--red-2); }
.ig-handle .ico { width: 20px; height: 20px; }

/* Auto-scrolling rail — the track holds the tiles twice over and slides
   exactly one copy (-50%), so it loops with no gap. */
.ig-rail {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ig-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding-right: 16px;
  animation: ig-scroll 60s linear infinite;
}
.ig-rail:hover .ig-track { animation-play-state: paused; }
@keyframes ig-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.ig-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(200px, 22vw, 280px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #000;
}
.ig-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.ig-card:hover img { transform: scale(1.07); }
.ig-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(14,13,12,.88));
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.ig-card:hover::after { opacity: 1; }
.ig-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 14px 16px;
  font-size: .85rem;
  color: var(--bone);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ig-card:hover .ig-cap { opacity: 1; transform: translateY(0); }
.ig-badge {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 2;
  color: var(--bone);
  opacity: .85;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.6));
}
.ig-badge svg { width: 18px; height: 18px; }
.ig-foot { text-align: center; margin-top: 44px; }

/* ---------- About ---------- */
.about { padding-top: 110px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-media img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.about-copy p { color: var(--bone-dim); margin: 16px 0 0; }
.about-copy .section-title { margin-bottom: 8px; }
.signoff {
  font-family: var(--font-display) !important;
  color: var(--red-2) !important;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 1.5rem;
  margin-top: 26px !important;
}

/* ---------- Values ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.value-card:hover { border-color: rgba(181,39,31,.5); transform: translateY(-4px); }
.value-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--red-2);
  letter-spacing: .1em;
}
.value-card h3 {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 1.3rem;
  margin: 14px 0 10px;
}
.value-card p { color: var(--bone-dim); font-size: .95rem; margin: 0; }

/* ---------- Community ---------- */
.community { padding-top: 40px; }
.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.community-copy p { color: var(--bone-dim); margin: 16px 0 0; }
.community-tag { color: var(--bone) !important; font-weight: 600; }
.community-media img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 30%;
}
.social-row { display: flex; flex-direction: column; gap: 10px; margin-top: 26px; }
.social {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  transition: color .2s, padding-left .2s var(--ease);
}
.social:last-child { border-bottom: 1px solid var(--line); }
.social span { color: var(--muted); font-weight: 500; letter-spacing: .04em; font-size: .9rem; }
.social:hover { color: var(--red-2); padding-left: 8px; }
.social .ico {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--red-2);
  transition: color .2s var(--ease);
}
.social:hover .ico { color: var(--bone); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background:
    linear-gradient(rgba(14,13,12,.82), rgba(14,13,12,.92)),
    url("assets/hero.jpg") center 30% / cover no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 100px 24px;
  text-align: center;
}
.cta-lead { color: var(--bone-dim); margin: 16px 0 30px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); }
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 70px 24px 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.4fr;
  gap: 40px;
}
.footer-brand img { height: 54px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: .92rem; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--bone);
}
.footer-col a, .footer-col p { display: block; color: var(--bone-dim); font-size: .95rem; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--red-2); }
.footer-col .muted { color: var(--muted); }
.footer-social { display: flex; gap: 18px; margin-top: 6px; flex-wrap: wrap; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 0;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .85rem;
}
.footer-social .ico { width: 16px; height: 16px; flex: 0 0 auto; color: var(--red-2); transition: color .2s var(--ease); }
.footer-social a:hover .ico { color: var(--red-2); }
.news-form { display: flex; gap: 8px; margin-top: 6px; }
.news-form input {
  flex: 1;
  min-width: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--bone);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: .95rem;
}
.news-form input::placeholder { color: var(--muted); }
.news-form input:focus { outline: none; border-color: var(--red); }
.hp-field { position: absolute; left: -9999px; margin: 0; }
.news-thanks {
  margin: 0;
  padding: 11px 0;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  color: var(--red-2);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .8rem;
  color: var(--muted);
}
.footer-tag { color: var(--red-2); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .feature:nth-child(2) { border-right: 0; }
  .feature { border-bottom: 1px solid var(--line); }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 68px 20px; }
  .brand img { height: 78px; }
  .site-header.scrolled .brand img { height: 50px; }
  .ig-head { align-items: flex-start; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    flex-direction: column;
    gap: 8px;
    background: var(--bg-2);
    border-left: 1px solid var(--line);
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    z-index: 40;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.3rem; padding: 10px 0; }
  .menu-toggle { display: flex; z-index: 60; }
  .nav-cta { display: none; }

  /* Contact info at the bottom of the drawer (same idea as razor-republic) */
  .nav-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }
  .nav-contact-cta {
    align-self: flex-start;
    margin-bottom: 14px;
    font-size: 1rem !important;
    padding: 12px 26px !important;
  }
  .nav-contact-loc {
    margin: 0;
    font-family: var(--font-cond);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 600;
    font-size: .85rem;
    color: var(--muted);
  }
  .nav-links .nav-contact-mail {
    font-size: .95rem !important;
    padding: 0 !important;
    color: var(--bone-dim);
    text-transform: none;
    letter-spacing: .02em;
    font-family: var(--font-body);
    font-weight: 500;
    word-break: break-all;
  }
  .nav-contact-social { display: flex; gap: 20px; margin-top: 16px; }
  .nav-links .nav-contact-social a { padding: 4px 0; }
  .nav-contact-social .ico { width: 24px; height: 24px; color: var(--red-2); transition: color .2s var(--ease); }
  .nav-contact-social a:hover .ico { color: var(--bone); }
  .about-grid, .community-grid { grid-template-columns: 1fr; gap: 34px; }
  .community-grid .community-media { order: -1; }
  .about-media img { aspect-ratio: 16 / 10; }
  .community-media img { aspect-ratio: 4 / 3; object-position: center 22%; }
  .hero { min-height: calc(100vh - 90px); }
  .hero-media { background-position: center 30%; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .feature-strip { grid-template-columns: 1fr; }
  .feature { border-right: 0; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .announce-track, .ig-track { animation: none; }
  .ig-rail { overflow-x: auto; }
  * { scroll-behavior: auto; }
}
