:root {
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.18);
  --gold-strong: rgba(212, 175, 55, 0.55);
  --black: #050505;
  --black-soft: #0d0d0f;
  --white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.74);
  --text-soft: rgba(255, 255, 255, 0.6);
  --border: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.08);
  --glass-heavy: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 16px 32px rgba(0, 0, 0, 0.28);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --shell: min(1180px, calc(100% - 40px));
  --transition: 260ms ease;
  --hero-image: url("WhatsApp Image 2026-07-05 at 9.28.51 PM (1).jpeg");
  --site-image: url("WhatsApp Image 2026-07-05 at 9.28.48 PM.jpeg");
  --section-image: url("WhatsApp Image 2026-07-05 at 9.28.51 PM (2).jpeg");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.9)),
    var(--site-image) center top / cover fixed no-repeat,
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.12), transparent 32%),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 26%),
    linear-gradient(180deg, #060606 0%, #090909 38%, #040404 100%);
  line-height: 1.7;
  max-width: 100%;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

button {
  cursor: pointer;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

.shell {
  width: var(--shell);
  margin: 0 auto;
  max-width: 100%;
  min-width: 0;
}

.section {
  position: relative;
  padding: 104px 0;
  isolation: isolate;
  overflow-x: clip;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.84), rgba(5, 5, 5, 0.76)),
    var(--section-image) center / cover no-repeat;
  opacity: 0.48;
}

.section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.12), transparent 24%),
    radial-gradient(circle at 85% 75%, rgba(212, 175, 55, 0.08), transparent 22%);
  pointer-events: none;
}

main .section:nth-of-type(even)::before {
  background-position: center right;
  opacity: 0.42;
}

main .section:nth-of-type(odd)::before {
  background-position: center left;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2.25rem, 4.8vw, 4rem);
  line-height: 1.05;
}

h3 {
  font-size: 1.65rem;
}

p,
address {
  margin: 0;
  color: var(--text-muted);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 40px;
}

.section-heading h2,
.section-copy h2 {
  margin-bottom: 18px;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 4px;
  z-index: 140;
  background: linear-gradient(90deg, #f5df8e, var(--gold));
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.75);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.14), transparent 28%),
    rgba(5, 5, 5, 0.98);
  transition: opacity 500ms ease, visibility 500ms ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-brand {
  display: grid;
  gap: 18px;
  place-items: center;
}

.loader-ring {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--gold);
  border-right-color: var(--gold);
  animation: spin 1.1s linear infinite;
}

.loader-logo {
  width: min(250px, 52vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.42));
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  padding: 18px 0;
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.is-sticky {
  padding: 10px 0;
  background: rgba(5, 5, 5, 0.7);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.nav > * {
  min-width: 0;
}

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

.brand-logo {
  display: block;
  width: 96px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.34));
}

.nav-menu {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
  max-width: 100%;
}

.nav-menu a {
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color var(--transition), transform var(--transition);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
}

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

.nav-cta {
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e4c24f, #b88d1b);
  color: var(--black) !important;
  box-shadow: 0 14px 28px rgba(212, 175, 55, 0.24);
}

.nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero::before,
.hero::after {
  display: none;
}

.pamphlet-section {
  padding-top: 56px;
}

.pamphlet-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.pamphlet-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 14px;
  border-radius: 30px;
}

.pamphlet-card img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  object-fit: contain;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

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

.hero-backdrop {
  background: var(--hero-image) center/cover no-repeat;
  transform: scale(1.08);
  opacity: 0;
  transition: opacity 1200ms ease;
  will-change: transform;
}

.hero-backdrop.is-active {
  opacity: 1;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  padding-top: 112px;
}

.hero-grid-minimal {
  min-height: calc(100vh - 100px);
  place-items: center;
}

.hero-copy {
  max-width: 740px;
  transition: opacity 300ms ease, transform 300ms ease;
}

.hero-copy-minimal {
  display: grid;
  justify-items: center;
  text-align: center;
  max-width: 820px;
  gap: 20px;
}

.hero-copy.is-changing {
  opacity: 0.92;
  transform: translateY(2px);
}

.hero-grid > *,
.split-layout > *,
.ceremony-layout > *,
.booking-layout > *,
.footer-grid > *,
.form-grid > *,
.hero-panel-grid > *,
.gallery-grid > *,
.card-grid > *,
.faq-list > *,
.contact-grid > *,
.location-layout > *,
.footer-grid > * {
  min-width: 0;
}

.hero-logo {
  width: min(360px, 72vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.38));
}

.hero-slide-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin: 24px 0 0;
}

.hero-slide-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.hero-slide-dot.is-active {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
  transform: scale(1.08);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  overflow: hidden;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), color var(--transition), background var(--transition);
}

.btn::before {
  content: "";
  position: absolute;
  inset: -140% auto auto -60%;
  width: 48%;
  height: 360%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: rotate(22deg) translateX(-220%);
  transition: transform 620ms ease;
}

.btn:hover::before {
  transform: rotate(22deg) translateX(420%);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-gold {
  background: linear-gradient(135deg, #efd06c, #bb8e1c);
  color: var(--black);
  box-shadow: 0 18px 36px rgba(212, 175, 55, 0.22);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 175, 55, 0.38);
  color: var(--white);
}

.btn-dark {
  background: rgba(0, 0, 0, 0.32);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.glass-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    linear-gradient(160deg, rgba(212, 175, 55, 0.1), rgba(255, 255, 255, 0.02) 48%, rgba(0, 0, 0, 0.12));
  backdrop-filter: blur(24px) saturate(145%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04),
    0 24px 60px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(212, 175, 55, 0.04);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.22), transparent 34%, transparent 66%, rgba(212, 175, 55, 0.14)),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.14), transparent 28%);
  pointer-events: none;
}

.glass-card > * {
  position: relative;
  z-index: 1;
}

.hero-panel,
.info-card,
.feature-card,
.service-card,
.amenity-card,
.ceremony-panel,
.testimonial-slider,
.faq-item,
.contact-card,
.map-frame,
.booking-form {
  position: relative;
  isolation: isolate;
}

.hero-panel::after,
.info-card::after,
.feature-card::after,
.service-card::after,
.amenity-card::after,
.ceremony-panel::after,
.testimonial-slider::after,
.faq-item::after,
.contact-card::after,
.map-frame::after,
.booking-form::after {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 223, 142, 0.95), rgba(212, 175, 55, 0.55), transparent);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.22);
  pointer-events: none;
  z-index: 1;
}

.hero-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
  align-self: end;
}

.hero-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
}

.panel-label,
.panel-tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.8rem;
}

.panel-label {
  color: var(--gold);
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-panel-grid article {
  padding: 18px 14px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 28px rgba(0, 0, 0, 0.18);
}

.hero-panel-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 2rem;
  font-weight: 800;
}

.hero-panel-grid span {
  color: var(--text-soft);
  font-size: 0.88rem;
}

.hero-points {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 24px;
  color: var(--text-muted);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #f5df8e, var(--gold));
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.45);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.section-copy p + p {
  margin-top: 16px;
}

.signature-line {
  width: 180px;
  height: 1px;
  margin-top: 28px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.about-card-stack {
  display: grid;
  gap: 20px;
}

.info-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius-md);
}

.accent-card {
  transform: translateX(38px);
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.26), rgba(212, 175, 55, 0.08));
  border: 1px solid rgba(212, 175, 55, 0.28);
  color: var(--gold);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.icon-badge svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
}

.four-col {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.service-card,
.amenity-card {
  min-height: 100%;
  padding: 26px;
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.feature-card:hover,
.service-card:hover,
.amenity-card:hover,
.faq-item:hover,
.testimonial-slider:hover,
.booking-form:hover,
.map-frame:hover,
.hero-panel:hover,
.ceremony-panel:hover,
.gallery-item:hover,
.contact-card:hover,
.info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 28px 52px rgba(0, 0, 0, 0.38),
    0 0 36px rgba(212, 175, 55, 0.12);
}

.feature-card h3,
.service-card h3,
.amenity-card h3,
.info-card h3 {
  margin: 18px 0 10px;
}

.feature-card p,
.info-card p,
.contact-card address,
.testimonial p,
.faq-answer p,
.hero-panel-grid span {
  color: rgba(255, 255, 255, 0.72);
}

.service-card,
.amenity-card {
  display: flex;
  align-items: end;
  min-height: 180px;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    linear-gradient(160deg, rgba(212, 175, 55, 0.1), transparent 65%);
}

.feature-card {
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.feature-card .icon-badge,
.info-card .icon-badge {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 28px rgba(212, 175, 55, 0.16);
}

.service-card h3,
.amenity-card h3 {
  position: relative;
  padding-bottom: 12px;
}

.service-card h3::after,
.amenity-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

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

.gallery-item {
  position: relative;
  height: 320px;
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 500ms ease;
}

.gallery-item::after {
  content: "View";
  position: absolute;
  inset: auto 18px 18px auto;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid rgba(212, 175, 55, 0.28);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.ceremony-section {
  padding-top: 40px;
}

.ceremony-layout,
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.ceremony-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
  display: grid;
  gap: 16px;
}

.ceremony-stat {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.ceremony-stat:last-child {
  border-bottom: 0;
}

.ceremony-stat span {
  color: var(--text-soft);
}

.ceremony-stat strong {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-slider {
  padding: 34px;
  border-radius: var(--radius-lg);
}

.testimonial {
  padding: 8px 6px 4px;
}

.testimonial-track {
  display: flex;
  width: 100%;
  transition: transform 420ms ease;
}

.testimonial {
  flex: 0 0 100%;
  min-width: 100%;
  text-align: center;
}

.rating {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 0.2em;
}

.testimonial h3 {
  margin-bottom: 14px;
}

.testimonial p {
  max-width: 620px;
  margin: 0 auto;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

.slider-arrow,
.dot {
  border: 0;
}

.slider-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.5rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.slider-arrow:hover,
.dot.is-active,
.back-to-top:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  transition: transform var(--transition), background var(--transition);
}

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

.faq-item {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  border: 0;
  background: transparent;
  color: var(--white);
  text-align: left;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  color: var(--gold);
  font-size: 1.5rem;
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-item.is-open {
  border-color: rgba(212, 175, 55, 0.3);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition);
}

.faq-answer p {
  overflow: hidden;
  padding: 0 28px 0;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 24px;
}

.location-layout {
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-card {
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.contact-card h3 {
  margin-bottom: 10px;
}

.contact-card a {
  color: var(--gold);
  word-break: break-word;
}

.contact-card address {
  font-style: normal;
}

.map-panel {
  display: grid;
  gap: 18px;
}

.map-frame {
  padding: 12px;
  border-radius: var(--radius-lg);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 470px;
  border: 0;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.map-button {
  justify-self: start;
}

.booking-form {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.booking-form .form-grid {
  position: relative;
}

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

.booking-form label {
  display: grid;
  gap: 10px;
}

.booking-form span {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  color: var(--white);
  padding: 16px 18px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.booking-form input[type="date"] {
  color-scheme: dark;
}

.booking-form select option {
  color: var(--black);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(212, 175, 55, 0.52);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06));
  box-shadow:
    0 0 0 3px rgba(212, 175, 55, 0.12),
    0 14px 24px rgba(0, 0, 0, 0.14);
}

.full-width {
  grid-column: 1 / -1;
}

.submit-button {
  margin-top: 22px;
}

.form-note {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.site-footer {
  position: relative;
  padding: 36px 0 60px;
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.08), rgba(5, 5, 5, 0.94)),
    var(--section-image) center bottom / cover no-repeat;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 0.8fr;
  gap: 28px;
}

.footer-grid h2,
.footer-grid h3 {
  margin-bottom: 14px;
}

.footer-grid a,
.footer-grid address {
  display: block;
  color: var(--text-muted);
  font-style: normal;
}

.footer-grid a + a {
  margin-top: 10px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links a,
.back-to-top {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  transition: background var(--transition), transform var(--transition), color var(--transition), border-color var(--transition);
}

.social-links a:hover {
  background: rgba(212, 175, 55, 0.18);
  border-color: rgba(212, 175, 55, 0.34);
  transform: translateY(-2px);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:first-child svg,
.social-links a:nth-child(2) svg,
.social-links a:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}

.back-to-top {
  position: absolute;
  right: 28px;
  bottom: 28px;
  color: var(--white);
}

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 115;
  display: grid;
  gap: 12px;
  max-width: calc(100vw - 28px);
}

.floating-btn {
  min-width: 144px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulseFloat 3.2s ease-in-out infinite;
}

.floating-btn:hover {
  transform: translateY(-4px);
}

.floating-btn.whatsapp {
  background: linear-gradient(135deg, #28d56c, #17a74f);
  color: var(--white);
}

.floating-btn.call {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.floating-btn.book {
  background: linear-gradient(135deg, #efd06c, #bb8e1c);
  color: var(--black);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.lightbox.is-visible {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(1120px, 92vw);
  max-height: 84vh;
  border-radius: 24px;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.fade-left {
  transform: translateX(44px);
}

.reveal.fade-right {
  transform: translateX(-44px);
}

.reveal.zoom-in {
  transform: scale(0.92);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

@keyframes pulseFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 1160px) {
  .hero-grid,
  .split-layout,
  .ceremony-layout,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 780px;
  }

  .four-col,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .accent-card {
    transform: none;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 88px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 78px 20px auto;
    display: grid;
    gap: 12px;
    width: auto;
    max-width: calc(100vw - 40px);
    padding: 18px;
    border-radius: 24px;
    background: rgba(9, 9, 9, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  }

  .menu-open .nav-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu a {
    padding: 10px 8px;
  }

  .hero-panel-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-logo {
    width: min(300px, 78vw);
  }

  .four-col,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .gallery-item {
    height: auto;
    aspect-ratio: 1 / 1.1;
  }

  .floating-actions {
    right: 16px;
    bottom: 16px;
  }

  .floating-btn {
    min-width: 118px;
    min-height: 48px;
    font-size: 0.88rem;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: min(100% - 28px, 100%);
  }

  body {
    background-attachment: scroll;
    background-size: auto, cover, auto, auto, auto;
  }

  html,
  body,
  main {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .site-header {
    padding: 14px 0;
  }

  .hero-grid {
    padding-top: 104px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero-grid-minimal {
    min-height: calc(84vh - 40px);
  }

  .hero-logo {
    width: min(250px, 78vw);
  }

  .pamphlet-section {
    padding-top: 34px;
  }

  .btn,
  .map-button,
  .submit-button {
    width: 100%;
  }

  .hero-panel,
  .booking-form,
  .testimonial-slider,
  .pamphlet-card {
    padding: 24px;
  }

  .info-card {
    grid-template-columns: 1fr;
  }

  .map-frame iframe {
    min-height: 360px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
  }

  .floating-actions {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: auto;
    max-width: calc(100vw - 28px);
  }

  .floating-btn {
    min-width: 0;
    width: 100%;
    padding: 0 10px;
    font-size: 0.8rem;
  }
}

@media (max-width: 420px) {
  .section {
    padding: 76px 0;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.4rem);
  }

  .brand-logo {
    width: 76px;
    height: auto;
  }

  .hero-logo {
    width: min(220px, 74vw);
  }

  .hero-panel-grid article,
  .feature-card,
  .service-card,
  .amenity-card,
  .contact-card {
    padding: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .gallery-item {
    aspect-ratio: 1 / 1;
    border-radius: 20px;
  }

  .floating-actions {
    left: 10px;
    right: 10px;
    gap: 8px;
    max-width: calc(100vw - 20px);
  }

  .floating-btn {
    min-height: 44px;
    font-size: 0.74rem;
    padding: 0 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
  }
}
