:root {
  --bg: #f6efe6;
  --panel: #fffaf3;
  --panel-strong: #fffdf8;
  --ink: #1f1b16;
  --muted: #675f57;
  --soft: #8f8377;
  --line: #e3d3bf;
  --line-strong: #d0b99d;
  --gold: #b1844a;
  --gold-dark: #775531;
  --charcoal: #181510;
  --white: #ffffff;
  --green: #25d366;
  --email: #c05336;
  --radius: 8px;
  --shadow: 0 18px 46px rgba(49, 38, 27, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fffaf3 0%, var(--bg) 58%, #f0e4d5 100%);
  color: var(--ink);
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.is-lightbox-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 10px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(227, 211, 191, 0.9);
  background: rgba(255, 250, 243, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 700;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 17px;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--white);
  font-weight: 700;
}

.site-nav .nav-cta:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero,
.section,
.site-footer {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: 34px 0 28px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(115deg, rgba(255, 253, 248, 0.98) 0 52%, rgba(239, 225, 207, 0.52) 52% 100%), var(--panel-strong);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 660px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.24;
  font-weight: 700;
}

.hero-subtitle {
  max-width: 650px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(16px, 1.55vw, 19px);
}

.hero-actions,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.product-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  text-align: center;
}

.button-primary,
.product-button {
  background: var(--charcoal);
  color: var(--white);
}

.button-primary:hover,
.product-button:hover {
  background: var(--gold-dark);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--gold);
  background: var(--white);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.trust-row span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
}

.hero-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.showcase-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-strong);
  box-shadow: 0 16px 38px rgba(49, 38, 27, 0.08);
}

.showcase-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 16px;
  background: var(--white);
}

.showcase-card div {
  padding: 14px;
}

.showcase-card strong,
.showcase-card span {
  display: block;
}

.showcase-card strong {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 15px;
}

.showcase-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.section {
  padding: 70px 0;
}

.section-head {
  margin-bottom: 28px;
}

.section-head.center {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.section-head.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.52fr);
  gap: 36px;
  align-items: end;
}

.section-head.compact {
  max-width: 760px;
}

.section-head p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.buyer-grid article,
.steps article,
.product-card,
.contact-panel,
.faq-list,
.photo-grid figure {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-strong);
  box-shadow: 0 14px 34px rgba(49, 38, 27, 0.05);
}

.buyer-grid article {
  padding: 22px;
}

.buyer-grid span,
.steps span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 700;
}

.buyer-grid p,
.steps p,
.product-body p,
.contact-copy p {
  color: var(--muted);
}

.product-section {
  padding-top: 48px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-image {
  display: grid;
  place-items: center;
  height: clamp(300px, 30vw, 390px);
  background: var(--white);
}

.image-zoom {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 20px;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.product-button {
  width: 100%;
  margin-top: auto;
}

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

.photo-grid figure {
  overflow: hidden;
  margin: 0;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 1 / 0.92;
  object-fit: cover;
  background: var(--white);
}

.photo-grid .image-zoom {
  height: auto;
}

.photo-grid figcaption {
  padding: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.work-section {
  padding-top: 56px;
}

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

.steps article {
  padding: 22px;
}

.steps h3 {
  font-size: 18px;
}

.steps p {
  margin-bottom: 0;
  font-size: 14px;
}

.faq-list {
  overflow: hidden;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
}

.faq-list p {
  max-width: 880px;
  margin: 0;
  padding: 0 22px 18px;
  color: var(--muted);
  font-size: 15px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: center;
  padding: clamp(26px, 4vw, 48px);
}

.contact-copy p {
  max-width: 620px;
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-list a {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font-weight: 700;
}

.contact-list a:first-child {
  border-color: transparent;
  background: var(--charcoal);
  color: var(--white);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(177, 132, 74, 0.22);
  border-radius: 50%;
  background: rgba(177, 132, 74, 0.1);
  color: var(--gold-dark);
}

.contact-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.contact-item-whatsapp .contact-icon {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(37, 211, 102, 0.16);
  color: var(--green);
}

.contact-text {
  min-width: 0;
}

.contact-text small {
  display: block;
  margin-bottom: 2px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list a:first-child .contact-text small {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer {
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--white);
  box-shadow: 0 20px 52px rgba(49, 38, 27, 0.14);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(180px, 0.42fr) minmax(280px, 0.62fr);
  gap: 42px;
  padding: clamp(28px, 5vw, 48px);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.footer-logo strong {
  font-size: 22px;
}

.footer-brand p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-links span,
.footer-contact span {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(28px, 5vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  font-weight: 650;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  gap: 10px;
}

.floating-contact-button {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 16px 34px rgba(31, 27, 22, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.floating-contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(31, 27, 22, 0.25);
}

.floating-contact-button svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.floating-contact-whatsapp {
  background: var(--green);
}

.floating-contact-email {
  background: var(--email);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(24, 21, 16, 0.76);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-dialog {
  position: relative;
  width: min(920px, 100%);
  margin: 0;
}

.lightbox-dialog img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.lightbox-dialog figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 650;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1040px) {
  .hero-inner,
  .section-head.split,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    max-width: 760px;
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding: 10px 12px;
  }

  .brand {
    gap: 10px;
    font-size: 18px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 10px;
    left: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 11px 10px;
    border-radius: var(--radius);
  }

  .site-nav .nav-cta {
    justify-content: center;
    margin-top: 6px;
  }

  .hero,
  .section,
  .site-footer {
    width: calc(100% - 24px);
  }

  .hero {
    padding-top: 22px;
  }

  .hero-inner {
    padding: 20px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-actions,
  .contact-buttons {
    width: 100%;
  }

  .button,
  .product-button {
    width: 100%;
  }

  .hero-showcase,
  .product-grid,
  .buyer-grid,
  .steps,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card img,
  .product-image img {
    height: auto;
    max-height: 380px;
  }

  .product-image {
    height: auto;
  }

  .image-zoom {
    height: auto;
  }

  .section {
    padding: 52px 0;
  }

  .product-section {
    padding-top: 34px;
  }

  .contact-panel {
    padding: 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 24px;
  }

  .footer-bottom {
    display: grid;
    gap: 6px;
    padding: 16px 24px;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
    gap: 8px;
  }

  .floating-contact-button {
    width: 48px;
    height: 48px;
  }

  .floating-contact-button svg {
    width: 24px;
    height: 24px;
  }
}
