﻿:root {
  --bg: #fff8ef;
  --bg-soft: #f2e2d1;
  --chocolate-950: #170d0a;
  --chocolate-900: #21140f;
  --chocolate-700: #3a2118;
  --pistachio: #708950;
  --gold: #c9972f;
  --accent: #d65a3a;
  --text: #2d201a;
  --muted: #6d5f56;
  --white: #ffffff;
  --shadow: 0 22px 50px rgba(33, 20, 15, 0.18);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, #ffefcf 0%, rgba(255, 239, 207, 0) 35%),
    radial-gradient(circle at 88% 12%, #f7e6c6 0%, rgba(247, 230, 198, 0) 30%),
    var(--bg);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, var(--bg-soft), #fbf3e8);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
  color: var(--chocolate-900);
}

h1,
h2 {
  font-family: "DM Serif Display", serif;
  letter-spacing: 0.2px;
}

h1 {
  font-size: clamp(2.2rem, 5.4vw, 3.9rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.8rem;
}

p {
  margin: 0;
}

.section-intro {
  color: var(--muted);
  margin-bottom: 1.8rem;
  max-width: 700px;
}

.top-nav {
  padding: 1.2rem 0 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 5;
}

.brand {
  font-weight: 800;
  color: #ffedd6;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 1rem;
  font-weight: 700;
  color: #f2decb;
}

.nav-links a {
  opacity: 0.88;
}

.nav-links a:hover {
  opacity: 1;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-content: start;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 25%, rgba(201, 151, 47, 0.25), rgba(201, 151, 47, 0) 34%),
    radial-gradient(circle at 20% 85%, rgba(112, 137, 80, 0.2), rgba(112, 137, 80, 0) 30%),
    linear-gradient(130deg, #1b110d 5%, #341d14 42%, #4b2618 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  width: 420px;
  height: 420px;
  right: -130px;
  top: -120px;
  background: radial-gradient(circle, rgba(214, 90, 58, 0.35), rgba(214, 90, 58, 0));
}

.hero::after {
  width: 420px;
  height: 420px;
  left: -140px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(201, 151, 47, 0.28), rgba(201, 151, 47, 0));
}

.hero-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  padding-top: 2rem;
  position: relative;
  z-index: 3;
}

.hero-copy {
  color: #f9ebdb;
}

.eyebrow {
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 800;
  color: #f2c76f;
  margin-bottom: 1rem;
}

.hero-copy h1 {
  color: #fff1de;
}

.lead {
  color: #ecd7c3;
  font-size: 1.05rem;
  margin-top: 1rem;
  max-width: 620px;
}

.hero-cta {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #e1b04c);
  color: #23160e;
  box-shadow: 0 12px 24px rgba(201, 151, 47, 0.38);
}

.btn-dark {
  background: linear-gradient(135deg, var(--accent), #c24b2f);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(214, 90, 58, 0.3);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.3rem;
}

.hero-badges span,
.proof-tags span {
  background: rgba(255, 232, 205, 0.11);
  border: 1px solid rgba(255, 232, 205, 0.2);
  color: #f8e6d2;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(3px);
}

.hero-stats {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-stats div {
  background: rgba(255, 246, 234, 0.09);
  border: 1px solid rgba(255, 232, 205, 0.18);
  border-radius: 12px;
  padding: 0.65rem 0.7rem;
}

.hero-stats strong {
  display: block;
  color: #fff0db;
  font-size: 0.9rem;
  line-height: 1.2;
}

.hero-stats small {
  display: block;
  color: #ddc5af;
  font-size: 0.78rem;
}

.hero-visual {
  position: relative;
  background: linear-gradient(145deg, rgba(242, 223, 202, 0.15), rgba(255, 246, 232, 0.08));
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 1rem;
  border: 1px solid rgba(255, 236, 212, 0.22);
  transform-style: preserve-3d;
  transition: transform 0.26s ease;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-visual > picture > img {
  border-radius: 22px;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  width: 100%;
}

.hero-float {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(255, 240, 222, 0.75);
  box-shadow: 0 18px 30px rgba(23, 13, 10, 0.35);
}

.hero-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.float-one {
  width: 160px;
  height: 110px;
  top: -24px;
  left: -28px;
  transform: rotate(-6deg);
  animation: floaty 5s ease-in-out infinite;
}

.float-two {
  width: 170px;
  height: 120px;
  right: -18px;
  bottom: -30px;
  transform: rotate(6deg);
  animation: floaty 6s ease-in-out infinite 0.8s;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-7px) rotate(-2deg);
  }
}

.cards {
  display: grid;
  gap: 1.1rem;
}

.cards.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.card,
.quote,
.social-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(124, 74, 55, 0.14);
  box-shadow: 0 9px 18px rgba(42, 24, 15, 0.08);
}

.card {
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 25px rgba(42, 24, 15, 0.13);
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card-body {
  padding: 1rem;
}

.card-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--pistachio);
  letter-spacing: 0.09em;
}

.card h3 {
  margin: 0.25rem 0 0.6rem;
  font-size: 1.8rem;
}

.card ul {
  margin: 0 0 0.9rem;
  padding-left: 1rem;
  color: var(--muted);
}

.premium {
  border-color: rgba(201, 151, 47, 0.66);
  box-shadow: 0 12px 24px rgba(201, 151, 47, 0.19);
}

.text-link {
  font-weight: 800;
  color: var(--accent);
}

.text-link:hover {
  opacity: 0.78;
}

.buzz-strip {
  margin: 1.5rem 0 1rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: nowrap;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.buzz-strip span {
  white-space: nowrap;
  background: #2b1a13;
  color: #f7e2cb;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  animation: ticker 18s linear infinite;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-130%);
  }
}

.photo-wall {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.9rem;
}

.photo-card {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(90, 57, 42, 0.2);
  box-shadow: 0 10px 22px rgba(40, 24, 16, 0.12);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.photo-card:hover img {
  transform: scale(1.06);
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 10, 7, 0) 35%, rgba(20, 10, 7, 0.65) 100%);
}

.photo-card figcaption {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.7rem;
  z-index: 2;
  color: #ffeed9;
  font-size: 0.84rem;
  font-weight: 700;
}

.photo-card {
  grid-column: span 4;
  min-height: 260px;
}

.photo-card.wide {
  grid-column: span 8;
  min-height: 300px;
}

.photo-card.tall {
  grid-row: span 2;
  min-height: 620px;
}

.quote {
  padding: 1rem;
}

.quote p {
  margin-bottom: 0.6rem;
}

.quote span {
  color: var(--muted);
  font-size: 0.92rem;
}

.proof-tags {
  margin-top: 1rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

#proof .proof-tags span {
  color: #fff2de;
  background: rgba(43, 26, 19, 0.88);
  border-color: rgba(43, 26, 19, 0.88);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.social-card {
  padding: 1.2rem;
  transition: transform 0.22s ease;
}

.social-card:hover {
  transform: translateY(-2px);
}

.social-card p {
  font-weight: 700;
  color: var(--accent);
}

.social-card small {
  color: var(--muted);
}

.location-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.info-list {
  margin: 0 0 1.2rem;
  padding-left: 1rem;
}

.info-list a {
  color: var(--chocolate-700);
  font-weight: 700;
}

.map-wrap {
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(58, 35, 23, 0.13);
  box-shadow: 0 10px 18px rgba(33, 20, 15, 0.1);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.story {
  max-width: 850px;
  display: grid;
  gap: 0.7rem;
}

.footer {
  background: #1e120e;
  color: #f8efe2;
  padding: 3rem 0 1rem;
}

.footer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.1fr 0.8fr 1fr;
}

.footer h3 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
  color: #fff;
  font-family: "Manrope", sans-serif;
}

.footer p,
.footer li,
.footer a {
  color: rgba(245, 235, 223, 0.88);
  font-size: 0.92rem;
}

.footer ul {
  margin: 0;
  padding-left: 1rem;
}

.copyright {
  width: min(1120px, 92%);
  margin: 1rem auto 0;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(245, 235, 223, 0.2);
  color: rgba(245, 235, 223, 0.78);
  font-size: 0.88rem;
}

.sticky-whatsapp {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 999;
  background: #25d366;
  color: #fff;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
}

.sticky-whatsapp:hover {
  transform: translateY(-1px);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .btn,
  .social-card,
  .sticky-whatsapp,
  .card,
  .photo-card img,
  .hero-visual,
  .buzz-strip span,
  .hero-float {
    transition: none;
    animation: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .location-grid,
  .footer-grid,
  .cards.two,
  .cards.three,
  .social-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .photo-wall {
    grid-template-columns: 1fr;
  }

  .photo-card,
  .photo-card.wide,
  .photo-card.tall {
    grid-column: auto;
    min-height: 240px;
    grid-row: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .nav-links {
    display: none;
  }

  .float-one,
  .float-two {
    display: none;
  }

  .hero-copy,
  .brand,
  .nav-links {
    color: #fff0dc;
  }
}