/* ═══════════════════════════════════════════════════
   LV LUMIVILORB — LIGHT THEME STYLESHEET
   Palette: Cream White · Warm Gold · Soft Charcoal
   ═══════════════════════════════════════════════════ */

:root {
  --gold:         #B8935A;
  --gold-light:   #D4B483;
  --gold-dark:    #8C6A38;
  --gold-pale:    #F5ECD9;
  --bg:           #FAF8F5;
  --bg2:          #F2EDE6;
  --bg3:          #EDE6DC;
  --white:        #FFFFFF;
  --text:         #2C2418;
  --text-mid:     #5C4F3A;
  --text-muted:   #9A8B78;
  --border:       rgba(184,147,90,0.2);
  --border-mid:   rgba(184,147,90,0.4);
  --shadow:       0 4px 30px rgba(44,36,24,0.08);
  --shadow-hover: 0 12px 40px rgba(44,36,24,0.14);
  --transition:   all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET & BASE ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── TYPOGRAPHY ── */
.display-font { font-family: 'Cormorant Garamond', serif; }
.gold { color: var(--gold); }

.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.section-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1rem 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
}

.section-header { margin-bottom: 60px; }

/* ── NAVBAR ── */
.navbar {
  background: rgba(250,248,245,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.4rem 0;
  transition: var(--transition);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.navbar.scrolled {
  background: rgba(250,248,245,0.97);
  padding: 0.9rem 0;
  box-shadow: 0 2px 20px rgba(44,36,24,0.08);
}

.navbar-brand img { height: 48px; }
.navbar-brand span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 2px;
}

.nav-link {
  color: var(--text-mid) !important;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.5rem 1.2rem !important;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after { left: 1.2rem; right: 1.2rem; }

.nav-link:hover,
.nav-link.active { color: var(--gold-dark) !important; }

.navbar-toggler {
  border: 1px solid var(--border-mid);
  color: var(--gold);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23B8935A' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse { justify-content: center; }

/* Mobile navbar */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    box-shadow: var(--shadow);
  }
}

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 14px 36px;
  border: 1px solid var(--gold);
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-dark);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 13px 36px;
  border: 1px solid var(--border-mid);
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}

.btn-outline-gold:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--gold-dark);
}

/* ── SOCIAL LINKS ── */
.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-mid);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
  background: var(--white);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ── PAGE SECTIONS ── */
.page-section { display: none; }
.page-section.active { display: block; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 40%, rgba(184,147,90,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(184,147,90,0.07) 0%, transparent 50%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,147,90,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,147,90,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 460px;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-actions {
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-slider-side { position: relative; z-index: 2; }

/* ── HERO CAROUSEL ── */
#heroSlider .carousel-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow-hover);
}

#heroSlider .carousel-caption {
  background: linear-gradient(to top, rgba(44,36,24,0.85), transparent);
  left: 0; right: 0; bottom: 0;
  padding: 2rem;
  text-align: left;
  border-radius: 0 0 2px 2px;
}

#heroSlider .carousel-caption h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
}

#heroSlider .carousel-caption p {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold-light);
  text-transform: uppercase;
}

#heroSlider .carousel-indicators { bottom: 4px; }

#heroSlider .carousel-indicators button {
  width: 20px; height: 2px; border: none;
  background: rgba(255,255,255,0.35);
  border-radius: 1px;
}

#heroSlider .carousel-indicators button.active { background: var(--gold-light); }

#heroSlider .carousel-control-prev,
#heroSlider .carousel-control-next {
  width: 44px; height: 44px;
  top: 50%; transform: translateY(-50%);
  background: rgba(250,248,245,0.85);
  border: 1px solid var(--border-mid);
  opacity: 1;
}

#heroSlider .carousel-control-prev-icon,
#heroSlider .carousel-control-next-icon {
  filter: invert(1) sepia(1) saturate(2) hue-rotate(10deg);
  width: 16px; height: 16px;
}

#heroSlider .carousel-control-prev:hover,
#heroSlider .carousel-control-next:hover { background: var(--gold); }

/* ── MARQUEE ── */
.marquee-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}

.marquee-item .dot {
  color: var(--gold);
  margin-right: 3rem;
}

/* ── PRODUCTS SLIDER SECTION ── */
.products-slider-section {
  background: var(--bg);
  padding: 100px 0;
  overflow: hidden;
}

/* ── PRODUCT CARDS ── */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  box-shadow: var(--shadow);
}

.product-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.product-card-img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-img { transform: scale(1.05); }

.product-card-body { padding: 1.5rem; }

.product-card-label {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.product-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.product-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.product-card-link {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
  font-weight: 500;
}

.product-card-link:hover { gap: 14px; color: var(--gold); }

/* ── PRODUCTS CAROUSEL CONTROLS ── */
.product-carousel { }

.product-carousel .carousel-control-prev,
.product-carousel .carousel-control-next {
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 1px solid var(--border-mid);
  top: 50%; transform: translateY(-50%);
  opacity: 1;
  border-radius: 0;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.product-carousel .carousel-control-prev { left: -24px; }
.product-carousel .carousel-control-next { right: -24px; }

.product-carousel .carousel-control-prev:hover,
.product-carousel .carousel-control-next:hover { background: var(--gold); border-color: var(--gold); }

.product-carousel .carousel-control-prev-icon,
.product-carousel .carousel-control-next-icon {
  filter: invert(1) sepia(1) saturate(3) hue-rotate(10deg);
  width: 16px; height: 16px;
}

.product-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.product-carousel .carousel-control-next:hover .carousel-control-next-icon {
  filter: brightness(10);
}

.product-carousel .carousel-indicators { bottom: -40px; }

.product-carousel .carousel-indicators [data-bs-target] {
  width: 24px; height: 2px;
  background: rgba(184,147,90,0.25);
  border: none;
  border-radius: 1px;
}

.product-carousel .carousel-indicators .active { background: var(--gold); }

/* ── ABOUT STRIP ── */
















/* ── CONTACT ── */
.contact-section { background: var(--bg2); padding: 100px 0; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-value { color: var(--text); font-size: 0.95rem; }

.contact-form .form-control {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--text);
  padding: 13px 16px;
  font-size: 13px;
  font-family: 'Jost', sans-serif;
  transition: var(--transition);
  box-shadow: none;
}

.contact-form .form-control:focus {
  background: var(--white);
  border-color: var(--gold);
  color: var(--text);
  box-shadow: 0 0 0 3px rgba(184,147,90,0.1);
}

.contact-form .form-control::placeholder { color: var(--text-muted); }

.contact-form label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 6px;
  font-weight: 500;
}

/* ── FOOTER ── */
footer {
  background: var(--bg3);
  padding: 70px 0 30px;
  border-top: 1px solid var(--border);
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  color: var(--gold-dark);
  font-weight: 300;
}

.footer-tagline {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.footer-link {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 13px;
  display: block;
  margin-bottom: 9px;
  transition: color 0.3s;
}

.footer-link:hover { color: var(--gold-dark); }

.footer-heading {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 3rem;
  font-size: 12px;
  color: var(--text-muted);
}

/* ── PRODUCT DETAIL PAGE ── */
.product-hero {
  padding: 140px 0 80px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.product-hero-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow-hover);
}

.ingredient-tag {
  display: inline-block;
  background: var(--gold-pale);
  border: 1px solid var(--border-mid);
  color: var(--gold-dark);
  font-size: 11px;
  letter-spacing: 1px;
  padding: 6px 14px;
  margin: 3px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}

.benefit-item .bi {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ── CONTACT PAGE ── */
.contact-page { padding: 140px 0 80px; background: var(--bg); }

/* ── TOAST ── */
.toast-lv {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--white);
  border: 1px solid var(--border-mid);
  color: var(--text);
  padding: 1rem 2rem;
  font-size: 13px;
  letter-spacing: 0.5px;
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s;
  pointer-events: none;
  box-shadow: var(--shadow-hover);
}

.toast-lv.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast-lv .gold { margin-right: 8px; }

/* ── BACK TO TOP ── */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--gold);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(184,147,90,0.4);
}

.back-top.show { opacity: 1; pointer-events: auto; }
.back-top:hover { background: var(--gold-dark); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */

/* ── ABOUT TEASER (Home) ── */
.about-teaser-section {
  background: var(--bg2);
  padding: 90px 0;
  position: relative;
}
.about-teaser-section::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%; width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

/* ── ABOUT PAGE ── */
.about-page { padding: 140px 0 80px; background: var(--bg); }

.about-header { margin-bottom: 3rem; }

.about-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
}

.about-kpi {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.about-kpi:hover { border-color: var(--border-mid); box-shadow: var(--shadow-hover); }
.about-kpi-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; color: var(--gold);
  font-weight: 300; line-height: 1; margin-bottom: 5px;
}
.about-kpi-label {
  font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-muted);
}

.about-block {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.2rem; height: 100%;
  box-shadow: var(--shadow); transition: var(--transition);
}
.about-block:hover { border-color: var(--border-mid); box-shadow: var(--shadow-hover); }
.about-block-vision {
  background: var(--gold-pale);
  border-color: var(--border-mid);
}
.about-block-icon {
  width: 42px; height: 42px;
  background: var(--gold-pale); border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold-dark); margin-bottom: 1.1rem;
}
.about-block-vision .about-block-icon { background: rgba(255,255,255,0.55); }
.about-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 400; color: var(--text); margin-bottom: 0.9rem;
}
.about-block-text {
  font-size: 13.5px; color: var(--text-mid);
  line-height: 1.9; font-weight: 300; margin-bottom: 0.7rem;
}
.about-vision-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-style: italic;
  color: var(--text-mid); line-height: 1.85;
}

.about-pillar {
  background: var(--white); border: 1px solid var(--border);
  padding: 2rem; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
}
.about-pillar::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width 0.4s;
}
.about-pillar:hover::after { width: 100%; }
.about-pillar:hover { border-color: var(--border-mid); box-shadow: var(--shadow-hover); }
.about-pillar-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold-pale); border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold-dark); margin: 0 auto 1rem;
}
.about-pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 400; color: var(--text); margin-bottom: 0.6rem;
}
.about-pillar-text { font-size: 12.5px; color: var(--text-muted); line-height: 1.8; }

.about-focus {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--border);
  padding: 0.9rem 1.1rem; font-size: 12.5px;
  font-weight: 500; color: var(--text-mid);
  transition: var(--transition); box-shadow: var(--shadow);
}
.about-focus:hover {
  border-color: var(--border-mid);
  background: var(--gold-pale); color: var(--gold-dark);
}
.about-focus .bi { font-size: 1rem; color: var(--gold); flex-shrink: 0; }


@media (max-width: 768px) {
  .hero-title { font-size: 2.6rem; }
  
  .product-hero-img { height: 280px; }
  #heroSlider .carousel-item img { height: 340px; }
  .event-full-card { flex-direction: column; }
  .event-date-block { min-width: unset; flex-direction: row; gap: 8px; align-items: center; padding: 1rem 1.5rem; }
}

/* ═══════════════════════════════════════════
   EVENTS PAGE
   ═══════════════════════════════════════════ */

.events-page {
  padding: 140px 0 80px;
  background: var(--bg);
}

.events-header {
  margin-bottom: 3rem;
}

/* ── Main event card ── */
.event-card-full {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 2rem;
}

.event-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.event-type-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-dark);
  background: var(--gold-pale);
  border: 1px solid var(--border-mid);
  padding: 4px 12px;
}

.event-card-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.event-card-meta i {
  color: var(--gold);
  margin-right: 5px;
}

/* ── Title ── */
.event-title-block {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.event-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.event-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  margin: 0;
}

/* ── Photos grid ── */
.event-photos {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.event-photo-main,
.event-photo-side {
  position: relative;
  overflow: hidden;
}

.event-photo-side {
  border-left: 1px solid var(--border);
}

.event-photo-main img,
.event-photo-side img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s ease;
}

.event-photo-main:hover img,
.event-photo-side:hover img {
  transform: scale(1.03);
}

.event-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(44,36,24,0.82), transparent);
  color: rgba(255,255,255,0.92);
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 1.5rem 1.2rem 0.9rem;
}

/* ── Highlights ── */
.event-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.event-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.8rem;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}

.event-highlight-item:last-child {
  border-right: none;
}

.event-highlight-item:hover {
  background: var(--bg2);
}

.event-highlight-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-pale);
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.event-highlight-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}

.event-highlight-text {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .event-photos {
    grid-template-columns: 1fr;
  }
  .event-photo-side {
    border-left: none;
    border-top: 1px solid var(--border);
  }
  .event-photo-main img,
  .event-photo-side img {
    height: 260px;
  }
  .event-highlights {
    grid-template-columns: 1fr;
  }
  .event-highlight-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .event-highlight-item:last-child {
    border-bottom: none;
  }
  .event-card-top {
    padding: 1rem 1.2rem;
  }
  .event-title-block {
    padding: 1.5rem 1.2rem;
  }
}
