/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ── Tokens ── */
:root {
  --bg:      #f8f5f0;
  --white:   #ffffff;
  --ink:     #1a1714;
  --muted:   #716b62;
  --accent:  #c4552a;
  --line:    rgba(26,23,20,.1);
  --line-md: rgba(26,23,20,.18);
  --warm:    #ede8de;
  --f-body:  'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
}

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
}

/* ── Topbar ── */
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
  padding: 0 clamp(20px, 5vw, 64px);
  background: rgba(248,245,240,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.01em;
  text-transform: uppercase;
}

.topbar-nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--muted);
}
.topbar-nav a { transition: color .15s; }
.topbar-nav a:hover { color: var(--ink); }

.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: background .15s;
  flex-shrink: 0;
}
.topbar-cta:hover { background: #2e2a24; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: background .18s, color .18s, border-color .18s;
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-light:hover { background: rgba(255,255,255,.82); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-light:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.8); }
.btn-solid { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-solid:hover { background: #2e2a24; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-md); }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }
.btn-whats { background: var(--ink); color: #fff; border-color: var(--ink); width: 100%; justify-content: center; }
.btn-whats:hover { background: #2e2a24; }
.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { background: #ae4a23; }
.btn-full { width: 100%; justify-content: center; }

/* ── Eyebrow / kicker ── */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

/* ── Section ── */
.section { padding: 80px clamp(20px, 5vw, 72px); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 40px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
}

/* ── Hero full-bleed ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,18,14,.85) 0%,
    rgba(20,18,14,.38) 50%,
    rgba(20,18,14,.12) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(32px, 5vw, 72px);
  padding-top: 160px;
  color: #fff;
}
.hero-copy { max-width: 580px; }
.hero-copy h1 {
  font-size: clamp(44px, 7.5vw, 100px);
  font-weight: 800;
  line-height: .93;
  letter-spacing: -.045em;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-tag {
  flex: 0 0 auto;
  align-self: flex-end;
  max-width: 230px;
  padding: 16px 20px;
  background: rgba(255,255,255,.11);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.88);
}
.hero-tag strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}
.hero-tag .tag-pill {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 10px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ── Trust bar ── */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--line-md);
}
.trust-item {
  padding: 24px clamp(16px, 3vw, 36px);
  border-right: 1px solid var(--line-md);
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(196,85,42,.1);
  color: var(--accent);
  flex-shrink: 0;
}
.trust-item-text { display: flex; flex-direction: column; gap: 2px; }
.trust-item strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--accent);
  line-height: 1;
}
.trust-item span { font-size: 13px; color: var(--muted); }

/* ── Category grid ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-tile {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--warm);
}
.cat-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.cat-tile:hover img { transform: scale(1.06); }
.cat-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,18,14,.75) 0%, transparent 55%);
}
.cat-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 20px;
  color: #fff;
}
.cat-label h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 2px;
}
.cat-label p { font-size: 12px; color: rgba(255,255,255,.7); }
.cat-label a, .cat-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.35);
  transition: color .15s, border-color .15s;
  text-decoration: none;
}
.cat-tile:hover .cat-label a,
.cat-tile:hover .cat-link { color: #fff; border-color: #fff; }

/* ── Product grid ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: box-shadow .22s, transform .22s;
}
.product-card:hover {
  box-shadow: 0 18px 52px rgba(26,23,20,.1);
  transform: translateY(-3px);
}
.card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--warm);
  position: relative;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.product-card:hover .card-img img { transform: scale(1.05); }
.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}
.card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.card-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 5px;
}
.card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
}
.card-price {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-top: auto;
  margin-bottom: 4px;
}
.card-install {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}
.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1.5px solid var(--line-md);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: background .15s, border-color .15s;
  text-align: center;
}
.card-cta:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ── Spotlight / dark CTA ── */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.spotlight-media { overflow: hidden; background: #2a2520; }
.spotlight-media img { width: 100%; height: 100%; object-fit: cover; opacity: .88; }
.spotlight-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: clamp(40px, 6vw, 84px);
  background: var(--ink);
  color: #f5f0e8;
}
.spotlight-copy .eyebrow { color: #e07c55; }
.spotlight-copy h2 {
  font-size: clamp(34px, 4.8vw, 68px);
  font-weight: 800;
  line-height: .97;
  letter-spacing: -.04em;
}
.spotlight-copy p {
  max-width: 400px;
  color: rgba(245,240,232,.68);
  font-size: 15px;
  line-height: 1.72;
}
.spotlight-copy small {
  font-size: 12px;
  color: rgba(245,240,232,.42);
}

/* ── Quote section ── */
.quote-section { background: var(--warm); }
.quote-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.quote-copy h2 {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.04em;
  margin-bottom: 14px;
}
.quote-copy > p { color: var(--muted); line-height: 1.72; }
.quote-perks {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 28px;
}
.quote-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(26,23,20,.1);
  border-radius: 8px;
  font-size: 14px;
  color: var(--muted);
}
.quote-perks li::before {
  content: '✓';
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  font-size: 13px;
}

.quote-form {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  display: grid;
  gap: 16px;
  box-shadow: 0 24px 64px rgba(26,23,20,.09);
}
.quote-form .form-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 4px;
}
.form-row { display: grid; gap: 7px; }
.form-row label { font-size: 13px; font-weight: 600; color: var(--ink); }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line-md);
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .18s;
  appearance: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--accent); background: #fff; }
.form-row textarea { min-height: 100px; resize: vertical; }

/* ── Topbar cart button ── */
.topbar-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--line-md);
  color: var(--ink);
  background: transparent;
  transition: border-color .15s, background .15s;
  cursor: pointer;
  flex-shrink: 0;
}
.topbar-cart:hover { border-color: var(--ink); background: var(--warm); }
.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--f-body);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  opacity: 0;
  transform: scale(.5);
  transition: opacity .18s, transform .18s;
  pointer-events: none;
}
.cart-count.visible { opacity: 1; transform: scale(1); }

/* ── Mini cart drawer ── */
.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 100;
  width: min(390px, 100vw);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  background: var(--white);
  border-left: 1px solid var(--line-md);
  box-shadow: -28px 0 72px rgba(26,23,20,.12);
  transform: translateX(105%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
}
.cart-drawer.is-open { transform: translateX(0); }

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.drawer-head-title { font-size: 16px; font-weight: 700; letter-spacing: -.01em; }
.drawer-head-count { font-size: 13px; color: var(--muted); margin-top: 2px; }
.drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--line-md);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  transition: border-color .15s, color .15s;
}
.drawer-close:hover { border-color: var(--ink); color: var(--ink); }

.drawer-body {
  overflow-y: auto;
  padding: 20px 24px;
  display: grid;
  align-content: start;
  gap: 16px;
}
.drawer-empty { font-size: 14px; color: var(--muted); line-height: 1.65; }

.drawer-item {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 12px;
  align-items: start;
}
.drawer-item-img {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--warm);
  flex-shrink: 0;
}
.drawer-item-img img { width: 100%; height: 100%; object-fit: cover; }
.drawer-item-name { font-size: 14px; font-weight: 600; letter-spacing: -.01em; line-height: 1.3; }
.drawer-item-sub  { font-size: 12px; color: var(--muted); margin-top: 3px; }
.drawer-item-remove {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  text-underline-offset: 2px;
}
.drawer-item-remove:hover { color: var(--accent); }
.drawer-item-price {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: -.01em;
}

.drawer-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-top: 1px solid var(--line-md);
  font-size: 14px;
  color: var(--muted);
}
.drawer-subtotal strong {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
}
.drawer-actions {
  padding: 14px 24px 24px;
  display: grid;
  gap: 8px;
}

/* ── WhatsApp float ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 80;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(37,211,102,.5);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .topbar-nav { display: none; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(1),
  .trust-item:nth-child(2) { border-bottom: 1px solid var(--line-md); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .spotlight { grid-template-columns: 1fr; }
  .spotlight-media { min-height: 280px; }
  .quote-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 560px) {
  .topbar-cta span { display: none; }
  .hero-content { flex-direction: column; gap: 24px; }
  .hero-tag { max-width: 100%; align-self: auto; }
  .product-grid { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: 1fr; }
  .trust-item { border-right: none !important; border-bottom: 1px solid var(--line-md); }
  .trust-item:last-child { border-bottom: none; }
}
