﻿:root {
  --bg: #080808;
  --bg-soft: #111111;
  --surface: #151515;
  --surface-2: #1d1d1d;
  --ink: #f8f4ea;
  --muted: #b6ac97;
  --gold: #d9b15f;
  --gold-strong: #f0cb7d;
  --line: rgba(240, 203, 125, 0.2);
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(circle at 8% 14%, rgba(217, 177, 95, 0.16), transparent 34%),
    radial-gradient(circle at 92% 7%, rgba(240, 203, 125, 0.14), transparent 38%),
    linear-gradient(180deg, #090909 0%, #0f0f0f 50%, #0b0b0b 100%);
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: rgba(10, 10, 10, 0.8);
  border-bottom: 1px solid rgba(240, 203, 125, 0.14);
}

.topbar-content {
  position: relative;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  width: auto;
  height: clamp(44px, 6.2vw, 62px);
  max-width: min(50vw, 260px);
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.6));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-copy strong {
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.93rem;
  letter-spacing: 0.05em;
  color: #f7edd5;
}

.brand-copy span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.topnav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.topnav a {
  color: #e9ddc4;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.topnav a:hover {
  color: var(--gold-strong);
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.4rem;
  background: rgba(240, 203, 125, 0.08);
  border-radius: 6px;
  border: 1px solid rgba(240, 203, 125, 0.2);
}

.lang-btn {
  padding: 0.35rem 0.65rem;
  background: transparent;
  border: none;
  color: #caaf78;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.lang-btn:hover {
  background: rgba(240, 203, 125, 0.15);
  color: var(--gold-strong);
}

.lang-btn.active {
  background: var(--gold);
  color: #060606;
}

.hero {
  padding: 2.2rem 0 2.2rem;
}

.hero-video-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-bottom: 0.7rem;
  min-height: clamp(260px, 45vw, 460px);
  background: #0a0a0a;
}

.hero-video {
  width: 100%;
  height: 100%;
  min-height: clamp(260px, 45vw, 460px);
  object-fit: cover;
  display: block;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.68) 82%),
    radial-gradient(circle at 12% 16%, rgba(240, 203, 125, 0.28), transparent 40%);
}

.hero-video-content {
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 1.1rem;
  z-index: 2;
  max-width: 52ch;
}

.hero-video-content h2 {
  margin: 0.4rem 0 0.4rem;
  color: #fff4dc;
}

.hero-video-content p {
  margin: 0;
  color: #dcc89d;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.3rem;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

h1 {
  margin: 0.7rem 0 1rem;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  max-width: 17ch;
  color: #fdf7e9;
}

h2 {
  margin: 0.3rem 0 0.85rem;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
}

.lead {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}

.hero-tags {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-tags span,
.badges span {
  border: 1px solid rgba(240, 203, 125, 0.28);
  background: rgba(217, 177, 95, 0.08);
  color: #f5e5bf;
  border-radius: 999px;
  padding: 0.35rem 0.82rem;
  font-size: 0.82rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.45rem;
}

.badges {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.74rem 1.08rem;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

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

.btn-gold {
  color: #2e1f00;
  background: linear-gradient(135deg, #c89e4f 0%, #f4d490 100%);
  box-shadow: 0 12px 30px rgba(201, 159, 77, 0.35);
}

.btn-dark {
  color: #f7ebce;
  background: linear-gradient(135deg, #222222 0%, #141414 100%);
  border: 1px solid rgba(240, 203, 125, 0.24);
}

.btn-outline {
  color: #1b150b;
  background: linear-gradient(135deg, #d3a958 0%, #e8c983 100%);
}

.hero-card,
.experience-card,
.panel,
.step,
.cta {
  background: linear-gradient(160deg, rgba(28, 28, 28, 0.98), rgba(14, 14, 14, 0.96));
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-card,
.panel,
.cta,
.step {
  padding: 1.25rem;
}

.hero-card-intro {
  margin: 0;
  color: var(--muted);
}

.hero-card ul {
  margin: 0.95rem 0 0;
  padding-left: 1rem;
}

.hero-card li {
  margin-bottom: 0.4rem;
  color: #e5dbc6;
}

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

.hero-stats div {
  border-radius: 14px;
  padding: 0.75rem 0.55rem;
  background: rgba(217, 177, 95, 0.08);
  border: 1px solid rgba(240, 203, 125, 0.22);
  text-align: center;
}

.hero-stats strong {
  display: block;
  font-size: 1.18rem;
  color: var(--gold-strong);
}

.hero-stats span {
  font-size: 0.77rem;
  color: #ceb88d;
}

.strip {
  margin: 0.6rem 0 2.2rem;
}

.strip-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.strip-content p {
  margin: 0;
  text-align: center;
  border: 1px solid rgba(240, 203, 125, 0.2);
  border-radius: 999px;
  background: rgba(217, 177, 95, 0.08);
  color: #efdfbf;
  padding: 0.48rem 0.8rem;
  font-weight: 600;
  font-size: 0.88rem;
}

.promo {
  margin-bottom: 2.8rem;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 0.85rem;
}

.promo-main,
.promo-pricing {
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.promo-main {
  background: linear-gradient(160deg, rgba(20, 20, 20, 0.98), rgba(10, 10, 10, 0.98));
}

.promo-main h2 {
  margin-top: 0.55rem;
}

.promo-main p {
  margin: 0;
  color: var(--muted);
}

.promo-pricing {
  background: linear-gradient(155deg, rgba(42, 30, 8, 0.98), rgba(20, 14, 5, 0.98));
}

.promo-pricing h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #fdecc7;
}

.price-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.price-card {
  border-radius: 16px;
  border: 1px solid rgba(240, 203, 125, 0.3);
  background: rgba(11, 11, 11, 0.42);
  padding: 0.9rem;
}

.plan-time {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: #f6d08e;
  font-weight: 700;
}

.plan-price {
  margin: 0.2rem 0 0.3rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff2d2;
}

.price-card p:last-child {
  margin: 0;
  color: #dac49a;
  font-size: 0.88rem;
}

.price-note {
  margin: 0.8rem 0 0;
  color: #e1c992;
  font-size: 0.86rem;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  margin-top: 0.55rem;
}

.experiences {
  margin-bottom: 2.7rem;
}

.experience-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.experience-card {
  padding: 1.2rem;
}

.experience-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
  color: #faeecf;
}

.experience-card p {
  margin: 0;
  color: var(--muted);
}

.experience-card a {
  display: inline-flex;
  margin-top: 0.95rem;
  color: var(--gold-strong);
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 203, 125, 0.45);
  font-weight: 600;
}

.includes,
.business {
  padding: 0.45rem 0 2.9rem;
}

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

.panel-gold {
  background: linear-gradient(155deg, rgba(42, 30, 8, 0.98), rgba(26, 20, 8, 0.97));
}

.panel p {
  margin-bottom: 0;
  color: #dbcba8;
}

.list-clean {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-clean li {
  padding: 0.46rem 0;
  border-bottom: 1px solid rgba(240, 203, 125, 0.12);
  color: #eadfc7;
}

.list-clean li:last-child {
  border-bottom: 0;
}

.process {
  margin-bottom: 2.9rem;
}

.quote {
  margin-bottom: 2.9rem;
}

.quote-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.85rem;
}

.quote-form {
  display: grid;
  gap: 0.78rem;
}

.field-row {
  display: grid;
  gap: 0.3rem;
}

.field-row label {
  font-size: 0.85rem;
  color: #f0dfb7;
  font-weight: 600;
}

.field-row input,
.field-row select,
.field-row textarea {
  width: 100%;
  border: 1px solid rgba(240, 203, 125, 0.25);
  border-radius: 10px;
  padding: 0.62rem 0.7rem;
  background: rgba(9, 9, 9, 0.78);
  color: #f8f1e0;
  font: inherit;
}

.field-row input:focus,
.field-row select:focus,
.field-row textarea:focus {
  outline: 2px solid rgba(240, 203, 125, 0.42);
  border-color: rgba(240, 203, 125, 0.48);
}

.field-row.two-cols {
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.quote-submit {
  width: max-content;
}

.quote-help {
  margin: 0;
  color: #c9b183;
  font-size: 0.86rem;
}

.quote-side h3 {
  margin-top: 0;
}

.testimonials,
.faq {
  margin-bottom: 2.9rem;
}

.testimonial-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.testimonial-card p {
  margin: 0;
}

.testimonial-score {
  color: #f0cb7d;
  font-weight: 700;
  margin-bottom: 0.55rem !important;
}

.testimonial-author {
  margin-top: 0.8rem !important;
  color: #c8ad74;
  font-size: 0.88rem;
}

.faq-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.policy-list li {
  color: #e9dcc0;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-list details {
  border: 1px solid rgba(240, 203, 125, 0.2);
  border-radius: 12px;
  padding: 0.65rem 0.78rem;
  background: rgba(8, 8, 8, 0.35);
}

.faq-list summary {
  cursor: pointer;
  color: #f2e3c2;
  font-weight: 700;
}

.faq-list p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.occasions {
  margin-bottom: 2.9rem;
}

.occasion-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.occasion-grid h3 {
  margin-top: 0;
}

.process-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.step span {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.14rem 0.58rem;
  font-weight: 800;
  font-size: 0.74rem;
  color: #2b1b00;
  background: linear-gradient(135deg, #d6ad5d, #f1cd80);
}

.step h3 {
  margin: 0.8rem 0 0.52rem;
  font-size: 1rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}



.cta {
  text-align: center;
  margin-bottom: 3.1rem;
}

.cta p {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
  margin-inline: auto;
}

.cta .hero-actions {
  justify-content: center;
}

.footer {
  background: linear-gradient(160deg, #100f0d 0%, #060606 100%);
  border-top: 1px solid rgba(240, 203, 125, 0.16);
  color: #f2e8d2;
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.brand {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  color: #f7edd5;
}

.footer-tagline {
  margin: 0;
  color: #caaf78;
  font-size: 0.9rem;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.3rem;
}

.footer-contact a {
  color: #f1deb3;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--gold-strong);
}

.footer-separator {
  color: rgba(240, 203, 125, 0.3);
}

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

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

.floating-social {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.52);
}

.floating-btn svg {
  width: 27px;
  height: 27px;
  fill: #ffffff;
}

.floating-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.floating-whatsapp {
  background: linear-gradient(135deg, #20c659 0%, #0f9d4b 100%);
}

@media (max-width: 1040px) {
  .topnav {
    display: none;
  }

  .lang-selector {
    position: absolute;
    right: 4.5rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .lang-btn {
    padding: 0.3rem 0.5rem;
    font-size: 0.75rem;
  }

  .brand-copy {
    display: none;
  }

  .hero-grid,
  .promo,
  .price-grid,
  .includes-grid,
  .experience-grid,
  .quote-grid,
  .testimonial-grid,
  .faq-grid,
  .process-grid,
  .business-grid,
  .occasion-grid,
  .strip-content {
    grid-template-columns: 1fr;
  }

  .field-row.two-cols {
    grid-template-columns: 1fr;
  }

  .quote-submit {
    width: 100%;
  }

  .hero {
    padding-top: 1.2rem;
  }

  .hero-video-content {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.85rem;
  }

  .topbar-content {
    min-height: 80px;
  }

  .brand-logo {
    height: clamp(40px, 11vw, 52px);
    max-width: 60vw;
  }

  .topbar-content .btn {
    padding: 0.64rem 0.88rem;
    font-size: 0.89rem;
  }

  .footer-contact {
    flex-direction: column;
    gap: 0.4rem;
  }

  .footer-separator {
    display: none;
  }

  .floating-social {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
  }
}
