:root {
  --plum: #4b1230;
  --plum-dark: #220917;
  --rose: #a93f70;
  --orchid: #f8d7e8;
  --gold: #d8ad5f;
  --cream: #fff8ef;
  --paper: #ffffff;
  --ink: #211820;
  --muted: #6e6068;
  --line: rgba(75, 18, 48, 0.16);
  --shadow: 0 26px 70px rgba(75, 18, 48, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(248, 215, 232, 0.55), transparent 34%),
    linear-gradient(315deg, rgba(216, 173, 95, 0.22), transparent 32%);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  background: rgba(34, 9, 23, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  background: #f5eadf;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-family: "Playfair Display", serif;
  font-size: 1.08rem;
}

.brand small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: clamp(16px, 2.2vw, 30px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav a:hover {
  color: #fff;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--plum));
  box-shadow: 0 18px 42px rgba(169, 63, 112, 0.28);
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-ghost.dark {
  color: var(--plum);
  background: #fff;
  border-color: var(--line);
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(24px, 5vw, 60px);
  align-items: end;
  min-height: 100vh;
  padding: 142px clamp(18px, 4vw, 56px) 54px;
  overflow: hidden;
  color: #fff;
  background: var(--plum-dark);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(34, 9, 23, 0.92) 0%, rgba(34, 9, 23, 0.66) 42%, rgba(34, 9, 23, 0.22) 100%),
    linear-gradient(0deg, rgba(34, 9, 23, 0.88), transparent 40%);
}

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

.hero-content,
.hero-card {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1,
.lead-capture h2,
.section-heading h2,
.showcase h2,
.faq-intro h2,
.location-card h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 7vw, 7.5rem);
  line-height: 0.92;
  text-wrap: balance;
}

.lead {
  max-width: 740px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.06rem, 1.45vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof span {
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.hero-proof strong {
  color: #fff;
  font-size: 1.2rem;
}

.hero-card {
  padding: 28px;
  background: rgba(255, 248, 239, 0.94);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
}

.hero-card span {
  display: block;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-top: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.9rem;
  line-height: 1.08;
}

.hero-card a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--plum);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lead-capture {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 26px;
  align-items: center;
  margin: -34px clamp(18px, 4vw, 56px) 0;
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  z-index: 5;
  background: #fff;
  border: 1px solid rgba(75, 18, 48, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead-capture h2 {
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  line-height: 1.04;
}

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

label span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  color: var(--ink);
  background: #fffaf4;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 0.96rem;
  outline: none;
}

input:focus,
select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(169, 63, 112, 0.14);
}

.section,
.showcase,
.faq-section,
.location {
  padding: clamp(76px, 8vw, 118px) clamp(18px, 4vw, 56px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.54fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.showcase h2,
.faq-intro h2,
.location-card h2 {
  font-size: clamp(2.15rem, 4.7vw, 4.6rem);
  line-height: 0.98;
}

.section-heading p:last-child,
.showcase-copy p,
.faq-list p,
.location-card p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

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

.event-grid article {
  min-height: 280px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(75, 18, 48, 0.08);
}

.event-grid h3 {
  margin: 0 0 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
}

.event-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.event-grid a {
  display: inline-flex;
  margin-top: 24px;
  color: var(--rose);
  font-weight: 900;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  background: var(--plum-dark);
  color: #fff;
}

.showcase-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  font-weight: 800;
}

.image-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.78fr;
  gap: 14px;
  align-items: end;
}

.image-mosaic img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.mosaic-large {
  aspect-ratio: 4 / 5;
}

.image-mosaic img:not(.mosaic-large) {
  aspect-ratio: 1 / 1.14;
  margin-bottom: 34px;
}

.value-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--plum);
  color: #fff;
}

.value-band div {
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.06);
}

.value-band span {
  display: block;
  color: var(--orchid);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.value-band strong {
  display: block;
  margin-top: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
}

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

blockquote {
  margin: 0;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(75, 18, 48, 0.08);
}

blockquote p {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.28;
}

cite {
  display: block;
  margin-top: 22px;
  color: var(--rose);
  font-style: normal;
  font-weight: 900;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1.05fr);
  gap: clamp(28px, 6vw, 76px);
  background: #fff;
}

.faq-intro .btn {
  margin-top: 26px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  color: var(--plum);
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 14px 0 0;
}

.location {
  background:
    linear-gradient(90deg, rgba(34, 9, 23, 0.88), rgba(34, 9, 23, 0.26)),
    url("https://assets.zyrosite.com/cdn-cgi/image/format=auto,w=1400,h=860,fit=crop/Yg2LlDaNXefvPDnV/img_2147-AQE8JRegkLuv8693.jpeg") center / cover;
}

.location-card {
  width: min(100%, 760px);
  padding: clamp(28px, 5vw, 52px);
  color: #fff;
  background: rgba(34, 9, 23, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.location-card p {
  color: rgba(255, 255, 255, 0.78);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--plum-dark);
}

.footer strong,
.footer a {
  color: #fff;
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: #fff;
  background: #16a34a;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.32);
  font-weight: 900;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .nav {
    display: none;
  }

  .hero,
  .lead-capture,
  .section-heading,
  .showcase,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .quote-form,
  .event-grid,
  .value-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    padding: 13px 16px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 112px 18px 44px;
    width: 100%;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(34, 9, 23, 0.95), rgba(34, 9, 23, 0.72)),
      linear-gradient(0deg, rgba(34, 9, 23, 0.9), transparent 44%);
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13.5vw, 4rem);
    line-height: 0.96;
  }

  .lead-capture {
    margin: 0;
    border-radius: 0;
  }

  .quote-form,
  .event-grid,
  .value-band,
  .testimonial-grid,
  .image-mosaic {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .location-actions,
  .footer {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .image-mosaic img:not(.mosaic-large) {
    margin-bottom: 0;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-height: 50px;
  }
}
