/* ═══════════════════════════════════════════
   Jenneta's Makeup & Hair — Stylesheet
   ═══════════════════════════════════════════ */

:root {
  --cream:    #ffffff;
  --warm:     #f5f5f5;
  --sand:     #e0e0e0;
  --taupe:    #888888;
  --brown:    #555555;
  --dark:     #111111;
  --accent:   #111111;
  --accent-on-dark: #ffffff;
  --serif:    'Bodoni Moda', 'Bodoni MT', Georgia, serif;
  --sans:     'Josefin Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1.5rem;
  background: var(--dark);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ─── FOCUS STYLES ─── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

body {
  background: var(--cream);
  color: var(--dark);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── NAV ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 4rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand);
  transition: padding 0.4s;
}
#navbar.scrolled {
  padding: 1rem 4rem;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 4px;
}
.logo-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--dark);
}
.logo-rule {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--accent);
}
.logo-sub {
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--taupe);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--dark); transition: all 0.3s; pointer-events: none; }

/* ─── HERO ─── */
.hero {
  height: 100vh;
  min-height: 700px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  padding: 0;
}
.hero-left {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 6rem 4rem;
  background: var(--warm) center 20%/cover no-repeat;  /* bias up for portraits */
}
.hero-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.3) 45%, transparent 75%);
  pointer-events: none;
}
.hero-text {
  position: relative;
  z-index: 3;
  animation: fadeUp 1s ease both;
}
.hero-eyebrow {
  font-size: 1.08rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.btn-light {
  background: var(--cream);
  color: var(--dark);
}
.btn-light:hover {
  background: var(--accent);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--dark);
}
.btn-dark {
  background: var(--dark);
  color: var(--cream);
}
.btn-dark:hover {
  background: var(--accent);
  color: #fff;
}

/* mosaic right side — swap-friendly: any photo scales correctly */
.hero-right {
  display: grid;
  grid-template-rows: 3fr 2fr;      /* proportional, not fixed %       */
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  overflow: hidden;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;                 /* fill cell, crop overflow        */
  object-position: center 20%;       /* bias slightly above center —    */
                                     /* flattering for portraits & couples */
  display: block;
  min-height: 0;                     /* let grid shrink items properly  */
  min-width: 0;
}
.hero-right .span2 {
  grid-column: span 2;
}

/* ─── INTRO STRIP ─── */
.strip {
  background: var(--dark);
  color: var(--cream);
  text-align: center;
  padding: 2.2rem 2rem;
  overflow: hidden;
}
.strip-inner {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.strip-inner span { opacity: 0.85; }
.strip-inner span.dot { opacity: 0.5; }

/* ─── SECTIONS ─── */
section { padding: 7rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 4rem; }

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-images {
  position: relative;
  height: 580px;
  overflow: hidden;
}
.about-images img {
  position: absolute;
  object-fit: cover;
  border: 8px solid var(--cream);
  box-shadow: 0 20px 60px rgba(17,17,17,0.15);
  will-change: transform;
  transition: transform 0.1s linear;
}
.about-images .img-main {
  width: 70%;
  height: 80%;
  top: 0; left: 0;
}
.about-images .img-accent {
  width: 55%;
  height: 55%;
  bottom: 0; right: 0;
}
.section-eyebrow {
  font-size: 1.08rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; }
.about-text p {
  font-size: 1.08rem;
  color: var(--brown);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 2rem 0;
}

/* ─── SERVICES ─── */
.services-bg {
  background: var(--warm);
}
.services-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card:hover img,
.service-card:focus-within img { transform: scale(1.07); }
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 2rem;
  color: var(--cream);
}
.service-name {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 0.7rem;
}
.service-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  opacity: 0.9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.service-card:hover .service-desc,
.service-card:focus-within .service-desc { max-height: 100px; }

/* ─── PORTFOLIO STRIP ─── */
.portfolio-bg { background: var(--cream); }
.portfolio-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}
.gallery-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.gallery-block {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
}
.gallery-block img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 2s ease;
  will-change: opacity;
}
.gallery-block img.active {
  opacity: 1;
  pointer-events: auto;
  cursor: zoom-in;
}
.gallery-cta { text-align: center; margin-top: 3rem; }

/* ─── TESTIMONIALS ─── */
.testimonials-bg { background: var(--dark); }
.testimonials-header {
  text-align: center;
  color: var(--cream);
  max-width: 500px;
  margin: 0 auto 5rem;
}
.testimonials-header .section-title { color: var(--cream); }
.testimonials-grid {
  display: flex;
  gap: 2rem;
  overflow: hidden;
  position: relative;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-y;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem 2.5rem 3.5rem;
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc((100% - 4rem) / 3);
  min-width: calc((100% - 4rem) / 3);
  flex-shrink: 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 5rem;
  font-style: normal;
  color: var(--accent-on-dark);
  opacity: 0.5;
  position: absolute;
  top: 0.8rem; left: 1.5rem;
  line-height: 1;
}
.testimonial-card::after {
  content: '\201D';
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 5rem;
  font-style: normal;
  color: var(--accent-on-dark);
  opacity: 0.5;
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  line-height: 1;
}
.testimonial-text {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.92);
  margin-bottom: 1.5rem;
  flex: 1;
}
.testimonial-author {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-on-dark);
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}
.testimonial-author cite {
  font-style: normal;
}
.testimonials-carousel {
  position: relative;
}
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.testimonial-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 1.1rem;
}
.testimonial-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.testimonial-arrow.disabled {
  opacity: 0.25;
  pointer-events: none;
}
.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.testimonial-dot:hover {
  background: rgba(255,255,255,0.4);
}
.testimonial-dot.active {
  background: var(--accent-on-dark);
  transform: scale(1.25);
}

/* ─── VENUE MAP ─── */
.venue-map-bg {
  background: var(--cream);
  border-top: 1px solid var(--sand);
}
.venue-map-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.venue-map-subtitle {
  font-size: 1rem;
  color: var(--brown);
  line-height: 1.8;
}
.venue-map-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
.venue-map-container {
  background: var(--warm);
  border: 1px solid var(--sand);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  min-height: 480px;
}
.venue-map-container svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Map dot styles */
.venue-dot {
  cursor: pointer;
  transition: r 0.25s ease, opacity 0.25s ease;
}
.venue-dot:hover {
  r: 6;
}
.venue-dot-ring {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.venue-dot:hover + .venue-dot-ring,
.venue-dot.active + .venue-dot-ring {
  opacity: 1;
}

/* Map tooltip */
.venue-tooltip {
  position: absolute;
  background: var(--dark);
  color: var(--cream);
  padding: 0.6rem 1rem;
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  line-height: 1.4;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
  white-space: nowrap;
  max-width: 220px;
}
.venue-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}
.venue-tooltip-name {
  font-weight: 500;
  display: block;
}
.venue-tooltip-location {
  color: var(--accent-on-dark);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Sidebar */
.venue-map-sidebar-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--sand);
}
.venue-map-count {
  display: block;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.venue-map-count-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
}
.venue-map-regions {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.venue-region {
  cursor: pointer;
  transition: color 0.2s;
}
.venue-region:hover { color: var(--accent); }
.venue-region-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.15rem;
  transition: color 0.2s;
}
.venue-region:hover .venue-region-name { color: var(--accent); }
.venue-region-venues {
  font-size: 0.78rem;
  color: var(--taupe);
  line-height: 1.6;
}

/* ─── PROCESS ─── */
.process-bg { background: var(--warm); }
.process-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 5rem;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}
.step-num {
  font-family: var(--sans);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.7;
  letter-spacing: 0.08em;
}
.step-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--dark);
}
.step-desc {
  font-size: 0.95rem;
}

/* ─── FAQ ─── */
.faq-bg {
  background: var(--cream);
  border-top: 1px solid var(--sand);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.faq-intro-text {
  font-size: 1.02rem;
  color: var(--brown);
  line-height: 1.9;
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--sand);
}
.faq-item:first-child {
  border-top: 1px solid var(--sand);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.6rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.4;
  transition: color 0.25s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { content: ''; }
.faq-question:hover { color: var(--accent); }

/* Animated plus/minus icon */
.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--accent);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.faq-icon::before {
  width: 18px;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.faq-icon::after {
  width: 1px;
  height: 18px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
details[open] .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0 0 0;
}
details[open] .faq-answer {
  max-height: 300px;
  padding: 0 0 1.6rem 0;
}
.faq-answer p {
  font-size: 1rem;
  color: var(--brown);
  line-height: 1.9;
  padding-right: 3rem;
}

/* ─── CONTACT ─── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.contact-image {
  position: relative;
  min-height: 700px;
}
.contact-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-form-side {
  background: var(--cream);
  padding: 7rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--sand);
  padding: 0.6rem 0;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--dark);
  transition: border-color 0.3s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.form-group textarea { resize: none; min-height: 80px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* ─── COUNTDOWN ─── */
.countdown-reveal {
  display: none;
  text-align: center;
}
.countdown-reveal.active {
  display: block;
  animation: countdownIn 0.8s ease both;
}
@keyframes countdownIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.countdown-inner {
  padding: 1rem 0;
}
.countdown-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.countdown-name {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  line-height: 1.2;
}
.countdown-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1.5rem;
}
.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
}
.countdown-num {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
  letter-spacing: 0.04em;
  transition: transform 0.3s ease;
}
.countdown-num.tick {
  transform: scale(1.08);
}
.countdown-unit-label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 0.5rem;
}
.countdown-sep {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 1.6rem;
}
.countdown-footer {
  font-size: 0.95rem;
  color: var(--brown);
  line-height: 1.7;
  max-width: 360px;
  margin: 0 auto;
}
.countdown-reset {
  font-size: 0.6rem;
}
/* Past-date state */
.countdown-past {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-nav-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: 0.94rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.footer-col-title {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

/* ─── LIGHTBOX ─── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: default;
}
.lightbox.open .lightbox-img {
  opacity: 1;
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 151;
}
.lightbox-close:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  max-width: 80%;
}

/* ─── SERVICE MODAL ─── */
.service-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.service-modal.open { display: flex; }
.service-modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 960px;
  width: 100%;
  max-height: 85vh;
  background: var(--cream);
  overflow: hidden;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.service-modal.open .service-modal-content {
  opacity: 1;
  transform: scale(1);
}
.service-modal-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.service-modal-text {
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-modal-name {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.service-modal-name em { font-style: italic; }
.service-modal-desc {
  font-size: 1.05rem;
  color: var(--brown);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.service-modal-cta {
  align-self: flex-start;
}

@media (max-width: 900px) {
  .service-modal { padding: 1rem; }
  .service-modal-content {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }
  .service-modal-img {
    min-height: 300px;
    max-height: 45vh;
  }
  .service-modal-text {
    padding: 2.5rem 2rem;
  }
}

/* ─── UTILITY ─── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ─── MOBILE NAV OVERLAY ─── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav-overlay a:hover { color: var(--accent); }
.nav-close {
  position: absolute;
  top: 1.5rem; right: 4rem;
  font-size: 2rem;
  color: var(--cream);
  background: none;
  border: none;
  cursor: pointer;
}

/* ─── FEATURED BAR ─── */
.featured-bar {
  background: var(--cream);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  padding: 2rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.featured-label {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brown);
  text-align: center;
}
.featured-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem 3.5rem;
  width: 100%;
}
.logo-svg {
  color: var(--dark);
  opacity: 0.85;
  transition: opacity 0.3s;
  fill: currentColor;
  height: 35px;
  width: auto;
  flex-shrink: 0;
}
.logo-svg:hover { opacity: 1; }
.logo-bazaar { height: 28px; }
.logo-wsj    { height: 40px; }
.logo-brides { height: 33px; }
.featured-sep {
  display: block;
  width: 1px;
  height: 22px;
  background: var(--sand);
  flex-shrink: 0;
}

/* ─── INSTAGRAM FEED ─── */
.instagram-bg {
  background: var(--warm);
  border-top: 1px solid var(--sand);
}
.instagram-header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 3.5rem;
}
.instagram-handle {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--brown);
  text-decoration: none;
  transition: color 0.25s;
}
.instagram-handle:hover { color: var(--accent); }

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.ig-post {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.ig-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
}
.ig-post:hover img {
  transform: scale(1.06);
}
.ig-post-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease;
  pointer-events: none;
}
.ig-post:hover .ig-post-overlay {
  background: rgba(17,17,17,0.45);
}
.ig-post-icon {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.ig-post:hover .ig-post-icon {
  opacity: 1;
  transform: translateY(0);
}
.ig-post-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--cream);
  stroke-width: 1.5;
}
/* Video indicator */
.ig-video-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  pointer-events: none;
}
.ig-video-badge svg {
  width: 20px;
  height: 20px;
  fill: rgba(255,255,255,0.85);
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}

/* Loading placeholders */
.ig-placeholder {
  aspect-ratio: 1;
  background: linear-gradient(110deg, var(--sand) 30%, var(--warm) 50%, var(--sand) 70%);
  background-size: 200% 100%;
  animation: igShimmer 1.8s ease-in-out infinite;
}
@keyframes igShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Error / fallback state */
.ig-fallback {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--brown);
  font-size: 0.95rem;
}
.ig-fallback a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.ig-fallback a:hover { color: var(--dark); }

.instagram-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 1080px) {
  .featured-sep { display: none; }
  .featured-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
    justify-items: center;
    align-items: center;
  }
}

@media (max-width: 900px) {
  #navbar { padding: 1.2rem 2rem; }
  #navbar.scrolled { padding: 0.9rem 2rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; height: auto; }
  .hero-left { min-height: 80vh; }
  .hero-right { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { height: 360px; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-scroll { grid-template-columns: 1fr 1fr; }
  .testimonial-card { min-width: 100%; width: 100%; }
  .process-steps { grid-template-columns: 1fr 1fr; }

  .venue-map-wrap { grid-template-columns: 1fr; }
  .venue-map-container { min-height: 340px; }
  .venue-map-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .venue-map-sidebar-header { grid-column: 1 / -1; }
  .venue-map-sidebar .btn { grid-column: 1 / -1; }

  .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-intro { text-align: center; }
  .faq-intro .divider { margin: 1.5rem auto; }
  .faq-answer p { padding-right: 0; }

  .instagram-grid { grid-template-columns: repeat(3, 1fr); }

  .contact-wrap { grid-template-columns: 1fr; }
  .contact-image { min-height: 350px; position: relative; }
  .contact-form-side { padding: 4rem 2rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-nav-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .container { padding: 0 2rem; }
  section { padding: 5rem 0; }
}

@media (max-width: 700px) {
  .featured-bar { padding: 1.8rem 2rem; }
}
