/* ============================================
   ALINA BALLOON — MAIN STYLESHEET v2
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Inter:wght@400;500&display=swap');

/* --- VARIABLES --- */
:root {
  --bg:        #FAFAF8;
  --bg-alt:    #F2EDE8;
  --text:      #1A1A1A;
  --text-muted:#6B6B6B;
  --accent:    #C9A96E;
  --white:     #FFFFFF;
  --font-h:    'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-w:     1200px;
  --radius:    4px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- CONTAINER --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 { font-family: var(--font-h); font-weight: 600; line-height: 1.2; }
p { margin-bottom: 1rem; color: var(--text); }

.type-display { font-family: var(--font-h); font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; }
.type-h1 { font-family: var(--font-h); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 600; line-height: 1.15; }
.type-h2 { font-family: var(--font-h); font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 500; line-height: 1.2; }
.type-h3 { font-family: var(--font-h); font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 500; line-height: 1.3; }
.type-label { font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 0.6rem; }
.type-body { font-family: var(--font-body); font-size: 1rem; font-weight: 400; line-height: 1.7; }
.type-small { font-family: var(--font-body); font-size: 0.85rem; font-weight: 400; line-height: 1.6; color: var(--text-muted); }
.type-price { font-family: var(--font-h); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; color: var(--accent); }
.text-muted { color: var(--text-muted); font-size: 0.95rem; }

.section-subtitle { font-family: var(--font-body); font-size: 1rem; color: var(--text-muted); line-height: 1.7; max-width: 480px; margin-top: 10px; }
.section-header.centered .section-subtitle { margin-left: auto; margin-right: auto; text-align: center; }
.img-caption { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.06em; margin-top: 6px; margin-bottom: 6px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn { display: inline-block; padding: 14px 32px; font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.05em; border-radius: var(--radius); cursor: pointer; transition: all 0.2s ease; border: none; text-align: center; }
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: #b8935a; }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--text); }
.btn-outline:hover { background: var(--text); color: var(--white); }

/* ============================================
   HEADER & NAV
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid #E8E2DB;
  transition: box-shadow 0.2s ease;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 8px;
}

.logo {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Desktop nav — hidden below 1280px */
.main-nav { display: flex; align-items: center; flex: 1; justify-content: center; min-width: 0; }

.nav-list { display: flex; align-items: center; gap: 0; }
.nav-list > li { position: relative; }
.nav-list > li > a {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: var(--radius);
  display: block;
  transition: background 0.15s;
  color: var(--text);
  white-space: nowrap;
}
.nav-list > li > a:hover,
.nav-list > li > a.active { background: var(--bg-alt); }

.nav-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 10px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 3px;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav-trigger:hover { background: var(--bg-alt); }
.chevron { transition: transform 0.2s; display: inline-block; font-style: normal; }
.has-mega.open .chevron { transform: rotate(90deg); }

/* Mega panel */
.mega-panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid #E8E2DB;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  z-index: 500;
  width: max-content;
  max-width: min(480px, calc(100vw - 32px));
  padding: 16px;
}
.has-mega.open .mega-panel { display: block; animation: megaFadeIn 0.15s ease; }
@keyframes megaFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-4px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.mega-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.mega-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 6px; transition: background 0.15s; }
.mega-item:hover { background: var(--bg-alt); }
.mega-icon { font-size: 1.2rem; flex-shrink: 0; width: 28px; text-align: center; }
.mega-text strong { display: block; font-size: 0.82rem; font-weight: 500; color: var(--text); }
.mega-text small { font-size: 0.72rem; color: var(--text-muted); }

.mega-panel--areas {
  width: max-content;
  max-width: min(320px, calc(100vw - 32px));
}
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-bottom: 12px; }
.areas-grid a { padding: 9px 14px; border-radius: 6px; font-size: 0.84rem; font-weight: 500; transition: background 0.15s; display: block; }
.areas-grid a:hover { background: var(--bg-alt); }
.areas-footer { border-top: 1px solid #E8E2DB; padding-top: 10px; font-size: 0.75rem; color: var(--text-muted); }

/* Header right actions */
.header-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }

.btn-call {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 10px;
  border-radius: var(--radius);
  transition: color 0.15s;
  white-space: nowrap;
}
.btn-call:hover { color: var(--text); }

@media (max-width: 1100px) {
  .btn-call span { display: none; }
  .btn-call { padding: 8px; }
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.mobile-menu-btn span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.2s; }

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 8px 14px !important;
  font-size: 0.8rem !important;
  border-radius: var(--radius);
  white-space: nowrap;
}
.nav-cta:hover { background: #b8935a !important; }

/* ============================================
   MOBILE SLIDE PANEL
   ============================================ */
.mobile-panel { position: fixed; top: 0; right: -100%; width: min(360px, 100vw); height: 100dvh; background: var(--white); z-index: 1000; transition: right 0.3s cubic-bezier(0.4,0,0.2,1); overflow-y: auto; display: flex; flex-direction: column; }
.mobile-panel.open { right: 0; }
.mobile-panel-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid #E8E2DB; flex-shrink: 0; }
.mobile-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--text-muted); padding: 4px 8px; }
.mobile-nav { padding: 16px 0; flex: 1; }
.mobile-nav > a { display: block; padding: 14px 24px; font-size: 1rem; font-weight: 500; border-bottom: 1px solid #F0EBE5; transition: background 0.15s; color: var(--text); }
.mobile-nav > a:hover { background: var(--bg-alt); }
.mobile-group { border-bottom: 1px solid #F0EBE5; }
.mobile-group-trigger { width: 100%; background: none; border: none; cursor: pointer; font-family: var(--font-body); font-size: 1rem; font-weight: 500; color: var(--text); padding: 14px 24px; text-align: left; display: flex; justify-content: space-between; align-items: center; transition: background 0.15s; }
.mobile-group-trigger:hover { background: var(--bg-alt); }
.mobile-group-trigger span { transition: transform 0.2s; }
.mobile-group.open .mobile-group-trigger span { transform: rotate(90deg); }
.mobile-group-content { display: none; background: var(--bg-alt); }
.mobile-group.open .mobile-group-content { display: block; }
.mobile-group-content a { display: block; padding: 12px 24px 12px 40px; font-size: 0.9rem; color: var(--text); transition: background 0.15s; }
.mobile-group-content a:hover { background: #EAE5DF; }
.mobile-cta { display: block; margin: 20px 24px 8px; padding: 16px 24px; background: var(--accent); color: var(--white) !important; border-radius: var(--radius); text-align: center; font-weight: 500; font-size: 0.95rem; }
.mobile-phone { display: block; text-align: center; padding: 12px 24px; font-size: 0.9rem; color: var(--text-muted) !important; }
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 999; backdrop-filter: blur(2px); }
.mobile-overlay.open { display: block; }
.no-scroll { overflow: hidden; }

/* ============================================
   BOTTOM BAR
   ============================================ */
.bottom-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; height: 64px; background: var(--white); border-top: 1px solid #E8E2DB; z-index: 900; align-items: stretch; justify-content: space-around; box-shadow: 0 -4px 20px rgba(0,0,0,0.08); padding-bottom: env(safe-area-inset-bottom); }
.bottom-bar-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; flex: 1; background: none; border: none; cursor: pointer; font-family: var(--font-body); color: var(--text-muted); font-size: 0.65rem; font-weight: 500; text-decoration: none; transition: color 0.15s; padding: 8px 4px; min-width: 0; }
.bottom-bar-item:hover, .bottom-bar-item.active { color: var(--accent); }
.bottom-bar-call { background: var(--accent); color: var(--white) !important; border-radius: 50%; width: 52px; height: 52px; flex: 0 0 52px; margin-top: -16px; box-shadow: 0 4px 20px rgba(201,169,110,0.5); align-self: flex-start; transition: box-shadow 0.2s ease, transform 0.2s ease; }
.bottom-bar-call:active { transform: scale(0.95); box-shadow: 0 2px 10px rgba(201,169,110,0.4); }
.bottom-bar-call span { display: none; }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }

/* ============================================
   HERO
   ============================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  overflow: hidden;
}
.hero-img {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
  border-radius: 0;
}
.hero-img picture { position: absolute; inset: 0; z-index: 2; }
.hero-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  display: block;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 48px 48px;
  background: var(--bg);
  min-width: 0;
  overflow-y: auto;
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 18px 0 14px;
  flex-shrink: 0;
}
.hero-byline {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.hero-price { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0; }
.hero-price strong { color: var(--text); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 1.5rem; }

.hero-trust { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 1.5rem; }
.trust-item { display: flex; align-items: center; gap: 5px; }
.trust-stars { display: flex; gap: 2px; }
.trust-stars .star { width: 12px; height: 12px; }
.trust-label { font-size: 0.8rem; color: var(--text-muted); }
.trust-divider { color: #CCC; font-size: 0.8rem; }

.hero-caption-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 10;
  background: rgba(250, 250, 248, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-left: 2px solid var(--accent);
  padding: 8px 12px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  pointer-events: none;
}
.hero-caption-event { font-family: var(--font-body); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.hero-caption-detail { font-family: var(--font-h); font-size: 0.95rem; font-weight: 500; color: var(--text); line-height: 1.3; }

/* ============================================
   IMAGE PLACEHOLDERS
   ============================================ */
.img-placeholder { background: linear-gradient(135deg, #EDE8E2, #E0D9D0); display: flex; align-items: center; justify-content: center; border-radius: 12px; }
.img-placeholder-inner { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 20px; text-align: center; }
.img-placeholder-icon { font-size: 1.8rem; }
.img-placeholder-inner strong { font-size: 0.78rem; font-weight: 600; color: var(--text); font-family: monospace; }
.img-placeholder-inner small { font-size: 0.68rem; color: var(--text-muted); line-height: 1.5; }
.img-placeholder--hero { position: absolute; inset: 0; z-index: 1; border-radius: 0; display: flex; pointer-events: none; }
.img-placeholder--event { position: absolute; inset: 0; z-index: 0; border-radius: 0; display: flex; min-height: 200px; }
.img-placeholder--celeb-main { height: 280px; width: 100%; border-radius: 12px; }
.img-placeholder--celeb-thumb { height: 280px; width: 100%; border-radius: 12px; }

/* ============================================
   SVG STARS
   ============================================ */
.star { width: 15px; height: 15px; fill: var(--accent); flex-shrink: 0; }
.star--empty { fill: #DDD; }
.review-stars { display: flex; gap: 3px; margin-bottom: 12px; }

/* ============================================
   EVENT TYPE NAV
   ============================================ */
.event-nav { padding: 64px 0; }
.event-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.event-card { position: relative; overflow: hidden; border-radius: 12px; aspect-ratio: 3/4; display: block; cursor: pointer; background: linear-gradient(135deg, #EDE8E2, #E0D9D0); -webkit-tap-highlight-color: transparent; transition: transform 0.18s cubic-bezier(0.4,0,0.2,1), box-shadow 0.18s ease; }
.event-card:hover { transform: scale(0.985); box-shadow: 0 8px 32px rgba(0,0,0,0.13); }
.event-card:active { transform: scale(0.96); box-shadow: 0 2px 12px rgba(0,0,0,0.10); }
.event-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; z-index: 1; display: block; }
.event-card:hover img { transform: scale(1.04); }
.event-card-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 16px 16px; background: linear-gradient(transparent, rgba(0,0,0,0.6)); color: var(--white); font-size: 0.9rem; font-weight: 500; z-index: 3; }

/* ============================================
   CELEBRATIONS
   ============================================ */
.celebrations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.celebration-photos { display: grid; grid-template-columns: 2fr 1fr; gap: 8px; margin-bottom: 8px; }
.celebration-img { width: 100%; height: 280px; object-fit: cover; border-radius: 12px; }
.celebration-photos .img-placeholder--celeb-main { width: 100%; }
.celebration-meta { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.step-number { font-family: var(--font-h); font-size: 3rem; color: var(--accent); line-height: 1; margin-bottom: 16px; }
.step h3 { margin-bottom: 8px; font-family: var(--font-h); font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 500; }

/* ============================================
   REVIEWS SLIDER (mobile)
   ============================================ */
.reviews-slider-wrap {
  position: relative;
}
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: stretch; }
.review-card { background: var(--white); padding: 28px; border-radius: 12px; display: flex; flex-direction: column; }
.review-text { font-size: 0.92rem; line-height: 1.7; margin-bottom: 16px; color: var(--text); flex: 1; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.review-author { font-size: 0.82rem; font-weight: 500; color: var(--text); margin-top: auto; }
.review-source { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.reviews-cta { text-align: center; margin-top: 48px; }

/* Slider dots */
.reviews-dots { display: none; justify-content: center; gap: 8px; margin-top: 24px; }
.reviews-dot { width: 7px; height: 7px; border-radius: 50%; background: #DDD; border: none; cursor: pointer; padding: 0; transition: background 0.2s, transform 0.2s; }
.reviews-dot.active { background: var(--accent); transform: scale(1.3); }

/* ============================================
   SERVICE AREA
   ============================================ */
.area-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 8px; max-width: 100%; margin: 0 auto; width: 100%; }
.area-tag { padding: 8px 12px; border: 1px solid #E8E2DB; border-radius: 100px; font-size: 0.82rem; color: var(--text-muted); transition: all 0.15s; text-align: center; white-space: nowrap; }
.area-tag:hover { border-color: var(--accent); color: var(--text); }
.area-tag--premium { border-color: rgba(201,169,110,0.35); color: var(--text); }
.area-tag--premium:hover { border-color: var(--accent); background: rgba(201,169,110,0.06); }

/* ============================================
   CTA FORM
   ============================================ */
.cta-section { background: var(--bg-alt); padding: 96px 0; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.cta-checklist { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.cta-checklist li { font-size: 0.9rem; color: var(--text); display: flex; align-items: center; gap: 8px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
input, select, textarea { width: 100%; padding: 12px 16px; border: 1px solid #E8E2DB; border-radius: 8px; background: var(--white); font-family: var(--font-body); font-size: 0.95rem; color: var(--text); transition: border 0.15s; -webkit-appearance: none; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); }
textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 8px; }

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.gallery-item { overflow: hidden; aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.04); }

/* ============================================
   FADE-UP
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: #111110; color: var(--white); }
.footer-main { padding: 80px 0 64px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 56px; align-items: start; }
.footer-brand { display: flex; flex-direction: column; gap: 0; }
.footer-logo { font-family: var(--font-h); font-size: 1.6rem; font-weight: 600; color: var(--white); letter-spacing: 0.01em; margin-bottom: 12px; display: inline-block; }
.footer-tagline { font-size: 0.9rem; color: #999; line-height: 1.6; margin-bottom: 20px; display: block; }
.footer-rating { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; padding: 6px 14px; margin-bottom: 20px; width: fit-content; transition: background 0.15s; }
.footer-rating:hover { background: rgba(255,255,255,0.1); }
.footer-rating-stars { color: var(--accent); font-size: 0.85rem; letter-spacing: 1px; }
.footer-rating-text { font-size: 0.78rem; color: #CCC; font-weight: 500; }
.footer-social { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.social-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #AAA; transition: color 0.15s; width: fit-content; }
.social-link:hover { color: var(--white); }
.footer-cta { margin-bottom: 10px; display: inline-block; }
.footer-availability { font-size: 0.75rem; color: #666; margin: 0; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #555; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: #999; transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-location { font-size: 0.875rem; color: #999; line-height: 1.6; }
.footer-location span { font-size: 0.78rem; color: #666; }
.footer-bottom-bar { border-top: 1px solid #1E1E1D; padding: 20px 0 24px; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copyright { font-size: 0.78rem; color: #555; margin: 0; }
.footer-bottom-links { display: flex; gap: 0; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 0.78rem; color: #555; transition: color 0.15s; padding: 0 12px; border-right: 1px solid #2A2A2A; line-height: 1; }
.footer-bottom-links a:first-child { padding-left: 0; }
.footer-bottom-links a:last-child { border-right: none; }
.footer-bottom-links a:hover { color: #999; }
.footer-made { font-size: 0.78rem; color: #444; margin: 0; }

/* ============================================
   ACCESSIBILITY
   ============================================ */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
@media (prefers-reduced-motion: reduce) {
  /* Keep fade-up transitions working, only disable decorative animations */
}
@media (prefers-contrast: high) {
  :root { --text: #000; --bg: #FFF; --bg-alt: #F0F0F0; --text-muted: #444; --accent: #8B6914; }
  .mega-panel { border: 2px solid #000; }
}

/* ============================================
   RESPONSIVE — collapse nav at 1280px
   ============================================ */
@media (max-width: 1280px) {
  .main-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav-cta { display: none; }
  .bottom-bar { display: flex; }
  body { padding-bottom: 0; }
  .site-footer { margin-bottom: 64px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================
   RESPONSIVE — tablet 1024px
   ============================================ */
@media (max-width: 1024px) {
  .event-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   RESPONSIVE — mobile 768px
   ============================================ */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-img { height: 72vw; min-height: 280px; }
  .hero-content { padding: 36px 24px; justify-content: flex-start; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { gap: 8px; }
  .hero-caption-card { bottom: 12px; left: 12px; right: auto; max-width: 75%; }
  .hero-divider { margin: 14px 0 12px; }
  .hero-stats { gap: 8px; }
  .hero-stat-num { font-size: 1rem; }
  .hero-stat-label { font-size: 0.6rem; letter-spacing: 0.06em; }
  .hero-stat-divider { height: 20px; }

  .section { padding: 64px 0; }
  .cta-section { padding: 64px 0; }
  .event-nav { padding: 48px 0; }
  .event-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .celebrations-grid { grid-template-columns: 1fr; gap: 48px; }
  .celebration-photos { grid-template-columns: 1fr; }
  .img-placeholder--celeb-thumb { display: none; }
  .img-placeholder--celeb-main { height: 240px; }

  .steps { grid-template-columns: 1fr; gap: 32px; }
  .reviews-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .review-card {
    flex: 0 0 85vw;
    max-width: 340px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
  }
  .reviews-dots { display: flex; }
  .reviews-cta { margin-top: 32px; }
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links a:first-child { padding-left: 12px; }
  .footer-made { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .area-tag { font-size: 0.78rem; padding: 6px 13px; }
}

/* ============================================
   RESPONSIVE — small 480px
   ============================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-img { height: 80vw; }
  .hero-stats { gap: 6px; }
  .hero-stat-num { font-size: 0.92rem; }
  .hero-stat-label { font-size: 0.55rem; }
  .event-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   HERO STATS
   ============================================ */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 1.2rem;
  flex-wrap: nowrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.hero-stat-num {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  white-space: nowrap;
}
.hero-stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: #E8E2DB;
  flex-shrink: 0;
}

/* ============================================
   HERO URGENCY
   ============================================ */
.hero-urgency {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--text);
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 1.2rem;
}

/* ============================================
   STICKY CTA (desktop only)
   ============================================ */
.sticky-cta {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid #E8E2DB;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  display: none;
}
.sticky-cta--visible {
  transform: translateY(0);
}
.sticky-cta-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 56px;
}
.sticky-cta-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}
.sticky-cta-urgency {
  font-size: 0.8rem;
  color: var(--text-muted);
  flex: 1;
}
.sticky-cta-btn {
  padding: 10px 24px;
  font-size: 0.85rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Show sticky CTA only on desktop */
@media (min-width: 1024px) {
  .sticky-cta { display: block; }
}

/* Footer ratings row */
.footer-ratings {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-ratings .footer-rating {
  margin-bottom: 0;
}
