:root {
  --black: #0c0b09;
  --ink: #171512;
  --muted: #6f6a61;
  --line: #e9e3d9;
  --soft: #f7f3ed;
  --gold: #e49300;
  --gold-dark: #b06f00;
  --champagne: #f0c76a;
  --white: #fff;
  --shadow: 0 24px 60px rgba(18, 15, 10, .12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 64px);
  color: var(--white);
  background: rgba(8, 7, 6, .86);
  border-bottom: 1px solid rgba(228, 147, 0, .28);
  backdrop-filter: blur(10px);
  transition: background .25s ease, box-shadow .25s ease, min-height .25s ease, border-color .25s ease;
}
.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(8, 7, 6, .96);
  border-bottom-color: rgba(228, 147, 0, .38);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
  backdrop-filter: blur(12px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 180px; }
.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}
.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.brand small {
  display: block;
  margin-top: 1px;
  color: rgba(255, 255, 255, .72);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.main-nav { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 30px); }
.main-nav a {
  color: rgba(255, 255, 255, .9);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.main-nav a:hover { color: var(--gold); }
.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  cursor: pointer;
}
.main-nav .nav-cta, .btn-gold {
  color: #160f05;
  border-color: var(--champagne);
  background: var(--gold);
  box-shadow: 0 10px 22px rgba(228, 147, 0, .16);
}
.btn-ghost {
  color: var(--white);
  border-color: rgba(228, 147, 0, .72);
  background: rgba(8, 7, 6, .68);
}
.btn:hover, .nav-cta:hover { transform: translateY(-1px); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(0,0,0,.16);
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero picture, .hero img, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero img { object-fit: cover; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .45) 42%, rgba(0, 0, 0, .2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .22), rgba(0, 0, 0, .22));
}
.hero-content { position: relative; padding-top: 74px; max-width: 1180px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--gold-dark); }
h1, h2, h3 { margin: 0; line-height: .98; font-family: var(--serif); font-weight: 700; }
h1 { max-width: 660px; font-size: clamp(48px, 7vw, 92px); }
h2 { font-size: clamp(34px, 4vw, 52px); }
h3 { font-size: 28px; }
.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: rgba(255, 255, 255, .88);
  font-weight: 700;
  line-height: 1.45;
}
.trust span { color: #ffc64b; letter-spacing: .15em; }

.benefits {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.benefit-card {
  min-height: 188px;
  display: grid;
  place-items: center;
  padding: 34px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.benefit-card:last-child { border-right: 0; }
.icon-line { color: var(--gold-dark); font-size: 38px; line-height: 1; }
.benefit-card h3 {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: 21px;
}
.benefit-card p { max-width: 210px; margin: 10px auto 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.section { padding: clamp(64px, 8vw, 104px) 0; }
.split { display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: center; }
.section-intro p:not(.eyebrow) { color: var(--muted); line-height: 1.7; margin: 22px 0 30px; }
.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.event-card {
  position: relative;
  min-height: 180px;
  display: grid;
  align-content: end;
  justify-items: center;
  padding: 22px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}
.event-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .4s ease;
}
.event-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.7));
}
.event-card:hover img { transform: scale(1.06); }
.event-card h3 { font-size: 25px; text-align: center; text-shadow: 0 2px 18px rgba(0,0,0,.45); }
.mini-btn {
  margin-top: 12px;
  padding: 9px 18px;
  color: var(--gold-dark);
  background: var(--white);
  border: 0;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.process-section, .testimonials-section, .faq-section { background: linear-gradient(180deg, #fff, var(--soft)); }
.center-title { text-align: center; max-width: 720px; margin: 0 auto 42px; }
.center-title h2 { margin-bottom: 12px; }
.process-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.process-item {
  position: relative;
  text-align: center;
  padding: 0 8px;
}
.process-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  color: var(--gold-dark);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  font-size: 26px;
}
.process-number {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-bottom: 10px;
  border-radius: 50%;
  color: var(--white);
  background: var(--gold);
  font-size: 12px;
  font-weight: 800;
}
.process-item h3 { font-family: var(--sans); font-size: 15px; line-height: 1.25; }
.process-item p { color: var(--muted); font-size: 13px; line-height: 1.5; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.link-button {
  padding: 12px 18px;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial-card {
  padding: 26px;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(18,15,10,.06);
}
.stars { color: var(--gold); letter-spacing: .08em; }
.testimonial-card blockquote { margin: 14px 0; color: var(--ink); line-height: 1.6; }
.person { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.person strong { display: block; font-size: 14px; }
.person span { color: var(--muted); font-size: 12px; }

.quote-band {
  padding: clamp(64px, 8vw, 108px) 0;
  background: linear-gradient(110deg, #fff 0%, #fbf7ef 55%, #f3eadc 100%);
}
.quote-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: start; }
.quote-card, .digital-card {
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.quote-card > p { color: var(--muted); line-height: 1.65; }
.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.quote-form label {
  display: grid;
  gap: 7px;
  color: #3b352c;
  font-size: 13px;
  font-weight: 700;
}
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  border: 1px solid #ddd3c5;
  background: var(--white);
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  outline: none;
}
.quote-form textarea, .quote-form label:nth-of-type(7), .quote-form label:nth-of-type(8), .form-submit, .form-status, .privacy-note { grid-column: 1 / -1; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198,154,73,.14); }
.quote-form .is-invalid { border-color: #b3261e; }
.form-submit { width: 100%; border: 0; }
.form-status { min-height: 20px; margin: 0; font-size: 14px; font-weight: 700; }
.form-status.success { color: #177245; }
.form-status.error { color: #b3261e; }
.privacy-note { margin: -4px 0 0; color: var(--muted); font-size: 12px; text-align: center; }
.privacy-note a { text-decoration: underline; }
.confidence h2 { margin-bottom: 28px; }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.metric {
  padding: 22px 12px;
  text-align: center;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.58);
}
.metric strong {
  display: block;
  color: var(--gold-dark);
  font-size: 28px;
}
.metric span { color: var(--muted); font-size: 12px; font-weight: 700; }
.digital-card {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 24px;
  align-items: center;
}
.digital-card p { color: var(--muted); line-height: 1.6; }
.check-list { display: grid; gap: 10px; padding: 0; margin: 18px 0 0; list-style: none; }
.check-list li { display: flex; gap: 9px; color: #3b352c; font-size: 14px; }
.check-list li::before { content: "✓"; color: var(--gold-dark); font-weight: 900; }
.phone-preview {
  width: 132px;
  min-height: 230px;
  padding: 28px 14px 14px;
  border: 8px solid var(--black);
  border-radius: 28px;
  background: #faf8f4;
}
.phone-preview span {
  display: block;
  height: 22px;
  margin-bottom: 12px;
  border-radius: 5px;
  background: linear-gradient(90deg, #efe4d3, #fff);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}
.faq-item {
  border: 1px solid var(--line);
  background: var(--white);
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 800;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--gold-dark); font-size: 22px; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0; padding: 0 18px 18px; color: var(--muted); line-height: 1.6; }

.site-footer {
  color: rgba(255,255,255,.82);
  background: #0b0a08;
  padding: 58px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .8fr .95fr 1fr 1.05fr;
  gap: 34px;
}
.footer-brand { color: var(--white); }
.footer-brand .brand-logo {
  width: 70px;
  height: 70px;
}
.site-footer h3 { font-family: var(--sans); font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
.site-footer p, .site-footer li { color: rgba(255,255,255,.66); font-size: 14px; line-height: 1.7; }
.site-footer ul { padding: 0; margin: 16px 0 0; list-style: none; }
.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-links a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.2);
}
.footer-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.footer-gallery img { aspect-ratio: 1; object-fit: cover; }
.map-card {
  min-height: 130px;
  display: grid;
  place-content: center;
  padding: 18px;
  color: var(--black);
  background: linear-gradient(135deg, #f5efe6, #fff);
  font-weight: 800;
}
.map-card small { color: var(--muted); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding: 18px clamp(18px, 4vw, 64px);
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.55);
  font-size: 12px;
}
.floating-whatsapp, .floating-quote {
  position: fixed;
  z-index: 45;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 14px 36px rgba(0,0,0,.22);
}
.floating-whatsapp { bottom: 18px; background: #1fae5b; }
.floating-quote { bottom: 76px; background: var(--gold-dark); }

@media (max-width: 1020px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 72px max(16px, env(safe-area-inset-right)) auto max(16px, env(safe-area-inset-left));
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(12, 11, 9, .98);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 10px 8px; }
  .split, .quote-layout { grid-template-columns: 1fr; }
  .event-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid, .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-card:nth-child(2) { border-right: 0; }
  .process-list { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid, .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    padding: 11px max(16px, env(safe-area-inset-right)) 11px max(16px, env(safe-area-inset-left));
  }
  .brand { min-width: auto; }
  .brand-logo { width: 46px; height: 46px; }
  .brand-mark { width: 42px; height: 42px; font-size: 30px; }
  .brand strong { font-size: 18px; }
  .brand small { display: none; }
  .hero { min-height: 620px; }
  .hero-content { padding-top: 86px; }
  h1 { font-size: clamp(40px, 13vw, 56px); line-height: 1; }
  h2 { font-size: clamp(30px, 10vw, 42px); line-height: 1.04; }
  .hero-copy { margin-top: 18px; font-size: 15px; line-height: 1.58; }
  .hero-actions { gap: 12px; margin-top: 26px; }
  .trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    margin-top: 20px;
    font-size: 13px;
  }
  .hero-overlay { background: linear-gradient(180deg, rgba(0,0,0,.76), rgba(0,0,0,.52)); }
  .hero-actions .btn { width: 100%; }
  .benefits-grid, .event-grid, .process-list, .gallery-grid, .metrics-grid, .footer-grid { grid-template-columns: 1fr; }
  .benefit-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .event-card { min-height: 210px; }
  .quote-form { grid-template-columns: 1fr; }
  .digital-card { grid-template-columns: 1fr; }
  .phone-preview { display: none; }
  .section-head, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .floating-quote { display: none; }
  .floating-whatsapp {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  .main-nav { top: 68px; }
  .brand strong { font-size: 16px; }
  h1 { font-size: clamp(36px, 12vw, 48px); }
  .nav-cta, .btn { min-height: 44px; padding-inline: 16px; }
}
