:root {
  --olive: #586346;
  --olive-dark: #31382a;
  --olive-soft: #899173;
  --gold: #b89a6b;
  --cream: #f7f3ea;
  --sand: #e7dece;
  --white: #ffffff;
  --text: #243022;
  --muted: #677260;
  --shadow: 0 20px 55px rgba(36, 48, 34, 0.12);
  --radius: 26px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100% - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(184, 154, 107, 0.18), transparent 30%),
    linear-gradient(180deg, #fbfaf6 0%, #f4efe5 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.container { width: var(--container); margin: 0 auto; }
.section { padding: 92px 0; }
.soft-card {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(88, 99, 70, 0.11);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.section-tag {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .82rem;
  font-weight: 700;
}
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: .95;
  margin: 0 0 18px;
  font-weight: 700;
}
h1 { font-size: clamp(3.3rem, 8vw, 6.3rem); }
h2 { font-size: clamp(2.3rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
p { line-height: 1.75; color: var(--muted); margin: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 243, 234, 0.74);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(88, 99, 70, 0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}
.brand span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--olive-dark);
  line-height: .9;
}
.brand small {
  display: block;
  color: var(--muted);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .68rem;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  color: var(--olive-dark);
  font-weight: 600;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }
.lang-toggle, .menu-toggle {
  border: 0;
  background: transparent;
}
.lang-toggle {
  min-width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--olive-dark);
  color: var(--white);
  font-weight: 700;
  box-shadow: var(--shadow);
}
.menu-toggle { display: none; width: 48px; height: 48px; padding: 0; }
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--olive-dark);
  margin: 5px auto;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg { object-fit: cover; }
.hero-overlay {
  background:
    linear-gradient(100deg, rgba(27, 35, 23, 0.72) 0%, rgba(27, 35, 23, 0.44) 36%, rgba(27, 35, 23, 0.18) 100%),
    linear-gradient(180deg, rgba(184, 154, 107, 0.16), rgba(88, 99, 70, 0.22));
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 110px 0 90px;
  max-width: 720px;
}
.hero-content .eyebrow,
.hero-content .hero-copy { color: rgba(255,255,255,0.9); }
.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .77rem;
}
.hero-copy {
  max-width: 650px;
  font-size: 1.08rem;
  margin-bottom: 34px;
}
.hero-actions,
.social-buttons,
.contact-list,
.contact-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold);
  color: #1f231c;
  box-shadow: 0 16px 30px rgba(184, 154, 107, 0.28);
}
.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(88, 99, 70, 0.18);
  color: var(--olive-dark);
}

.intro-grid, .split-grid, .socials-grid, .contact-grid {
  display: grid;
  gap: 28px;
}
.intro-grid { grid-template-columns: 1.15fr .85fr; }
.intro-card { padding: 38px; }
.intro-features { display: grid; gap: 18px; }
.feature-card { padding: 26px; }
.split-grid { grid-template-columns: 1.1fr .9fr; align-items: center; }
.split-grid.reverse { grid-template-columns: .95fr 1.05fr; }
.venue-side, .text-card, .map-card, .video-card { height: 100%; }
.tall-image {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.bullet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.bullet-item { padding: 22px; }
.bullet-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--olive-dark);
}
.bullet-item span { color: var(--muted); line-height: 1.6; }

.section-head.center { text-align: center; max-width: 780px; margin: 0 auto 36px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.gallery-item {
  padding: 0;
  border: 0;
  background: none;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .45s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.rounded-image { border-radius: var(--radius); }

.socials-grid { grid-template-columns: .9fr 1.1fr; }
.social-card, .embed-card, .text-card, .map-card, .contact-info, .contact-form { padding: 34px; }
.ratio-box {
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #dfe4d8;
  aspect-ratio: 16 / 9;
}
.ratio-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-box { aspect-ratio: 4 / 3; }

.contact-grid { grid-template-columns: .78fr 1.22fr; align-items: start; }
.contact-list, .contact-mini { margin-top: 22px; }
.contact-list a, .contact-mini a {
  background: rgba(88, 99, 70, 0.08);
  color: var(--olive-dark);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
}
.contact-form label {
  display: block;
  color: var(--olive-dark);
  font-weight: 600;
}
.contact-form span {
  display: block;
  margin-bottom: 10px;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}
input, textarea {
  width: 100%;
  border: 1px solid rgba(88, 99, 70, 0.16);
  border-radius: 18px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.9);
  color: var(--olive-dark);
  outline: none;
}
input:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(184, 154, 107, 0.12); }
textarea { resize: vertical; min-height: 150px; }
.contact-form .btn { margin-top: 20px; border: 0; }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: white;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.35);
}
.whatsapp-float svg { width: 32px; height: 32px; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(16, 21, 14, 0.88);
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 86vh;
  border-radius: 22px;
  box-shadow: 0 30px 65px rgba(0,0,0,0.35);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: 0;
  background: rgba(255,255,255,0.14);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.site-footer {
  padding: 28px 0 44px;
}
.footer-wrap {
  text-align: center;
  color: var(--muted);
}
.footer-wrap a { color: var(--olive-dark); font-weight: 700; }

@media (max-width: 980px) {
  .intro-grid, .split-grid, .split-grid.reverse, .socials-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tall-image { min-height: 420px; }
}

@media (max-width: 820px) {
  .menu-toggle { display: inline-block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(88,99,70,.1);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .nav-wrap { flex-wrap: wrap; }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  h1 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero { min-height: 82vh; }
  .hero-content { padding-top: 90px; }
  .bullet-grid, .form-row, .gallery-grid { grid-template-columns: 1fr; }
  .intro-card, .social-card, .embed-card, .text-card, .map-card, .contact-info, .contact-form { padding: 26px; }
  .btn { width: 100%; }
  .hero-actions .btn, .social-buttons .btn { width: auto; }
}
