/* ============================================================
   NomadCuts — Estilos globales
   Paleta: negro profundo · blanco roto · dorado
   ============================================================ */

/* ── Variables ── */
:root {
  --bg:       #0A0A0A;
  --bg-2:     #131313;
  --bg-3:     #1C1C1C;
  --border:   #252525;
  --gold:     #C9A84C;
  --gold-dim: #8A6E2F;
  --text:     #F0EDE8;
  --muted:    #6B6760;
  --radius:   6px;
  --font:     'Inter', sans-serif;
  --font-d:   'Playfair Display', serif;
  --trans:    .22s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font); }

/* ── Utilidades ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.divider {
  width: 40px; height: 2px;
  background: var(--gold);
  margin: 18px 0 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--trans);
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: #0A0A0A;
}
.btn-primary:hover { background: #ddb95a; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark {
  background: var(--bg-3);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-dark:hover { border-color: var(--gold); color: var(--gold); }

/* ── Navegación ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 68px;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: var(--font-d);
  font-size: 17px;
  letter-spacing: .06em;
}
.nav-logo svg { color: var(--gold); }
.nav-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  /* sin filtro: el logo ya es blanco sobre fondo oscuro */
}
.nav-logo-fallback {
  display: none;
  align-items: center;
  font-family: var(--font-d);
  font-size: 17px;
  letter-spacing: .06em;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--muted);
  transition: color var(--trans);
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 9px 22px;
  background: var(--gold) !important;
  color: #0A0A0A !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta:hover { background: #ddb95a !important; }
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--text) !important;
}
.cart-badge {
  position: absolute;
  top: -8px; right: -10px;
  background: var(--gold);
  color: #0A0A0A;
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-badge--hidden { display: none; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--trans);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 24px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(201,168,76,.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,168,76,.04) 0%, transparent 60%);
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  padding-top: 68px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-d);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.02em;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--muted), transparent);
}

/* ── Stats strip ── */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  divide-x: 1px solid var(--border);
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.stat {
  padding: 0 40px;
  border-right: 1px solid var(--border);
}
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-d);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
}

/* ── Servicios cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: var(--bg-2);
  padding: 36px 28px;
  transition: background var(--trans);
  position: relative;
}
.service-card:hover { background: var(--bg-3); }
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height .3s ease;
}
.service-card:hover::after { height: 100%; }
.service-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.service-name {
  font-family: var(--font-d);
  font-size: 20px;
  margin-bottom: 8px;
}
.service-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-price {
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
}
.service-price span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

/* ── Productos ── */
.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}
.filter-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  transition: var(--trans);
}
.filter-tab:hover, .filter-tab.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,.06);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.product-card {
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  transition: background var(--trans);
}
.product-card:hover { background: var(--bg-3); }
.product-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-img-icon {
  font-size: 52px;
  opacity: .8;
}
.product-label {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(201,168,76,.15);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.3);
}
.product-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.product-name {
  font-family: var(--font-d);
  font-size: 17px;
  margin-bottom: 8px;
}
.product-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 20px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-price {
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
}
.btn-add {
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--trans);
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-add:hover {
  background: var(--gold);
  color: #0A0A0A;
  border-color: var(--gold);
}
.btn-add.added {
  background: var(--gold);
  color: #0A0A0A;
  border-color: var(--gold);
}

/* ── Formularios ── */
.form-section {
  max-width: 600px;
  margin: 0 auto;
}
.form-group { margin-bottom: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
input, select, textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  transition: border-color var(--trans);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
}
select { 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 d='M1 1l5 5 5-5' stroke='%236B6760' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
textarea { resize: vertical; min-height: 100px; }
input::placeholder, textarea::placeholder { color: var(--muted); }
.form-submit { margin-top: 32px; }

/* ── Carrito ── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}
.cart-items { display: flex; flex-direction: column; gap: 1px; }
.cart-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--bg-2);
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.cart-item:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.cart-item:last-child { border-bottom: none; border-radius: 0 0 var(--radius) var(--radius); }
.cart-item-img {
  width: 72px; height: 72px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name {
  font-family: var(--font-d);
  font-size: 16px;
  margin-bottom: 4px;
}
.cart-item-price { font-size: 13px; color: var(--muted); }
.cart-item-subtotal {
  font-size: 17px;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}
.cart-summary {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 88px;
}
.cart-summary h3 {
  font-family: var(--font-d);
  font-size: 20px;
  margin-bottom: 24px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.summary-row.total {
  border-bottom: none;
  font-size: 20px;
  font-weight: 600;
  padding-top: 16px;
  margin-top: 4px;
}
.summary-row.total span:last-child { color: var(--gold); }
.cart-summary .btn { width: 100%; justify-content: center; margin-top: 20px; }
.cart-empty {
  text-align: center;
  padding: 80px 24px;
}
.cart-empty svg { color: var(--muted); margin: 0 auto 20px; }
.cart-empty h3 { font-family: var(--font-d); font-size: 24px; margin-bottom: 8px; }
.cart-empty p { color: var(--muted); margin-bottom: 28px; }

/* ── Página de confirmación / éxito ── */
.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}
.success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--gold);
}
.success-page h2 {
  font-family: var(--font-d);
  font-size: 36px;
  margin-bottom: 12px;
}
.success-page p {
  color: var(--muted);
  max-width: 400px;
  margin: 0 auto 32px;
}

/* ── Sección "about" en home ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  aspect-ratio: 1;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: 'NOMADCUTS';
  font-family: var(--font-d);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  color: rgba(201,168,76,.12);
  letter-spacing: .1em;
  text-align: center;
  position: absolute;
}
.about-visual-inner {
  font-size: 100px;
  opacity: .15;
}
.about-text h2 {
  font-family: var(--font-d);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 20px;
}
.about-text p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 15px;
}

/* ── Checkout ── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}
.checkout-summary {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 88px;
}
.checkout-summary h3 {
  font-family: var(--font-d);
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.checkout-item:last-of-type { border-bottom: none; }
.checkout-item-name { color: var(--text); }
.checkout-item-qty { color: var(--muted); font-size: 12px; }
.checkout-item-price { color: var(--gold); font-weight: 600; }
.checkout-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid var(--border);
}
.checkout-total span:last-child { color: var(--gold); }

/* ── Page header ── */
.page-header {
  padding-top: 120px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 64px;
}
.page-header h1 {
  font-family: var(--font-d);
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 8px;
}
.page-header p { color: var(--muted); font-size: 16px; }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  margin-top: 80px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.footer-logo {
  font-family: var(--font-d);
  font-size: 22px;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.footer-brand p { color: var(--muted); font-size: 14px; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a { font-size: 14px; color: var(--muted); transition: color var(--trans); }
.footer-links a:hover { color: var(--text); }
.footer-contact p { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.footer-contact a { color: var(--gold); font-size: 14px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
  max-width: 1160px;
  margin: 0 auto;
}
.footer-bottom p { font-size: 12px; color: var(--muted); }

/* ── Notificación toast ── */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-3);
  border: 1px solid var(--gold);
  color: var(--text);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  z-index: 999;
  opacity: 0;
  transition: opacity .3s, transform .3s;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Hero con foto ── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(.45);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,.85) 40%,
    rgba(10,10,10,.2) 100%
  );
}
.hero-inner { position: relative; z-index: 1; }
.hero-scroll { z-index: 1; }
.btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--trans);
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-glass:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.4);
}

/* ── Galería ── */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  min-height: 400px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  min-height: 198px;
  transition: filter var(--trans);
}
.gallery-grid img:hover { filter: brightness(1.1); }

/* ── Promo cards ── */
.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.promo-card {
  background: var(--bg-2);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background var(--trans);
}
.promo-card:hover { background: var(--bg-3); }
.promo-badge {
  display: inline-block;
  width: fit-content;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(201,168,76,.12);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.3);
}
.promo-title {
  font-family: var(--font-d);
  font-size: 20px;
}
.promo-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

/* ── CTA banner con foto ── */
.cta-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
}
.cta-banner-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(.35);
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,.9) 40%, rgba(10,10,10,.3) 100%);
}
.cta-banner-content {
  position: relative;
  z-index: 1;
  padding: 64px 56px;
}
.cta-banner-content h2 {
  font-family: var(--font-d);
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 12px;
}
.cta-banner-content p {
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 400px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery-main img { min-height: 260px; }
  .cta-banner-content { padding: 48px 32px; }
  .cart-layout, .checkout-layout, .about-split {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
  }
  .stat:last-child { border-bottom: none; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px 28px;
    gap: 18px;
  }
  .nav-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: clamp(40px, 12vw, 64px); }
}
