:root {
  --black: #050505;
  --ink: #171717;
  --muted: #69645d;
  --gold: #c99a2e;
  --gold-dark: #a77816;
  --gold-soft: #f7ecd0;
  --cream: #fffaf0;
  --white: #ffffff;
  --line: #ece4d7;
  --shadow: 0 18px 45px rgba(13, 13, 13, 0.12);
  --radius: 8px;
  --header-height: 76px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--cream) 0%, #ffffff 18%, #ffffff 100%);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(201, 154, 46, 0.9); outline-offset: 3px; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-180%);
  background: var(--gold);
  color: var(--black);
  padding: .75rem 1rem;
  border-radius: var(--radius);
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }
.section-pad { padding: 72px 0; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, .96);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
}
.navbar {
  min-height: var(--header-height);
  width: min(1180px, calc(100% - 28px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); font-weight: 900; }
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,154,46,.8);
  background: #111;
}
.brand span { font-size: 1.05rem; white-space: nowrap; }
.menu-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: transparent;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span { width: 21px; height: 2px; background: var(--white); transition: transform .2s ease, opacity .2s 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); }
.nav-panel {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  display: grid;
  gap: 2px;
  padding: 18px 16px 24px;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.08);
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform .24s ease, opacity .24s ease;
}
.nav-panel.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav-panel > a:not(.btn) {
  color: rgba(255,255,255,.86);
  padding: 12px 10px;
  border-radius: var(--radius);
  font-weight: 700;
}
.nav-panel > a:not(.btn):hover { color: var(--gold); background: rgba(255,255,255,.06); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #130f08; box-shadow: 0 14px 28px rgba(201,154,46,.25); }
.btn-gold:hover { background: #d8aa42; }
.btn-outline { border-color: rgba(23,23,23,.22); color: var(--ink); background: rgba(255,255,255,.65); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #24201a; box-shadow: 0 12px 24px rgba(5,5,5,.16); }

.hero { padding-top: 46px; position: relative; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 72%;
  background: radial-gradient(circle at 82% 16%, rgba(201,154,46,.22), transparent 34%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; gap: 34px; align-items: center; }
.hero h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(3.1rem, 17vw, 5.5rem);
  line-height: .92;
  letter-spacing: 0;
  text-wrap: balance;
}
.hero h1 span { color: var(--gold); }
.hero-text { max-width: 560px; margin: 22px 0 0; color: #4f4a43; font-size: clamp(1.04rem, 3.7vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-actions .btn { flex: 1 1 190px; }
.hero-logo {
  max-width: 430px;
  justify-self: center;
  padding: 14px;
  border-radius: 50%;
  background: #090909;
  box-shadow: var(--shadow);
}
.hero-logo img { aspect-ratio: 1; width: 100%; object-fit: cover; border-radius: 50%; border: 3px solid var(--gold); }
.trust-row { display: grid; gap: 14px; margin-top: 40px; }
.trust-row article {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(13,13,13,.08);
}
.trust-row strong { display: block; font-size: 1.02rem; }
.trust-row span { color: var(--muted); }

.section-heading { max-width: 760px; text-align: center; margin-bottom: 34px; }
h2 { margin: 0; color: var(--black); font-size: clamp(2rem, 8vw, 3.35rem); line-height: 1.04; letter-spacing: 0; }
.section-heading p:not(.eyebrow, .section-kicker) { margin: 14px auto 0; color: var(--muted); font-size: 1.06rem; }
.products {
  position: relative;
  background: linear-gradient(180deg, #fffaf0 0%, #ffffff 28%, #ffffff 100%);
}
.product-heading { margin-bottom: 28px; }
.section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 14px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}
.section-kicker::before,
.section-kicker::after {
  content: "";
  width: min(82px, 20vw);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-kicker::after { background: linear-gradient(90deg, var(--gold), transparent); }
.product-benefits {
  display: grid;
  gap: 0;
  margin-bottom: 30px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(13,13,13,.07);
  overflow: hidden;
}
.product-benefits article {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 92px;
  padding: 18px;
  text-align: left;
}
.product-benefits article + article { border-top: 1px solid var(--line); }
.benefit-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-dark);
}
.benefit-icon svg { width: 22px; height: 22px; fill: currentColor; }
.product-benefits strong { display: block; color: var(--ink); font-size: .98rem; line-height: 1.2; }
.product-benefits span:not(.benefit-icon) { color: var(--muted); font-size: .92rem; }
.product-grid {
  display: grid;
  gap: 18px;
  align-items: stretch;
}
.product-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(236,228,215,.95);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(13,13,13,.08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.product-card:hover,
.product-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(201,154,46,.55);
  box-shadow: 0 22px 48px rgba(13,13,13,.13);
}
.product-media-button {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: #f5f0e8;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: zoom-in;
}
.product-media-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .36s ease;
}
.product-card:hover .product-media-button img,
.product-media-button:focus-visible img { transform: scale(1.04); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  max-width: calc(100% - 24px);
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(167,120,22,.24);
  font-size: .68rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}
.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}
.product-info h3 {
  min-height: 44px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.22;
}
.price-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.price-row span { color: var(--gold-dark); font-size: 1.48rem; font-weight: 950; }
.price-row del { color: #8d8880; font-weight: 750; }
.product-sizes {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}
.product-sizes svg { width: 17px; height: 17px; flex: 0 0 17px; fill: var(--gold-dark); }
.product-info .btn { width: 100%; margin-top: auto; }
.button-icon { width: 20px; height: 20px; margin-right: 8px; flex: 0 0 20px; fill: var(--gold); }
.products-footer { display: flex; justify-content: center; margin-top: 30px; }
.btn-catalog {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--white);
  box-shadow: 0 12px 26px rgba(201,154,46,.12);
}
.btn-catalog:hover { background: var(--gold); color: var(--white); box-shadow: 0 16px 32px rgba(201,154,46,.24); }
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  place-items: center;
  padding: 18px;
}
.product-modal.is-open { display: grid; }
.product-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,.78);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .22s ease;
}
.product-modal.is-open .product-modal__overlay { opacity: 1; }
.product-modal__panel {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 28px 90px rgba(0,0,0,.38);
  opacity: 0;
  transform: translateY(16px) scale(.98);
  transition: opacity .22s ease, transform .22s ease;
}
.product-modal.is-open .product-modal__panel { opacity: 1; transform: translateY(0) scale(1); }
.modal-media { min-height: 0; background: #f5f0e8; }
.modal-media img { width: 100%; height: 100%; max-height: 58vh; object-fit: contain; }
.modal-info { display: grid; gap: 12px; align-content: center; padding: 24px; }
.modal-counter { color: var(--gold-dark); font-size: .82rem; font-weight: 950; text-transform: uppercase; }
.modal-info h3 { margin: 0; color: var(--black); font-size: clamp(1.65rem, 7vw, 2.65rem); line-height: 1.02; }
.modal-price span { font-size: 1.8rem; }
.modal-sizes { margin: 0; color: var(--muted); font-weight: 750; }
.modal-whatsapp { width: 100%; margin-top: 4px; }
.modal-close,
.modal-nav {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 1px solid rgba(5,5,5,.12);
  background: rgba(255,255,255,.94);
  color: var(--black);
  box-shadow: 0 10px 22px rgba(0,0,0,.16);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.modal-close:hover,
.modal-nav:hover { transform: translateY(-1px); background: var(--gold); color: var(--white); }
.modal-close {
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
}
.modal-nav {
  top: 45%;
  width: 42px;
  height: 52px;
  border-radius: 999px;
  font-size: 2rem;
}
.modal-nav--prev { left: 12px; }
.modal-nav--next { right: 12px; }
body.modal-open { overflow: hidden; }


.benefits { background: #fbf7ef; border-block: 1px solid var(--line); }
.benefits-grid { display: grid; gap: 16px; }
.benefit-card, .process-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 28px rgba(13,13,13,.07);
}
.benefit-card span, .process-step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-weight: 950;
}
.benefit-card h3, .process-step h3 { margin: 0 0 8px; font-size: 1.22rem; }
.benefit-card p, .process-step p { margin: 0; color: var(--muted); }

.custom { background: var(--black); color: var(--white); }
.custom h2 { color: var(--white); }
.custom-copy p:not(.eyebrow) { max-width: 620px; color: rgba(255,255,255,.78); font-size: 1.1rem; }
.custom-grid { display: grid; gap: 34px; align-items: center; }
.hoodie-preview { min-height: 420px; display: grid; place-items: center; }
.hoodie-shape {
  position: relative;
  width: min(320px, 88vw);
  height: 390px;
  border-radius: 70px 70px 34px 34px;
  background: linear-gradient(145deg, #1a1a1a, #050505 70%);
  border: 2px solid rgba(201,154,46,.42);
  box-shadow: 0 24px 70px rgba(0,0,0,.46), inset 0 0 0 1px rgba(255,255,255,.08);
}
.hoodie-shape::before, .hoodie-shape::after {
  content: "";
  position: absolute;
  top: 112px;
  width: 88px;
  height: 220px;
  background: #111;
  border: 1px solid rgba(201,154,46,.24);
}
.hoodie-shape::before { left: -54px; transform: rotate(12deg); border-radius: 34px 12px 26px 36px; }
.hoodie-shape::after { right: -54px; transform: rotate(-12deg); border-radius: 12px 34px 36px 26px; }
.hoodie-hood {
  position: absolute;
  top: 22px;
  left: 50%;
  width: 154px;
  height: 112px;
  transform: translateX(-50%);
  border-radius: 70px 70px 32px 32px;
  border: 2px solid rgba(201,154,46,.55);
  background: #0c0c0c;
}
.design-zone {
  position: absolute;
  left: 50%;
  top: 172px;
  transform: translateX(-50%);
  width: 178px;
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 2px dashed var(--gold);
  border-radius: var(--radius);
  color: var(--gold);
  font-weight: 950;
  text-align: center;
  line-height: 1.15;
}

.process-grid { display: grid; gap: 16px; }
.cta { background: var(--gold); color: var(--black); padding: 44px 0; }
.cta-inner { display: grid; gap: 24px; align-items: center; }
.cta h2 { color: var(--black); font-size: clamp(1.8rem, 7vw, 2.8rem); }
.cta p { margin: 10px 0 0; font-weight: 700; }
.cta .btn-dark { justify-self: start; }

.site-footer { background: var(--black); color: var(--white); padding: 54px 0 28px; }
.footer-grid { display: grid; gap: 30px; }
.footer-brand p { max-width: 430px; color: rgba(255,255,255,.68); }
.site-footer h2 { color: var(--gold); font-size: 1rem; margin-bottom: 14px; }
.site-footer a:not(.brand), .site-footer span { display: block; color: rgba(255,255,255,.75); margin: 9px 0; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.62); font-size: .92rem; }

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #062411;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (min-width: 560px) {
  .trust-row, .benefits-grid, .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 700px) {
  .product-benefits { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-benefits article + article { border-top: 0; border-left: 1px solid var(--line); }
}

@media (min-width: 760px) {
  .product-modal__panel { grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); }
  .modal-media img { height: 100%; max-height: min(760px, calc(100vh - 36px)); }
}

@media (min-width: 860px) {
  .section-pad { padding: 96px 0; }
  .menu-toggle { display: none; }
  .nav-panel {
    position: static;
    inset: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: 0;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    background: transparent;
  }
  .nav-panel > a:not(.btn) { padding: 10px 11px; font-size: .94rem; }
  .nav-quote { margin-left: 8px; min-height: 44px; padding-inline: 16px; }
  .hero { padding-top: 74px; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 54px; }
  .hero-actions .btn { flex: 0 0 auto; }
  .trust-row { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 60px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
  .benefits-grid, .process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .custom-grid { grid-template-columns: 1fr .9fr; }
  .cta-inner { grid-template-columns: 1fr auto; }
  .footer-grid { grid-template-columns: 1.4fr .7fr 1fr; }
}

@media (min-width: 1180px) {
  .hero h1 { font-size: 6.35rem; }
  .product-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .product-info { padding: 18px; }
  .product-info h3 { min-height: 46px; }
}

@media (max-width: 380px) {
  .container { width: min(100% - 24px, 1120px); }
  .hero h1 { font-size: 2.85rem; }
  .btn { width: 100%; padding-inline: 14px; }
  .nav-panel .btn { width: 100%; }
  .hoodie-shape::before, .hoodie-shape::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

.whatsapp-icon { width: 31px; height: 31px; fill: currentColor; }
