:root {
  --cocoa-950: #160b07;
  --cocoa-900: #24110b;
  --cocoa-800: #351b11;
  --cocoa-700: #4d2a18;
  --cocoa-600: #6e3d24;
  --cream: #fff2da;
  --cream-2: #f6dfba;
  --gold: #d6a44e;
  --gold-2: #f0cf85;
  --green: #596838;
  --text: #2b1710;
  --muted: #806c5c;
  --white: #fffaf1;
  --shadow: 0 24px 80px rgba(22, 11, 7, 0.25);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.scrolled {
  background: rgba(22, 11, 7, 0.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.22);
}
.navbar {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(240, 207, 133, 0.6);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  font-size: 21px;
}
.brand strong { display: block; font-size: 15px; }
.brand small { display: block; font-size: 10px; margin-top: 5px; color: var(--gold-2); }
.nav-links { display: flex; align-items: center; gap: 28px; font-weight: 600; font-size: 14px; }
.nav-links a:not(.nav-cta) { opacity: 0.9; }
.nav-links a:hover { color: var(--gold-2); }
.nav-cta {
  border: 1px solid rgba(240, 207, 133, 0.65);
  padding: 11px 18px;
  border-radius: 999px;
  color: var(--gold-2);
}
.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 2px; margin: 6px 0; background: var(--white); }

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background-image: url('images/hero-momotombo.png');
  background-size: cover;
  background-position: center;
  color: var(--white);
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 73% 54%, rgba(22,11,7,0.05), rgba(22,11,7,0.1) 35%, rgba(22,11,7,0.25) 60%),
    linear-gradient(90deg, rgba(22,11,7,0.9) 0%, rgba(22,11,7,0.72) 36%, rgba(22,11,7,0.26) 67%, rgba(22,11,7,0.12) 100%);
}
.hero-content { position: relative; padding-top: 90px; }
.hero-copy { max-width: 640px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 800;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}
h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.02;
  margin: 0;
}
h1 { font-size: clamp(3.3rem, 7vw, 6.8rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(2.35rem, 4.5vw, 4.6rem); letter-spacing: -0.035em; }
h3 { font-size: 1.65rem; }
.hero-text { font-size: 1.18rem; max-width: 560px; color: rgba(255,250,241,0.88); margin: 24px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: var(--cocoa-950); box-shadow: 0 16px 34px rgba(214,164,78,0.28); }
.btn-secondary { border: 1px solid rgba(255,250,241,0.48); color: var(--white); background: rgba(255,255,255,0.06); backdrop-filter: blur(10px); }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; max-width: 560px; margin-top: 46px; }
.hero-stats div { border: 1px solid rgba(255,250,241,0.16); background: rgba(255,250,241,0.08); backdrop-filter: blur(12px); border-radius: var(--radius-md); padding: 16px; }
.hero-stats strong { display: block; font-family: "Cormorant Garamond", Georgia, serif; color: var(--gold-2); font-size: 2rem; line-height: 1; }
.hero-stats span { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,250,241,0.72); }

.section-padding { padding: 112px 0; }
.split-grid { display: grid; grid-template-columns: 1fr 0.95fr; align-items: center; gap: 70px; }
.split-grid.reverse { grid-template-columns: 0.95fr 1fr; }
.section-copy p:not(.eyebrow), .section-header p { color: var(--muted); font-size: 1.04rem; }
.section-copy h2, .section-header h2 { color: var(--cocoa-900); }
.section-header { max-width: 780px; margin: 0 auto 52px; text-align: center; }
.section-header .eyebrow { justify-content: center; }
.image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  background: var(--cocoa-800);
}
.image-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(240,207,133,0.24);
  border-radius: calc(var(--radius-xl) - 12px);
  pointer-events: none;
}
.image-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.7s ease; }
.image-card:hover img { transform: scale(1.04); }
.image-card.tall img { aspect-ratio: 4 / 4.4; }

.intro { background: linear-gradient(180deg, var(--cream) 0%, #f1d7ad 100%); }
.collection { background: var(--cocoa-950); color: var(--white); position: relative; overflow: hidden; }
.collection::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(214,164,78,0.12);
  filter: blur(30px);
}
.collection .section-header h2 { color: var(--white); }
.collection .section-header p { color: rgba(255,250,241,0.72); }
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,250,241,0.09), rgba(255,250,241,0.035));
  border: 1px solid rgba(240,207,133,0.18);
  border-radius: var(--radius-lg);
  padding: 30px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(214,164,78,0.16), transparent 45%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.product-card:hover::before { opacity: 1; }
.card-icon { color: var(--gold-2); font-size: 26px; }
.product-card h3 { color: var(--gold-2); margin: 18px 0 8px; }
.product-card p { color: rgba(255,250,241,0.72); }
.product-card a { color: var(--gold-2); font-weight: 800; margin-top: 18px; }

.story { background: #f6dfba; }
.text-link { display: inline-flex; margin-top: 18px; color: var(--cocoa-700); font-weight: 800; border-bottom: 1px solid currentColor; }
.awards { background: linear-gradient(180deg, var(--cream) 0%, #fff7e7 100%); }
.awards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.award {
  background: var(--white);
  border: 1px solid rgba(78,42,24,0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 12px 40px rgba(78,42,24,0.08);
}
.award strong { display: inline-grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: var(--cocoa-950); margin-bottom: 16px; }
.award span { display: block; font-weight: 800; color: var(--cocoa-800); }

.gift { background: var(--cocoa-900); }
.gift-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 50px;
  background: linear-gradient(135deg, rgba(255,250,241,0.08), rgba(255,250,241,0.03));
  border: 1px solid rgba(240,207,133,0.18);
  border-radius: var(--radius-xl);
  padding: 28px;
  color: var(--white);
  box-shadow: var(--shadow);
}
.gift-image { border-radius: 26px; overflow: hidden; }
.gift-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gift-copy { padding: 20px 24px; }
.gift-copy h2 { color: var(--white); }
.gift-copy p:not(.eyebrow) { color: rgba(255,250,241,0.76); }

.visit { background: #f6dfba; }
.visit-grid { display: grid; grid-template-columns: 1fr 0.8fr; gap: 60px; align-items: center; }
.contact-list { margin: 26px 0; padding: 22px; background: rgba(255,250,241,0.56); border: 1px solid rgba(78,42,24,0.12); border-radius: var(--radius-lg); }
.contact-list p { margin: 8px 0; }
.contact-list a { color: var(--cocoa-700); font-weight: 800; }
.map-card { min-height: 430px; border-radius: var(--radius-xl); background: radial-gradient(circle at 70% 30%, rgba(214,164,78,0.45), transparent 30%), linear-gradient(135deg, var(--cocoa-800), var(--cocoa-950)); color: var(--white); display: grid; place-items: center; box-shadow: var(--shadow); overflow: hidden; position: relative; }
.map-card::before { content: ""; position: absolute; inset: 24px; border: 1px solid rgba(240,207,133,0.22); border-radius: 24px; }
.map-placeholder { text-align: center; position: relative; z-index: 1; padding: 28px; }
.map-placeholder span { font-size: 4rem; }
.map-placeholder h3 { color: var(--gold-2); margin-top: 12px; }

.final-cta { padding: 100px 0; text-align: center; color: var(--white); background: linear-gradient(rgba(22,11,7,0.68), rgba(22,11,7,0.82)), url('images/hero-momotombo.png') center / cover fixed; }
.final-cta h2 { max-width: 850px; margin: 0 auto 28px; }
.final-cta .eyebrow { justify-content: center; }

.footer { background: var(--cocoa-950); color: rgba(255,250,241,0.72); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.7fr 0.7fr; gap: 40px; }
.footer h4 { margin: 0 0 12px; color: var(--gold-2); }
.footer a { display: block; margin: 8px 0; }
.footer a:hover { color: var(--gold-2); }
.footer-brand { color: var(--white); margin-bottom: 14px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,250,241,0.12); font-size: 14px; }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  background: #2db742;
  color: white;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(45,183,66,0.34);
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .split-grid, .split-grid.reverse, .gift-panel, .visit-grid { grid-template-columns: 1fr; }
  .split-grid.reverse .image-card { order: 2; }
}
@media (max-width: 780px) {
  .container { width: min(100% - 28px, var(--container)); }
  .navbar { height: 74px; }
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 74px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 22px;
    background: rgba(22,11,7,0.96);
    border: 1px solid rgba(240,207,133,0.18);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px; }
  .hero { min-height: 860px; background-position: 68% center; }
  .hero-overlay { background: linear-gradient(180deg, rgba(22,11,7,0.88), rgba(22,11,7,0.68) 55%, rgba(22,11,7,0.35)); }
  .hero-copy { max-width: 100%; }
  .hero-stats { grid-template-columns: 1fr; }
  .section-padding { padding: 78px 0; }
  .cards-grid, .awards-grid, .footer-grid { grid-template-columns: 1fr; }
  .gift-panel { padding: 16px; }
  .gift-copy { padding: 12px 4px 18px; }
  .footer-bottom { flex-direction: column; }
  .floating-whatsapp { right: 14px; bottom: 14px; }
}
@media (max-width: 480px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.45rem; }
  .brand strong { font-size: 13px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .product-card { min-height: auto; }
}
