@import url('fonts.css');

:root {
  --ink: #f1ede7;
  --bg: #0e0d0d;
  --bg-alt: #171514;
  --bg-alt-2: #0b0a0a;
  --muted: #a89f97;
  --muted-2: #6b625b;
  --body: #cfc7bf;
  --body-2: #e6e0d9;
  --accent: oklch(0.55 0.19 25);
  --accent-solid: #b23a2e;
  --gold: oklch(0.78 0.14 85);
  --gold-solid: #cba055;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);
  --font-display: 'Anton', sans-serif;
  --font-body: 'Archivo', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); }
::selection { background: var(--accent); color: #fff; }

@keyframes bls-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.page { min-height: 100vh; background: var(--bg); color: var(--ink); font-family: var(--font-body); }

/* ---------- top strip ---------- */
.top-strip {
  background: var(--bg-alt);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-align: center;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 13, 13, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.brand {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}
.brand span { color: var(--accent); }
.main-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.main-nav a {
  cursor: pointer;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a.active { color: var(--ink); border-bottom-color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.cart-btn {
  position: relative;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 10px 16px;
  border-radius: 2px;
  background: transparent;
  color: var(--ink);
}
.cart-btn:hover { border-color: rgba(255, 255, 255, 0.5); }
.cart-count {
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

/* ---------- generic layout helpers ---------- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { max-width: 1180px; margin: 0 auto; padding: 96px 24px; }
.section-narrow { max-width: 800px; margin: 0 auto; padding: 96px 24px; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
h1, h2, h3 { font-family: var(--font-display); text-transform: uppercase; margin: 0; }
.h1 { font-size: clamp(32px, 5vw, 52px); margin: 0 0 20px; }
.h2 { font-size: 40px; margin: 0 0 40px; }
.h2-sm { font-size: 32px; margin: 0 0 32px; }
.lede { color: var(--muted); font-size: 15px; max-width: 600px; margin: 0 0 48px; }

.grid { display: grid; gap: 24px; }
.grid-auto-220 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-auto-240 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-auto-260 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-auto-200 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
}

.btn {
  display: inline-block;
  border: none;
  padding: 16px 34px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  font-family: var(--font-body);
  text-align: center;
}
.btn-primary { background: var(--accent); color: #f1ede7; }
.btn-primary:hover { filter: brightness(1.1); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid rgba(255, 255, 255, 0.35); }
.btn-outline:hover { border-color: rgba(255, 255, 255, 0.6); }
.btn-sm { padding: 12px 20px; font-size: 12px; }
.btn-block { width: 100%; }

/* ---------- image slots ---------- */
.ph { position: relative; overflow: hidden; background: #1d1a19; }
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph-rect { }
.ph-rounded { border-radius: 4px; }
.ratio-4-5 { aspect-ratio: 4 / 5; }
.ratio-3-4 { aspect-ratio: 3 / 4; }
.ratio-1-1 { aspect-ratio: 1 / 1; }
.ratio-4-3 { aspect-ratio: 4 / 3; }
.ratio-16-9 { aspect-ratio: 16 / 9; }
.ratio-16-10 { aspect-ratio: 16 / 10; }

/* ---------- hero ---------- */
.hero { position: relative; height: 640px; }
.hero .ph { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 13, 13, 0.55) 0%, rgba(14, 13, 13, 0.85) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
}
.hero-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero h1 { font-size: clamp(40px, 7vw, 88px); line-height: 0.98; margin: 0 0 20px; max-width: 820px; }
.hero p { font-size: 18px; line-height: 1.6; color: var(--body); max-width: 560px; margin: 0 0 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- stats ---------- */
.stats {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  border-bottom: 1px solid var(--border);
}
.stat-num { font-family: var(--font-display); font-size: 34px; color: var(--accent); }
.stat-label { font-size: 13px; color: var(--muted); letter-spacing: 0.5px; }

/* ---------- style/artist/product cards ---------- */
.style-card .name { font-family: var(--font-display); font-size: 20px; text-transform: uppercase; margin-top: 16px; }
.style-card p { color: var(--muted); font-size: 14px; line-height: 1.5; }

.artist-card .name { font-family: var(--font-display); font-size: 18px; text-transform: uppercase; margin-top: 14px; }
.artist-card .specialty { color: var(--gold); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }

.artist-full { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.artist-full .body { padding: 24px; }
.artist-full .name { font-family: var(--font-display); font-size: 22px; text-transform: uppercase; }
.artist-full .specialty { color: var(--gold); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; margin: 6px 0 14px; }
.artist-full p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0 0 16px; }
.artist-full .handle { font-family: var(--font-mono); font-size: 12px; color: var(--muted-2); margin-bottom: 16px; }

.testimonial p { font-size: 15px; line-height: 1.6; color: var(--body-2); margin: 0 0 16px; }
.testimonial .author { font-size: 13px; font-weight: 700; }
.testimonial .city { font-size: 12px; color: var(--muted); }

.product-card .name { font-weight: 700; font-size: 14px; margin-top: 14px; }
.product-card .price { color: var(--gold); font-size: 14px; margin: 6px 0 12px; }
.product-card-full { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.product-card-full .body { padding: 20px; }
.product-card-full .name { font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.product-card-full p { color: var(--muted); font-size: 13px; line-height: 1.5; margin: 0 0 14px; min-height: 38px; }
.product-card-full .price { color: var(--gold); font-weight: 700; font-size: 16px; margin-bottom: 14px; }

/* ---------- CTA band ---------- */
.cta-band { max-width: 1180px; margin: 0 auto; padding: 96px 24px; text-align: center; }
.cta-band p { color: var(--muted); font-size: 16px; max-width: 520px; margin: 0 auto 32px; }

/* ---------- studio page ---------- */
.studio-hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; margin-bottom: 80px; }
.studio-hero p { font-size: 16px; line-height: 1.7; color: var(--body); margin: 0 0 16px; }
.studio-hero p:last-child { margin-bottom: 0; }
.value-card .title { font-family: var(--font-display); font-size: 20px; text-transform: uppercase; margin-bottom: 12px; }
.value-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.hygiene-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 4px; padding: 36px; }
.hygiene-card .title { font-family: var(--font-display); font-size: 22px; text-transform: uppercase; margin-bottom: 16px; }
.hygiene-card ul { color: var(--body); font-size: 14px; line-height: 1.9; padding-left: 20px; margin: 0; }

/* ---------- gallery ---------- */
.filter-bar { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  background: transparent;
  color: var(--body);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
}
.filter-btn.active { background: var(--accent); color: #fff; border-color: transparent; }
.gallery-item .label { font-size: 13px; color: var(--muted); margin-top: 10px; }
.gallery-item[hidden] { display: none; }

/* ---------- services ---------- */
.service-card .title { font-family: var(--font-display); font-size: 19px; text-transform: uppercase; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 13px; line-height: 1.5; margin: 0 0 16px; }
.service-card .meta { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid var(--border); padding-top: 14px; }
.service-card .price { color: var(--gold); font-weight: 700; font-size: 16px; }
.service-card .duration { font-family: var(--font-mono); font-size: 11px; color: var(--muted-2); }

.step-num { font-family: var(--font-display); font-size: 32px; color: var(--accent); }
.step-title { font-weight: 700; margin: 8px 0; }
.step p { color: var(--muted); font-size: 13px; line-height: 1.5; }

/* ---------- blog ---------- */
.blog-card { cursor: pointer; }
.blog-card .meta { font-family: var(--font-mono); font-size: 11px; color: var(--muted-2); margin-top: 14px; }
.blog-card .title { font-family: var(--font-display); font-size: 20px; text-transform: uppercase; margin: 8px 0; }
.blog-card p { color: var(--muted); font-size: 14px; line-height: 1.5; margin: 0; }

.article-back { color: var(--accent); font-size: 13px; font-weight: 700; cursor: pointer; display: inline-block; margin-bottom: 24px; }
.article-meta { font-family: var(--font-mono); font-size: 11px; color: var(--muted-2); margin: 0 0 8px; }
.article-body p { color: var(--body); font-size: 16px; line-height: 1.8; margin: 0 0 20px; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding: 20px 0; cursor: pointer; }
.faq-q { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 15px; }
.faq-icon { color: var(--accent); font-size: 20px; }
.faq-a { color: var(--muted); font-size: 14px; line-height: 1.7; margin: 14px 0 0; display: none; }
.faq-item.open .faq-a { display: block; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-grid .field-label { font-weight: 700; margin-bottom: 14px; }
.contact-grid p { color: var(--muted); font-size: 14px; line-height: 1.7; margin: 0 0 18px; }
.age-note { color: var(--muted-2); font-family: var(--font-mono); font-size: 12px; margin-top: 20px; line-height: 1.6; }
.thanks-box { background: var(--bg-alt); border: 1px solid var(--accent); border-radius: 4px; padding: 32px; }
.thanks-box .title { font-family: var(--font-display); font-size: 20px; text-transform: uppercase; margin-bottom: 10px; }
.thanks-box p { color: var(--body); font-size: 14px; line-height: 1.6; margin: 0; }

form.stack { display: flex; flex-direction: column; gap: 14px; }
.field {
  background: var(--bg-alt);
  border: 1px solid var(--border-strong);
  color: var(--ink);
  padding: 14px 16px;
  border-radius: 2px;
  font-size: 14px;
  font-family: var(--font-body);
  width: 100%;
}
textarea.field { resize: vertical; }
.form-note { color: var(--muted-2); font-size: 12px; line-height: 1.6; margin: 0; }
.form-note a { color: var(--gold); }

/* ---------- legal pages ---------- */
.legal-title { font-family: var(--font-display); font-size: 36px; text-transform: uppercase; margin: 0 0 8px; }
.legal-updated { color: var(--muted-2); font-size: 13px; margin: 0 0 40px; }
.legal-body { color: var(--body); font-size: 15px; line-height: 1.8; }
.legal-body p { margin: 0 0 16px; }
.legal-body a { color: var(--gold); cursor: pointer; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-alt-2); }
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 24px 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
}
.footer-brand { font-family: var(--font-display); font-size: 22px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.footer-desc { color: var(--muted); font-size: 13px; line-height: 1.6; max-width: 260px; }
.footer-social { display: flex; gap: 14px; margin-top: 16px; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; }
.footer-social span { cursor: pointer; color: var(--body); }
.footer-col-title { font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 13px; color: var(--muted); }
.footer-links a { cursor: pointer; }
.footer-links a:hover { color: var(--ink); }
.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--muted-2);
}

/* ---------- cart drawer ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 100;
  display: none;
}
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100%);
  background: var(--bg-alt);
  z-index: 101;
  padding: 28px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.cart-head .title { font-family: var(--font-display); font-size: 22px; text-transform: uppercase; }
.cart-close { cursor: pointer; font-size: 20px; background: none; border: none; color: var(--ink); }
.cart-empty-msg { color: var(--muted); font-size: 14px; }
.cart-empty-msg span { color: var(--gold); cursor: pointer; }
.cart-done-box { background: var(--bg); border: 1px solid var(--accent); border-radius: 4px; padding: 20px; }
.cart-done-box .title { font-weight: 700; margin-bottom: 8px; }
.cart-done-box p { color: var(--muted); font-size: 13px; line-height: 1.6; margin: 0; }
.cart-items { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.cart-row { display: flex; gap: 14px; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
.cart-row img { width: 64px; height: 64px; flex-shrink: 0; object-fit: cover; border-radius: 2px; }
.cart-row .name { font-weight: 700; font-size: 13px; }
.cart-row .price { color: var(--gold); font-size: 13px; margin: 4px 0 8px; }
.qty-controls { display: flex; align-items: center; gap: 10px; }
.qty-btn {
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background: none;
  color: var(--ink);
}
.qty-remove { cursor: pointer; color: var(--muted-2); font-size: 12px; margin-left: auto; background: none; border: none; }
.cart-summary { border-top: 1px solid var(--border-strong); padding-top: 20px; margin-top: 20px; }
.cart-subtotal { display: flex; justify-content: space-between; font-weight: 700; font-size: 16px; margin-bottom: 16px; }
.cart-summary .form-note { margin: 12px 0 0; }
.cart-summary .form-note span { color: var(--gold); cursor: pointer; }

/* ---------- cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-strong);
  padding: 20px 24px;
  display: none;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { color: var(--body); font-size: 13px; margin: 0; max-width: 640px; }
.cookie-banner p span { color: var(--gold); cursor: pointer; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ---------- whatsapp fab ---------- */
.wa-fab {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 60;
  background: #25d366;
  color: #0e0d0d;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 11px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .studio-hero { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { height: auto; padding: 72px 0; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .site-header { padding: 14px 16px; }
  .section, .section-narrow { padding: 64px 16px; }
}
