:root {
  --purple-950: #260031;
  --purple-900: #3d004e;
  --purple-800: #52006d;
  --purple-700: #6d008f;
  --purple-100: #fff3ff;
  --gold-600: #c78927;
  --gold-500: #e4b553;
  --gold-300: #f6dc91;
  --ink: #24102e;
  --muted: #6d5875;
  --paper: #fff8fb;
  --line: rgba(78, 0, 93, 0.16);
  --shadow: 0 18px 50px rgba(43, 0, 61, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(246, 220, 145, 0.24), transparent 34rem),
    linear-gradient(180deg, #fff8fb 0%, #fff 45%, #fff8fb 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 86px;
  padding: 12px clamp(16px, 4vw, 58px);
  color: #fff;
  background: linear-gradient(90deg, var(--purple-950), var(--purple-800));
  box-shadow: 0 10px 30px rgba(38, 0, 49, 0.2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}


.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 2px solid var(--gold-300);
  border-radius: 50%;
  color: var(--gold-300);
  font: 800 36px/1 Cinzel, serif;
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.16);
}

.brand strong,
.brand em {
  display: block;
  line-height: 0.95;
}

.brand strong {
  font: 800 34px/0.9 Playfair Display, serif;
}

.brand em {
  font: 700 22px/1.1 Playfair Display, serif;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--gold-300);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 32px);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}



.header-call {
  display: grid;
  grid-template-columns: 42px auto;
  column-gap: 10px;
  align-items: center;
  min-width: 204px;
}

.header-call span {
  display: grid;
  grid-row: span 2;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 24px;
}

.header-call strong,
.header-call small {
  display: block;
}

.header-call strong {
  font-size: 18px;
}

.header-call small {
  color: #fff6d8;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(34px, 5vw, 70px) clamp(18px, 4vw, 72px);
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(255, 248, 251, 0.98) 0 52%, rgba(255, 255, 255, 0.72) 52%),
    radial-gradient(circle at 78% 22%, rgba(228, 181, 83, 0.34), transparent 28rem);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.contact-section h2 {
  margin: 0;
  color: var(--purple-950);
  font-family: Playfair Display, Georgia, serif;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  color: var(--purple-700);
}

.tagline {
  margin: 20px 0 26px;
  color: #3b203f;
  font: italic 700 clamp(19px, 2.4vw, 27px)/1.35 Playfair Display, serif;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-bottom: 28px;
}

.trust-row span {
  min-height: 54px;
  padding: 13px 12px;
  border-left: 1px solid var(--line);
  color: var(--purple-950);
  font-size: 14px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 26px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  font: 900 15px/1 Inter, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(62, 0, 82, 0.22);
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-800), var(--purple-950));
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), #b37018);
}

.hero-stage {
  position: relative;
  min-height: 390px;
  border-left: 9px solid var(--gold-500);
  border-radius: 110px 0 0 110px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-stage img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.badge {
  position: absolute;
  bottom: 28px;
  left: -26px;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  padding: 18px;
  border: 6px solid var(--gold-500);
  border-radius: 50%;
  color: #fff;
  text-align: center;
  background: radial-gradient(circle, var(--purple-700), var(--purple-950));
  box-shadow: 0 10px 28px rgba(43, 0, 61, 0.32);
}

.badge strong,
.badge span {
  display: block;
}

.badge strong {
  font: 800 25px/1 Playfair Display, serif;
}

.badge span {
  font-weight: 800;
}

section {
  scroll-margin-top: 96px;
}

.moments,
.work-section,
.packages-section,
.contact-section {
  padding: 26px clamp(18px, 4vw, 72px);
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  color: var(--purple-950);
  font: 800 clamp(23px, 3vw, 32px)/1.2 Playfair Display, serif;
}

.section-title span {
  width: min(96px, 18vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-600), transparent);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

.service-card {
  display: grid;
  min-height: 126px;
  place-items: center;
  padding: 14px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  background: #fff;
  box-shadow: 0 8px 22px rgba(75, 0, 93, 0.08);
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.work-card:hover,
.package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 137, 39, 0.5);
}

.service-icon {
  color: var(--purple-700);
  font-size: 36px;
  line-height: 1;
}

.service-card strong,
.service-card small {
  display: block;
}

.service-card strong {
  font-family: Playfair Display, serif;
  font-size: 16px;
}

.service-card small {
  color: var(--muted);
  font-weight: 800;
}

.feature-bar,
.reviews,
.site-footer {
  color: #fff;
  background: linear-gradient(90deg, var(--purple-950), var(--purple-800), var(--purple-950));
}

.feature-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding: 18px clamp(18px, 4vw, 72px);
}

.feature-bar article,
.reviews .stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  align-items: center;
  padding: 8px 14px;
}

.feature-bar span {
  grid-row: span 2;
  color: var(--gold-500);
  font-size: 32px;
}

.feature-bar strong,
.reviews strong {
  font-weight: 900;
}

.feature-bar small,
.reviews span {
  color: #fff3d0;
}

.gallery-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.work-card,
.package-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(75, 0, 93, 0.08);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}

.work-card img,
.mock-photo {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
}

.work-card strong {
  display: block;
  padding: 12px;
  text-align: center;
  font-family: Playfair Display, serif;
}

.mock-photo {
  display: grid;
  place-items: center;
  color: #fff6d8;
  font: italic 800 34px/1 Playfair Display, serif;
  text-shadow: 0 0 18px currentColor;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.55), transparent 8px),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.42), transparent 9px),
    linear-gradient(135deg, #6d001d, #23000c);
}



.work-card.blue .mock-photo {
  color: #fff;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.65), transparent 10px),
    linear-gradient(135deg, #78b6da, #f5f8ff 48%, #34506d);
}

.work-card.yellow .mock-photo {
  color: #532900;
  background:
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.65), transparent 9px),
    linear-gradient(135deg, #f6bd2c, #fff1a6 44%, #7a4a00);
}

.package-grid {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  max-width: 960px;
  margin: 0 auto;
}

.package-card {
  position: relative;
  padding: 26px;
}

.package-card.featured {
  color: #fff;
  background: linear-gradient(155deg, var(--purple-900), var(--purple-700));
  transform: translateY(-8px);
}

.package-card h3 {
  margin: 0;
  color: inherit;
  font: 900 21px/1 Cinzel, serif;
  text-align: center;
  text-transform: uppercase;
}

.package-card h3 span {
  display: block;
  font: 700 13px/1 Inter, sans-serif;
}

.price {
  margin: 12px 0 18px;
  color: var(--purple-900);
  font: 900 36px/1 Playfair Display, serif;
  text-align: center;
}

.featured .price {
  color: #fff;
}

.price small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font: 700 12px/1 Inter, sans-serif;
}

.featured .price small {
  color: #ffe8a9;
}

.package-card ul {
  display: grid;
  gap: 10px;
  min-height: 126px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.package-card li::before {
  margin-right: 8px;
  color: #18a24a;
  content: "✓";
}

.ribbon {
  position: absolute;
  top: 10px;
  right: -34px;
  width: 140px;
  margin: 0;
  padding: 6px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  background: var(--gold-600);
  transform: rotate(42deg);
}

.package-card .btn {
  width: 100%;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 22px clamp(18px, 4vw, 72px);
}

.reviews .stat {
  justify-content: center;
  text-align: left;
}

.reviews strong {
  font-size: 24px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 42px;
}

.contact-section h2 {
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1;
}

.contact-section p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--purple-950);
  font-weight: 900;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  font: 600 15px/1 Inter, sans-serif;
}

.booking-form button {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 18px;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold-300);
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #1fbb55, #097d35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  font-size: 28px;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 80px);
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(232, 181, 77, 0.18), transparent 20rem),
    linear-gradient(90deg, var(--dark-purple), var(--purple), var(--dark-purple));
  border-top: 2px solid rgba(232, 181, 77, 0.45);
}

.footer h2,
.footer p {
  margin: 0;
}

.footer h2 {
  color: var(--light-gold);
  font: 800 32px/1 Playfair Display, serif;
}

.footer p,
.footer address,
.footer span {
  color: #2b0038;
  line-height: 1.7;
}


.footer address {
  font-style: normal;
}

.footer strong {
  color: #3f0057;
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer a {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
  color: var(--white);
  font-weight: 800;
}

.footer a:hover {
  color: var(--light-gold);
}

@media (max-width: 1180px) {
  .site-header{
  background: #4b006e;
}

  .site-nav {
    order: 4;
    grid-column: 1 / -1;
  }

  .header-call {
    justify-self: end;
  }

  .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 820px) {
  .footer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .footer {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    min-height: 74px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    font-size: 29px;
  }

  .brand strong {
    font-size: 26px;
  }

  .brand em {
    font-size: 17px;
  }

  .brand small,
  .header-call {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    padding: 12px 0 4px;
  }

  .site-nav.open {
    display: grid;
    gap: 0;
  }

  .site-nav a {
    padding: 14px 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 320px;
    border-left-width: 0;
    border-top: 8px solid var(--gold-500);
    border-radius: 8px;
  }

  .hero-stage img {
    min-height: 320px;
  }

  .badge {
    left: 16px;
    width: 128px;
    height: 128px;
  }

  .trust-row,
  .feature-bar,
  .reviews {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    font-size: clamp(39px, 13vw, 58px);
  }

  .trust-row,
  .service-grid,
  .feature-bar,
  .gallery-grid,
  .package-grid,
  .reviews,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .trust-row span {
    min-height: auto;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .package-card.featured {
    transform: none;
  }

  .section-title {
    gap: 8px;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
  }
}




.site-logo{
    height: 90px;
    width: auto;
    display: block;
    object-fit: contain;
}