:root {
  --red: #b31324;
  --royal-red: #8f0717;
  --maroon: #39020a;
  --maroon-2: #590811;
  --gold: #d8a63a;
  --gold-soft: #ffe0a0;
  --cream: #fff5df;
  --orange: #f47b31;
  --white: #ffffff;
  --ink: #1d080b;
  --muted: #7e625f;
  --black: #080506;
  --shadow: 0 24px 70px rgba(70, 5, 12, 0.18);
  --radius: 8px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  position: relative;
}

.eyebrow {
  color: var(--gold);
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--gold);
  content: "";
  height: 1px;
  width: 34px;
}

.section-title {
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.section-copy {
  color: var(--muted);
  max-width: 760px;
}

.center {
  text-align: center;
}

.center .section-copy {
  margin: 0 auto;
}

.btn {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #f5d27a 48%, var(--orange));
  box-shadow: 0 16px 38px rgba(216, 166, 58, 0.36);
  color: #351006;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 224, 160, 0.5);
  color: var(--white);
}

.btn-maroon {
  background: linear-gradient(135deg, var(--red), var(--maroon));
  box-shadow: 0 16px 34px rgba(143, 7, 23, 0.24);
  color: var(--white);
}

.btn:hover {
  box-shadow: 0 20px 48px rgba(216, 166, 58, 0.42);
  transform: translateY(-3px);
}

.site-header {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  z-index: 50;
}

.nav-wrap {
  align-items: center;
  background: rgba(58, 3, 11, 0.62);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(216, 166, 58, 0.28);
  border-radius: 0 0 8px 8px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 82px;
  padding: 0 22px;
}

.site-header.scrolled .nav-wrap {
  background: rgba(25, 2, 6, 0.94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
}

.brand {
  align-items: center;
  color: var(--white);
  display: flex;
  gap: 12px;
  min-width: 245px;
}

.brand-mark {
  align-items: center;
  background: radial-gradient(circle at 30% 25%, var(--gold-soft), var(--gold) 42%, var(--royal-red) 75%);
  border-radius: 50%;
  color: var(--maroon);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.1;
}

.brand span {
  color: var(--gold-soft);
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  margin-top: 3px;
}

.nav-links {
  align-items: center;
  color: var(--white);
  display: flex;
  gap: 26px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.86;
  position: relative;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-links a::after {
  background: var(--gold);
  bottom: -9px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-soft);
  opacity: 1;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-call {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav-call i {
  color: var(--gold);
  margin-right: 8px;
}

.hamburger {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(216, 166, 58, 0.4);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: none;
  height: 46px;
  width: 46px;
}

.hero {
  align-items: center;
  background:
    linear-gradient(105deg, rgba(52, 2, 9, 0.9), rgba(118, 7, 24, 0.62), rgba(24, 4, 5, 0.68)),
    url("https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=1800&q=85") center/cover;
  color: var(--white);
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  padding: 140px 0 82px;
  position: relative;
}

.sub-hero {
  min-height: 62vh;
}

.hero::before,
.cta-section::before {
  background:
    radial-gradient(circle, rgba(255, 224, 160, 0.24) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(244, 123, 49, 0.18) 0 1px, transparent 3px);
  background-size: 92px 92px, 130px 130px;
  content: "";
  inset: 0;
  opacity: 0.62;
  position: absolute;
  animation: floatLights 18s linear infinite;
}

.hero::after {
  background:
    radial-gradient(circle at 16% 26%, rgba(216, 166, 58, 0.28), transparent 19%),
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.18), transparent 16%),
    linear-gradient(180deg, transparent, rgba(42, 2, 8, 0.72));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-content {
  max-width: 790px;
  position: relative;
  z-index: 2;
}

.hero-kicker {
  align-items: center;
  color: var(--gold-soft);
  display: inline-flex;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-kicker i {
  color: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 8vw, 6.9rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 24px;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.36);
}

.sub-hero h1 {
  font-size: clamp(2.9rem, 7vw, 5.4rem);
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 720px;
}

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

.hero-badges {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
  max-width: 680px;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 224, 160, 0.28);
  border-radius: var(--radius);
  padding: 16px;
}

.hero-badge strong {
  color: var(--gold-soft);
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.hero-badge span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.floating-flower {
  border: 1px solid rgba(255, 224, 160, 0.28);
  border-radius: 50%;
  height: 230px;
  pointer-events: none;
  position: absolute;
  right: 8%;
  top: 20%;
  width: 230px;
  z-index: 1;
  animation: slowSpin 24s linear infinite;
}

.floating-flower::before,
.floating-flower::after {
  border: 1px solid rgba(255, 224, 160, 0.22);
  border-radius: 50%;
  content: "";
  inset: 28px;
  position: absolute;
}

.floating-flower::after {
  inset: 62px;
}

.strip-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, 1fr);
}

.strip-card,
.image-card,
.service-card,
.why-card,
.testimonial,
.contact-card,
.stat-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.strip-card {
  box-shadow: var(--shadow);
  height: 250px;
}

.strip-card::after,
.gallery-item::after,
.image-card::after {
  background: linear-gradient(180deg, transparent 34%, rgba(45, 2, 8, 0.88));
  content: "";
  inset: 0;
  position: absolute;
}

.strip-card img,
.gallery-item img,
.service-card img,
.why-card img,
.image-card img {
  transition: transform 0.6s ease;
}

.strip-card:hover img,
.gallery-item:hover img,
.service-card:hover img,
.why-card:hover img,
.image-card:hover img {
  transform: scale(1.09);
}

.strip-card span {
  bottom: 22px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  left: 18px;
  position: absolute;
  right: 18px;
  z-index: 2;
}

.about-grid {
  align-items: center;
  display: grid;
  gap: 60px;
  grid-template-columns: 0.96fr 1fr;
}

.image-frame {
  border: 1px solid rgba(216, 166, 58, 0.55);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 560px;
  padding: 12px;
  position: relative;
}

.image-frame::before {
  border: 1px solid rgba(143, 7, 23, 0.22);
  content: "";
  inset: -18px 22px 22px -18px;
  position: absolute;
  z-index: -1;
}

.image-frame img {
  border-radius: var(--radius);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
}

.feature-list li {
  align-items: center;
  color: #4d2626;
  display: flex;
  font-weight: 700;
  gap: 12px;
}

.feature-list i {
  color: var(--gold);
}

.dark-band {
  background:
    radial-gradient(circle at 18% 14%, rgba(216, 166, 58, 0.18), transparent 24%),
    linear-gradient(135deg, var(--maroon), var(--royal-red) 50%, #210106);
  color: var(--white);
}

.dark-band .section-title,
.dark-band .section-copy {
  color: var(--white);
}

.services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
}

.service-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 224, 160, 0.22);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover,
.why-card:hover,
.contact-card:hover {
  border-color: rgba(255, 224, 160, 0.75);
  box-shadow: 0 24px 70px rgba(216, 166, 58, 0.18);
  transform: translateY(-8px);
}

.service-img {
  height: 245px;
  overflow: hidden;
}

.service-body {
  padding: 26px;
}

.icon-pill {
  align-items: center;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: 50%;
  color: var(--maroon);
  display: inline-flex;
  height: 48px;
  justify-content: center;
  margin-bottom: 18px;
  width: 48px;
}

.service-card h3,
.why-card h3,
.testimonial h3,
.contact-card h3,
.image-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.service-card p,
.why-card p,
.testimonial p,
.contact-card p,
.image-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  margin-bottom: 22px;
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  margin-top: 44px;
}

.gallery-item {
  border: 1px solid rgba(216, 166, 58, 0.26);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item span {
  bottom: 18px;
  color: var(--white);
  font-weight: 800;
  left: 18px;
  opacity: 0;
  position: absolute;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 2;
}

.gallery-item:hover {
  border-color: var(--gold);
}

.gallery-item:hover span {
  opacity: 1;
  transform: translateY(0);
}

.why-grid,
.contact-grid,
.stats-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 46px;
}

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

.why-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 224, 160, 0.22);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.why-img {
  height: 250px;
  overflow: hidden;
}

.why-body {
  padding: 26px;
}

.stats-band {
  background: linear-gradient(135deg, #fff8e8, #ffffff);
  padding: 58px 0;
}

.stat-card {
  background: var(--white);
  border: 1px solid rgba(216, 166, 58, 0.28);
  box-shadow: 0 18px 48px rgba(70, 5, 12, 0.1);
  padding: 30px 20px;
  text-align: center;
}

.stat-card strong {
  color: var(--royal-red);
  display: block;
  font-family: var(--font-display);
  font-size: 2.7rem;
  line-height: 1;
}

.stat-card span {
  color: var(--muted);
  display: block;
  font-weight: 800;
  margin-top: 10px;
}

.testimonials-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 44px;
}

.testimonial {
  background: var(--white);
  border: 1px solid rgba(216, 166, 58, 0.28);
  box-shadow: var(--shadow);
  padding: 34px;
}

.quote-icon {
  color: var(--gold);
  font-size: 2.1rem;
  margin-bottom: 18px;
}

.stars {
  color: var(--gold);
  margin-bottom: 14px;
}

.testimonial p {
  color: #624142;
}

.slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}

.slider-dots span {
  background: rgba(143, 7, 23, 0.22);
  border-radius: 50%;
  height: 10px;
  width: 10px;
}

.slider-dots span:first-child {
  background: var(--gold);
}

.contact-card {
  background: var(--white);
  border: 1px solid rgba(216, 166, 58, 0.3);
  box-shadow: var(--shadow);
  padding: 30px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.contact-card p,
.contact-card a {
  color: #69494a;
}

.contact-card .icon-pill {
  margin-bottom: 18px;
}

.contact-grid {
  grid-template-columns: repeat(4, 1fr);
}

.cta-section {
  background:
    linear-gradient(135deg, rgba(50, 2, 9, 0.86), rgba(133, 7, 25, 0.7)),
    url("https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?auto=format&fit=crop&w=1800&q=85") center/cover fixed;
  color: var(--white);
  overflow: hidden;
}

.booking-grid {
  align-items: center;
  display: grid;
  gap: 46px;
  grid-template-columns: 0.8fr 1fr;
  position: relative;
  z-index: 2;
}

.booking-form {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 224, 160, 0.32);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  padding: 28px;
}

.booking-form textarea,
.booking-form .full {
  grid-column: 1 / -1;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--ink);
  min-height: 52px;
  outline: 0;
  padding: 13px 15px;
}

.booking-form textarea {
  min-height: 118px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(216, 166, 58, 0.18);
}

.page-panel {
  background: var(--white);
  border: 1px solid rgba(216, 166, 58, 0.26);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}

.story-grid,
.split-grid {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: repeat(2, 1fr);
}

.image-card {
  height: 430px;
  box-shadow: var(--shadow);
}

.image-card .card-label {
  bottom: 26px;
  color: var(--white);
  left: 26px;
  position: absolute;
  right: 26px;
  z-index: 2;
}

.service-list {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.site-footer {
  background:
    radial-gradient(circle at 20% 10%, rgba(216, 166, 58, 0.14), transparent 24%),
    linear-gradient(135deg, #090405, #210108 58%, #050303);
  border-top: 4px solid var(--gold);
  color: rgba(255, 255, 255, 0.78);
  padding: 70px 0 28px;
}

.footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.35fr 0.7fr 0.8fr 1fr;
}

.footer-grid h3,
.footer-grid h4 {
  color: var(--white);
  font-family: var(--font-display);
  margin-bottom: 16px;
}

.footer-grid li {
  margin-bottom: 10px;
}

.footer-grid a:hover {
  color: var(--gold-soft);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(216, 166, 58, 0.32);
  border-radius: 50%;
  color: var(--gold-soft);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 44px;
  padding-top: 24px;
  text-align: center;
}

.float-btn {
  align-items: center;
  border-radius: 50%;
  bottom: 24px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  color: var(--white);
  display: inline-flex;
  font-size: 1.35rem;
  height: 58px;
  justify-content: center;
  position: fixed;
  width: 58px;
  z-index: 45;
  animation: pulseGlow 2.2s ease-in-out infinite;
}

.float-call {
  background: linear-gradient(135deg, var(--red), var(--orange));
  left: 22px;
}

.float-whatsapp {
  background: linear-gradient(135deg, #22c55e, #128c7e);
  right: 22px;
}

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

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

@keyframes floatLights {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 240px 180px, -220px 220px;
  }
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 16px 38px rgba(216, 166, 58, 0.24);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 24px 54px rgba(216, 166, 58, 0.46);
    transform: translateY(-4px);
  }
}

@media (max-width: 1050px) {
  .nav-links,
  .nav-call {
    display: none;
  }

  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    background: rgba(25, 2, 6, 0.98);
    border: 1px solid rgba(216, 166, 58, 0.24);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 0;
    left: 20px;
    opacity: 0;
    padding: 12px;
    pointer-events: none;
    position: absolute;
    right: 20px;
    top: 92px;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

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

  .nav-links a {
    padding: 14px;
    width: 100%;
  }

  .strip-grid,
  .services-grid,
  .why-grid,
  .contact-grid,
  .stats-grid,
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .booking-grid,
  .story-grid,
  .split-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 72px 0;
  }

  .nav-wrap {
    min-height: 76px;
    padding: 0 14px;
  }

  .brand {
    min-width: 0;
  }

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

  .brand span {
    font-size: 0.65rem;
  }

  .brand-mark {
    height: 42px;
    width: 42px;
  }

  .hero {
    min-height: 92vh;
    padding: 124px 0 58px;
  }

  .hero-actions,
  .hero-badges {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .strip-grid,
  .services-grid,
  .why-grid,
  .contact-grid,
  .stats-grid,
  .testimonials-grid,
  .service-list {
    grid-template-columns: 1fr;
  }

  .strip-card {
    height: 220px;
  }

  .image-frame,
  .image-card {
    height: 360px;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
    grid-template-columns: 1fr;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .booking-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .float-btn {
    bottom: 16px;
    height: 52px;
    width: 52px;
  }
}
