/* --- Normalize & Cross-Browser Reset --- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* --- Vendor Prefixes for Gradients, Box Shadows, Border Radius --- */
body {
  background: -webkit-linear-gradient(135deg, #f8fafc 0%, #e0e7ef 100%);
  background: -moz-linear-gradient(135deg, #f8fafc 0%, #e0e7ef 100%);
  background: -o-linear-gradient(135deg, #f8fafc 0%, #e0e7ef 100%);
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ef 100%);
}
.btn, .btn-primary {
  background: -webkit-linear-gradient(90deg, #b9935a 0%, #f5e9d7 100%);
  background: -moz-linear-gradient(90deg, #b9935a 0%, #f5e9d7 100%);
  background: -o-linear-gradient(90deg, #b9935a 0%, #f5e9d7 100%);
  background: linear-gradient(90deg, #b9935a 0%, #f5e9d7 100%);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  box-shadow: 0 2px 8px rgba(185,147,90,0.08);
  -webkit-box-shadow: 0 2px 8px rgba(185,147,90,0.08);
  -moz-box-shadow: 0 2px 8px rgba(185,147,90,0.08);
  -o-box-shadow: 0 2px 8px rgba(185,147,90,0.08);
}
.package-card, .section-about, .section-contact, .section-testimonials, footer {
  border-radius: 18px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -o-border-radius: 18px;
  box-shadow: 0 4px 24px rgba(185,147,90,0.08);
  -webkit-box-shadow: 0 4px 24px rgba(185,147,90,0.08);
  -moz-box-shadow: 0 4px 24px rgba(185,147,90,0.08);
  -o-box-shadow: 0 4px 24px rgba(185,147,90,0.08);
}
.logo-img, .carousel-img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
}

/* --- Reset & Base Styles --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ef 100%);
  color: #222;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #b9935a;
}

/* --- Navbar --- */
.navbar {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  position: fixed;
  width: 100%;
  top: 0; left: 0;
  z-index: 1000;
  transition: background 0.3s;
}
.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.brand-title {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  color: #b9935a;
  font-weight: 700;
  letter-spacing: 1px;
}
.navbar-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  transition: all 0.3s;
}
.navbar-menu a {
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 0.7rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.navbar-menu a:hover {
  background: #f5e9d7;
  color: #b9935a;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
  transition: transform 0.3s cubic-bezier(.4,2,.3,1);
}
.hamburger .bar {
  width: 28px;
  height: 3px;
  background: #b9935a;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(.4,2,.3,1);
  position: relative;
}
.hamburger.open .bar1 {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open .bar2 {
  opacity: 0;
  transform: scaleX(0.2);
}
.hamburger.open .bar3 {
  transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 900px) {
  .navbar-container {
    padding: 1rem;
  }
  .navbar-menu {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 200px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    display: none;
    padding: 1rem 0;
    border-radius: 0 0 12px 12px;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(.4,2,.3,1), opacity 0.3s;
  }
  .navbar-menu.slide-in {
    display: flex;
    opacity: 1;
    transform: translateX(0);
  }
  .hamburger {
    display: flex;
  }
}
@media (max-width: 1200px) {
  .navbar-menu {
    gap: 1rem;
  }
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 7rem;
  padding-bottom: 3rem;
}
.hero-content {
  z-index: 2;
  position: relative;
}
.hero-title {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: clamp(2.6rem, 5.2vw, 3.6rem);
  letter-spacing: 0.3px;
  text-transform: none;
}
.hero-title .highlight {
  color: #b9935a;
  font-family: 'Dancing Script', cursive;
  font-size: 3.2rem;
}
.hero-subtitle {
  display: block;
  color: #4a4a4a;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  margin-top: 0.5rem;
  margin-bottom: 1.2rem;
  max-width: 560px;
}
.btn {
  background: linear-gradient(90deg, #b9935a 0%, #f5e9d7 100%);
  color: #fff;
  border: none;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(185,147,90,0.08);
  transition: background 0.3s, color 0.2s, transform 0.2s;
  margin-top: 1rem;
}
.btn-primary {
  background: linear-gradient(90deg, #b9935a 0%, #e0c08d 100%);
  color: #fff;
}
.btn:hover {
  background: linear-gradient(90deg, #e0c08d 0%, #b9935a 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.hero-carousel {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.carousel-img {
  width: 220px;
  height: 120px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  opacity: 0.5;
  transform: scale(0.92);
  transition: all 0.7s cubic-bezier(.4,2,.3,1);
  filter: grayscale(30%);
}
.carousel-img.active {
  opacity: 1;
  transform: scale(1.08);
  filter: none;
  z-index: 2;
}
@media (max-width: 700px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-title .highlight {
    font-size: 2.2rem;
  }
  .carousel-img {
    width: 120px;
    height: 70px;
  }
}

/* --- Section Base --- */
.section {
  padding: 5rem 1.5rem 3rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.section h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  color: #b9935a;
  margin-bottom: 2.5rem;
  font-weight: 700;
  text-align: center;
}

/* --- Packages --- */
.packages-container {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.package-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(185,147,90,0.08);
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.package-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(185,147,90,0.18);
}
.package-card h3 {
  font-family: 'Dancing Script', cursive;
  font-size: 1.7rem;
  color: #b9935a;
  margin-bottom: 0.5rem;
}
.package-price {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1.2rem;
}
.package-card ul {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #555;
  font-size: 1.08rem;
  line-height: 1.6;
  padding-left: 1.2rem;
}
.package-card ul li {
  margin-bottom: 0.5rem;
  list-style: disc;
}
.package-card .btn {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 900px) {
  .packages-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .package-card {
    width: 100%;
    max-width: 350px;
  }
}

/* --- Testimonials --- */
.section-testimonials {
  background: linear-gradient(120deg, #f5e9d7 0%, #fff 100%);
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(185,147,90,0.06);
  margin-bottom: 3rem;
}
.testimonials-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 160px;
  position: relative;
}
.testimonial {
  display: none;
  flex-direction: column;
  align-items: center;
  font-size: 1.2rem;
  color: #333;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(185,147,90,0.07);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  transition: opacity 0.5s;
}
.testimonial.active {
  display: flex;
  animation: fadeIn 1s;
}
.testimonial span {
  margin-top: 1rem;
  color: #b9935a;
  font-weight: 700;
  font-size: 1.1rem;
}
.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.testimonial-controls button {
  background: #fff;
  border: 1px solid #b9935a;
  color: #b9935a;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.testimonial-controls button:hover {
  background: #b9935a;
  color: #fff;
}

/* --- About Section --- */
.section-about {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(185,147,90,0.06);
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
}
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.15rem;
  color: #444;
}

/* --- Contact Section --- */
.section-contact {
  background: linear-gradient(120deg, #fff 0%, #f5e9d7 100%);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(185,147,90,0.06);
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
}
.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 0 auto;
  width: 100%;
  margin-top: 1.5rem;
}
.form-group {
  display: flex;
  gap: 1rem;
}
.form-group input,
.form-group select {
  flex: 1;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #e0c08d;
  border-radius: 8px;
  font-size: 1rem;
  background: #f8fafc;
  transition: border 0.2s, box-shadow 0.2s;
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border: 1.5px solid #b9935a;
  box-shadow: 0 2px 8px rgba(185,147,90,0.08);
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form button {
  margin-top: 0.5rem;
}

/* --- Captcha Styles --- */
.captcha-group {
  background: #f0f4f8;
  border: 1px solid #d6d9dc;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  flex-direction: column !important;
}
.captcha-group label {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.5rem;
  display: block;
}
.captcha-question {
  font-size: 1.2rem;
  font-weight: bold;
  color: #2c3e50;
  background: white;
  padding: 0.8rem;
  border-radius: 6px;
  border: 2px solid #3498db;
  margin: 0.5rem 0;
  display: inline-block;
  min-width: 120px;
}
.captcha-group input[type="number"] {
  max-width: 100px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
}

@media (max-width: 700px) {
  .form-group {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* --- Footer --- */
footer {
  text-align: center;
  padding: 1.5rem 0 1rem 0;
  background: #fff;
  color: #b9935a;
  font-size: 1rem;
  border-top: 1px solid #f5e9d7;
  box-shadow: 0 -2px 8px rgba(185,147,90,0.04);
  border-radius: 18px 18px 0 0;
  margin-top: 2rem;
}

/* --- Animations --- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --- Smooth Hero Animations & Aspect-Ratio Handling --- */
/* Keyframes */
@keyframes heroPanZoom { from { transform: scale(1.04); } to { transform: scale(1.12); } }
@keyframes heroImgIn { 0% { opacity: 0; transform: translateY(14px) scale(0.985); } 100% { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes heroPanelIn { 0% { opacity: 0; transform: translateY(18px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes heroBlurIn { 0% { opacity: 0; } 100% { opacity: 1; } }
@keyframes swipeDown { to { transform: translateY(100%); } }

/* Light-themed reveal cover (page intro) */
.reveal-cover { position: fixed; inset: 0; z-index: 3000; background:
  linear-gradient(rgba(255,255,255,.65), rgba(255,255,255,.65)),
  url('images/banner2.png') center/cover no-repeat; transform: translateY(0); animation: swipeDown 900ms cubic-bezier(0.22, 1, 0.36, 1) 450ms forwards; will-change: transform; pointer-events: none; }

/* Make media container height-based so it adapts to any viewport */
.hero .hero-split__media { height: clamp(360px, 58vh, 620px); aspect-ratio: auto; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.12); overflow: hidden; }
/* Animate blurred fill, keep it subtle and continuous */
.hero .hero-split__media::before { opacity: 0; animation: heroBlurIn 700ms ease-out 600ms forwards, heroPanZoom 18s ease-in-out 1200ms both alternate infinite; }
/* Optional soft wash to aid readability */
.hero .hero-split__media::after { background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.06) 55%, rgba(255,255,255,0.12) 100%); }

/* Staggered entrance for image and panel */
.hero .hero-split__img { opacity: 0; transform: translateY(12px) scale(0.992); animation: heroImgIn 700ms cubic-bezier(.22,1,.36,1) 900ms forwards; will-change: transform, opacity; }
.hero .hero-split__panel { opacity: 0; transform: translateY(16px); animation: heroPanelIn 700ms cubic-bezier(.22,1,.36,1) 1100ms forwards; }

/* Mobile tweaks */
@media (max-width: 1000px) {
  .hero .hero-split__media { height: clamp(300px, 50vh, 520px); }
}
@media (max-width: 700px) {
  .hero .hero-split__media { height: clamp(240px, 46vh, 480px); border-radius: 14px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-cover { animation: none; transform: translateY(100%); }
  .hero .hero-split__media::before { animation: none; opacity: 1; }
  .hero .hero-split__img, .hero .hero-split__panel { animation: none; opacity: 1; transform: none; }
}

/* New: Split Hero Layout */
.hero.hero-split {
  min-height: calc(100vh - 80px);
  padding-top: 7rem;
  padding-bottom: 3rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 2rem;
  text-align: left;
  padding-left: clamp(16px, 5vw, 48px);
  padding-right: clamp(16px, 4vw, 40px);
}
.hero-left {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: clamp(8px, 2vh, 16px);
}
.hero-banner-img {
  width: min(780px, 92%);
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  object-fit: cover;
}
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-right .hero-title {
  text-align: left;
}
.hero-right .hero-subtitle {
  text-align: left;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.btn.btn-outline {
  background: transparent;
  color: #b9935a;
  border: 2px solid #e0c08d;
}
.btn.btn-outline:hover {
  background: #f5e9d7;
  color: #7a5d33;
}

/* Hide old carousel in split mode */
.hero.hero-split .hero-carousel { display: none; }

/* Responsive adjustments */
@media (max-width: 1000px) {
  .hero.hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-left { justify-content: center; }
  .hero-right { align-items: center; }
  .hero-right .hero-title, .hero-right .hero-subtitle { text-align: center; }
  .hero-banner-img { width: min(680px, 94%); }
}
@media (max-width: 700px) {
  .hero-banner-img { width: 100%; border-radius: 14px; }
  .hero-actions { justify-content: center; }
}

/* Override: formal hero title */
.hero-title {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Services section styles */
.section--alt {
  background: linear-gradient(120deg, #fff 0%, #f5e9d7 100%);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(185,147,90,0.06);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.section__title.h2, .section__title.h2 * {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  color: #b9935a;
  font-weight: 700;
  text-align: center;
}
.section__subtitle {
  text-align: center;
  color: #555;
  font-size: 1.12rem;
  max-width: 820px;
  margin: 0.5rem auto 0;
}
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1000px) {
  .services { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .services { grid-template-columns: 1fr; }
}
.service {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(185,147,90,0.08);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service__icon {
  width: 100%;
  height: clamp(160px, 22vw, 220px);
  display: block;
  background: #f0f2f5;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.8rem;
}
.service__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: none;
}
.h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 0.5rem; }
.service p { color: #555; margin-bottom: 0.6rem; }
.service ul { padding-left: 1.1rem; color: #555; line-height: 1.5; }
.service ul li { list-style: disc; margin: 0.25rem 0; }
.mt-16 { margin-top: 1rem; }
.mt-12 { margin-top: 0.75rem; }

/* Price chips under Wedding Limo */
.price-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.price-chip { background:#fff7eb; border:1px solid #e0c08d; color:#7a5d33; padding: 0.25rem 0.6rem; border-radius: 999px; font-weight:700; font-size:0.95rem; }

/* New button variants aligned with existing styles */
.btn--primary { background: linear-gradient(90deg, #b9935a 0%, #e0c08d 100%); color:#fff; border:none; padding: 0.8rem 1.4rem; border-radius:30px; font-weight:700; cursor:pointer; box-shadow:0 2px 8px rgba(185,147,90,0.08); }
.btn--primary:hover { background: linear-gradient(90deg, #e0c08d 0%, #b9935a 100%); }
.btn--ghost { background: transparent; color:#b9935a; border:2px solid #e0c08d; padding: 0.75rem 1.3rem; border-radius:30px; font-weight:700; cursor:pointer; }
.btn--ghost:hover { background:#f5e9d7; color:#7a5d33; }

/* Minimal layout tweaks for title+buttons only */
.hero-right { gap: 0.8rem; }
.service { display: flex; flex-direction: column; align-items: flex-start; }
@media (max-width: 700px){ .service { align-items: center; text-align: center; } }

/* BEM Hero Split (matches requested markup) */
.hero .hero-split {
  min-height: calc(100vh - 80px);
  padding-top: 7rem;
  padding-bottom: 3rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 2rem;
  text-align: left;
}
.hero .hero-split__media {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: clamp(8px, 2vh, 16px);
  position: relative;
  width: 100%;
  max-width: 780px;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.hero .hero-split__media::before {
  content: "";
  position: absolute;
  inset: -12%;
  background-image: var(--media-bg, url('images/banner2.png'));
  background-position: center;
  background-size: cover;
  filter: blur(18px);
  transform: scale(1.1);
  z-index: 0;
}
.hero .hero-split__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  z-index: 0;
}
.hero .hero-split__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}
.hero .hero-split__panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(185,147,90,0.20);
  border-radius: 16px;
  padding: 16px 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero .hero__kicker {
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b9935a;
  background: #fff7eb;
  border: 1px solid #e0c08d;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  display: inline-block;
}
.hero .hero__title.h1 {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: clamp(2.6rem, 5.2vw, 3.6rem);
  letter-spacing: 0.3px;
  line-height: 1.1;
}
.hero .hero__tagline {
  color: #7a5d33;
  font-weight: 700;
  margin-top: 0.2rem;
}
.hero .hero__desc.lead {
  color: #4a4a4a;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  max-width: 520px;
  margin-top: 0.4rem;
  margin-bottom: 0.6rem;
}
.hero .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.4rem;
}
@media (max-width: 1000px) {
  .hero .hero-split { grid-template-columns: 1fr; text-align: center; }
  .hero .hero-split__media { justify-content: center; max-width: 680px; aspect-ratio: 16/11; }
  .hero .hero-split__panel { align-items: center; }
  .hero .hero__title.h1, .hero .hero__desc.lead, .hero .hero__tagline { text-align: center; }
  .hero .hero__actions { justify-content: center; }
}
@media (max-width: 700px) {
  .hero .hero-split__media { max-width: none; aspect-ratio: 4/5; border-radius: 14px; }
}
