:root {
  --black: #111111;
  --ink: #27231c;
  --muted: #716b61;
  --gold: #c8a24e;
  --gold-dark: #9a7130;
  --cream: #fbf7ee;
  --soft: #fffdf8;
  --white: #ffffff;
  --line: #eadfcd;
  --shadow: 0 24px 70px rgba(40, 30, 14, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
}

img,
video {
  max-width: 100%;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 6vw;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  display: block;
  width: 140px;
  height: auto;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover {
  color: var(--black);
}

.button,
.top-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
}

.button.primary,
.top-cta {
  color: var(--white);
  background: var(--black);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.16);
}

.button.secondary {
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line);
}

.button.light {
  color: var(--black);
  background: var(--gold);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1fr);
  gap: 54px;
  align-items: center;
  padding: 74px 6vw 82px;
  background:
    radial-gradient(circle at 80% 16%, rgba(200, 162, 78, 0.26), transparent 32%),
    linear-gradient(135deg, #fffdf8 0%, #f1e7d2 100%);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  color: var(--black);
  font-size: clamp(42px, 6.8vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 16px;
  color: var(--black);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 10px;
  color: var(--black);
  font-size: 24px;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.hero p {
  max-width: 720px;
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 22px;
}

.quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-info span {
  padding: 10px 14px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border: 10px solid var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.section {
  padding: 78px 6vw;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.cards article,
.list-card,
.other-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(40, 30, 14, 0.08);
}

.cards article {
  min-height: 172px;
  padding: 24px;
}

.cards strong,
.cards span {
  display: block;
}

.cards strong {
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
}

.cards span {
  color: var(--black);
  font-weight: 900;
  line-height: 1.35;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1fr);
  gap: 42px;
  align-items: center;
  background: var(--white);
  border-block: 1px solid var(--line);
}

.list-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 20px;
}

.list-card span {
  display: block;
  padding: 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-weight: 800;
}

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

.gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(40, 30, 14, 0.1);
}

.video-frame {
  padding: 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.video-frame video {
  display: block;
  width: 100%;
  max-height: 620px;
  background: var(--black);
  border-radius: 16px;
}

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

.other-card {
  display: block;
  padding: 22px;
}

.other-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.other-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.other-card span {
  color: var(--muted);
  line-height: 1.45;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 78px 6vw;
  padding: 54px;
  color: var(--white);
  background: var(--black);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.cta-section h2,
.cta-section p {
  color: var(--white);
}

.cta-section p {
  max-width: 780px;
  opacity: 0.82;
}

.footer {
  display: grid;
  gap: 16px;
  padding: 40px 6vw 82px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-brand img {
  width: 110px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

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

.contact-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 16px;
}

.contact-line::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--white);
  background: var(--gold-dark);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.contact-line.whatsapp::before {
  content: "W";
  background: #18a957;
}

.contact-line.instagram::before {
  content: "IG";
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
  font-size: 10px;
}

.footer small {
  max-width: 920px;
  color: var(--muted);
  line-height: 1.55;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  color: var(--white);
  background: #18a957;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(10, 96, 49, 0.32);
}

@media (max-width: 980px) {
  .topbar {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    overflow-x: auto;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

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

  .cta-section {
    display: block;
  }

  .cta-section .button {
    margin-top: 20px;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 126px;
  }

  .hero,
  .section {
    padding-inline: 20px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .cards,
  .list-card,
  .gallery,
  .other-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    margin: 54px 20px;
    padding: 32px 24px;
  }

  .floating-whatsapp {
    left: 18px;
  }
}
