/* ─── RESET & BASE ────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0a0a0a;
  --white: #f5f4f0;
  --off-white: #e8e7e2;
  --grey: #888880;
  --grey-dark: #2a2a28;
  --grey-mid: #444440;
  --accent: #c9a84c;
  --accent-dim: #8a6f2e;
  --red: #cc2222;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --nav-h: 64px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

a { cursor: pointer; text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }


/* ─── NAV ────────────────────────────────────────────────────────────────── */
.nav {
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.6); }
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-search-btn {
  color: var(--white);
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.nav-search-btn:hover { opacity: 1; }
.nav-notify-btn {
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 2px;
  transition: opacity 0.2s;
}
.nav-notify-btn:hover { opacity: 0.85; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: all 0.3s; }
.search-bar {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--grey-dark);
  display: flex;
  align-items: center;
  padding: 0 2rem;
}
.search-bar.open { max-height: 56px; padding: 8px 2rem; }
.search-bar input {
  flex: 1;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.05em;
  outline: none;
}
.search-bar input::placeholder { color: rgba(255,255,255,0.3); }
.search-bar button { color: rgba(255,255,255,0.5); font-size: 18px; }

/* ─── MOBILE MENU ────────────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 90;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-inner {
  padding: calc(var(--nav-h) + 2rem) 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu-inner a {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.mobile-menu-inner a:hover { color: var(--accent); }

/* ─── PAGES ──────────────────────────────────────────────────────────────── */
.page { display: none; min-height: 80vh; }
.page.active { display: block; }

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 4rem 6rem;
  overflow: hidden;
  background: var(--black);
}
.hero-canvas {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4%;
  opacity: 0.18;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 420px;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.25);
  writing-mode: vertical-rl;
}

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn-primary {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: background 0.2s, opacity 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--accent); }
.btn-primary.full { width: 100%; }
.btn-ghost {
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--white); color: var(--white); }
.btn-text {
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-text:hover { opacity: 0.7; }

/* ─── STATS BAND ──────────────────────────────────────────────────────────── */
.stats-band {
  background: var(--grey-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat {
  padding: 2rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat:last-child { border-right: none; }
.stat strong {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ─── SECTIONS ───────────────────────────────────────────────────────────── */
.section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.01em;
}
.section-header .eyebrow { flex-basis: 100%; margin-bottom: 0; }

/* ─── PRODUCT GRID ───────────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}
.products-grid.wide { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); max-width: 1400px; margin: 0 auto; padding: 0 2rem 5rem; }

.product-card {
  background: var(--grey-dark);
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: scale(1.01); z-index: 2; }
.product-card:hover .product-img-overlay { opacity: 1; }

.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #111;
}
.product-img-wrap svg {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap svg { transform: scale(1.04); }
.product-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.product-img-overlay button {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
}
.product-img-overlay button:hover { background: var(--accent); color: var(--black); }
.product-tag-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.product-info { padding: 1.25rem 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.product-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: auto;
  padding-bottom: 1rem;
}

/* ─── SHOP PAGE ──────────────────────────────────────────────────────────── */
.shop-header {
  background: var(--grey-dark);
  padding: 4rem 2rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.shop-header h1 {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.shop-header p { color: rgba(255,255,255,0.4); font-size: 14px; margin-top: 4px; }
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  color: rgba(255,255,255,0.5);
  background: none;
  cursor: pointer;
  transition: all 0.2s;
}
.chip:hover, .chip.active {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.sort-select {
  background: var(--grey-dark);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: 2px;
  cursor: pointer;
  outline: none;
}

/* ─── PRODUCT DETAIL ─────────────────────────────────────────────────────── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
}
.pd-visual {
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
}
.pd-visual svg { width: 80%; height: 80%; }
.pd-info {
  padding: 4rem 4rem 4rem 3rem;
  max-width: 540px;
}
.pd-back {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.pd-back:hover { color: var(--white); }
.pd-tag { display: inline-block; background: var(--accent); color: var(--black); font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; margin-bottom: 1rem; }
.pd-name { font-family: var(--font-display); font-size: 52px; font-weight: 900; letter-spacing: -0.01em; text-transform: uppercase; line-height: 0.95; margin-bottom: 0.5rem; }
.pd-tagline { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.5rem; }
.pd-desc { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 2.5rem; }
.pd-label { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 10px; }
.size-grid { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 2rem; }
.size-btn { font-family: var(--font-display); font-size: 14px; font-weight: 600; padding: 10px 18px; border: 1px solid rgba(255,255,255,0.2); background: none; color: rgba(255,255,255,0.6); border-radius: 2px; cursor: pointer; transition: all 0.2s; letter-spacing: 0.05em; }
.size-btn:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }
.size-btn.selected { background: var(--white); color: var(--black); border-color: var(--white); }
.size-btn.oos { opacity: 0.25; cursor: not-allowed; text-decoration: line-through; }
.pd-add-btn { width: 100%; padding: 18px; font-size: 16px; letter-spacing: 0.15em; margin-bottom: 1rem; }
.pd-features { margin-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; }
.pd-features h4 { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.pd-features ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pd-features li { font-size: 14px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 10px; }
.pd-features li::before { content: '✦'; color: var(--accent); font-size: 10px; }

/* ─── LIFESTYLE BAND ─────────────────────────────────────────────────────── */
.lifestyle-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  background: var(--grey-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.lifestyle-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
  gap: 1.5rem;
}
.lifestyle-text h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
}
.lifestyle-text h2 em { font-style: italic; color: var(--accent); }
.lifestyle-text p { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.8; max-width: 380px; }
.lifestyle-visual {
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}


/* ─── NEWSLETTER ─────────────────────────────────────────────────────────── */
.newsletter {
  background: var(--accent);
  padding: 5rem 2rem;
  text-align: center;
}
.newsletter-inner { max-width: 540px; margin: 0 auto; }
.newsletter h2 { font-family: var(--font-display); font-size: 56px; font-weight: 900; color: var(--black); letter-spacing: -0.01em; margin-bottom: 1rem; }
.newsletter p { color: rgba(0,0,0,0.55); font-size: 16px; margin-bottom: 2rem; }
.newsletter-form { display: flex; gap: 8px; max-width: 420px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 2px;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(0,0,0,0.4); }
.newsletter .btn-primary { background: var(--black); color: var(--white); }
.newsletter .btn-primary:hover { background: #222; }

/* ─── ABOUT ──────────────────────────────────────────────────────────────── */
.about-hero {
  background: var(--grey-dark);
  padding: 6rem 2rem 4rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.about-hero h1 { font-family: var(--font-display); font-size: clamp(60px, 10vw, 120px); font-weight: 900; letter-spacing: -0.02em; }
.about-content { max-width: 720px; margin: 0 auto; padding: 5rem 2rem; display: flex; flex-direction: column; gap: 4rem; }
.about-block h2 { font-family: var(--font-display); font-size: 42px; font-weight: 900; letter-spacing: -0.01em; margin: 0.5rem 0 1.5rem; }
.about-block p { font-size: 17px; color: rgba(255,255,255,0.55); line-height: 1.9; margin-bottom: 1rem; }

/* ─── SIZE GUIDE ─────────────────────────────────────────────────────────── */
.size-guide-section {
  background: var(--grey-dark);
  padding: 5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.size-guide-section .section-header { max-width: 900px; margin: 0 auto 2rem; }
.size-table-wrap { max-width: 700px; margin: 0 auto; overflow-x: auto; }
.size-table { width: 100%; border-collapse: collapse; }
.size-table th {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 12px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.size-table td { padding: 14px 20px; font-size: 14px; color: rgba(255,255,255,0.7); border-bottom: 1px solid rgba(255,255,255,0.04); }
.size-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ─── MODAL ──────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 400;
  display: none;
}
.modal-overlay.open { display: block; }
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: #111;
  z-index: 401;
  width: 90%;
  max-width: 480px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  transition: transform 0.25s ease;
  display: none;
  max-height: 90vh;
  overflow-y: auto;
}
.modal.open { display: block; transform: translate(-50%, -50%) scale(1); }
.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.modal-header h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: 0.1em; }
.modal-header button { font-size: 20px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.modal-header button:hover { color: var(--white); }
.form-group { display: flex; flex-direction: column; gap: 6px; }

/* ─── NOTIFY MODAL ───────────────────────────────────────────────────────── */
.notify-modal { max-width: 420px; }
.notify-modal-body { padding: 2rem 2rem 2.5rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.notify-icon { font-size: 48px; }
.notify-product-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.notify-sub { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 300px; }
.notify-modal-body .form-group { width: 100%; }
.notify-modal-body input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 12px;
}
.notify-modal-body input:focus { border-color: rgba(255,255,255,0.4); }

/* ─── PRODUCT DETAIL — COMING SOON ──────────────────────────────────────── */
.pd-coming-soon {
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 2px;
  padding: 1.75rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pd-coming-label { font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.pd-coming-sub { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.pd-notify-form { display: flex; gap: 8px; margin-top: 6px; }
.pd-notify-form input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  padding: 11px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.pd-notify-form input:focus { border-color: rgba(255,255,255,0.4); }
.pd-notify-form input::placeholder { color: rgba(255,255,255,0.3); }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.footer { background: #050505; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .footer-logo { font-family: var(--font-display); font-size: 28px; font-weight: 900; margin-bottom: 1rem; }
.footer-brand .footer-logo span { color: var(--accent); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.3); line-height: 1.7; }
.footer-links h4 { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0; }
.footer-links h4 { margin-bottom: 1rem; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); padding: 5px 0; transition: color 0.2s; cursor: pointer; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
  flex-wrap: wrap;
}

/* ─── TOAST ──────────────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--white);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  z-index: 500;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ─── CONTACT ────────────────────────────────────────────────────────────── */
.contact-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.contact-intro h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0.5rem 0 1rem;
}
.contact-intro p { font-size: 14px; color: var(--grey); line-height: 1.7; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select { cursor: pointer; }
.form-group select option { background: #111; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.btn-primary.full { width: 100%; text-align: center; }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 4rem 2rem; }
  .product-detail { grid-template-columns: 1fr; }
  .pd-visual { position: static; height: 60vw; }
  .pd-info { padding: 2rem; }
  .lifestyle-band { grid-template-columns: 1fr; }
  .lifestyle-visual { min-height: 300px; }
  .lifestyle-text { padding: 3rem 2rem; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 72px; }
  .footer-inner { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .contact-content { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 4rem; }
  .form-row { grid-template-columns: 1fr; }
}
