:root {
  --copper: #b96f3e;
  --copper-dark: #7a3f22;
  --copper-soft: #f0c3a3;
  --cream: #f7f1e8;
  --paper: #fffaf3;
  --ink: #1f1a17;
  --muted: #6f625b;
  --line: rgba(31, 26, 23, .12);
  --shadow: 0 18px 50px rgba(65, 38, 23, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(247, 241, 232, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(122, 63, 34, .18);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 18px);
}

.nav a {
  color: var(--muted);
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
}

.social-link,
.instagram-link,
.whatsapp-float,
.whatsapp {
  gap: 8px;
}

.social-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon .icon-fill {
  fill: currentColor;
  stroke: none;
}

.cart-pill,
.button,
.filter,
.icon-button {
  border: 0;
  cursor: pointer;
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  color: white;
  background: var(--ink);
  border-radius: 999px;
  font-weight: 800;
}

.cart-icon {
  line-height: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  min-height: min(760px, calc(100vh - 71px));
  padding: clamp(34px, 5vw, 64px) clamp(18px, 4vw, 56px);
  background:
    radial-gradient(circle at 78% 25%, rgba(185, 111, 62, .25), transparent 28%),
    linear-gradient(135deg, #fffaf3 0%, #f4e4d2 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-copy > .eyebrow {
  position: relative;
  top: -28px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: -4px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--copper-dark), var(--copper));
  box-shadow: 0 10px 24px rgba(122, 63, 34, .22);
  font-size: .86rem;
  font-weight: 900;
  line-height: 1.2;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: .94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-text,
.closing p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.button:focus-visible,
.filter:focus-visible,
.cart-pill:focus-visible,
.icon-button:focus-visible,
.whatsapp-float:focus-visible {
  outline: 3px solid var(--copper-soft);
  outline-offset: 3px;
}

.primary {
  color: white;
  background: linear-gradient(135deg, var(--copper-dark), var(--copper));
  box-shadow: 0 14px 32px rgba(122, 63, 34, .24);
}

.secondary {
  background: white;
  border: 1px solid var(--line);
}

.whatsapp {
  width: 100%;
  color: white;
  background: #1f9d55;
}

.clear-cart {
  justify-self: center;
  padding: 5px 8px;
  border: 0;
  color: #8b352d;
  background: transparent;
  cursor: pointer;
  font-size: .86rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-showcase {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
}

.hero-logo {
  width: min(86%, 440px);
  border-radius: 24px;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: var(--paper);
}

.trust-strip span {
  display: grid;
  align-content: center;
  gap: 5px;
  min-height: 74px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--copper-dark), var(--copper));
  box-shadow: 0 12px 28px rgba(122, 63, 34, .2);
  text-align: center;
}

.trust-strip strong {
  font-size: .9rem;
  line-height: 1.2;
}

.trust-strip small {
  color: rgba(255, 255, 255, .78);
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.3;
}

.section,
.closing {
  padding: clamp(42px, 7vw, 92px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 24px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: white;
  font-weight: 800;
}

.filter.active {
  color: white;
  background: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-media {
  display: grid;
  place-items: center;
  height: clamp(150px, 13vw, 190px);
  padding: 12px;
  background: white;
}

.product-media img {
  width: 58%;
  height: 72%;
  min-width: 105px;
  min-height: 105px;
  border-radius: 14px;
  object-fit: contain;
}

.product-body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  padding: 14px;
}

.product-body .button {
  width: 100%;
  min-height: 48px;
  margin-top: 4px;
  border: 2px solid rgba(255, 255, 255, .26);
  border-radius: 12px;
  font-size: .9rem;
  box-shadow: 0 12px 24px rgba(122, 63, 34, .25);
}

.product-body h3 {
  margin: 0;
  font-size: 1.02rem;
  letter-spacing: 0;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.4;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--copper-dark);
  background: rgba(185, 111, 62, .11);
  font-size: .82rem;
  font-weight: 800;
}

.closing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--ink);
  color: white;
}

.closing .eyebrow,
.closing p {
  color: var(--copper-soft);
}

.closing h2 {
  max-width: 760px;
}

.closing-actions {
  display: grid;
  flex: 0 0 auto;
  gap: 12px;
  min-width: 210px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: flex-end;
  padding: 18px;
  background: rgba(31, 26, 23, .46);
}

.cart-drawer.open {
  display: flex;
}

.cart-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(calc(100% - 24px), 500px);
  height: min(920px, calc(100vh - 36px));
  padding: 0 24px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: -20px 0 60px rgba(0, 0, 0, .18);
}

.cart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin: 0 -24px;
  padding: 24px;
  color: white;
  background: linear-gradient(135deg, var(--copper-dark), var(--copper));
  border-bottom: 0;
  border-radius: 21px 21px 0 0;
}

.cart-head h2 {
  margin: 0 0 6px;
  font-size: 2.2rem;
}

.cart-head .eyebrow,
.cart-summary {
  color: rgba(255, 255, 255, .8);
}

.cart-summary {
  margin: 0;
  font-size: .9rem;
  font-weight: 800;
}

.cart-summary strong {
  color: white;
  font-size: 1rem;
}

.icon-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--ink);
  background: white;
  font-size: 1.7rem;
  line-height: 1;
}

.cart-items {
  overflow: auto;
  padding: 18px 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: 0 8px 22px rgba(65, 38, 23, .08);
}

.cart-item img {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  object-fit: contain;
  background: white;
}

.cart-item h3 {
  margin: 0 0 4px;
  font-size: .98rem;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}

.qty {
  display: grid;
  grid-template-columns: 36px 28px 36px;
  align-items: center;
  gap: 8px;
}

.qty strong {
  text-align: center;
}

.qty button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  color: white;
  background: var(--copper-dark);
  cursor: pointer;
  font-weight: 900;
}

.remove-item {
  margin: 4px 0 0;
  padding: 0;
  border: 0;
  color: #8b352d;
  background: transparent;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.empty-cart {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 260px;
  padding: 24px;
  color: var(--muted);
  text-align: center;
}

.empty-cart strong {
  color: var(--ink);
  font-size: 1.2rem;
}

.empty-cart p {
  margin: 0;
}

.lead-form {
  display: grid;
  gap: 12px;
  padding-top: 18px;
  border-top: 2px solid rgba(185, 111, 62, .2);
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: white;
  resize: vertical;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 30;
  display: none;
  max-width: min(92vw, 430px);
  padding: 12px 16px;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-weight: 800;
  transform: translateX(-50%);
}

.toast.show {
  display: block;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 15;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  color: white;
  background: #168a48;
  box-shadow: 0 14px 30px rgba(22, 138, 72, .3);
  font-weight: 900;
  text-decoration: none;
}

.process-section,
.service-section,
.reviews-section,
.site-footer {
  padding: clamp(44px, 6vw, 78px) clamp(18px, 4vw, 56px);
}

.process-section {
  background: white;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.process-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.process-grid article > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: white;
  background: var(--copper-dark);
  font-weight: 900;
}

.process-grid h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.process-grid p,
.reviews-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.service-section {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(420px, 1.2fr);
  align-items: start;
  gap: clamp(30px, 6vw, 90px);
  color: white;
  background: var(--ink);
}

.service-section .eyebrow {
  color: var(--copper-soft);
}

.service-list {
  display: grid;
}

.service-list p {
  display: grid;
  grid-template-columns: minmax(150px, .7fr) 1fr;
  gap: 18px;
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.service-list span {
  color: rgba(255, 255, 255, .7);
}

.reviews-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--paper);
}

.reviews-section > div {
  max-width: 720px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px 50px;
  padding-block: 32px;
  color: white;
  background: #15110f;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
}

.footer-brand div {
  display: grid;
}

.footer-brand span,
.footer-note {
  color: rgba(255, 255, 255, .62);
  font-size: .82rem;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a,
.footer-links button {
  padding: 0;
  border: 0;
  color: white;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
}

.footer-note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(31, 26, 23, .58);
}

.confirm-modal.open {
  display: grid;
}

.confirm-panel {
  width: min(100%, 390px);
  padding: 26px;
  border: 1px solid rgba(185, 111, 62, .2);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(31, 26, 23, .3);
}

.confirm-panel h2 {
  margin-bottom: 10px;
  font-size: 1.7rem;
}

.confirm-panel > p:not(.eyebrow) {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.5;
}

.confirm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.clear-confirm-button {
  color: white;
  background: var(--copper-dark);
}

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(31, 26, 23, .68);
}

.privacy-modal.open {
  display: grid;
}

.privacy-panel {
  position: relative;
  width: min(100%, 620px);
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 30px;
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.privacy-panel .icon-button {
  position: absolute;
  top: 18px;
  right: 18px;
}

.privacy-panel h2 {
  padding-right: 46px;
}

.privacy-panel p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}

.service-section {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(240, 195, 163, .2);
  background: linear-gradient(135deg, #1f1a17 0%, #2c211b 62%, #4d2b1c 100%);
}

.service-section::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -150px;
  width: 320px;
  height: 320px;
  border: 54px solid rgba(185, 111, 62, .1);
  border-radius: 50%;
  pointer-events: none;
}

.service-section > div {
  position: relative;
  z-index: 1;
}

.service-section .eyebrow,
.reviews-section .eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .74rem;
}

.service-section .eyebrow {
  color: white;
  background: var(--copper-dark);
}

.service-section h2,
.reviews-section h2 {
  max-width: 620px;
  margin-top: 18px;
  font-weight: 900;
}

.service-list {
  gap: 10px;
}

.service-list p {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .055);
}

.service-list strong {
  color: var(--copper-soft);
}

.reviews-section {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border-block: 1px solid rgba(185, 111, 62, .18);
  background: linear-gradient(135deg, #fffaf3 0%, #f3dfcd 100%);
}

.reviews-section::before {
  content: "\201C";
  position: absolute;
  right: 5%;
  top: -65px;
  color: rgba(185, 111, 62, .1);
  font-family: Georgia, serif;
  font-size: 18rem;
  line-height: 1;
  pointer-events: none;
}

.reviews-section > * {
  position: relative;
  z-index: 1;
}

.reviews-section .eyebrow {
  color: white;
  background: var(--copper-dark);
}

.reviews-section p {
  max-width: 650px;
  font-size: 1rem;
}

.reviews-instagram {
  flex: 0 0 auto;
  gap: 9px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--copper-dark), var(--copper));
  box-shadow: 0 14px 30px rgba(122, 63, 34, .26);
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-showcase {
    min-height: 360px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .topbar {
    align-items: flex-start;
  }

  .brand span {
    display: none;
  }

  .nav a {
    display: none;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-showcase {
    min-height: 280px;
  }

  .hero-logo {
    width: min(86%, 310px);
  }

  .trust-strip,
  .product-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .product-media {
    height: min(46vw, 190px);
  }

  .product-media img {
    width: 54%;
    height: 70%;
    min-width: 105px;
    min-height: 105px;
  }

  .cart-item {
    grid-template-columns: 62px 1fr;
  }

  .cart-item img {
    width: 62px;
    height: 62px;
  }

  .qty {
    grid-column: 2;
    justify-content: start;
  }

  .trust-strip span {
    min-height: 68px;
  }

  .cart-drawer {
    padding: 10px;
  }

  .cart-panel {
    width: 100%;
    height: calc(100vh - 20px);
    border-radius: 18px;
  }

  .cart-head {
    border-radius: 17px 17px 0 0;
  }

  .closing {
    align-items: flex-start;
    flex-direction: column;
  }

  .reviews-section {
    align-items: stretch;
    flex-direction: column;
  }

  .service-list p {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .closing-actions,
  .closing-actions .button {
    width: 100%;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    min-height: 48px;
    padding-inline: 16px;
  }
}
