

/* =====================================================
   MOGADOR PALAIS DES CONGRÈS — Landing Page Styles
   ===================================================== */

:root {
  --burgundy:      #6B1E1E;
  --burgundy-dark: #4E1515;
  --gold:          #C8A96A;
  --gold-dark:     #A88845;
  --brown:         #2B1A17;
  --brown-mid:     #4A2C25;
  --beige:         #F5EFE6;
  --beige-dark:    #EAE0D0;
  --beige-mid:     #D9CCBA;
  --white:         #FFFFFF;
  --muted:         #7A6558;
  --display: 'Cormorant Garamond', Georgia, serif;
  --body:    'DM Sans', 'Helvetica Neue', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); background: var(--beige); color: var(--brown); -webkit-font-smoothing: antialiased; }

a {
  text-decoration: none;
  color: rgba(245,239,230,0.55);
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--brown); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 0; }

/* ── NAV ── */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: 72px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 60px;
  transition: background 400ms ease, box-shadow 400ms ease;
}
#main-nav.scrolled {
  background: rgba(43,26,23,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(200,169,106,0.2);
}
.nav-brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.nav-logo-wrap { background: var(--white); padding: 4px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
.nav-logo-wrap img { width: 28px; height: 28px; object-fit: contain; }
.nav-brand-name { font-family: var(--display); font-size: 16px; font-weight: 400; color: var(--beige); letter-spacing: 0.04em; line-height: 1.1; }
.nav-brand-sub { font-family: var(--body); font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-family: var(--body); font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,239,230,0.8); text-decoration: none; padding-bottom: 2px; border-bottom: 1px solid transparent; transition: color 0.2s, border-color 0.2s; }
.nav-links a:hover { color: var(--gold); border-color: var(--gold); }
.nav-cta { font-family: var(--body); font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; background: var(--burgundy); color: var(--beige); border: none; padding: 10px 24px; cursor: pointer; text-decoration: none; transition: background 0.2s; }
.nav-cta:hover { background: var(--burgundy-dark); }

/* ── BUTTONS ── */
.btn { display: inline-block; text-decoration: none; cursor: pointer; border: none; font-family: var(--body); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.btn-primary { background: var(--burgundy); color: var(--beige); padding: 16px 44px; font-size: 11px; }
.btn-primary:hover { background: var(--burgundy-dark); }
.btn-gold { background: var(--gold); color: var(--brown); padding: 16px 44px; font-size: 11px; }
.btn-gold:hover { background: var(--gold-dark); color: var(--beige); }
.btn-outline { background: transparent; color: var(--beige); border: 1px solid rgba(245,239,230,0.4); padding: 15px 43px; font-size: 11px; font-weight: 500; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-light { background: transparent; color: var(--burgundy); border: 1px solid rgba(107,30,30,0.22); padding: 15px 43px; font-size: 11px; font-weight: 500; }
.btn-outline-light:hover { border-color: var(--burgundy); color: var(--burgundy-dark); background: rgba(107,30,30,0.04); }
.btn-text-gold { background: none; border: none; font-family: var(--body); font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--burgundy); border-bottom: 1px solid var(--gold); padding-bottom: 2px; cursor: pointer; }

/* ── ORNAMENTS ── */
.ornament { display: flex; align-items: center; gap: 10px; }
.ornament-line { flex: 1; height: 1px; background: var(--gold); }
.ornament-diamond { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }
.ornament-center { margin: 0 auto; width: 160px; }

.overline { font-family: var(--body); font-size: 10px; font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 14px; display: block; }
.overline-light { color: var(--gold); }

/* ── SECTION STRUCTURE ── */
.section-pad { padding: 96px 80px; }
.section-pad-sm { padding: 72px 80px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-family: var(--display); font-size: clamp(30px, 3vw, 44px); font-weight: 400; letter-spacing: -0.01em; line-height: 1.1; color: var(--brown); margin: 10px 0 16px; }
.section-header h2.on-dark { color: var(--beige); }
.section-header p { font-size: 15px; color: var(--muted); max-width: 520px; margin: 18px auto 0; line-height: 1.8; }
.section-header p.on-dark { color: rgba(245,239,230,0.65); }
.max-w { max-width: 1200px; margin: 0 auto; }

/* ── IMAGE PLACEHOLDERS ── */
.img-ph { background: linear-gradient(135deg, #3d2318 0%, #2B1A17 45%, #1a0e0b 100%); position: relative; overflow: hidden; }
.img-ph-warm { background: linear-gradient(135deg, #4A2C25 0%, #3d2318 50%, #2B1A17 100%); }
.img-ph-deep { background: linear-gradient(135deg, #1a0e0b 0%, #2B1A17 60%, #3d2318 100%); }
.img-ph::after { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, rgba(200,169,106,0.04) 0, rgba(200,169,106,0.04) 1px, transparent 0, transparent 50%); background-size: 18px 18px; }

/* ── FADE IN ── */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in.d1 { transition-delay: 0.1s; }
.fade-in.d2 { transition-delay: 0.2s; }
.fade-in.d3 { transition-delay: 0.3s; }
.fade-in.d4 { transition-delay: 0.4s; }
.fade-in.d5 { transition-delay: 0.5s; }

/* ── FORM ── */
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-family: var(--body); font-size: 9px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(245,239,230,0.55); }
.form-field input, .form-field select, .form-field textarea {
  background: rgba(245,239,230,0.06); border: 1px solid rgba(200,169,106,0.22);
  color: var(--beige); font-family: var(--body); font-size: 14px;
  padding: 13px 16px; outline: none; border-radius: 0;
  transition: border-color 0.25s, background 0.25s;
  -webkit-appearance: none; width: 100%;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(245,239,230,0.25); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold); background: rgba(245,239,230,0.1); }
.form-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C8A96A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-field select option { background: var(--brown); color: var(--beige); }
.form-field textarea { resize: vertical; min-height: 110px; }

/* Success state */
.form-success { display: none; text-align: center; padding: 48px 32px; }
.form-success.visible { display: block; }
.form-main.hidden { display: none; }

/* ── CARDS ── */
.card-white { background: var(--white); padding: 36px 32px; border-top: 2px solid transparent; transition: border-color 0.25s; }
.card-white:hover { border-color: var(--gold); }
.card-beige { background: var(--beige-dark); padding: 36px 32px; }
/* Gallery Slider */
.gallery-shell {
  background:
    radial-gradient(circle at top left, rgba(200,169,106,0.18), transparent 24%),
    linear-gradient(180deg, #f6efe5 0%, #efe4d4 100%);
  position: relative;
  overflow: hidden;
}
#gallery.section-pad {
  padding-top: 28px;
  padding-bottom: 34px;
}
.gallery-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(43,26,23,0.028) 0, rgba(43,26,23,0.028) 1px, transparent 0, transparent 26px);
  pointer-events: none;
  opacity: 0.6;
}
.gallery-slider {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
}
.gallery-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  outline: none;
  width: 100%;
  padding: 8px 0 18px;
}
.gallery-viewport::-webkit-scrollbar { display: none; }
.gallery-track {
  display: flex;
  gap: 14px;
  padding: 0 12px;
}
.gallery-slide {
  position: relative;
  flex: 0 0 clamp(140px, 14vw, 190px);
  scroll-snap-align: start;
  min-height: 130px;
  height: 130px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(43,26,23,0.12);
  border: 1px solid rgba(107,30,23,0.08);
  background: var(--white);
}
.gallery-link {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery-img {
  width: 100%;
  height: 100%;
  min-height: 130px;
  object-fit: cover;
  display: block;
}
.gallery-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.gallery-link {
  cursor: zoom-in;
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 6, 5, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.gallery-lightbox::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(200,169,106,0.08), transparent 24%),
    radial-gradient(circle at 80% 80%, rgba(107,30,23,0.16), transparent 28%);
  pointer-events: none;
}
.gallery-lightbox-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(1180px, 94vw);
  max-height: 88vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0,0,0,0.5);
  border: 1px solid rgba(200,169,106,0.14);
  background: #120907;
}
.gallery-lightbox-close,
.gallery-lightbox-nav {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(245,239,230,0.18);
  background: rgba(27,15,12,0.84);
  color: var(--beige);
  box-shadow: 0 16px 32px rgba(0,0,0,0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.gallery-lightbox-close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.gallery-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}
.gallery-lightbox-prev { left: 20px; }
.gallery-lightbox-next { right: 20px; }
.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* â”€â”€ SHARED LAYOUT HELPERS â”€â”€ */
.bg-brown { background: var(--brown); }
.bg-burgundy { background: var(--burgundy); }
.bg-beige { background: var(--beige); }
.bg-beige-dark { background: var(--beige-dark); }
.bg-white { background: var(--white); }
.bg-footer { background: #1a0e0b; }
.section-shell { position: relative; overflow: hidden; }
.section-pad { padding: 96px 80px; }
.relative { position: relative; }
.absolute { position: absolute; }
.overflow-hidden { overflow: hidden; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.inline-block { display: inline-block; }
.fit-cover { width: 100%; height: 100%; object-fit: cover; }
.max-w-1200 { max-width: 1200px; margin: 0 auto; }
.max-w-780 { max-width: 780px; }
.max-w-540 { max-width: 540px; }
.max-w-520 { max-width: 520px; }
.max-w-460 { max-width: 460px; }
.max-w-140 { width: 140px; }
.px-40 { padding-left: 40px; padding-right: 40px; }
.mb-4 { margin-bottom: 4px; }
.mb-6 { margin-bottom: 6px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-14 { margin-bottom: 14px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-22 { margin-bottom: 22px; }
.mb-24 { margin-bottom: 24px; }
.mb-28 { margin-bottom: 28px; }
.mb-32 { margin-bottom: 32px; }
.mb-36 { margin-bottom: 36px; }
.mb-40 { margin-bottom: 40px; }
.mb-44 { margin-bottom: 44px; }
.mb-48 { margin-bottom: 48px; }
.mt-2 { margin-top: 2px; }
.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-10 { margin-top: 10px; }
.mt-12 { margin-top: 12px; }
.mt-14 { margin-top: 14px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-28 { margin-top: 28px; }
.mt-32 { margin-top: 32px; }
.mt-36 { margin-top: 36px; }
.mt-40 { margin-top: 40px; }
.mt-44 { margin-top: 44px; }
.mt-48 { margin-top: 48px; }
.mt-56 { margin-top: 56px; }
.mt-64 { margin-top: 64px; }
.gap-1 { gap: 1px; }
.gap-2 { gap: 2px; }
.gap-4 { gap: 4px; }
.gap-8 { gap: 8px; }
.gap-10 { gap: 10px; }
.gap-12 { gap: 12px; }
.gap-14 { gap: 14px; }
.gap-16 { gap: 16px; }
.gap-18 { gap: 18px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-36 { gap: 36px; }
.gap-40 { gap: 40px; }
.gap-48 { gap: 48px; }
.gap-60 { gap: 60px; }
.gap-80 { gap: 80px; }
.flex { display: flex; }
.grid { display: grid; }
.column { flex-direction: column; }
.row { flex-direction: row; }
.row-reverse { flex-direction: row-reverse; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-stretch { align-items: stretch; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.wrap { flex-wrap: wrap; }
.self-center { align-self: center; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.h-32 { height: 32px; }
.h-36 { height: 36px; }
.h-40 { height: 40px; }
.h-260 { height: 260px; }
.h-240 { height: 240px; }
.h-320 { height: 320px; }
.w-1 { width: 1px; }
.w-5 { width: 5px; }
.w-36 { width: 36px; }
.w-40 { width: 40px; }
.w-52 { width: 52px; }
.w-140 { width: 140px; }
.w-260 { width: 260px; }
.w-360 { width: 360px; }
.w-460 { width: 460px; }
.w-500 { width: 500px; }
.min-h-560 { min-height: 560px; }
.min-h-640 { min-height: 640px; }
.pos-hero-center { position: absolute; left: 50%; transform: translateX(-50%); }
.font-display { font-family: var(--display); }
.font-body { font-family: var(--body); }
.color-beige { color: var(--beige); }
.color-gold { color: var(--gold); }
.color-gold-dark { color: var(--gold-dark); }
.color-brown { color: var(--brown); }
.color-muted { color: var(--muted); }
.color-muted-55 { color: rgba(245,239,230,0.55); }
.color-muted-6 { color: rgba(245,239,230,0.6); }
.color-muted-65 { color: rgba(245,239,230,0.65); }
.color-muted-68 { color: rgba(245,239,230,0.68); }
.color-muted-72 { color: rgba(245,239,230,0.72); }
.color-muted-45 { color: rgba(245,239,230,0.45); }
.color-muted-35 { color: rgba(245,239,230,0.35); }
.color-muted-3 { color: rgba(245,239,230,0.3); }
.color-muted-25 { color: rgba(245,239,230,0.25); }
.color-muted-5 { color: rgba(245,239,230,0.5); }
.color-gold-35 { color: rgba(200,169,106,0.35); }
.color-gray-80 { color: rgba(245,239,230,0.8); }
.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.ls-04 { letter-spacing: 0.04em; }
.ls-06 { letter-spacing: 0.06em; }
.ls-12 { letter-spacing: 0.12em; }
.ls-14 { letter-spacing: 0.14em; }
.ls-16 { letter-spacing: 0.16em; }
.ls-18 { letter-spacing: 0.18em; }
.ls-20 { letter-spacing: 0.2em; }
.ls-22 { letter-spacing: 0.22em; }
.ls-26 { letter-spacing: 0.26em; }
.lh-1 { line-height: 1; }
.lh-11 { line-height: 1.1; }
.lh-17 { line-height: 1.7; }
.lh-18 { line-height: 1.8; }
.lh-185 { line-height: 1.85; }
.lh-2 { line-height: 2; }
.text-upper { text-transform: uppercase; }
.italic { font-style: italic; }
.center-abs-y { top: 50%; transform: translateY(-50%); }
.z-1 { z-index: 1; }
.radial-arch { opacity: 0.06; }

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--brown);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18,10,8,0.32) 0%, rgba(43,26,23,0.38) 52%, rgba(18,10,8,0.78) 100%),
    url('../images/hero.png') center center / cover no-repeat;
  filter: saturate(0.96) contrast(1.04) brightness(0.88);
  transform: scale(1.02);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 18%, rgba(10,6,5,0.64) 100%);
  pointer-events: none;
}
.hero-bg-gradient,
.hero-bg-pattern,
.hero-bg-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg-gradient { z-index: 0; }
.hero-bg-pattern {
  z-index: 1;
  opacity: 0.012;
  background-image: repeating-linear-gradient(45deg,#C8A96A 0,#C8A96A 1px,transparent 0,transparent 50%);
  background-size: 28px 28px;
}
.hero-bg-vignette {
  z-index: 2;
  background: radial-gradient(ellipse at center, transparent 26%, rgba(13,9,8,0.52) 100%);
}
.hero-arch {
  display: none;
}
.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 760px;
  padding: 24px 42px 28px;
  background: linear-gradient(180deg, rgba(22,12,10,0.20), rgba(22,12,10,0.10));
  border: 1px solid rgba(200,169,106,0.06);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.hero-overline {
  display: block;
  margin-bottom: 10px;
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(32px,4vw,54px);
  font-weight: 300;
  color: var(--beige);
  line-height: 1.03;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin: 12px auto 14px;
  text-shadow: 0 6px 12px rgba(0,0,0,0.18);
}
.hero-emphasis { font-style: italic; color: var(--gold); }
.hero-copy {
  font-size: clamp(12px,1.05vw,14px);
  font-weight: 300;
  color: rgba(245,239,230,0.64);
  line-height: 1.78;
  max-width: 480px;
  margin: 0 auto 24px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.14);
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.intro-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.intro-actions .btn {
  margin-left: 0 !important;
}
.hero-scroll {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.18;
  z-index: 4;
}
.hero-scroll-label {
  font-family: var(--body);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--beige);
}
.hero-scroll-line { width: 1px; height: 32px; background: var(--gold); }

/* Stats */
.stats-strip { background: var(--burgundy); }
.stats-inner { display: flex; max-width: 1200px; margin: 0 auto; }
.stat-item { flex: 1; padding: 32px 0; text-align: center; }
.stat-item + .stat-item { border-right: 1px solid rgba(245,239,230,0.12); }
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: var(--display);
  font-size: clamp(28px,3vw,40px);
  font-weight: 300;
  color: var(--beige);
  line-height: 1;
}
.stat-unit { font-size: 18px; }
.stat-label {
  font-family: var(--body);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.55);
  margin-top: 8px;
  font-weight: 500;
}

/* Difference cards */
.value-pill-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 48px; }
.value-pill {
  font-family: var(--body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(200,169,106,0.4);
  color: var(--gold-dark);
  padding: 8px 16px;
}
.card-white.is-lifted {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(107,30,30,0.1);
}

/* Venue / feature rows */
.venue-shell { background: var(--brown); position: relative; overflow: hidden; }
.venue-arch {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.06;
}
.venue-layout {
  display: flex;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}
.venue-media { flex: 0 0 auto; opacity: 0.85; }
.venue-copy { flex: 1; min-width: 300px; }
.venue-heading {
  font-family: var(--display);
  font-size: clamp(34px,4vw,52px);
  font-weight: 300;
  color: var(--beige);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 10px 0 20px;
}
.venue-emphasis { color: var(--gold); }
.venue-intro {
  font-size: 15px;
  color: rgba(245,239,230,0.68);
  line-height: 1.85;
  margin-bottom: 36px;
}
.venue-features { display: flex; flex-direction: column; gap: 18px; }
.feature-row { display: flex; align-items: flex-start; gap: 16px; }
.feature-divider { width: 1px; height: 40px; background: var(--gold); flex-shrink: 0; margin-top: 4px; }
.feature-heading {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  color: var(--beige);
  margin-bottom: 4px;
}
.feature-copy {
  font-size: 13px;
  color: rgba(245,239,230,0.55);
  line-height: 1.7;
}
.logo-strip {
  margin-top: 64px;
  border-top: 1px solid var(--beige-mid);
  padding-top: 40px;
}
.logo-strip-label {
  font-family: var(--body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 28px;
}
.logo-strip-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.35;
}

/* Venue rows */
.venue-rows { display: flex; flex-direction: column; gap: 2px; }
.venue-row { display: flex; align-items: stretch; gap: 2px; }
.venue-row--reverse { flex-direction: row-reverse; }
.venue-image { flex: 0 0 360px; overflow: hidden; }
.venue-image--tall { height: 260px; }
.venue-image--short { height: 240px; }
.venue-panel { flex: 1; padding: 40px 44px; }
.venue-panel--light { background: var(--white); border-left: 3px solid var(--gold); }
.venue-panel--soft { background: var(--beige-dark); border-right: 3px solid var(--gold); }
.venue-number {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.venue-card-title {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 8px;
}
.venue-meta {
  font-family: var(--body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.venue-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.tag-list { display: flex; gap: 12px; flex-wrap: wrap; }
.tag {
  font-size: 11px;
  color: var(--muted);
  border: 1px solid var(--beige-mid);
  padding: 5px 12px;
}
.cta-center { text-align: center; margin-top: 56px; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.service-card { padding: 36px 24px; text-align: center; }
.service-card--brown { background: var(--brown); }
.service-card--brown-mid { background: var(--brown-mid); }
.service-card--burgundy { background: var(--burgundy); }
.service-title {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  color: var(--beige);
  margin-bottom: 8px;
}
.service-copy { font-size: 11px; color: rgba(245,239,230,0.55); line-height: 1.7; }

#services-section .u49 { gap: 18px; }
#services-section .service-feature {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(250,244,236,0.98) 100%);
  border: 1px solid rgba(107,30,30,0.08);
  border-top: 3px solid rgba(200,169,106,0.82);
  box-shadow: 0 12px 34px rgba(43,26,23,0.05);
  padding: 30px 28px 28px;
  overflow: hidden;
}
#services-section .service-feature::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(107,30,30,0.08), rgba(200,169,106,0.38), rgba(107,30,30,0.08));
}
#services-section .service-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(200,169,106,0.4);
  box-shadow: 0 18px 42px rgba(43,26,23,0.08);
}
#services-section .service-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 18px;
  background: rgba(107,30,30,0.05);
  border: 1px solid rgba(107,30,30,0.08);
  color: var(--burgundy);
  font-family: var(--display);
  font-size: 20px;
  line-height: 1;
}
#services-section .service-rule {
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(200,169,106,0.2));
  margin-bottom: 18px;
}
#services-section .service-feature .u9 {
  font-size: 22px;
  margin-bottom: 10px;
}
#services-section .service-feature .u10 {
  font-size: 14px;
  line-height: 1.85;
  max-width: 34ch;
}

/* Gastronomy */
.gastronomy-shell { background: var(--beige-dark); position: relative; overflow: hidden; }
.gastronomy-arch {
  position: absolute;
  left: -40px;
  bottom: -40px;
  opacity: 0.05;
}
.gastronomy-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.gastronomy-card {
  background: var(--white);
  padding: 40px 36px;
  border-top: 2px solid transparent;
  transition: border-color 0.25s;
}
.gastronomy-card:hover { border-color: var(--gold); }
.gastronomy-num {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.gastronomy-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 12px;
}
.gastronomy-copy { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* Destination */
.destination-shell {
  background:
    radial-gradient(circle at 18% 18%, rgba(200,169,106,0.14), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(107,30,30,0.14), transparent 26%),
    linear-gradient(135deg, #efe3d3 0%, #e8d7c2 48%, #eadcca 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 128px;
}
.destination-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(43,26,23,0.03) 0, rgba(43,26,23,0.03) 1px, transparent 0, transparent 22px);
  opacity: 0.55;
  pointer-events: none;
}
.destination-arch {
  position: absolute;
  left: -70px;
  bottom: -70px;
  opacity: 0.07;
  pointer-events: none;
}
.destination-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.destination-copy,
.destination-visual {
  min-width: 0;
}
.destination-copy {
  background: rgba(255,255,255,0.52);
  border: 1px solid rgba(107,30,30,0.08);
  backdrop-filter: blur(10px);
  padding: 40px 38px;
  box-shadow: 0 18px 42px rgba(43,26,23,0.08);
  min-height: 100%;
}
.destination-eyebrow {
  font-family: var(--body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.destination-title {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 18px;
}
.destination-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 56ch;
}
.destination-points {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}
.destination-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.destination-point-line {
  width: 1px;
  height: 38px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.destination-point-title {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 4px;
}
.destination-point-copy {
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
}
.destination-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
}
.destination-tag {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(107,30,30,0.12);
  background: rgba(255,255,255,0.36);
  color: var(--brown);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.destination-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 12px;
}
.destination-image-card {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  box-shadow: 0 24px 52px rgba(43,26,23,0.14);
}
.destination-image {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
}
.destination-image-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,26,23,0.06) 0%, rgba(43,26,23,0.65) 100%);
}
.destination-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  padding: 18px 18px 16px;
  background: rgba(43,26,23,0.66);
  border: 1px solid rgba(200,169,106,0.22);
  backdrop-filter: blur(8px);
}
.destination-overlay-label {
  font-family: var(--body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.destination-overlay-title {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.15;
  color: var(--beige);
}
.destination-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 2px;
}
.destination-stat {
  background: rgba(255,255,255,0.52);
  border: 1px solid rgba(107,30,30,0.08);
  padding: 20px 18px;
}
.destination-stat-value {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.1;
  color: var(--brown);
  margin-bottom: 6px;
}
.destination-stat-label {
  font-size: 11px;
  line-height: 1.7;
  color: var(--muted);
}

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-copy {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  color: var(--brown);
  line-height: 1.7;
  margin: 20px 0 28px;
}
.testimonial-meta { display: flex; align-items: center; gap: 14px; }
.avatar { width: 40px; height: 40px; background: var(--beige-dark); border-radius: 50%; flex-shrink: 0; }
.client-name { font-family: var(--body); font-size: 13px; font-weight: 600; color: var(--brown); }
.client-role { font-family: var(--body); font-size: 11px; color: var(--muted); margin-top: 2px; }
.logos-strip-title {
  font-family: var(--body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 28px;
}
.logos-list { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; opacity: 0.35; }
.logo-item { font-family: var(--display); font-size: 18px; font-weight: 600; color: var(--brown); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: auto; gap: 4px; }
.gallery-item { overflow: hidden; }
.gallery-item--wide { grid-column: span 2; height: 320px; }
.gallery-item--tall { height: 320px; }
.gallery-item--mid { height: 260px; }
.gallery-img { width: 100%; height: 100%; object-fit: cover; }

/* Contact */
.contact-shell { background: var(--burgundy); position: relative; overflow: hidden; }
.contact-arch {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.06;
}
.contact-wrap { z-index: 1; position: relative; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-overline { margin-bottom: 16px; }
.contact-heading {
  font-family: var(--display);
  font-size: clamp(34px,4vw,52px);
  font-weight: 300;
  color: var(--beige);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.contact-text { font-size: 14px; color: rgba(245,239,230,0.65); line-height: 1.85; margin-bottom: 36px; }
.contact-points { display: flex; flex-direction: column; gap: 16px; }
.contact-point { display: flex; align-items: center; gap: 14px; }
.contact-point-line { width: 1px; height: 32px; background: var(--gold); flex-shrink: 0; }
.contact-point-text { font-size: 13px; color: rgba(245,239,230,0.6); }
.contact-details { margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(200,169,106,0.2); }
.contact-details-title {
  font-family: var(--body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.contact-details-copy { font-size: 13px; color: rgba(245,239,230,0.55); line-height: 2; }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.span-2 { grid-column: span 2; }
.form-error { display: none; font-size: 12px; color: #f59e9e; margin: 14px 0 0; letter-spacing: 0.04em; }
.form-submit { margin-top: 24px; width: 100%; justify-content: center; font-size: 12px; padding: 18px; }
.form-note { font-size: 10px; color: rgba(245,239,230,0.3); margin-top: 14px; line-height: 1.6; letter-spacing: 0.04em; }
.success-state { display: none; text-align: center; padding: 48px 32px; }
.success-icon { margin-bottom: 24px; }
.success-title {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  color: var(--beige);
  margin-bottom: 12px;
}
.success-copy { font-size: 14px; color: rgba(245,239,230,0.65); line-height: 1.8; }

/* CTA */
.cta-shell { background: var(--brown); padding: 96px 80px; text-align: center; position: relative; overflow: hidden; }
.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(45deg,#C8A96A 0,#C8A96A 1px,transparent 0,transparent 50%);
  background-size: 24px 24px;
}
.cta-arch {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.06;
}
.cta-content { position: relative; }
.cta-overline { margin-bottom: 20px; display: block; }
.cta-title {
  font-family: var(--display);
  font-size: clamp(38px,5vw,64px);
  font-weight: 300;
  color: var(--beige);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.cta-copy { font-size: 15px; color: rgba(245,239,230,0.6); max-width: 460px; margin: 20px auto 44px; line-height: 1.85; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer-shell { background: #1a0e0b; padding: 64px 80px 32px; }
.footer-top { display: flex; gap: 60px; margin-bottom: 48px; flex-wrap: wrap; }
.footer-brand { flex: 0 0 260px; }
.footer-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo-box { background: var(--white); padding: 4px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
.footer-logo { width: 28px; height: 28px; object-fit: contain; }
.footer-brand-name { font-family: var(--display); font-size: 16px; font-weight: 400; color: var(--beige); letter-spacing: 0.04em; }
.footer-brand-sub { font-family: var(--body); font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.footer-copy { font-size: 12px; color: rgba(245,239,230,0.45); line-height: 1.8; margin-bottom: 20px; }
.footer-divider { width: 140px; }
.footer-divider .ornament-line,
.footer-divider .ornament-diamond { background: rgba(200,169,106,0.35); }
.footer-col { flex: 1; min-width: 120px; }
.footer-col--contact { min-width: 160px; }
.footer-heading {
  font-family: var(--body);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 12px;
  color: rgba(245,239,230,0.5);
  text-decoration: none;
}
.footer-contact { font-size: 12px; color: rgba(245,239,230,0.45); line-height: 2.1; }
.footer-bottom {
  border-top: 1px solid rgba(200,169,106,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal { font-size: 10px; color: rgba(245,239,230,0.25); letter-spacing: 0.06em; }
.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links span { font-size: 10px; color: rgba(245,239,230,0.25); cursor: pointer; letter-spacing: 0.06em; }

/* ── TESTIMONIALS ── */
.testimonial-card { background: var(--white); padding: 40px 36px; border-left: 2px solid var(--gold); position: relative; }
.testimonial-card::before { content: '\201C'; font-family: var(--display); font-size: 80px; color: var(--gold); opacity: 0.25; position: absolute; top: 12px; left: 28px; line-height: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .section-pad, .section-pad-sm { padding: 72px 48px; }
  /* Override inline 96px 80px section paddings */
  section[style*="padding:96px 80px"],
  section[style*="padding: 96px 80px"] { padding: 72px 48px !important; }
  footer[style*="padding:64px 80px"] { padding: 56px 40px 28px !important; }
  .congress-layout { flex-direction: column !important; }
  .congress-layout > .img-ph,
  .congress-layout > div[class*="img-ph"] { flex: 0 0 auto !important; width: 100% !important; height: 240px !important; }
  /* 3-col & 2-col inline grids → 2 cols on tablet */
  .grid-3[style*="repeat(3"] { grid-template-columns: repeat(2, 1fr) !important; }
  #services-section .u49 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  /* Contact section 2-col */
  #contact .grid-2[style*="grid-template-columns:1fr 1.4fr"],
  #contact div[style*="grid-template-columns:1fr 1.4fr"] { grid-template-columns: 1fr !important; gap: 48px !important; }
}

@media (max-width: 768px) {
  #main-nav { padding: 0 20px; height: 64px; justify-content: center; }
  .nav-links, .nav-cta { display: none; }
  .nav-brand { margin: 0 auto; }
  .nav-brand-name { font-size: 14px; }
  .nav-brand-sub { font-size: 7px; }

  /* All sections: tighter mobile padding */
  section[style*="padding:96px 80px"],
  section[style*="padding: 96px 80px"] { padding: 56px 22px !important; }
  footer[style*="padding:64px 80px"] { padding: 48px 22px 24px !important; }
  .section-pad, .section-pad-sm { padding: 56px 22px; }
  #gallery.section-pad { padding-top: 24px; padding-bottom: 28px; }

  /* Hero */
  #hero { padding: 0 16px !important; min-height: 560px !important; }
  #hero h1 { font-size: clamp(34px, 9vw, 48px) !important; }
  .hero-content { max-width: 100%; padding: 28px 20px 30px; }
  .hero-copy { max-width: 100%; margin-bottom: 24px; }
  .hero-actions { flex-direction: column !important; align-items: center !important; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-actions .btn { width: 100%; max-width: 320px; text-align: center; padding: 14px 20px !important; }
  #hero > div:nth-child(4),
  #hero > div:nth-child(5) { display: none !important; }
  .section-header,
  #about .section-header,
  #about .u7, #about .u11,
  #spaces .u17,
  #events-types .u50,
  #services-section .u50,
  #destination .u66 > div,
  #testimonials-section .testimonial-card,
  footer .u93,
  footer .u102,
  footer .u106,
  footer .u108 {
    text-align: center !important;
  }
  #about .u6,
  #events-types .u49,
  #services-section .u42,
  #destination .u66,
  footer .u92 {
    justify-content: center !important;
    align-items: center !important;
  }
  #about .u7,
  #about .u11,
  #events-types .u50,
  #services-section .u50,
  #testimonials-section .testimonial-card {
    align-items: center !important;
  }
  #spaces .u17,
  #destination .u66 > div,
  footer .u93,
  footer .u102,
  footer .u106 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #spaces .u22,
  #spaces .u23,
  #about .u12,
  #about .u53,
  #about .u71,
  #about .u94,
  .u91,
  footer .u104,
  footer .u110 {
    justify-content: center !important;
    align-items: center !important;
  }
  #services-section .service-feature,
  #destination .destination-copy,
  #destination .destination-point,
  #destination .destination-stats,
  #testimonials-section .testimonial-card {
    text-align: center !important;
    align-items: center !important;
  }
  #destination .destination-stats {
    justify-items: center;
  }
  footer .u92,
  footer .u108 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer .u104 {
    text-align: center;
  }
  #contact .u66 > div:first-child,
  #contact .u74,
  #contact .u75,
  #contact .u76,
  #contact .u71 {
    text-align: center !important;
  }
  #contact .u74,
  #contact .u71 {
    margin-inline: auto;
  }
  #contact .u66 > div:first-child {
    align-items: flex-start !important;
    text-align: left !important;
  }
  #contact .u74,
  #contact .u71 {
    align-items: flex-start !important;
  }
  #contact .u75,
  #contact .u76,
  #contact .u73 {
    text-align: left !important;
  }
  #services-section .u42,
  #events-types .u49,
  .u61 {
    justify-items: center;
  }
  #spaces .u16 {
    display: none !important;
  }
  footer .u92 {
    flex-direction: column;
    text-align: center;
  }
  footer .u104 {
    text-align: center;
  }
  #contact .u66 > div:first-child,
  #contact .u74,
  #contact .u75,
  #contact .u76,
  #contact .u71 {
    text-align: center !important;
  }
  #contact .u74,
  #contact .u71 {
    margin-inline: auto;
  }
  #contact .u66 > div:first-child {
    align-items: flex-start !important;
    text-align: left !important;
  }
  #contact .u74,
  #contact .u71 {
    align-items: flex-start !important;
  }
  #contact .u75,
  #contact .u76,
  #contact .u73 {
    text-align: left !important;
  }

  /* Stats */
  .stats-inner { flex-wrap: wrap !important; }
  .stats-inner > div { flex: 0 0 50% !important; padding: 22px 8px !important; border-right: none !important; border-bottom: 1px solid rgba(245,239,230,0.12); }
  .stats-inner > div:nth-child(odd) { border-right: 1px solid rgba(245,239,230,0.12) !important; }
  .stats-inner > div:nth-last-child(-n+2) { border-bottom: none; }

  /* All inline multi-col grids → single column */
  .grid-3[style*="repeat(3"],
  .grid-2[style*="repeat(2"],
  div[style*="grid-template-columns:repeat(3"],
  div[style*="grid-template-columns:repeat(2"],
  div[style*="grid-template-columns:repeat(4"] { grid-template-columns: 1fr !important; }

  /* Card lift offset (middle credibility card) */
  .card-white[style*="translateY(-8px)"] { transform: none !important; }

  /* Section headers */
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: clamp(26px, 6.5vw, 34px) !important; }

  /* Congress / venue rows */
  .congress-layout { flex-direction: column !important; gap: 0 !important; }
  .congress-layout > div { padding: 28px 22px !important; }
  .congress-layout > .img-ph,
  .congress-layout > div[class*="img-ph"] { flex: 0 0 auto !important; width: 100% !important; height: 200px !important; padding: 0 !important; }

  /* Form */
  .form-grid { grid-template-columns: 1fr !important; }
  .form-grid > div[style*="grid-column:span 2"] { grid-column: span 1 !important; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr !important; gap: 3px !important; }
  .gallery-grid .span-2,
  .gallery-grid > div[style*="grid-column:span 2"] { grid-column: span 2 !important; }
  .gallery-grid > div { height: 180px !important; }
  #services-section .u49 { grid-template-columns: 1fr !important; }
  #services-section .service-feature { padding: 26px 22px 24px; }
  #services-section .service-feature .u9 { font-size: 20px; }
  #services-section .service-feature .u10 { font-size: 13px; }

  /* Footer cols stack */
  footer .max-w > div[style*="display:flex;gap:60px"] { gap: 32px !important; }
  footer .max-w > div[style*="display:flex"][style*="justify-content:space-between"] { flex-direction: column; align-items: flex-start !important; gap: 12px !important; }

  /* Venue benefits text-left padding cleanup */
  #venue .max-w { gap: 40px !important; }

  /* Contact form intro & form */
  #contact .form-grid { gap: 14px !important; }

  /* Trust logos shrink */
  div[style*="opacity:0.35"] { gap: 24px !important; }

  /* Brand pills - center wrap */
  div[style*="justify-content:center"][style*="flex-wrap:wrap"] { gap: 8px !important; }
}

@media (max-width: 480px) {
  section[style*="padding:96px 80px"],
  section[style*="padding: 96px 80px"] { padding: 48px 18px !important; }
  footer[style*="padding:64px 80px"] { padding: 40px 18px 20px !important; }
  .section-pad, .section-pad-sm { padding: 48px 18px; }
  #gallery.section-pad { padding-top: 22px; padding-bottom: 24px; }

  .stats-inner > div { flex: 0 0 100% !important; border-right: none !important; }
  .stats-inner > div:nth-child(odd) { border-right: none !important; }

  .gallery-grid { grid-template-columns: 1fr !important; }
  .gallery-grid .span-2,
  .gallery-grid > div[style*="grid-column:span 2"] { grid-column: span 1 !important; }
  .gallery-grid > div { height: 220px !important; }

  /* Buttons full-width on tiny screens */
  .btn-primary, .btn-gold, .btn-outline, .btn-outline-light { padding: 14px 28px !important; font-size: 10px !important; }

  /* Testimonial cards */
  .testimonial-card { padding: 32px 24px !important; }

  /* Card padding */
  .card-white { padding: 28px 22px !important; }
  #services-section .service-feature { padding: 24px 20px 22px; }
  #services-section .service-feature .u9 { font-size: 19px; }
  #services-section .service-feature .u10 { font-size: 12px; }
}

/* =====================================================
   INLINE STYLE EXPORT (auto-generated)
   ===================================================== */
.u1 { font-family:var(--display);font-size:clamp(24px,2.6vw,36px);font-weight:300;color:var(--beige);line-height:1; }
.u2 { font-size:18px; }
.u3 { font-family:var(--body);font-size:9px;letter-spacing:0.18em;text-transform:uppercase;color:rgba(245,239,230,0.55);margin-top:8px;font-weight:500; }
.u4 { flex:1;padding:32px 0;text-align:center;border-right:1px solid rgba(245,239,230,0.12); }
.u5 { flex:1;padding:32px 0;text-align:center; }
.u6 { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px; }
.u7 { border-top:2px solid var(--gold);padding:40px 36px; }
.u8 { margin-bottom:24px; }
.u9 { font-family:var(--display);font-size:20px;font-weight:600;color:var(--brown);margin-bottom:12px; }
.u10 { font-size:13px;color:var(--muted);line-height:1.8; }
.u11 { border-top:2px solid var(--gold);padding:40px 36px;box-shadow:0 8px 32px rgba(107,30,30,0.08); }
.u12 { display:flex;gap:10px;flex-wrap:wrap;justify-content:center;margin-top:48px; }
.u13 { font-family:var(--body);font-size:9px;font-weight:600;letter-spacing:0.12em;text-transform:uppercase;border:1px solid rgba(200,169,106,0.4);color:var(--gold-dark);padding:8px 16px; }
.u14 { position:absolute;right:-60px;top:50%;transform:translateY(-50%);opacity:0.06; }
.u15 { display:flex;align-items:center;gap:80px;flex-wrap:wrap; }
.u16 { flex:0 0 auto;opacity:0.85; }
.u17 { flex:1;min-width:300px; }
.u18 { font-family:var(--display);font-size:clamp(32px,3.6vw,48px);font-weight:300;color:var(--beige);line-height:1.1;letter-spacing:-0.01em;margin:10px 0 20px; }
.u19 { color:var(--gold); }
.u20 { margin-bottom:24px;width:140px; }
.u21 { font-size:15px;color:rgba(245,239,230,0.68);line-height:1.85;margin-bottom:36px; }
.u22 { display:flex;flex-direction:column;gap:18px; }
.u23 { display:flex;align-items:flex-start;gap:16px; }
.u24 { width:1px;height:40px;background:var(--gold);flex-shrink:0;margin-top:4px; }
.u25 { font-family:var(--display);font-size:17px;font-weight:600;color:var(--beige);margin-bottom:4px; }
.u26 { font-size:12px;color:rgba(245,239,230,0.55);line-height:1.7; }
.u27 { display:flex;flex-direction:column;gap:2px; }
.u28 { display:flex;align-items:stretch;gap:2px; }
.u29 { flex:0 0 360px;height:260px;overflow:hidden; }
.u30 { width:100%;height:100%;object-fit:cover; }
.u31 { background:var(--white);flex:1;padding:40px 44px;border-left:3px solid var(--gold); }
.u32 { font-family:var(--display);font-size:36px;font-weight:300;color:var(--gold);line-height:1;margin-bottom:6px; }
.u33 { font-family:var(--display);font-size:26px;font-weight:600;color:var(--brown);margin-bottom:8px; }
.u34 { font-family:var(--body);font-size:9px;font-weight:600;letter-spacing:0.16em;text-transform:uppercase;color:var(--gold-dark);margin-bottom:16px; }
.u35 { font-size:13px;color:var(--muted);line-height:1.8;margin-bottom:24px; }
.u36 { display:flex;gap:12px;flex-wrap:wrap; }
.u37 { font-size:11px;color:var(--muted);border:1px solid var(--beige-mid);padding:5px 12px; }
.u38 { display:flex;align-items:stretch;gap:2px;flex-direction:row-reverse; }
.u39 { background:var(--beige-dark);flex:1;padding:40px 44px;border-right:3px solid var(--gold); }
.u40 { flex:0 0 360px;height:240px;overflow:hidden; }
.u41 { text-align:center;margin-top:56px; }
.u42 { display:grid;grid-template-columns:repeat(4,1fr);gap:1px; }
.u43 { background:var(--brown);padding:36px 24px;text-align:center; }
.u44 { font-family:var(--display);font-size:15px;font-weight:600;color:var(--beige);margin-bottom:8px; }
.u45 { font-size:10px;color:rgba(245,239,230,0.55);line-height:1.7; }
.u46 { background:var(--brown-mid);padding:36px 24px;text-align:center; }
.u47 { background:var(--burgundy);padding:36px 24px;text-align:center; }
.u48 { position:absolute;left:-40px;bottom:-40px;opacity:0.05; }
.u49 { display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px; }
.u50 { background:var(--white);padding:40px 36px;border-top:2px solid transparent;transition:border-color 0.25s;display:flex;flex-direction:column;justify-content:flex-start;min-height:100%; }
.u51 { font-family:var(--display);font-size:34px;font-weight:300;color:var(--gold);line-height:1;margin-bottom:16px; }
.u52 { font-family:var(--display);font-size:16px;font-weight:400;font-style:italic;color:var(--brown);line-height:1.7;margin-bottom:28px;margin-top:20px; }
.u53 { display:flex;align-items:center;gap:14px; }
.u54 { width:40px;height:40px;background:var(--beige-dark);border-radius:50%;flex-shrink:0; }
.u55 { font-family:var(--body);font-size:13px;font-weight:600;color:var(--brown); }
.u56 { font-family:var(--body);font-size:11px;color:var(--muted);margin-top:2px; }
.u57 { margin-top:64px;border-top:1px solid var(--beige-mid);padding-top:40px; }
.u58 { font-family:var(--body);font-size:9px;font-weight:500;letter-spacing:0.22em;text-transform:uppercase;color:var(--muted);text-align:center;margin-bottom:28px; }
.u59 { display:flex;justify-content:center;align-items:center;gap:48px;flex-wrap:wrap;opacity:0.35; }
.u60 { font-family:var(--display);font-size:16px;font-weight:600;color:var(--brown); }
.u61 { display:grid;grid-template-columns:repeat(3,1fr);grid-template-rows:auto;gap:4px; }
.u62 { grid-column:span 2;height:320px;overflow:hidden; }
.u63 { height:320px;overflow:hidden; }
.u64 { height:260px;overflow:hidden; }
.u65 { z-index: 1; position: relative; }
.u66 { display:grid;grid-template-columns:1fr 1.4fr;gap:80px;align-items:start; }
.u67 { margin-bottom:16px; }
.u68 { font-family:var(--display);font-size:clamp(32px,3.6vw,48px);font-weight:300;color:var(--beige);line-height:1.1;letter-spacing:-0.01em;margin-bottom:20px; }
.u69 { margin-bottom:28px;width:140px; }
.u70 { font-size:13px;color:rgba(245,239,230,0.65);line-height:1.85;margin-bottom:36px; }
.u71 { display:flex;flex-direction:column;gap:16px; }
.u72 { width:1px;height:32px;background:var(--gold);flex-shrink:0; }
.u73 { font-size:13px;color:rgba(245,239,230,0.6); }
.u74 { margin-top:48px;padding-top:32px;border-top:1px solid rgba(200,169,106,0.2); }
.u75 { font-family:var(--body);font-size:9px;font-weight:600;letter-spacing:0.2em;text-transform:uppercase;color:var(--gold);margin-bottom:16px; }
.u76 { font-size:13px;color:rgba(245,239,230,0.55);line-height:2; }
.u77 { display:grid;grid-template-columns:1fr 1fr;gap:16px; }
.u78 { grid-column:span 2; }
.u79 { display:none;font-size:12px;color:#f59e9e;margin:14px 0 0;letter-spacing:0.04em; }
.u80 { margin-top:24px;width:100%;justify-content:center;font-size:12px;padding:18px; }
.u81 { font-size:10px;color:rgba(245,239,230,0.3);margin-top:14px;line-height:1.6;letter-spacing:0.04em; }
.u82 { font-family:var(--display);font-size:30px;font-weight:400;color:var(--beige);margin-bottom:12px; }
.u83 { font-size:13px;color:rgba(245,239,230,0.65);line-height:1.8; }
.u84 { margin-top:24px; }
.u85 { position:absolute;inset:0;opacity:0.03;background-image:repeating-linear-gradient(45deg,#C8A96A 0,#C8A96A 1px,transparent 0,transparent 50%);background-size:24px 24px; }
.u86 { position:absolute;right:-40px;top:50%;transform:translateY(-50%);opacity:0.06; }
.u87 { position:relative; }
.u88 { margin-bottom:20px;display:block; }
.u89 { font-family:var(--display);font-size:clamp(34px,4.6vw,58px);font-weight:300;color:var(--beige);line-height:1.08;letter-spacing:-0.02em;margin-bottom:12px; }
.u90 { font-size:14px;color:rgba(245,239,230,0.6);max-width:460px;margin:20px auto 44px;line-height:1.85; }
.u91 { display:flex;gap:14px;justify-content:center;flex-wrap:wrap; }
.u92 { display:flex;gap:60px;margin-bottom:48px;flex-wrap:wrap; }
.u93 { flex:0 0 260px; }
.u94 { display:flex;align-items:center;gap:12px;margin-bottom:20px; }
.u95 { background:var(--white);padding:4px;width:36px;height:36px;display:flex;align-items:center;justify-content:center; }
.u96 { width:28px;height:28px;object-fit:contain; }
.u97 { font-family:var(--display);font-size:16px;font-weight:400;color:var(--beige);letter-spacing:0.04em; }
.u98 { font-family:var(--body);font-size:8px;letter-spacing:0.2em;text-transform:uppercase;color:var(--gold);font-weight:500; }
.u99 { font-size:12px;color:rgba(245,239,230,0.45);line-height:1.8;margin-bottom:20px; }
.u100 { width:140px; }
.u101 { background:rgba(200,169,106,0.35); }
.u102 { flex:1;min-width:120px; }
.u103 { font-family:var(--body);font-size:9px;letter-spacing:0.2em;text-transform:uppercase;color:var(--gold);margin-bottom:20px;font-weight:600; }
.u104 { display:flex;flex-direction:column;gap:10px; }
.u105 { font-size:12px;color:rgba(245,239,230,0.5);text-decoration:none; }
.u106 { flex:1;min-width:160px; }
.u107 { font-size:12px;color:rgba(245,239,230,0.45);line-height:2.1; }
.u108 { border-top:1px solid rgba(200,169,106,0.1);padding-top:24px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px; }
.u109 { font-size:10px;color:rgba(245,239,230,0.25);letter-spacing:0.06em; }
.u110 { display:flex;gap:24px; }
.u111 { font-size:10px;color:rgba(245,239,230,0.25);cursor:pointer;letter-spacing:0.06em; }

/* =====================================================
   CLASS-BASED RESPONSIVE OVERRIDES
   ===================================================== */
@media (max-width: 1024px) {
  .section-pad { padding: 72px 48px; }
  .footer-shell { padding: 56px 40px 28px; }
  .cta-shell { padding: 72px 48px; }
  .venue-layout,
  .congress-layout,
  .u15 { flex-direction: column; gap: 0; }
  .venue-layout > div,
  .congress-layout > div,
  .u15 > div { width: 100%; }
  .grid-3,
  .u6,
  .u49 { grid-template-columns: repeat(2, 1fr); }
  .grid-2,
  .u66 { grid-template-columns: 1fr; gap: 48px; }
  .services-grid,
  .u42 { grid-template-columns: repeat(2, 1fr); }
  .destination-grid { grid-template-columns: 1fr; gap: 22px; }
  .destination-image { min-height: 360px; }
  .destination-image-card { min-height: 360px; }
  .destination-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  #main-nav { padding: 0 20px; height: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-brand-name { font-size: 14px; }
  .nav-brand-sub { font-size: 7px; }
  .section-pad { padding: 56px 22px; }
  .footer-shell { padding: 48px 22px 24px; }
  .cta-shell { padding: 56px 22px; }
  #hero { padding: 0 16px !important; min-height: 560px !important; }
  #hero h1 { font-size: clamp(34px, 9vw, 48px) !important; }
  .hero-content { padding: 22px 16px 24px; }
  .hero-copy { margin-bottom: 20px; }
  .hero-actions { flex-direction: column; align-items: center; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-actions .btn { width: 100%; max-width: 320px; text-align: center; padding: 14px 20px !important; }
  #hero > div:nth-child(4),
  #hero > div:nth-child(5) { display: none !important; }
  .section-header,
  #about .u7, #about .u11,
  #spaces .u17,
  #events-types .u50,
  #services-section .u50,
  #destination .u66 > div,
  #testimonials-section .testimonial-card,
  footer .u93,
  footer .u102,
  footer .u106,
  footer .u108 {
    text-align: center !important;
  }
  #spaces .u17,
  #destination .u66 > div,
  footer .u93,
  footer .u102,
  footer .u106 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #spaces .u22,
  #spaces .u23,
  #about .u12,
  #about .u53,
  #about .u71,
  #about .u94,
  .u91,
  footer .u104,
  footer .u110 {
    justify-content: center !important;
    align-items: center !important;
  }
  #services-section .u42,
  #events-types .u49,
  .u61 {
    justify-items: center;
  }
  footer .u92 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer .u104 {
    text-align: center;
  }
  #about .u6,
  #events-types .u61,
  #services-section .u49,
  #destination .destination-stats {
    justify-items: center;
  }
  #about .u6 > div,
  #events-types .u61 > div,
  #services-section .u49 > div,
  #destination .destination-stats > div {
    width: min(100%, 420px);
    margin-inline: auto;
  }
  #about .u6 > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #about .u6 > div .u8 {
    margin-inline: auto;
  }
  #spaces .u16 {
    display: none !important;
  }
  #about .u7,
  #about .u11,
  #spaces .u17,
  #events-types .u50,
  #services-section .u50,
  #destination .destination-copy,
  #destination .destination-visual,
  #testimonials-section .testimonial-card,
  footer .u93,
  footer .u102,
  footer .u106 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #about .u7 .u8,
  #about .u11 .u8,
  #about .u7 .u9,
  #about .u11 .u9,
  #about .u7 .u10,
  #about .u11 .u10,
  #events-types .u50 .u51,
  #events-types .u50 .u52,
  #services-section .u50 .u51,
  #services-section .u50 .u52,
  #destination .destination-eyebrow,
  #destination .destination-title,
  #destination .destination-text,
  #destination .destination-point-title,
  #destination .destination-point-copy,
  .testimonial-card,
  footer .u99,
  footer .u105,
  footer .u107 {
    text-align: center !important;
  }
  #destination .destination-point,
  #spaces .u23,
  #about .u53,
  #about .u71,
  footer .u104,
  footer .u110 {
    justify-content: center !important;
    align-items: center !important;
  }
  .stats-inner { flex-wrap: wrap !important; }
  .stats-inner > div { flex: 0 0 50% !important; padding: 22px 8px !important; border-right: none !important; border-bottom: 1px solid rgba(245,239,230,0.12); }
  .stats-inner > div:nth-child(odd) { border-right: 1px solid rgba(245,239,230,0.12) !important; }
  .stats-inner > div:nth-last-child(-n+2) { border-bottom: none; }
  .grid-3,
  .u6,
  .u49,
  .gallery-grid,
  .u61 { grid-template-columns: 1fr 1fr !important; gap: 16px !important; }
  .gallery-grid > div,
  .u61 > div { height: 180px !important; }
  .gallery-grid .span-2,
  .u62 { grid-column: span 2 !important; }
  .congress-layout { flex-direction: column !important; gap: 0 !important; }
  .congress-layout > div { padding: 28px 22px !important; }
  .venue-layout,
  .u15 { gap: 0 !important; }
  .venue-layout > div,
  .u15 > div { padding: 28px 22px !important; }
  .grid-2,
  .u66,
  .form-grid,
  .u77 { grid-template-columns: 1fr !important; }
  .span-2,
  .u78 { grid-column: span 1 !important; }
  .services-grid,
  .u42 { grid-template-columns: 1fr !important; }
  .u92 { gap: 32px; }
  .u108 { flex-direction: column; align-items: flex-start; gap: 12px; }
  .u59 { gap: 24px; }
  .destination-copy { padding: 32px 24px; }
  .destination-overlay { left: 14px; right: 14px; bottom: 14px; padding: 16px 14px; }
  .destination-overlay-title { font-size: 20px; }
  .destination-stats { grid-template-columns: 1fr; }
  .destination-image-card,
  .destination-image { min-height: 300px; }
  .destination-cta-row {
    justify-content: center !important;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .destination-cta-row .btn,
  .destination-tag {
    width: 100%;
    max-width: 280px;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .section-pad { padding: 48px 18px; }
  .footer-shell { padding: 40px 18px 20px; }
  .cta-shell { padding: 48px 18px; }
  #main-nav { justify-content: center; }
  .nav-brand { margin: 0 auto; }
  .stats-inner > div { flex: 0 0 100% !important; border-right: none !important; }
  .stats-inner > div:nth-child(odd) { border-right: none !important; }
  .hero-content { padding: 18px 14px 20px; }
  .hero-title { margin: 8px auto 10px; }
  .hero-copy { margin-bottom: 16px; }
  .intro-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .intro-actions .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  .u91 { flex-direction: column; align-items: center; gap: 12px; }
  .u91 .btn { width: 100%; max-width: 280px; text-align: center; }
  .section-header,
  #about .u7, #about .u11,
  #spaces .u17,
  #events-types .u50,
  #services-section .u50,
  #destination .u66 > div,
  #testimonials-section .testimonial-card,
  footer .u93,
  footer .u102,
  footer .u106,
  footer .u108 {
    text-align: center !important;
  }
  #spaces .u17,
  #destination .u66 > div,
  footer .u93,
  footer .u102,
  footer .u106 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #spaces .u22,
  #spaces .u23,
  #about .u12,
  #about .u53,
  #about .u71,
  #about .u94,
  footer .u104,
  footer .u110 {
    justify-content: center !important;
    align-items: center !important;
  }
  #services-section .service-feature,
  #destination .destination-copy,
  #destination .destination-point,
  #destination .destination-stats,
  #testimonials-section .testimonial-card {
    text-align: center !important;
    align-items: center !important;
  }
  #destination .destination-stats {
    justify-items: center;
  }
  footer .u92,
  footer .u108 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer .u104 {
    text-align: center;
  }
  footer .u92 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #about .u6,
  #events-types .u61,
  #services-section .u49,
  #destination .destination-stats {
    justify-items: center;
  }
  #about .u6 > div,
  #events-types .u61 > div,
  #services-section .u49 > div,
  #destination .destination-stats > div {
    width: min(100%, 340px);
    margin-inline: auto;
  }
  #about .u6 > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #about .u6 > div .u8 {
    margin-inline: auto;
  }
  .grid-3,
  .u6,
  .u49,
  .gallery-grid,
  .u61 { grid-template-columns: 1fr !important; }
  .grid-3,
  .u6,
  .u49,
  .gallery-grid,
  .u61 { gap: 14px !important; }
  .gallery-track { padding: 0 8px; gap: 12px; }
  .gallery-grid .span-2,
  .u62 { grid-column: span 1 !important; }
  .gallery-grid > div,
  .u61 > div { height: 220px !important; }
  .gallery-slider { width: 100%; }
  .gallery-slide,
  .gallery-img { min-height: 120px; height: 120px; }
  #spaces .u17,
  #spaces .u17 * {
    text-align: center !important;
  }
  #about .u7,
  #about .u11,
  #services-section .service-feature,
  #testimonials-section .testimonial-card {
    max-width: 340px;
    margin-inline: auto;
  }
  .gallery-lightbox { padding: 14px; }
  .gallery-lightbox-close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  .gallery-lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }
  .gallery-lightbox-prev { left: 10px; }
  .gallery-lightbox-next { right: 10px; }
  .gallery-lightbox-img {
    max-height: 80vh;
  }
  .btn-primary, .btn-gold, .btn-outline, .btn-outline-light { padding: 14px 28px !important; font-size: 10px !important; }
  .testimonial-card { padding: 32px 24px !important; }
  .card-white { padding: 28px 22px !important; }
  #services-section .service-feature { padding: 24px 20px 22px; }
  #services-section .service-feature .u9 { font-size: 19px; }
  #services-section .service-feature .u10 { font-size: 12px; }
  .destination-copy { padding: 28px 20px; }
  .destination-text { font-size: 14px; }
  .destination-image { min-height: 300px; }
  .destination-image-card { min-height: 300px; }
  .destination-cta-row {
    justify-content: center !important;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .destination-cta-row .btn,
  .destination-tag {
    width: 100%;
    max-width: 280px;
    text-align: center;
    justify-content: center;
  }
}

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