/* ==========================================================================
   SHARED — variables, reset, base, nav, footer
   Used by ALL pages (index.html, gallery.html, ...)
   ========================================================================== */

:root {
  --plum:       #6b3f5b;
  --plum-deep:  #4a2540;
  --rose:       #b85c72;
  --rose-light: #cc7a8e;
  --blush:      #f7edf0;
  --warm-white: #fdf9fb;
  --petal:      #e8a8b8;
  --text-dark:  #2d1520;
  --text-mid:   #5c3d49;
  --text-light: #8a6070;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 1.2rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(253, 249, 251, 0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 92, 114, 0.15);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(59, 31, 43, 0.08); }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 600; color: var(--plum);
  text-decoration: none; letter-spacing: 0.02em;
}
.nav-logo span { color: var(--rose); }

.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-mid);
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative; padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--rose);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--rose); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.activeA { color: var(--rose); }
.nav-links a.activeA::after { width: 100%; }

.nav-cta {
  background: var(--rose); color: #fff !important;
  padding: 0.6rem 1.4rem !important; border-radius: 2px;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--plum) !important; color: #fff !important; }

.menu { display: none; }

/* ── SECTION HELPERS (base — see page-specific overrides below) ── */
section { padding: 6rem 5%; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400; line-height: 1.2; color: var(--plum);
}
.section-title em { font-style: italic; color: var(--rose); }

.section-label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rose); font-weight: 500; margin-bottom: 1rem;
}
.section-label::before { content: ''; width: 2rem; height: 1px; background: var(--rose); }

/* ── SHARED BUTTON (base = index values; gallery override further down) ── */
.btn-primary {
  background: var(--rose); color: #fff;
  padding: 0.9rem 2rem; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
  font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; display: inline-block;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--rose-light); transform: translateY(-1px); }

/* ── FOOTER ── */
footer { background: var(--plum-deep); padding: 4rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { color: #fff; font-size: 1.2rem; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.82rem; line-height: 1.7; margin-top: 1rem; font-weight: 300; max-width: 240px; }
.footer-col h4 { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--petal); font-weight: 500; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: rgba(255,255,255,0.45); font-size: 0.83rem; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ── SHARED RESPONSIVE (nav) ── */
@media (max-width: 900px) {
  #nav { display: flex; row-gap: 20px; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; width: 100%;
    background: var(--warm-white); padding: 1.5rem 5%;
    border-top: 1px solid rgba(184, 92, 114, 0.15);
  }
  .nav-links.active { display: flex; }
  .nav-links li { margin-bottom: 1rem; }
  .menu { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   HOME PAGE ONLY  →  requires <body class="page-home">
   ========================================================================== */

#hero-img { width: 100%; height: 90vh; margin-top: 75px; }

#hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  padding: 0 5%;
  background: var(--plum-deep);
  position: relative; overflow: hidden;
  column-gap: clamp(20px, 8vw, 100px);
}

.hero-content { position: relative; z-index: 2; padding: 9rem 0 5rem; animation: fadeUp 0.9s ease both; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--petal); font-weight: 500; margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; width: 2.5rem; height: 1px; background: var(--petal); }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300; line-height: 1.1; color: #fff; margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--rose-light); }

.hero-meet {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; color: #fff;
  vertical-align: bottom; line-height: 1.25;
}
.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.65);
  line-height: 1.75; max-width: 460px; margin-bottom: 2.5rem; font-weight: 300;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-ghost {
  background: transparent; color: rgba(255,255,255,0.8);
  padding: 0.9rem 2rem; border: 1px solid rgba(255,255,255,0.3); cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
  font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; display: inline-block;
  transition: border-color 0.25s, color 0.25s;
}
.btn-ghost:hover { border-color: var(--petal); color: var(--petal); }

/* ── TAGLINE STRIP ── */
.tagline-strip {
  background: var(--petal); padding: 1rem 5%;
  display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap;
}
.tagline-strip span {
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--plum); font-weight: 500;
}
.tagline-dot { color: var(--plum); opacity: 0.35; }

/* ── SERVICES ── */
#services { background: var(--blush); }
.services-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: 4rem; }
.services-intro p { color: var(--text-mid); line-height: 1.8; font-size: 1rem; font-weight: 300; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 5px; background: rgba(184, 92, 114, 0.12); }
.service-card { background: var(--warm-white); padding: 2.5rem 2rem; transition: background 0.3s, transform 0.3s; cursor: default; }
.service-card:hover { background: var(--plum); transform: translateY(-4px); }
.service-card:hover .service-icon { color: var(--petal); }
.service-card:hover .service-name { color: #fff; }
.service-card:hover .service-desc { color: rgba(255,255,255,0.6); }
.service-icon { font-size: 2rem; margin-bottom: 1rem; color: var(--rose); transition: color 0.3s; line-height: 1; }
.service-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--plum); margin-bottom: 0.75rem; transition: color 0.3s; }
.service-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; font-weight: 300; transition: color 0.3s; }

/* ── ABOUT ── */
#about { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; background: var(--warm-white); }
.about-image-wrap { position: relative; }
.about-image-frame {
  width: 100%; aspect-ratio: 3.75/4;
  background: linear-gradient(135deg, var(--plum) 0%, #4a2035 100%);
  position: relative; overflow: hidden; border-radius: 20px;
}
.about-image-frame::after {
  content: ''; position: absolute;
  top: 1.5rem; left: 1.5rem; right: -1.5rem; bottom: -1.5rem;
  border: 1px solid var(--petal); z-index: -1;
}
.about-badge {
  position: absolute; bottom: 4.5rem; right: -3.5rem;
  background: var(--rose); color: #fff; padding: 1.5rem;
  font-family: 'Cormorant Garamond', serif; text-align: center;
}
.about-badge-num { font-size: 2.5rem; font-weight: 600; line-height: 1; }
.about-badge-txt { font-size: 0.75rem; opacity: 0.85; letter-spacing: 0.05em; }
.about-content p { color: var(--text-mid); line-height: 1.85; font-size: 0.97rem; font-weight: 300; margin-bottom: 1.2rem; }
.about-content p strong { color: var(--plum); font-weight: 500; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.value-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.value-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--petal); flex-shrink: 0; margin-top: 6px; }
.value-text { font-size: 0.85rem; color: var(--text-mid); line-height: 1.5; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--plum-deep); color: #fff; }
#testimonials .section-title { color: #fff; }
#testimonials .section-label { color: var(--petal); }
#testimonials .section-label::before { background: var(--petal); }
.testimonials-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); padding: 2rem; transition: background 0.3s, border-color 0.3s; }
.testimonial-card:hover { background: rgba(184,92,114,0.18); border-color: rgba(184,92,114,0.5); }
.stars { color: var(--petal); font-size: 0.85rem; letter-spacing: 0.1em; margin-bottom: 1.2rem; }
.testimonial-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-author { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); font-weight: 500; }

/* ── PROCESS ── */
#process { background: var(--blush); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 3.5rem; position: relative; }
.process-steps::after { content: ''; position: absolute; top: 2rem; left: 10%; right: 10%; height: 1px; background: rgba(184,92,114,0.2); z-index: 0; }
.process-step { text-align: center; padding: 0 1.5rem; position: relative; z-index: 1; }
.step-num {
  width: 4rem; height: 4rem; background: var(--warm-white);
  border: 1px solid var(--rose); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--rose); font-weight: 600;
  margin: 0 auto 1.5rem; transition: background 0.3s, color 0.3s;
}
.process-step:hover .step-num { background: var(--rose); color: #fff; }
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--plum); margin-bottom: 0.6rem; }
.step-desc { font-size: 0.83rem; color: var(--text-mid); line-height: 1.65; font-weight: 300; }

/* ── CTA BANNER ── */
#cta { background: var(--rose); padding: 5rem 5%; display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
.cta-text h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 400; color: #fff; margin-bottom: 0.75rem; }
.cta-text p { color: rgba(255,255,255,0.8); font-size: 0.97rem; line-height: 1.7; font-weight: 300; }
.btn-white {
  background: #fff; color: var(--rose);
  padding: 1rem 2.2rem; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  white-space: nowrap; text-decoration: none; display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* ── CONTACT ── */
#contact { background: var(--warm-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 3rem; }
.contact-info h3, .contact-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; color: var(--plum); margin-bottom: 1.5rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon { color: var(--rose); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.6; font-weight: 300; }
.contact-detail strong { color: var(--plum); font-weight: 500; display: block; margin-bottom: 0.2rem; }
.hours-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 0.4rem 1.5rem; margin-top: 0.5rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.80rem; color: var(--text-mid); padding: 0.35rem 0; border-bottom: 1px solid rgba(184,92,114,0.1); }
.hours-row span:first-child { color: var(--plum); font-weight: 400; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid); font-weight: 500; margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid rgba(184,92,114,0.2); background: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--text-dark);
  outline: none; transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--rose); }
.form-group textarea { resize: vertical; min-height: 110px; }

.every { list-style-type: none; padding-left: 1.5em; }
.every li::before { content: "◆"; color: var(--rose); display: inline-block; width: 1.5em; margin-left: -1.5em; font-size: 0.75em; }
.every li { margin-bottom: .5em; color: var(--plum); font-size: 0.90em; font-weight: 300; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; min-height: auto; padding-top: 6rem; }
  #hero-img { margin-top: -150px; height: 55vh; margin-bottom: 20px; }
  .hero-btns { display: block; text-align: center; }
  .hero-btns a:first-child { margin-bottom: 15px; }
  .hero-content { padding: 3rem 0 10rem; }
  .hero-stats { gap: 1.5rem; }
  .services-intro { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; gap: 5px; }
  #about { grid-template-columns: 1fr; gap: 3rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps::after { display: none; }
  #cta { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-badge { position: absolute; bottom: 4.5rem; right: -1rem; padding: 0.75rem; }
}

/* ==========================================================================
   GALLERY PAGE ONLY  →  requires <body class="page-gallery">
   ========================================================================== */

/* .btn-primary override for this page (different padding + hover color) */
.page-gallery .btn-primary { padding: 0.9rem 2.2rem; }
.page-gallery .btn-primary:hover { background: var(--plum); }

/* .section-label override for this page (centered, with trailing rule) */
.page-gallery .section-label {
  color: var(--petal);
  justify-content: center; width: 100%;
}
.page-gallery .section-label::before { background: var(--petal); }
.page-gallery .section-label::after { content: ''; width: 2rem; height: 1px; background: var(--petal); }

/* ── PAGE HEADER ── */
#gallery-hero { background: var(--plum-deep); padding: 10rem 5% 5rem; text-align: center; position: relative; overflow: hidden; }
#gallery-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b85c72' fill-opacity='0.5'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.gallery-hero-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }

.gallery-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 300; line-height: 1.15; color: #fff; margin-bottom: 1.25rem;
}
.gallery-hero-title em { font-style: italic; color: var(--rose-light); }
.gallery-hero-sub { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.8; font-weight: 300; }

/* ── GALLERY GRID ── */
#gallery-section { padding: 5rem 5% 6rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; max-width: 1200px; margin: 0 auto; }
.gallery-card { background: #fff; overflow: hidden; box-shadow: 0 8px 30px rgba(59, 31, 43, 0.08); transition: box-shadow 0.3s; cursor: zoom-in; }
.gallery-card:hover { box-shadow: 0 16px 40px rgba(59, 31, 43, 0.16); }
.gallery-card .pair { display: grid; grid-template-columns: 1fr 1fr; position: relative; }
.gallery-card .pair::after { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--warm-white); transform: translateX(-1px); }
.gallery-card .pair-item { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.gallery-card .pair-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.gallery-card:hover .pair-item img { transform: scale(1.06); }
.pair-item .tag {
  position: absolute; bottom: 0.6rem; left: 0.6rem;
  background: rgba(74, 37, 64, 0.75); color: #fff;
  font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.6rem; border-radius: 3px; font-weight: 500;
}
.pair-item.after .tag { background: rgba(184, 92, 114, 0.85); }

/* ── LIGHTBOX ── */
.lightbox-overlay { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(42, 21, 32, 0.94); align-items: center; justify-content: center; }
.lightbox-overlay.open { display: flex; }
.lightbox-content { max-width: min(92vw, 1000px); max-height: 84vh; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.lightbox-pair { display: flex; gap: 0.5rem; max-height: 74vh; }
.lightbox-pair-item { position: relative; flex: 1; min-width: 0; }
.lightbox-pair-item img {
  display: block; max-width: 100%; max-height: 74vh; width: 100%; height: 100%;
  object-fit: contain; border-radius: 8px; background: rgba(0,0,0,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4); animation: lightboxFade 0.25s ease;
}
.lightbox-pair-item .lightbox-tag {
  position: absolute; top: 0.6rem; left: 0.6rem;
  background: var(--rose); color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.6rem; border-radius: 3px; font-weight: 500;
}
@keyframes lightboxFade { from { opacity: 0; transform: scale(0.98); } to { opacity: 1; transform: scale(1); } }
.lightbox-caption { color: rgba(255,255,255,0.85); font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; text-align: center; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: transparent; border: none; cursor: pointer;
  color: rgba(255,255,255,0.8); font-size: 1.6rem;
  width: 3rem; height: 3rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.1); color: #fff; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: transparent; border: none; cursor: pointer;
  color: rgba(255,255,255,0.7); font-size: 1.6rem;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.1); color: var(--petal); }
.lightbox-nav.prev { left: 1.5rem; }
.lightbox-nav.next { right: 1.5rem; }
.lightbox-counter {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  color: rgba(255,255,255,0.6); font-size: 0.8rem; letter-spacing: 0.05em;
  background: rgba(255,255,255,0.08); padding: 0.35rem 0.8rem; border-radius: 20px;
}

@media (max-width: 640px) {
  .lightbox-pair { flex-direction: column; overflow-y: auto; }
  .lightbox-pair-item img { max-height: 34vh; }
  .lightbox-nav { width: 2.6rem; height: 2.6rem; font-size: 1.2rem; }
  .lightbox-nav.prev { left: 0.4rem; }
  .lightbox-nav.next { right: 0.4rem; }
  .lightbox-close { top: 0.75rem; right: 0.75rem; }
  .lightbox-counter { bottom: 0.75rem; right: 0.75rem; }
}

.gallery-card .card-caption { padding: 1.1rem 1.3rem; }
.gallery-card .card-caption p { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--plum); font-weight: 500; }
.gallery-card .card-caption small { display: block; margin-top: 0.3rem; font-size: 0.74rem; color: var(--text-light); letter-spacing: 0.03em; }

.gallery-empty { text-align: center; max-width: 480px; margin: 2rem auto 0; color: var(--text-mid); font-weight: 300; line-height: 1.8; }
.gallery-empty i { font-size: 2.2rem; color: var(--petal); margin-bottom: 1rem; display: block; }

/* ── CTA STRIP ── */
.gallery-cta { background: var(--petal); padding: 3rem 5%; text-align: center; }
.gallery-cta h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--plum-deep); font-weight: 500; margin-bottom: 1.5rem; }

/* ── LOADING STATE ── */
.gallery-loading { text-align: center; padding: 2rem 0; color: var(--text-light); font-weight: 300; }
.gallery-loading i { font-size: 1.6rem; color: var(--petal); display: block; margin-bottom: 0.75rem; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .footer-bottom { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}