/* ============================================
   TANGO DJ ELLA — STYLES
   Palette: Champagne Ivory, Soft Gold, Ruby, Emerald, Sapphire, Blush
   ============================================ */

:root {
  --ivory: #FAF6EF;
  --ivory-dark: #F0E8D8;
  --champagne: #E8D5B0;
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --gold-lighter: #F0DFA0;
  --gold-dark: #9A7228;
  --ruby: #7A1528;
  --ruby-light: #A02038;
  --emerald: #1A5C45;
  --sapphire: #1C3A6B;
  --blush: #E8C4B8;
  --warm-brown: #3D2010;
  --text-dark: #2A1A0E;
  --text-mid: #5C4030;
  --text-light: #8A7060;
  --white: #FFFFFF;
  --shadow-warm: rgba(140, 80, 20, 0.18);
  --shadow-deep: rgba(40, 10, 0, 0.32);
  --shimmer: linear-gradient(105deg, transparent 40%, rgba(255,240,180,0.18) 50%, transparent 60%);
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', Arial, sans-serif;
  background-color: var(--ivory);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

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

ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.2;
}

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.85rem;
}

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

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--warm-brown);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.section-title.light { color: var(--ivory); }

.section-ornament {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold-lighter), var(--gold), transparent);
  margin-bottom: 2rem;
  position: relative;
}

.section-ornament::before {
  content: '✦';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.45rem;
  color: var(--gold);
  background: var(--ivory);
  padding: 0 6px;
  letter-spacing: 0;
}

.section-ornament.light {
  background: linear-gradient(to right, transparent, var(--gold-light), var(--gold-lighter), var(--gold-light), transparent);
}

.section-ornament.light::before {
  color: var(--gold-light);
  background: transparent;
}

.section-header.center { text-align: center; }
.section-header.center .section-ornament { margin-left: auto; margin-right: auto; }

.section-header.center .section-ornament::before { background: var(--ivory); }

.section-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.9;
  padding: 0 1rem;
  opacity: 1;
}

.section { padding: 110px 0; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0.95rem 2.6rem;
  border-radius: 1px;
  border: 1px solid transparent;
  transition: all 0.38s ease;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,240,180,0.22), transparent);
  transition: left 0.55s ease;
  pointer-events: none;
}

.btn:hover::after {
  left: 160%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--ruby) 0%, var(--ruby-light) 60%, #C03050 100%);
  color: var(--ivory);
  border-color: rgba(255,200,180,0.15);
  box-shadow: 0 4px 20px rgba(122, 21, 40, 0.38), inset 0 1px 0 rgba(255,220,200,0.12);
  letter-spacing: 0.3em;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--ruby-light) 0%, var(--ruby) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(122, 21, 40, 0.5), 0 0 0 1px rgba(255,200,180,0.1), inset 0 1px 0 rgba(255,220,200,0.15);
}

.btn-secondary {
  background: transparent;
  color: rgba(255,248,225,0.92);
  border-color: rgba(224,196,120,0.5);
  padding: 0.95rem 2rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  font-size: 0.68rem;
  box-shadow: inset 0 0 0 0 rgba(224,196,120,0.1);
}

.btn-secondary:hover {
  background: rgba(224,196,120,0.08);
  border-color: rgba(224,196,120,0.85);
  color: var(--gold-lighter);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201,168,76,0.15), inset 0 0 0 1px rgba(224,196,120,0.1);
}

.btn-outline {
  background: transparent;
  color: var(--ruby);
  border: 1px solid var(--ruby);
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  box-shadow: inset 0 0 0 0 var(--ruby);
}

.btn-outline:hover {
  background: var(--ruby);
  color: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(122, 21, 40, 0.3);
}

.btn-full { width: 100%; text-align: center; }

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.45s ease;
}

.nav.scrolled {
  background: rgba(250, 246, 239, 0.97);
  backdrop-filter: blur(16px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 rgba(201,168,76,0.2), 0 4px 30px var(--shadow-warm);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.12em;
  transition: color 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  text-shadow: 0 1px 10px rgba(0,0,0,0.75), 0 2px 24px rgba(0,0,0,0.55);
}

.nav-brand-card {
  display: inline-block;
  background: rgba(8, 4, 2, 0.52);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(201,168,76,0.65);
  border-top: 1px solid rgba(224,196,120,0.8);
  padding: 0.45rem 1.2rem;
  border-radius: 3px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(224,196,120,0.15);
  transition: background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
  letter-spacing: 0.14em;
}

.nav.scrolled .nav-brand { color: var(--warm-brown); text-shadow: none; font-size: 1.6rem; }

.nav.scrolled .nav-brand-card {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0.4rem 0;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.3s;
  position: relative;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8), 0 2px 18px rgba(0,0,0,0.55);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover { color: var(--champagne); }

.nav.scrolled .nav-link { color: var(--text-mid); }
.nav.scrolled .nav-link:hover { color: var(--ruby); }
.nav.scrolled .nav-link.active { color: var(--ruby); }
.nav-link.active { color: var(--champagne); }

.nav-cta {
  background: var(--ruby);
  color: var(--ivory) !important;
  padding: 0.55rem 1.5rem;
  border-radius: 1px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s !important;
  box-shadow: 0 2px 12px rgba(122,21,40,0.3);
  letter-spacing: 0.22em;
}

.nav-cta:hover {
  background: var(--ruby-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(122,21,40,0.45) !important;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ivory);
  transition: all 0.3s;
  border-radius: 2px;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.6));
}

.nav.scrolled .nav-toggle span { background: var(--warm-brown); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 5, 2, 0.62) 0%,
    rgba(30, 12, 4, 0.42) 25%,
    rgba(80, 40, 10, 0.32) 50%,
    rgba(30, 10, 2, 0.65) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.hero-ornament {
  font-size: 0.65rem;
  letter-spacing: 0.6em;
  color: var(--gold-lighter);
  margin-bottom: 1.8rem;
  opacity: 0.9;
  text-shadow: 0 0 12px rgba(224,196,120,0.5);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 8.5vw, 6.5rem);
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: 0.1em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 4px 70px rgba(0,0,0,0.35), 0 0 80px rgba(201,168,76,0.12);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 248, 230, 0.96);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 16px rgba(0,0,0,0.5), 0 2px 30px rgba(0,0,0,0.3);
}

.hero-divider {
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-lighter), var(--gold-light), var(--gold-lighter), transparent);
  margin: 0 auto 1.8rem;
  position: relative;
}

.hero-divider::before {
  content: '✦';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.4rem;
  color: var(--gold-lighter);
  text-shadow: 0 0 8px rgba(224,196,120,0.7);
  letter-spacing: 0;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.06em;
  text-transform: none;
  color: rgba(240, 228, 195, 0.95);
  text-shadow: 0 1px 16px rgba(0,0,0,0.5), 0 2px 30px rgba(0,0,0,0.3);
  margin-bottom: 2.8rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ============ ABOUT ============ */
.about-section {
  background: linear-gradient(180deg, var(--ivory) 0%, #f7f1e6 100%);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-lighter), var(--gold), var(--gold-lighter), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  height: 580px;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-image-border {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  pointer-events: none;
  border-radius: 2px;
  box-shadow: inset 0 0 30px rgba(201,168,76,0.06);
}

.about-quote-card {
  position: relative;
  margin-top: 1.5rem;
  margin-left: auto;
  background: linear-gradient(135deg, var(--ruby) 0%, #6A1020 100%);
  color: var(--ivory);
  padding: 2rem 2.25rem;
  max-width: 300px;
  border-radius: 1px;
  box-shadow: 0 12px 40px rgba(122, 21, 40, 0.42), inset 0 1px 0 rgba(255,220,200,0.1);
  border-top: 1px solid rgba(255,200,160,0.15);
}

.about-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: rgba(250,246,239,0.95);
}

.about-content { padding-bottom: 2rem; padding-top: 0.5rem; }

.about-text {
  font-size: 0.97rem;
  color: var(--text-mid);
  margin-bottom: 1.4rem;
  line-height: 1.95;
  letter-spacing: 0.01em;
}

/* ============ EXPERIENCE ============ */

.experience-banner {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 3rem;
  margin-bottom: 0;
  box-shadow: 0 8px 48px rgba(90, 50, 10, 0.22);
}

.experience-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 1.1s ease;
}

.experience-banner:hover .experience-banner-img {
  transform: scale(1.03);
}

.experience-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 6, 1, 0.62) 0%,
    rgba(15, 6, 1, 0.08) 55%,
    rgba(15, 6, 1, 0.25) 100%
  );
}

.experience-banner-caption {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(240, 220, 180, 0.88);
  letter-spacing: 0.12em;
  white-space: nowrap;
  text-shadow: 0 1px 16px rgba(0,0,0,0.7);
}

.experience-section {
  background: linear-gradient(160deg, #faf7f2 0%, #f0e9dc 50%, #faf7f2 100%);
  position: relative;
}

.experience-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(180, 145, 80, 0.45), transparent);
  z-index: 1;
}

.experience-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(180, 145, 80, 0.3), transparent);
}

/* ============ VENUE CARDS ============ */

.venue-cards-subheader {
  text-align: center;
  margin: 3rem 0 1.25rem;
}

.venue-cards-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gold, #b8902a);
  text-transform: none;
  margin: 0;
}

.venue-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 0 2.5rem;
  border: 1px solid rgba(190, 160, 100, 0.28);
  box-shadow: 0 8px 48px rgba(90, 50, 10, 0.1), 0 2px 12px rgba(90, 50, 10, 0.06);
  background: linear-gradient(160deg, #fff 0%, #fdfaf5 100%);
}

.venue-card {
  position: relative;
  padding: 2rem 1.75rem 1.85rem;
  border-right: 1px solid rgba(190, 160, 100, 0.18);
  border-bottom: 1px solid rgba(190, 160, 100, 0.18);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  overflow: hidden;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
}

.venue-card:nth-child(4n) {
  border-right: none;
}

.venue-card:nth-last-child(-n+4) {
  border-bottom: none;
}

.venue-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, rgba(201,168,76,0) 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.venue-card:hover {
  background: linear-gradient(160deg, #fffdf7 0%, #fef9ee 100%);
  box-shadow: inset 0 0 0 1px rgba(201,168,76,0.22);
}

.venue-card:hover::before {
  opacity: 1;
}


.venue-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.venue-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
  letter-spacing: 0.01em;
  margin: 0;
  transition: color 0.3s;
}

.venue-card:hover .venue-card-name {
  color: #5a3010;
}

.venue-card-location {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: var(--text-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
  opacity: 0.75;
  transition: opacity 0.3s;
}

.venue-card:hover .venue-card-location {
  opacity: 1;
}

.venue-card-dot {
  font-size: 0.32rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  position: relative;
  top: -1px;
}

.venue-card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold), var(--gold-light));
  transition: width 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.venue-card:hover .venue-card-accent {
  width: 100%;
}

.experience-footer {
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, #fff 0%, #fdfaf5 100%);
  border: 1px solid rgba(190, 160, 100, 0.22);
  border-radius: 1px;
  box-shadow: 0 4px 24px rgba(90, 50, 10, 0.08), inset 0 1px 0 rgba(255,245,220,0.8);
  position: relative;
}

.experience-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.experience-footer p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
  background: linear-gradient(160deg, #3A0A18 0%, #4A0E20 35%, #3D0C1C 70%, #2A0810 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 15% 60%, rgba(201,168,76,0.16) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(232,213,176,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(176,38,63,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 50%);
}

.testimonials-section .section-label { color: var(--gold-light); }
.testimonials-section .section-title { color: var(--ivory); }
.testimonials-section .section-ornament {
  background: linear-gradient(to right, transparent, var(--gold-light), var(--gold-lighter), var(--gold-light), transparent);
}

.testimonials-section .section-ornament::before {
  color: var(--gold-light);
  background: transparent;
  text-shadow: 0 0 8px rgba(224,196,120,0.6);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
  align-items: stretch;
}

.testimonial-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(223,192,122,0.22);
  border-top: 2px solid rgba(223,192,122,0.55);
  border-radius: 1px;
  padding: 2.75rem 2.25rem 2.25rem;
  position: relative;
  transition: background 0.35s, transform 0.35s, box-shadow 0.35s;
  box-shadow: 0 4px 28px rgba(0,0,0,0.22), inset 0 1px 0 rgba(223,192,122,0.18);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.32), 0 0 0 1px rgba(201,168,76,0.15), inset 0 1px 0 rgba(223,192,122,0.3);
}

.testimonial-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5.5rem;
  line-height: 0.5;
  color: var(--gold-lighter);
  opacity: 0.55;
  margin-bottom: 1.4rem;
  display: block;
  text-shadow: 0 0 20px rgba(224,196,120,0.3);
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(250, 246, 239, 0.94);
  line-height: 1.95;
  margin-bottom: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.015em;
  flex: 1;
}

.testimonial-footer {
  border-top: 1px solid rgba(223,192,122,0.28);
  padding-top: 1rem;
  margin-top: auto;
}

.testimonial-name {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-lighter);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.testimonial-role {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  color: rgba(232,213,176,0.75);
  margin-top: 0.3rem;
  letter-spacing: 0.08em;
}

/* Decorative corner accent on each card */
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-bottom: 1px solid rgba(223,192,122,0.35);
  border-right: 1px solid rgba(223,192,122,0.35);
  pointer-events: none;
}

/* ============ GALLERY ============ */
.gallery-section {
  background: linear-gradient(180deg, var(--ivory-dark) 0%, #ece2d0 100%);
  position: relative;
}

/* Subtle champagne shimmer across top of section */
.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-light), var(--champagne), var(--gold-light), transparent);
  opacity: 0.7;
}

/* Gallery section — wider container for full-width feel */
.gallery-section .container {
  max-width: 1380px;
}

/* ── Uniform Grid Gallery ── */
.masonry-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 10px;
  width: 100%;
}

/* Each masonry item */
.masonry-item {
  box-shadow: 0 4px 20px rgba(60, 28, 8, 0.12);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.45s ease;
  min-height: 0;
}

.masonry-item:hover {
  box-shadow: 0 6px 32px rgba(201, 168, 76, 0.35), 0 2px 12px rgba(201, 168, 76, 0.18);
}

.editorial-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
  display: block;
  line-height: 0;
}

/* Thin champagne-gold border inset */
.editorial-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 2px;
  border: 1px solid rgba(201, 168, 76, 0.22);
  z-index: 3;
  pointer-events: none;
  transition: border-color 0.45s;
}

.editorial-frame:hover::before {
  border-color: rgba(201, 168, 76, 0.75);
  box-shadow: inset 0 0 0 1px rgba(201,168,76,0.08);
}

/* Warm champagne-gold cohesion overlay */
.editorial-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(180, 120, 30, 0.08);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.5s ease;
}

.editorial-frame:hover::after {
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.18) 0%, transparent 70%);
}

/* Masonry images — fill grid cell, smart focal-point positioning */
.masonry-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
  filter: saturate(0.82) brightness(0.95) sepia(0.07);
}

/* Couple dancing — keep faces in frame */
.masonry-item:nth-child(2) .masonry-img {
  object-position: center 20%;
}

/* Audio engineer — keep subject centered */
.masonry-item:nth-child(3) .masonry-img {
  object-position: center 25%;
}

/* People dancing — focus on faces */
.masonry-item:nth-child(4) .masonry-img {
  object-position: center 15%;
}

/* Women formal dinner — keep faces/upper body */
.masonry-item:nth-child(5) .masonry-img {
  object-position: center 30%;
}

/* Couple hugging — keep embrace in frame */
.masonry-item:nth-child(6) .masonry-img {
  object-position: center 15%;
}

/* Woman studio — keep subject visible */
.masonry-item:nth-child(7) .masonry-img {
  object-position: center 20%;
}

/* Happy couple hugging — brighten dark image */
.masonry-item:nth-child(8) .masonry-img {
  filter: saturate(0.9) brightness(1.25) sepia(0.05);
}

/* Couple dancing ballroom — brighten dark image */
.masonry-item:nth-child(9) .masonry-img {
  filter: saturate(0.9) brightness(1.25) sepia(0.05);
  object-position: 40% 35%;
}

.editorial-frame:hover .masonry-img {
  transform: scale(1.04);
  filter: saturate(1.0) brightness(1.04) sepia(0);
}

/* Caption — slides up on hover */
.editorial-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.2rem 1.5rem 1.3rem;
  background: linear-gradient(to top, rgba(28, 10, 2, 0.75) 0%, rgba(28, 10, 2, 0.2) 60%, transparent 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 2;
}

.editorial-frame:hover .editorial-caption {
  opacity: 1;
  transform: translateY(0);
}

.editorial-caption span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-lighter);
  letter-spacing: 0.14em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* Champagne divider between rows — subtle sparkle */
.editorial-grid::after {
  display: none;
}

/* ============ CONNECT ============ */
.connect-section .container {
  max-width: 1320px;
}

.connect-section {
  position: relative;
  background: linear-gradient(145deg, #0E1A30 0%, #0A1525 30%, #1A0810 65%, #251008 100%);
  overflow: hidden;
}

.connect-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 10% 70%, rgba(201,168,76,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 25%, rgba(122,21,40,0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.04) 0%, transparent 70%);
}

.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.connect-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  color: rgba(250,246,239,0.88);
  line-height: 1.9;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.connect-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.connect-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--champagne);
  font-size: 0.92rem;
}

.connect-detail-item i {
  font-size: 1rem;
  color: var(--gold-light);
  width: 20px;
  flex-shrink: 0;
}

/* ---- Connect Right Column ---- */
.connect-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.connect-right-inner {
  border: 1px solid rgba(201,168,76,0.22);
  border-top: 2px solid rgba(201,168,76,0.55);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(4px);
  padding: 3rem 3rem 2.75rem;
  width: 100%;
  max-width: 420px;
}

.connect-right-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.connect-right-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201,168,76,0.7), transparent);
  margin-bottom: 2rem;
}

.connect-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.connect-contact-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.connect-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}

.connect-contact-icon i {
  font-size: 0.95rem;
  color: var(--gold-light);
}

.connect-contact-item:hover .connect-contact-icon {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.6);
}

.connect-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.connect-contact-type {
  font-family: 'Lato', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.65);
}

.connect-contact-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--champagne);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}

.connect-contact-value:hover {
  color: var(--gold-light);
}

.connect-right-note {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(250,246,239,0.45);
  line-height: 1.7;
  letter-spacing: 0.02em;
  margin-bottom: 1.75rem;
}

.connect-right-ornament {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: rgba(201,168,76,0.35);
}

/* ============ FORM ============ */
.connect-form-card {
  background: var(--ivory);
  border-radius: 1px;
  padding: 2.75rem;
  box-shadow: 0 24px 70px rgba(0,0,0,0.38), 0 0 0 1px rgba(201,168,76,0.1);
  border-top: 2px solid rgba(201,168,76,0.3);
}

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--warm-brown);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.form-subtitle {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.78rem 1rem;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 1px;
  background: #fffdf9;
  color: var(--text-dark);
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--ruby);
  box-shadow: 0 0 0 3px rgba(122,21,40,0.07), 0 2px 8px rgba(122,21,40,0.06);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%235C4030'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

#formStatus p { font-size: 0.9rem; }

/* ============ FOOTER ============ */
.footer {
  background: linear-gradient(180deg, #1A0C06 0%, #120804 100%);
  padding: 5rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-light), var(--gold-lighter), var(--gold-light), transparent);
  opacity: 0.6;
}

.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.footer-top { margin-bottom: 2rem; }

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--champagne);
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 30px rgba(201,168,76,0.12);
}

.footer-ornament {
  font-size: 0.6rem;
  letter-spacing: 0.7em;
  color: var(--gold-lighter);
  opacity: 0.7;
  margin-bottom: 0.85rem;
  text-shadow: 0 0 10px rgba(224,196,120,0.4);
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(250,246,239,0.62);
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  margin-bottom: 2rem;
}

.footer-links a {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,246,239,0.55);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold-lighter); }

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(250,246,239,0.38);
  letter-spacing: 0.06em;
}

.footer-credit {
  margin-top: 0.4rem;
}

.footer-credit a {
  color: rgba(250,246,239,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-credit a:hover {
  color: var(--gold-lighter, #d4a84b);
}

/* ============ SCROLL REVEAL ============ */
/* ============ SPARKLE KEYFRAMES ============ */
@keyframes shimmer-sweep {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes gold-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

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

/* Apply subtle gold pulse to ornaments */
.hero-ornament {
  animation: gold-pulse 4s ease-in-out infinite;
}

.footer-ornament {
  animation: gold-pulse 5s ease-in-out infinite;
}

/* Shimmer on hero divider */
.hero-divider {
  animation: gold-pulse 3.5s ease-in-out infinite;
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .venue-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .venue-card:nth-child(4n) { border-right: 1px solid rgba(190, 160, 100, 0.18); }
  .venue-card:nth-child(2n) { border-right: none; }
  .venue-card:nth-last-child(-n+4) { border-bottom: 1px solid rgba(190, 160, 100, 0.18); }
  .venue-card:nth-last-child(-n+2) { border-bottom: none; }
  .about-grid { gap: 3rem; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-frame { height: 420px; }
  .about-image-wrap { padding-bottom: 0; }
  .connect-grid { grid-template-columns: 1fr; gap: 3rem; }
  .connect-right { justify-content: flex-start; }
  .connect-right-inner { max-width: 100%; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .testimonials-grid .testimonial-card:last-child {
    grid-column: auto;
    max-width: 100%;
    margin: 0;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .experience-banner { height: 280px; margin-top: 2.5rem; }
  .experience-banner-caption { font-size: 0.95rem; bottom: 1.25rem; white-space: normal; text-align: center; width: 90%; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(250,246,239,0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 0;
    box-shadow: 0 10px 30px var(--shadow-deep);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--ivory-dark); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-link {
    display: block;
    padding: 0.85rem 0;
    color: var(--text-mid) !important;
  }
  .nav-cta {
    background: none !important;
    color: var(--ruby) !important;
    padding: 0.85rem 0 !important;
  }
  .nav-toggle { display: flex; }
  .nav-brand { font-size: 1.45rem; letter-spacing: 0.1em; }
  .nav-brand-card { padding: 0.38rem 0.9rem; }
  .nav.scrolled .nav-brand { font-size: 1.35rem; }
  .venue-cards-grid { grid-template-columns: repeat(2, 1fr); }
  /* Gallery tablet — 2 column grid */
  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 280px;
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .experience-banner { height: 220px; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .hero-subtitle { font-size: 1rem; }
  .venue-cards-grid { grid-template-columns: 1fr 1fr; }
  .venue-card { padding: 1.5rem 1.25rem; }
  /* Gallery mobile — single column */
  .masonry-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
    gap: 10px;
    margin-top: 2rem;
  }
  /* Always show captions on mobile (no hover) */
  .editorial-caption {
    opacity: 1;
    transform: translateY(0);
  }
  .about-quote-card { max-width: 100%; }
  .connect-form-card { padding: 1.75rem 1.25rem; }
  .connect-right-inner { padding: 2rem 1.5rem; }
  .venue-cards-grid { grid-template-columns: 1fr; }
  .venue-card { border-right: none !important; border-bottom: 1px solid rgba(190, 160, 100, 0.18) !important; }
  .venue-card:last-child { border-bottom: none !important; }
  .venue-card-name { font-size: 1.08rem; }
  .testimonials-grid { gap: 1.25rem; grid-template-columns: 1fr; }
}
