/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --black: #0a0a09;
  --charcoal: #151412;
  --charcoal-2: #1c1a17;
  --line: #33302a;
  --gold: #c9a24a;
  --gold-light: #e8cf8a;
  --silver: #cfd0d0;
  --ivory: #f3f1ea;
  --muted: #a19c8f;
  --danger: #d9704f;

  --font-display: "Big Shoulders Display", sans-serif;
  --font-body: "Inter", sans-serif;

  --container: 1200px;
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.98;
  margin: 0;
  color: var(--ivory);
}

p { margin: 0; }

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

section { position: relative; }

.section-pad { padding: 96px 0; }
@media (max-width: 760px) {
  .section-pad { padding: 64px 0; }
}

.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow-tag::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head h2 { font-size: clamp(32px, 4.6vw, 52px); }
.section-head .lede {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
  max-width: 52ch;
}

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #171410;
}
.btn-gold:hover { background: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

.btn-wa {
  background: #1e2b23;
  color: #7fdb9e;
  border-color: #2c4436;
  padding: 10px 18px;
  font-size: 14px;
}
.btn-wa:hover { background: #24352b; border-color: #3a5a48; }

.btn-small { padding: 9px 16px; font-size: 13px; }
.btn-block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 9, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
#site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(10, 10, 9, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { width: 38px; height: 38px; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 19px;
  letter-spacing: 0.02em;
  line-height: 1;
}
.brand-word span { display: block; font-size: 11px; letter-spacing: 0.22em; color: var(--gold); font-weight: 600; margin-top: 3px; }

#site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
#site-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--silver);
  transition: color 0.15s ease;
}
#site-nav a:hover { color: var(--gold-light); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--silver);
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-phone svg { color: var(--gold); }

#nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--ivory);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (max-width: 640px) {
  .brand-word { font-size: 15px; }
  .brand-word span { display: none; }
  .header-actions { gap: 10px; }
  .btn.btn-small { padding: 9px 14px; font-size: 13px; }
}

@media (max-width: 900px) {
  .header-phone { display: none; }
  #site-nav {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--black);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }
  #site-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  #site-nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--charcoal-2); }
  #nav-toggle { display: inline-flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 72px 0 56px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero-copy .eyebrow-tag { color: var(--gold); }
.hero h1 {
  font-size: clamp(42px, 6.4vw, 82px);
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lede {
  margin-top: 22px;
  font-size: 18px;
  color: var(--muted);
  max-width: 46ch;
}
.hero-ctas {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  margin-top: 48px;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--ivory);
}
.hero-stat span {
  font-size: 13px;
  color: var(--muted);
}

.hero-mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-mark::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 50% 45%, rgba(201, 162, 74, 0.16), transparent 68%);
}
.hero-mark img {
  position: relative;
  width: min(340px, 80%);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.55));
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-mark { order: -1; }
  .hero-mark img { width: 200px; margin: 0 auto; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--charcoal);
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
}
.marquee-track {
  display: inline-flex;
  animation: scroll-left 32s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
}
.marquee-track span::after { content: "•"; color: var(--gold); }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SHOP / PRODUCTS
   ============================================================ */
.shop-controls {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.search-wrap {
  position: relative;
  min-width: 260px;
}
.search-wrap input {
  width: 100%;
  background: var(--charcoal);
  border: 1px solid var(--line);
  color: var(--ivory);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: var(--radius);
}
.search-wrap input::placeholder { color: var(--muted); }

#filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--silver);
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.chip:hover { border-color: var(--gold); color: var(--gold-light); }
.chip.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: #171410;
}

.results-line {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

.product-card {
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.product-card:hover { border-color: var(--gold); transform: translateY(-3px); }

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(135deg, rgba(201,162,74,0.06) 0 2px, transparent 2px 18px),
    linear-gradient(160deg, var(--charcoal-2), var(--black));
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.ph-mark { color: var(--gold); opacity: 0.85; }

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: #171410;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 999px;
}

.product-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}
.product-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16.5px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.3;
}
.product-blurb {
  font-size: 13.5px;
  color: var(--muted);
  flex: 1;
}
.product-foot {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ivory);
}
.product-price span {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--muted);
  text-transform: none;
  display: block;
  margin-top: -2px;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 0;
  color: var(--muted);
}
.link-reset {
  background: none;
  border: none;
  color: var(--gold-light);
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.process-step {
  background: var(--black);
  padding: 32px 26px;
}
.process-step .num {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 18px;
}
.process-step h3 {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  font-size: 18px;
  font-weight: 700;
}
.process-step p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
}
@media (max-width: 860px) {
  .process-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .process-list { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT / FEATURES
   ============================================================ */
.about-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.about-wrap .lede { color: var(--muted); font-size: 16px; margin-top: 18px; }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 32px;
}
.feature-item {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.feature-item h4 {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-light);
}
.feature-item p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
}
@media (max-width: 820px) {
  .about-wrap { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--charcoal); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
}
.contact-info, .contact-form-wrap {
  padding: 44px;
}
.contact-info {
  background: var(--black);
  border-right: 1px solid var(--line);
}
.contact-info h2 { font-size: 30px; }
.contact-info .lede { margin-top: 14px; color: var(--muted); font-size: 15px; }

.contact-points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-point svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-point .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.contact-point .value {
  font-weight: 600;
  font-size: 15px;
  margin-top: 2px;
}

.contact-wa-btn {
  margin-top: 32px;
  width: 100%;
  justify-content: center;
  background: #22c55e;
  color: #06210f;
}
.contact-wa-btn:hover { background: #38d872; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--charcoal-2);
  border: 1px solid var(--line);
  color: var(--ivory);
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  border-radius: var(--radius);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }

.form-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-info { border-right: none; border-bottom: 1px solid var(--line); }
  .contact-info, .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 56px 0 28px;
  border-top: 1px solid var(--line);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 36px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 34px; height: 34px; }
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-nav a { font-size: 14px; color: var(--silver); }
.footer-nav a:hover { color: var(--gold-light); }

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  border-radius: 999px;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--charcoal-2);
  font-size: 12.5px;
  color: var(--muted);
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #22c55e;
  color: #06210f;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  transition: transform 0.15s ease, background 0.15s ease;
}
.wa-float:hover { transform: translateY(-2px); background: #38d872; }
@media (max-width: 560px) {
  .wa-float span { display: none; }
  .wa-float { padding: 14px; }
}
