
:root {
  --bg: #f7f3ee;
  --surface: #fffdf9;
  --surface-2: #efe5d7;
  --ink: #2f241d;
  --brown: #533c2c;
  --brown-2: #6b4a38;
  --line: rgba(83, 60, 44, 0.12);
  --muted: #6d6158;
  --rose: #d49a8a;
  --rose-dark: #bc7e6d;
  --success: #2f6f57;
  --shadow: 0 14px 34px rgba(60, 39, 24, 0.08);
  --shadow-2: 0 18px 50px rgba(60, 39, 24, 0.12);
  --radius: 26px;
  --radius-sm: 18px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(212,154,138,.18), transparent 28%),
    linear-gradient(180deg, #fcfaf7 0%, var(--bg) 100%);
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
main { padding-bottom: 84px; }
.section { padding: 22px 0; content-visibility: auto; contain-intrinsic-size: 1px 1100px; }
.shell { width: min(var(--max), calc(100% - 28px)); margin: 0 auto; }
.eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brown-2);
  font-weight: 700;
}
.eyebrow--light { color: rgba(255,255,255,.72); }
h1, h2, h3 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: -.03em;
  color: var(--brown);
}
p { margin: 0; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(252, 250, 247, .78);
  border-bottom: 1px solid rgba(83,60,44,.08);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
}
.brand img { width: 148px; height: auto; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  background: var(--brown);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }
.button--ghost {
  background: rgba(255,255,255,.86);
  color: var(--brown);
  border-color: rgba(83,60,44,.14);
  box-shadow: none;
}
.button--sm { min-height: 42px; padding: 0 14px; font-size: 14px; }
.button--full { width: 100%; }
.button--light {
  background: #fff;
  color: var(--brown);
}
.button--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.26);
  box-shadow: none;
}
.button[disabled] { opacity: .45; pointer-events: none; }

.hero { padding-top: 18px; }
.hero__grid {
  display: grid;
  gap: 18px;
}
.hero__copy,
.hero__media,
.reserve-card,
.compact-card,
.product-card,
.fact-card,
.catalog-banner {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.76);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero__copy {
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.hero__copy::after {
  content: '';
  position: absolute;
  inset: auto -40px -40px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,154,138,.28), rgba(212,154,138,0));
  pointer-events: none;
}
.hero h1 {
  font-size: clamp(2.5rem, 10vw, 4.8rem);
  line-height: .92;
}
.hero h2 {
  font-size: clamp(1.35rem, 6vw, 2.25rem);
  line-height: 1.02;
  margin-top: 2px;
}
.hero__date {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--muted);
  font-weight: 700;
}
.hero__lead {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}
.hero__offers {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.offer {
  padding: 14px 12px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(246,239,229,.94));
  border: 1px solid rgba(83,60,44,.09);
  text-align: center;
}
.offer--primary {
  background: linear-gradient(180deg, rgba(83,60,44,.98), rgba(107,74,56,.98));
  color: #fff;
}
.offer span,
.offer small { display: block; }
.offer span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; opacity: .82; }
.offer strong { display: block; font-size: clamp(1.1rem, 5.5vw, 1.8rem); line-height: 1; margin: 6px 0 4px; }
.offer small { font-size: 12px; opacity: .88; }
.countdown-card {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(83,60,44,.05);
  border: 1px solid rgba(83,60,44,.08);
}
.countdown-card__label {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brown-2);
}
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.countdown div {
  padding: 10px 6px;
  border-radius: 18px;
  background: rgba(255,255,255,.84);
  text-align: center;
}
.countdown strong { display: block; font-size: 1.2rem; color: var(--brown); }
.countdown small { color: var(--muted); font-size: 11px; }
.hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.hero__actions .button { flex: 1 1 180px; }
.hero__media {
  padding: 14px;
}
.hero-photo {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 5 / 6;
  background: #e6ddd2;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 14px;
  color: #fff;
  background: linear-gradient(180deg, rgba(38,26,18,0), rgba(38,26,18,.84));
  border-radius: 18px;
}
.tag {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.18);
}
.tag--accent {
  background: rgba(212,154,138,.18);
  color: var(--brown);
  border-color: rgba(83,60,44,.08);
}
.stock-proof {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 22px;
  background: rgba(247,243,238,.9);
  border: 1px solid rgba(83,60,44,.1);
}
.stock-proof img {
  width: 100%;
  height: 100%;
  min-height: 112px;
  object-fit: cover;
  border-radius: 16px;
}
.stock-proof p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.fact-card {
  padding: 16px;
}
.fact-card__label {
  display: block;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brown-2);
  margin-bottom: 8px;
}
.fact-card strong {
  display: block;
  font-size: 15px;
  line-height: 1.35;
}
.fact-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
}
.section-head h2 { font-size: clamp(1.6rem, 7vw, 2.5rem); }
.filter-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-button {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(83,60,44,.12);
  background: rgba(255,255,255,.9);
  color: var(--brown);
  font-weight: 700;
}
.filter-button.is-active {
  background: var(--brown);
  color: #fff;
  box-shadow: var(--shadow);
}
.catalog-banner {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.catalog-banner__pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(83,60,44,.08);
}
.catalog-banner p { color: var(--muted); font-size: 14px; line-height: 1.4; }

.product-grid {
  display: grid;
  gap: 12px;
}
.product-card {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 12px;
  padding: 10px;
}
.product-card.is-hidden { display: none; }
.product-card__img {
  width: 100%;
  height: 100%;
  min-height: 142px;
  object-fit: cover;
  border-radius: 18px;
  background: var(--surface-2);
}
.product-card__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.product-card__type {
  display: block;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}
.product-card h3 { font-size: 1.45rem; line-height: 1; }
.stock-chip {
  flex-shrink: 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(212,154,138,.22);
  color: var(--brown);
  font-size: 12px;
  font-weight: 700;
}
.product-card__pills { display: flex; flex-wrap: wrap; gap: 6px; }
.pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(83,60,44,.06);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brown);
}
.pill--accent { background: rgba(212,154,138,.28); }
.product-card__prices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.product-card__prices > div {
  padding: 10px;
  border-radius: 16px;
  background: rgba(247,243,238,.86);
  border: 1px solid rgba(83,60,44,.08);
}
.product-card__prices small {
  display: block;
  font-size: 11px;
  color: var(--muted);
}
.product-card__prices strong {
  display: block;
  margin-top: 5px;
  font-size: 1.05rem;
  color: var(--brown);
}
.price-highlight {
  background: linear-gradient(180deg, rgba(83,60,44,.96), rgba(107,74,56,.96)) !important;
}
.price-highlight small,
.price-highlight strong { color: #fff; }

.reserve-card {
  overflow: hidden;
}
.reserve-card__copy,
.reserve-form { padding: 22px; }
.reserve-card__copy p:not(.eyebrow) {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.5;
}
.reserve-card__copy h2,
.compact-card h2 { font-size: clamp(1.7rem, 7vw, 2.45rem); }
.reserve-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.reserve-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(83,60,44,.06);
  font-size: 12px;
  font-weight: 700;
}
.reserve-form {
  display: grid;
  gap: 14px;
  background: rgba(247,243,238,.68);
  border-top: 1px solid rgba(83,60,44,.08);
}
.field {
  display: grid;
  gap: 8px;
}
.field span,
.field legend {
  font-size: 13px;
  font-weight: 700;
  color: var(--brown);
}
.field input {
  width: 100%;
  min-height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(83,60,44,.12);
  background: #fff;
  padding: 0 14px;
  outline: none;
}
.field input:focus { border-color: rgba(83,60,44,.28); box-shadow: 0 0 0 3px rgba(212,154,138,.18); }
.day-field { border: 0; padding: 0; margin: 0; }
.day-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.day-option input { position: absolute; opacity: 0; pointer-events: none; }
.day-option span {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 10px;
  border-radius: 16px;
  border: 1px solid rgba(83,60,44,.12);
  background: #fff;
  color: var(--brown);
  font-weight: 700;
}
.day-option input:checked + span {
  background: rgba(83,60,44,.95);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow);
}
.form-note {
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}

.compact-grid {
  display: grid;
  gap: 14px;
}
.compact-card {
  padding: 22px;
}
.compact-card--dark {
  background: linear-gradient(180deg, #5f4432, #493326);
  color: #fff;
  border-color: rgba(255,255,255,.08);
}
.compact-card--dark h2 { color: #fff; }
.quick-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}
.quick-list li {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  line-height: 1.45;
}
.compact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.faq-card .faq-list { display: grid; gap: 10px; }
.faq-list details {
  border: 1px solid rgba(83,60,44,.08);
  border-radius: 18px;
  background: rgba(247,243,238,.8);
  padding: 14px 16px;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--brown);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.site-footer {
  padding: 20px 0 96px;
}
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(83,60,44,.08);
}
.site-footer__logo { width: 142px; }
.site-footer strong { display: block; margin-bottom: 6px; color: var(--brown); }
.site-footer p { color: var(--muted); line-height: 1.45; }

.floating-whatsapp {
  position: fixed;
  right: 14px;
  bottom: 74px;
  z-index: 18;
  padding: 12px 15px;
  border-radius: 999px;
  background: #1f9f66;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(20,85,55,.28);
}
.mobile-bar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 16;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(83,60,44,.1);
  box-shadow: var(--shadow-2);
}
.mobile-bar a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 16px;
  color: var(--brown);
  font-weight: 700;
  background: rgba(247,243,238,.95);
}
.mobile-bar a:last-child {
  background: var(--brown);
  color: #fff;
}

@media (min-width: 768px) {
  main { padding-bottom: 40px; }
  .section { padding: 38px 0; }
  .hero__grid,
  .compact-grid,
  .reserve-card {
    grid-template-columns: 1.04fr .96fr;
  }
  .reserve-card { display: grid; }
  .hero__media,
  .hero__copy,
  .compact-card { min-height: 100%; }
  .hero__copy { padding: 32px; }
  .hero__media { padding: 18px; }
  .hero-photo { aspect-ratio: 5 / 4; }
  .stock-proof { grid-template-columns: 130px 1fr; }
  .quick-facts { grid-template-columns: repeat(4, 1fr); }
  .section-head { grid-template-columns: 1fr auto; align-items: end; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .compact-grid { grid-template-columns: 1.1fr .9fr; }
  .mobile-bar, .floating-whatsapp { display: none; }
  .site-footer { padding-bottom: 32px; }
}

@media (min-width: 1080px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .product-card { grid-template-columns: 120px 1fr; }
  .hero__grid { grid-template-columns: 1.02fr .98fr; }
  .hero__copy { padding: 36px; }
  .hero__media { padding: 22px; }
}
