:root {
  --cream: #fff8da;
  --paper: #fffdf4;
  --ink: #47210a;
  --muted: #765536;
  --accent: #47210a;
  --accent-dark: #2f1405;
  --gold: #fed81f;
  --mint: #47210a;
  --line: rgba(71, 33, 10, 0.16);
  --shadow: 0 20px 50px rgba(71, 33, 10, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: #fff;
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header.scrolled,
.site-header.open {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 10px 30px rgba(43, 33, 24, 0.1);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  margin-top: 2px;
  color: currentColor;
  opacity: 0.78;
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.2s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(71, 33, 10, 0.78), rgba(71, 33, 10, 0.42)),
    linear-gradient(0deg, rgba(71, 33, 10, 0.72), rgba(71, 33, 10, 0.12) 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - 36px));
  margin: 220px auto 42px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.orders h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
}

.hero h1 {
  max-width: 560px;
  margin-inline: auto;
  font-size: clamp(2rem, 4.8vw, 3.9rem);
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
}

.button.primary {
  color: var(--accent);
  background: var(--gold);
}

.button.primary:hover {
  color: #fff;
  background: var(--accent-dark);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.12);
}

.product-detail .button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  z-index: 5;
  margin-top: -58px;
  padding: 0 clamp(18px, 6vw, 72px);
  background: transparent;
  color: var(--ink);
}

.features article {
  min-height: 210px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 24px 60px rgba(43, 33, 24, 0.16);
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.features article:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(43, 33, 24, 0.2);
}

.features span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--accent);
  background: var(--gold);
  font-weight: 800;
}

.features h2 {
  margin: 18px 0 10px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.features p,
.section-copy p,
.section-heading p,
.orders p,
.site-footer p {
  color: inherit;
  opacity: 0.78;
  line-height: 1.7;
}

.section {
  padding: clamp(62px, 9vw, 110px) clamp(18px, 6vw, 72px);
}

.about {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(280px, 1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 82px);
  background: var(--cream);
}

.about-media img {
  max-height: 520px;
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-copy h2,
.section-heading h2,
.orders h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.section-copy p {
  font-size: 1.04rem;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 800;
}

.product-section {
  background: var(--paper);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

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

.category-card,
.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 24px rgba(43, 33, 24, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover,
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(43, 33, 24, 0.15);
}

.category-card img,
.product-card img {
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
}

.category-card div,
.product-card div {
  padding: 18px;
}

.category-card span,
.product-card span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.category-card h3,
.product-card h3 {
  margin: 8px 0 8px;
  font-size: 1.25rem;
}

.category-card small {
  display: inline-flex;
  margin-bottom: 4px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #fff;
  background: var(--mint);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.category-card.recommended {
  border-color: rgba(184, 68, 45, 0.24);
  background: #fff9ef;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.page-main {
  padding-top: 110px;
}

.catalog-hero {
  padding: 70px clamp(18px, 6vw, 72px) 34px;
  background: var(--cream);
}

.catalog-hero-inner {
  max-width: 920px;
}

.catalog-hero h1,
.product-detail h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.04;
}

.catalog-hero p,
.product-detail p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.product-detail [data-product-description],
.product-detail [data-product-price] {
  display: none;
}

.catalog-products {
  padding: clamp(42px, 7vw, 76px) clamp(18px, 6vw, 72px);
}

.product-card .price,
.product-detail .price {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 900;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
  padding: 140px clamp(18px, 6vw, 72px) clamp(60px, 8vw, 100px);
  background: var(--cream);
}

.product-detail img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.orders {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(52px, 8vw, 86px) clamp(18px, 6vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(71, 33, 10, 0.95), rgba(71, 33, 10, 0.78)),
    url("https://images.unsplash.com/photo-1517433367423-c7e5b0f35086?auto=format&fit=crop&w=1600&q=85") center/cover;
}

.orders div {
  max-width: 760px;
}

.testimonials {
  background: var(--cream);
}

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

blockquote {
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

blockquote p {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.65;
}

blockquote cite {
  color: var(--accent);
  font-style: normal;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 46px clamp(18px, 6vw, 72px);
  color: #fff;
  background: #221710;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.site-footer p {
  margin: 0 0 8px;
}

.site-footer .text-link {
  display: table;
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--gold);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--accent);
  background: var(--gold);
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(71, 33, 10, 0.22);
}

@media (max-width: 980px) {
  .category-grid,
  .product-grid,
  .testimonial-grid,
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about {
    grid-template-columns: 1fr;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

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

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

  .site-nav a {
    padding: 13px 10px;
  }

  .hero {
    min-height: 88vh;
  }

  .features,
  .category-grid,
  .product-grid,
  .testimonial-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .features article {
    min-height: auto;
    border-right: 0;
  }

  .orders {
    display: block;
  }

  .orders .button {
    margin-top: 18px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
  }
}
