:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-alt: #f7f7f5;
  --text: #171717;
  --muted: #5c5c5c;
  --gold: #b68a2d;
  --gold-soft: #e9d6a1;
  --border: rgba(17, 17, 17, 0.08);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1160px, calc(100% - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a { color: inherit; text-decoration: none; }
.container { width: var(--container); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}
.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.site-nav a {
  font-size: 0.98rem;
  color: var(--muted);
}
.site-nav a:hover { color: var(--text); }
.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(182, 138, 45, 0.28);
  border-radius: 999px;
  background: linear-gradient(180deg, #fffdf7, #fff3cf);
  color: #46310a !important;
  font-weight: 700;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
}

.hero {
  padding: 52px 0 36px;
  background:
    radial-gradient(circle at top right, rgba(182, 138, 45, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fcfbf7 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 34px;
}
.eyebrow,
.section-kicker {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6c4b09;
  background: linear-gradient(180deg, #fff7de, #fff0c2);
  border: 1px solid rgba(182,138,45,0.18);
}
.hero h1,
.section-heading h2,
.panel h2,
.final-cta-box h2 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.95;
  letter-spacing: 0.01em;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 5.7rem);
  margin: 14px 0 18px;
}
.lead {
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  margin: 0 0 10px;
}
.sublead {
  color: var(--muted);
  font-size: 1.02rem;
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}
.btn-primary {
  background: linear-gradient(135deg, #1d1d1d, #3a2e16 55%, #b68a2d);
  color: #fff;
}
.btn-secondary {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.hero-points article,
.info-card,
.panel,
.gallery-item,
.hero-card,
.final-cta-box {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.hero-points article {
  padding: 18px;
  border-radius: var(--radius-md);
}
.hero-points strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.hero-card {
  border-radius: 32px;
  overflow: hidden;
  padding: 14px;
  background: linear-gradient(180deg, #ffffff, #f8f6f1);
}
.hero-card img {
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: contain;
  border-radius: 22px;
}
.section {
  padding: 70px 0;
}
.intro-grid,
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.section-heading h2,
.panel h2,
.final-cta-box h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 14px 0 14px;
}
.section-heading p,
.intro-copy p,
.panel p,
.final-cta-box p {
  color: var(--muted);
  margin: 0;
}
.section-heading.center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 34px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.info-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  min-height: 190px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf5 100%);
}
.card-label {
  display: inline-block;
  font-size: 0.84rem;
  font-weight: 700;
  color: #7a5a15;
  background: rgba(182,138,45,0.1);
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.info-card h3 {
  font-size: 1.5rem;
  margin: 0;
  line-height: 1.2;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
  align-items: start;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 14px;
  background: linear-gradient(180deg, #ffffff, #faf8f3);
}
.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
}
.gallery-item-large {
  grid-row: span 2;
}
.panel {
  padding: 34px;
  border-radius: var(--radius-lg);
}
.panel-accent {
  background: linear-gradient(135deg, #181818, #30210b 60%, #b68a2d);
  color: #fff;
}
.panel-accent p,
.panel-accent .section-kicker { color: inherit; }
.panel-accent .section-kicker {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.16);
}
.whatsapp-number {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  margin: 16px 0 24px !important;
}
.final-cta {
  padding-top: 10px;
}
.final-cta-box {
  border-radius: 34px;
  padding: 42px 28px;
  text-align: center;
  background: linear-gradient(180deg, #fffefb, #f9f4e8);
}
.site-footer {
  padding: 26px 0 90px;
  border-top: 1px solid var(--border);
  background: #fbfbfa;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.footer-grid h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin: 0 0 10px;
}
.footer-grid p { margin: 4px 0; color: var(--muted); }
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  padding: 14px 18px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 18px 30px rgba(0,0,0,0.2);
}
.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: 1024px) {
  .hero-grid,
  .intro-grid,
  .split-grid,
  .cards-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item-large { grid-row: auto; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    width: var(--container);
    margin: 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .hero,
  .section { padding: 54px 0; }
  .hero-grid,
  .intro-grid,
  .split-grid,
  .cards-grid,
  .gallery-grid,
  .hero-points {
    grid-template-columns: 1fr;
  }
  .hero h1 { line-height: 1; }
  .info-card,
  .panel,
  .final-cta-box { padding: 24px; }
  .site-footer { padding-bottom: 100px; }
  .floating-whatsapp { right: 14px; bottom: 14px; }
}
