:root {
  --burgundy: #7c1f2c;
  --burgundy-dark: #531421;
  --cream: #fbf4e6;
  --cream-2: #f4e3c3;
  --gold: #c5974a;
  --coffee: #241610;
  --brown: #563223;
  --ink: #1d1714;
  --muted: #76665a;
  --white: #fffaf2;
  --line: rgba(86, 50, 35, 0.16);
  --shadow: 0 18px 50px rgba(36, 22, 16, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  color: var(--cream);
  background: var(--coffee);
  font-size: 14px;
}

.topbar__inner,
.topbar__actions,
.navbar,
.main-nav,
.hero__actions,
.section-head,
.contact-actions {
  display: flex;
  align-items: center;
}

.topbar__inner {
  min-height: 40px;
  justify-content: space-between;
  gap: 16px;
}

.topbar__actions {
  gap: 18px;
  color: var(--cream-2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 244, 230, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.navbar {
  min-height: 82px;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  font-weight: 800;
  color: var(--coffee);
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand__mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--cream);
  background: var(--burgundy);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.brand__text {
  max-width: 210px;
  line-height: 1.15;
}

.main-nav {
  justify-content: flex-end;
  gap: 4px;
  font-size: 15px;
  font-weight: 700;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--brown);
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--cream);
  background: var(--burgundy);
}

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

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--coffee);
}

.hero,
.page-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero__image,
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay,
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(36, 22, 16, 0.86) 0%, rgba(83, 20, 33, 0.58) 42%, rgba(36, 22, 16, 0.06) 100%),
    linear-gradient(0deg, rgba(36, 22, 16, 0.36), rgba(36, 22, 16, 0.04));
}

.hero__content,
.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 112px 0 96px;
}

.hero__content {
  max-width: 680px;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid rgba(255, 250, 242, 0.78);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--gold);
  border-color: var(--gold);
}

.eyebrow,
.section-kicker {
  display: inline-block;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 13px;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.04;
}

h2 {
  margin-bottom: 16px;
  color: var(--coffee);
  font-size: 34px;
  line-height: 1.18;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.25;
}

.hero p,
.page-hero p {
  max-width: 620px;
  color: #fff0d6;
  font-size: 19px;
}

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

.btn--primary {
  color: var(--cream);
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.btn--primary:hover {
  background: var(--burgundy-dark);
}

.btn--light {
  color: var(--coffee);
  background: var(--cream);
  border-color: rgba(255, 255, 255, 0.55);
}

.section {
  padding: 76px 0;
}

.section--tight {
  padding-top: 36px;
}

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

.intro-grid,
.split-grid,
.content-layout,
.contact-grid,
.contact-page-grid,
.footer-grid {
  display: grid;
  gap: 32px;
}

.intro-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.intro-grid p,
.rich-content,
.info-panel p,
.contact-list strong {
  color: var(--muted);
  font-size: 18px;
}

.section-head {
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.text-link {
  color: var(--burgundy);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

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

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

.product-card,
.info-panel,
.contact-list,
.map-frame {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card__body {
  padding: 20px;
}

.product-card__body span,
.contact-list span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card__body p {
  min-height: 78px;
  color: var(--muted);
}

.product-card__body strong {
  color: var(--burgundy);
  font-size: 22px;
}

.split-section {
  background: var(--coffee);
  color: var(--cream);
}

.split-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.split-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.split-grid h2 {
  color: var(--cream);
}

.split-grid p {
  color: var(--cream-2);
  font-size: 18px;
}

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

.gallery-grid--preview {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  padding: 10px 12px;
  color: var(--coffee);
  font-weight: 700;
}

.contact-strip {
  background: var(--white);
}

.contact-grid,
.contact-page-grid {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: stretch;
}

.map-frame {
  overflow: hidden;
  min-height: 330px;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  border: 0;
}

.map-frame--large,
.map-frame--large iframe {
  min-height: 460px;
}

.page-hero {
  min-height: 480px;
}

.page-hero--compact {
  min-height: 390px;
}

.page-title {
  padding: 72px 0 28px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.page-title h1 {
  margin-bottom: 10px;
  color: var(--coffee);
  font-size: 52px;
}

.page-title p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.category-tabs a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--brown);
  background: var(--white);
  font-weight: 800;
}

.category-tabs a.is-active,
.category-tabs a:hover {
  color: var(--cream);
  background: var(--burgundy);
}

.content-layout {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.rich-content {
  white-space: pre-line;
}

.info-panel {
  padding: 26px;
}

.contact-list {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.contact-list a,
.contact-list div {
  display: grid;
  gap: 5px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-list a:last-child,
.contact-list div:last-child {
  border-bottom: 0;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 22px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.site-footer {
  color: var(--cream-2);
  background: var(--coffee);
}

.footer-grid {
  grid-template-columns: 1.25fr 0.8fr 1fr 0.8fr;
  padding: 54px 0 38px;
}

.footer-grid h2 {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 18px;
}

.footer-grid a {
  display: block;
  margin: 7px 0;
}

.footer-brand {
  display: block;
  margin-bottom: 10px;
  color: var(--cream);
  font-size: 24px;
}

.footer-whatsapp {
  color: var(--gold);
  font-weight: 900;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(251, 244, 230, 0.12);
  font-size: 14px;
}

@media (max-width: 920px) {
  .topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 9px 0;
  }

  .navbar {
    min-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 118px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 12px;
  }

  .hero,
  .page-hero {
    min-height: 560px;
  }

  .hero__content,
  .page-hero__content {
    padding: 88px 0 72px;
  }

  .intro-grid,
  .split-grid,
  .content-layout,
  .contact-grid,
  .contact-page-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid--preview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 22px, 1140px);
  }

  .brand {
    min-width: 0;
  }

  .brand__text {
    max-width: 170px;
    font-size: 15px;
  }

  .hero,
  .page-hero {
    min-height: 520px;
  }

  h1 {
    font-size: 40px;
  }

  h2,
  .page-title h1 {
    font-size: 30px;
  }

  .hero__actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .section {
    padding: 52px 0;
  }

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

  .product-grid,
  .product-grid--wide,
  .gallery-grid,
  .gallery-grid--preview {
    grid-template-columns: 1fr;
  }

  .product-card__body p {
    min-height: auto;
  }

  .copyright {
    flex-direction: column;
  }
}
