:root {
  --black: #0d0d0d;
  --ink: #1b1a18;
  --muted: #6f6a61;
  --line: rgba(17, 17, 17, 0.1);
  --cream: #fbfaf7;
  --white: #ffffff;
  --gold: #c8a45d;
  --gold-dark: #9d7730;
  --shadow: 0 24px 70px rgba(13, 13, 13, 0.14);
  --radius: 8px;
  --header-h: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.lightbox-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #fff1b8);
}

.site-header {
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 24px), 1160px);
  min-height: 62px;
  padding: 10px 12px;
  transform: translateX(-50%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.24);
  backdrop-filter: blur(18px);
  transition: background 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
}

.site-header.scrolled {
  top: 0;
  width: 100%;
  border-color: rgba(255, 255, 255, 0.06);
  border-radius: 0;
  background: rgba(13, 13, 13, 0.94);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  color: var(--black);
  background: var(--black);
  border-radius: 50%;
  border: 1px solid rgba(200, 164, 93, 0.56);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  position: fixed;
  top: 76px;
  right: 12px;
  left: 12px;
  display: grid;
  gap: 4px;
  padding: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  border-radius: var(--radius);
  background: rgba(13, 13, 13, 0.96);
  box-shadow: var(--shadow);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-nav.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  padding: 11px 12px;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 6px;
}

.site-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: grid;
  gap: 5px;
  width: 42px;
  height: 42px;
  place-content: center;
  border: 0;
  color: var(--white);
  background: transparent;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
}

.hero-slides,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  overflow: hidden;
  transform: scale(1.02);
  transition: opacity 1.1s ease, transform 6s ease;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  transform: scale(1.01);
}

.hero-focus-center img {
  object-position: 50% 34%;
}

.hero-focus-right img {
  object-position: 66% 38%;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.14) 42%, rgba(0, 0, 0, 0.62)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(100% - 32px, 560px);
  margin: 0 auto;
  padding: 122px 0 54px;
  text-align: center;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.58);
}

.hero-content.reveal {
  opacity: 1;
  transform: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 5.7vw, 3.05rem);
  font-weight: 500;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 8vw, 4.2rem);
  font-weight: 500;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.hero-copy {
  max-width: 430px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.96rem, 2.8vw, 1.04rem);
}

.price-pill {
  display: block;
  margin: 10px 0 16px;
  color: #f6df9c;
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 850;
  letter-spacing: 0.02em;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-gold {
  color: #211706;
  background: linear-gradient(135deg, #fff2bd, var(--gold));
  box-shadow: 0 16px 38px rgba(200, 164, 93, 0.28);
}

.btn-glass {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.btn-icon {
  width: 50px;
  min-width: 50px;
  padding: 0;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.btn-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.btn-dark {
  color: var(--white);
  background: var(--black);
}

.btn-light {
  color: var(--black);
  border-color: var(--line);
  background: var(--white);
}

.hero-stats {
  position: absolute;
  right: 16px;
  bottom: 22px;
  left: 16px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  padding: 14px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong,
.hero-stats span {
  display: block;
  text-align: center;
}

.hero-stats strong {
  font-size: clamp(1.4rem, 7vw, 2.4rem);
  line-height: 1;
}

.hero-stats span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.73rem;
}

.section {
  padding: 78px 16px;
}

.section:not(:first-of-type) {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.section-copy,
.section-heading,
.package-card,
.contact-panel {
  width: min(100%, 1160px);
  margin: 0 auto;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.contact-panel p {
  color: var(--muted);
}

.split-section {
  display: grid;
  gap: 34px;
}

.feature-grid,
.decor-grid,
.testimonial-grid {
  display: grid;
  gap: 16px;
  width: min(100%, 1160px);
  margin: 0 auto;
}

.feature-card,
.decor-card,
.testimonial-card,
.package-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 60px rgba(17, 17, 17, 0.08);
}

.feature-card,
.decor-card,
.testimonial-card {
  padding: 22px;
}

.feature-card span {
  color: var(--gold-dark);
  font-weight: 900;
}

.feature-card p,
.decor-card p,
.testimonial-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.testimonial-card strong {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  font-size: 0.95rem;
}

.rating-summary {
  display: flex;
  width: min(100%, 920px);
  align-items: center;
  gap: 12px;
  margin: 0 auto 18px;
  padding: 16px 18px;
  border: 1px solid rgba(200, 164, 93, 0.28);
  border-radius: var(--radius);
  background: var(--cream);
}

.rating-summary strong {
  font-family: Georgia, serif;
  font-size: 2.5rem;
  line-height: 1;
}

.rating-summary p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.stars {
  color: var(--gold-dark);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.review-slider {
  position: relative;
  width: min(100%, 1160px);
  margin: 0 auto;
}

.review-track {
  grid-auto-columns: minmax(82%, 1fr);
}

.review-track .testimonial-card {
  min-height: 248px;
  scroll-snap-align: start;
}

.trust-section,
.testimonials-section {
  background: var(--white);
}

.trust-grid {
  display: grid;
  gap: 12px;
  width: min(100%, 980px);
  margin: 0 auto;
}

.trust-grid span {
  position: relative;
  padding: 15px 16px 15px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  font-weight: 800;
}

.trust-grid span::before {
  position: absolute;
  left: 16px;
  color: var(--gold-dark);
  content: "+";
}

.urgency-note {
  max-width: 360px;
  margin: 0 auto 18px;
  color: #f6df9c;
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-note {
  margin-right: 0;
  margin-left: 0;
  color: var(--gold);
}

.review-panel {
  display: grid;
  gap: 18px;
  align-items: center;
  width: min(100%, 920px);
  margin: 0 auto 22px;
  padding: 22px;
  border: 1px solid rgba(200, 164, 93, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(200, 164, 93, 0.14), rgba(255, 255, 255, 0.86)),
    var(--white);
  box-shadow: 0 18px 55px rgba(17, 17, 17, 0.08);
}

.review-panel h3 {
  font-family: Georgia, serif;
  font-size: 1.7rem;
  font-weight: 500;
}

.review-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--gold-dark);
  font-weight: 850;
}

.package-section {
  background: var(--black);
}

.package-card {
  display: grid;
  gap: 24px;
  padding: 22px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.09);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.package-card h2 {
  color: var(--white);
}

.package-intro {
  max-width: 760px;
}

.package-intro p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.package-options {
  display: grid;
  gap: 16px;
}

.package-option {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.featured-package {
  border-color: rgba(200, 164, 93, 0.5);
  background: linear-gradient(135deg, rgba(200, 164, 93, 0.18), rgba(255, 255, 255, 0.06));
}

.package-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-price {
  margin: 0 0 22px;
  font-size: clamp(2rem, 8vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
}

.package-price span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  font-weight: 700;
}

.package-notes {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(200, 164, 93, 0.35);
  border-radius: var(--radius);
  background: rgba(200, 164, 93, 0.12);
}

.package-notes p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.82);
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "+";
}

.gallery-section {
  overflow: hidden;
}

.gallery-slider {
  position: relative;
  width: min(100%, 1160px);
  margin: 0 auto;
}

.gallery-track {
  display: grid;
  grid-auto-columns: minmax(76%, 1fr);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  cursor: zoom-in;
}

.gallery-item img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-item:hover img {
  opacity: 0.9;
  transform: scale(1.045);
}

.decor-slider {
  width: min(100%, 1160px);
  margin: 0 auto;
}

.decor-item img {
  aspect-ratio: 4 / 5;
}

.slider-btn {
  position: absolute;
  top: 44%;
  z-index: 3;
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: var(--black);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
}

.slider-btn.prev {
  left: -14px;
}

.slider-btn.next {
  right: -14px;
}

.decorations-section,
.faq-section {
  background: var(--white);
}

.decor-card {
  overflow: hidden;
  padding: 0;
}

.decor-card img,
.name-board {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.decor-card h3,
.decor-card p {
  padding-right: 22px;
  padding-left: 22px;
}

.decor-card h3 {
  padding-top: 20px;
}

.decor-card p {
  padding-bottom: 22px;
}

.name-board {
  display: grid;
  place-content: center;
  padding: 24px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(200, 164, 93, 0.28), rgba(255, 255, 255, 0.06)),
    var(--black);
}

.name-board span,
.name-board small {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.name-board strong {
  display: block;
  margin: 6px 0;
  font-family: Georgia, serif;
  font-size: 2rem;
}

.areas-section {
  display: grid;
  gap: 30px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(100%, 1160px);
  margin: 0 auto;
}

.area-list span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.06);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 10px;
  width: min(100%, 860px);
  margin: 0 auto;
}

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

summary {
  padding: 18px;
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.contact-section {
  color: var(--white);
  background:
    linear-gradient(rgba(13, 13, 13, 0.82), rgba(13, 13, 13, 0.82)),
    url("public/images/hero-2.jpg") center / cover fixed;
}

.contact-panel {
  padding: clamp(26px, 6vw, 54px);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.contact-panel h2,
.contact-panel p {
  color: var(--white);
}

.floating-whatsapp {
  position: fixed;
  right: 0;
  top: 54%;
  z-index: 800;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 15px;
  color: var(--white);
  border-radius: 999px 0 0 999px;
  background: #1f9d55;
  box-shadow: 0 16px 45px rgba(31, 157, 85, 0.34);
  transform: translateY(-50%);
  font-size: 0.9rem;
  font-weight: 900;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(100%, 1100px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox button {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.8rem;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 1120;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.72);
}

.review-modal.open {
  display: grid;
}

.review-dialog {
  position: relative;
  width: min(100%, 520px);
  padding: clamp(24px, 6vw, 38px);
  border: 1px solid rgba(200, 164, 93, 0.3);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.review-dialog h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 7vw, 3rem);
}

.review-dialog p:not(.eyebrow) {
  color: var(--muted);
}

.review-dialog form {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.review-dialog label {
  font-weight: 850;
}

.review-dialog input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font: inherit;
}

.review-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 1.5rem;
}

.review-message {
  margin: 14px 0 0;
  color: #9d3a30;
  font-weight: 850;
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 719px) {
  .hero-content {
    width: min(100% - 34px, 430px);
    padding-bottom: 96px;
  }

  .hero-slide img {
    object-position: 50% 30%;
  }

  .hero-focus-right img {
    object-position: 60% 32%;
  }

  .floating-whatsapp {
    top: auto;
    bottom: 18px;
    font-size: 0.82rem;
    transform: none;
  }
}

@media (min-width: 720px) {
  .section {
    padding: 104px 28px;
  }

  .site-nav {
    position: static;
    display: flex;
    width: auto;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 10px;
    font-size: 0.94rem;
  }

  .nav-toggle {
    display: none;
  }

  .hero-content {
    width: min(100% - 56px, 560px);
    margin-right: auto;
    margin-left: auto;
  }

  .hero-stats {
    right: 154px;
    left: auto;
    width: min(580px, calc(100% - 210px));
  }

  .split-section,
  .areas-section {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    width: min(100%, 1160px);
    margin: 0 auto;
  }

  .feature-grid,
  .decor-grid,
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-card {
    padding: 28px;
  }

  .package-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-track {
    grid-auto-columns: calc((100% - 32px) / 3);
  }

  .gallery-item img {
    aspect-ratio: 4 / 3;
  }

  .decor-item img {
    aspect-ratio: 4 / 5;
  }

  .review-panel {
    grid-template-columns: 1fr auto;
  }

  .review-track {
    grid-auto-columns: calc((100% - 32px) / 3);
  }

  .slider-btn {
    display: block;
  }
}

@media (min-width: 1040px) {
  .site-header {
    padding-right: 22px;
    padding-left: 22px;
  }

  .hero-content {
    padding-top: 126px;
    padding-bottom: 54px;
  }

  .feature-grid {
    gap: 20px;
  }

  .package-card {
    padding: 44px;
  }
}
