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

:root {
  --cream: #f9f3ec;
  --beige: #e8d9c5;
  --sand: #c9b49a;
  --gold: #b8923a;
  --gold-light: #d4a84b;
  --brown: #7a5c3e;
  --dark: #2e1f12;
  --white: #fffdf9;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--dark);
  font-weight: 300;
  overflow-x: hidden;
  cursor: auto;
}

/* ── CURSOR ── */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.4s ease, width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.6;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
  background: transparent;
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(249, 243, 236, 0.95);
  backdrop-filter: blur(8px);
  padding: 16px 60px;
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--dark);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-cta {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 12px 28px;
  text-decoration: none;
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--brown); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 60px 80px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s ease forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s ease forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 14px;
  line-height: 1.9;
  color: var(--brown);
  max-width: 380px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s ease forwards;
}
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s ease forwards;
}
.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.3s;
}
.btn-primary:hover { background: var(--dark); transform: translateY(-2px); }
.btn-ghost {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-img-wrap {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: fadeIn 1.2s 0.4s ease forwards;
}
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--cream) 0%, transparent 40%);
}
.hero-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #e8d9c5 0%, #d4b896 40%, #c09a6e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-badge {
  position: absolute;
  bottom: 60px;
  left: -30px;
  width: 120px; height: 120px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
  z-index: 3;
  opacity: 0;
  animation: fadeIn 1s 1.2s ease forwards;
}
.hero-badge strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  display: block;
  font-weight: 400;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0;
  animation: fadeIn 1s 1.4s ease forwards;
}
.hero-scroll::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--sand);
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--dark);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--beige);
  opacity: 0.7;
}
.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── ABOUT ── */
.about {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #dcc9b0, #b8923a44, #e8d3bc);
  position: relative;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-img::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 60%; height: 60%;
  border: 1px solid var(--beige);
  z-index: -1;
}
.about-tag {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--cream);
  border: 1px solid var(--beige);
  padding: 24px 32px;
  font-family: 'Cormorant Garamond', serif;
}
.about-tag-num {
  font-size: 42px;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.about-tag-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--brown);
}
.section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-body {
  font-size: 14px;
  line-height: 2;
  color: var(--brown);
  margin-bottom: 32px;
}
.about-signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-style: italic;
  color: var(--gold);
  margin-top: 16px;
}

/* ── SERVICES ── */
.services {
  padding: 120px 60px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: 'GLAM';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 280px;
  font-weight: 300;
  color: rgba(255,255,255,0.02);
  white-space: nowrap;
  pointer-events: none;
}
.services-header {
  text-align: center;
  margin-bottom: 70px;
}
.services-header .section-eyebrow { color: var(--gold-light); }
.services-header .section-title { color: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.service-card {
  background: rgba(255,255,255,0.03);
  padding: 48px 40px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.4s, transform 0.4s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  color: inherit;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.service-card:hover { background: rgba(255,255,255,0.06); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 28px; margin-bottom: 24px; display: block; }
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 12px;
}
.service-desc {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
}
.service-link {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: inline-block;
  transition: color 0.3s, transform 0.3s;
}
.service-card:hover .service-link { color: var(--white); transform: translateX(4px); }
.service-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--gold-light);
  font-style: italic;
}
.service-price span {
  font-size: 14px;
  font-style: normal;
  color: rgba(255,255,255,0.3);
  font-family: 'Jost', sans-serif;
}

/* ── PORTFOLIO ── */
.portfolio { padding: 120px 60px; }
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.portfolio-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.portfolio-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.portfolio-item:nth-child(2) { grid-column: span 4; }
.portfolio-item:nth-child(3) { grid-column: span 3; }
.portfolio-item:nth-child(4) { grid-column: span 4; }
.portfolio-item:nth-child(5) { grid-column: span 3; }
.portfolio-item:nth-child(6) { grid-column: span 4; }
.portfolio-item:nth-child(7) { grid-column: span 6; }
.portfolio-item:nth-child(8) { grid-column: span 6; }

.portfolio-img-inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.portfolio-item { background: linear-gradient(135deg, #e0cdb8, #c9a882, #b8923a33); }
.portfolio-item:nth-child(1) .portfolio-img-inner { height: 100%; min-height: 500px; }
.portfolio-item:nth-child(n+2) .portfolio-img-inner { height: 280px; }
.portfolio-item:hover .portfolio-img-inner { transform: scale(1.05); }
.portfolio-item { cursor: pointer; }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46,31,18,0);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background 0.4s;
}
.portfolio-item:hover .portfolio-overlay { background: rgba(46,31,18,0.45); }
.portfolio-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: white;
  font-style: italic;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s;
}
.portfolio-item:hover .portfolio-label { opacity: 1; transform: translateY(0); }

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 120px 60px;
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.testimonial-card {
  padding: 40px 36px;
  border: 1px solid var(--beige);
  text-align: left;
  position: relative;
  transition: box-shadow 0.4s, transform 0.4s;
}
.testimonial-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 24px;
  opacity: 0.4;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 28px;
}
.testimonial-stars { color: var(--gold); font-size: 12px; letter-spacing: 4px; margin-bottom: 16px; }
.testimonial-name { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brown); }

/* ── BOOKING ── */
.booking {
  padding: 120px 60px;
  background: var(--beige);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.booking-steps {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.booking-step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
  min-width: 40px;
  font-style: italic;
}
.step-info h4 { font-size: 13px; letter-spacing: 0.1em; font-weight: 400; margin-bottom: 4px; }
.step-info p { font-size: 13px; color: var(--brown); line-height: 1.7; }

.booking-form {
  background: var(--white);
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  margin-bottom: 32px;
  color: var(--dark);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--beige);
  background: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  cursor: auto;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--dark); }
.btn-submit-wa {
  background: #25D366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-submit-wa:hover { background: #128C7E; transform: translateY(-2px); }
.form-group label .optional {
  text-transform: none;
  letter-spacing: 0.05em;
  font-size: 10px;
  color: var(--sand);
  margin-left: 4px;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 80px 60px 40px;
  color: rgba(255,255,255,0.5);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 300;
}
.footer-brand-name span { color: var(--gold); }
.footer-brand-desc {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255,255,255,0.4);
  max-width: 260px;
}
.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.footer-socials { display: flex; gap: 20px; }
.footer-social {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}
.footer-social:hover { border-color: var(--gold); color: var(--gold-light); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s 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; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-cta { padding: 10px 18px; font-size: 10px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 120px 24px 60px; }
  .hero-right { height: 90vw; min-height: 400px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .hero-actions .btn-ghost { text-align: center; }
  .about, .booking { grid-template-columns: 1fr; padding: 80px 24px; gap: 48px; }
  .services { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio { padding: 80px 24px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .portfolio-item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .portfolio-item .portfolio-img-inner { height: 220px !important; min-height: unset !important; }
  .testimonials { padding: 80px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .portfolio-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  footer { padding: 60px 24px 32px; }
  .wa-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .wa-float svg { width: 26px; height: 26px; }
  .lightbox-nav { width: 44px; height: 44px; font-size: 28px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}

/* ── WHATSAPP BUTTONS ── */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
}
.btn-wa:hover { background: #128C7E; transform: translateY(-2px); }
.wa-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.booking-wa { margin-top: 24px; }

/* ── FLOATING WHATSAPP ── */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 62px;
  height: 62px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waPulse 2.4s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}
.wa-float svg {
  width: 30px;
  height: 30px;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(14, 9, 5, 0.94);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(6px);
}
.lightbox.open {
  display: flex;
  opacity: 1;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
  transform: scale(0.96);
  transition: transform 0.35s ease;
}
.lightbox.open .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
  font-family: inherit;
}
.lightbox-close:hover { background: rgba(255,255,255,0.18); border-color: var(--gold); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
  font-family: inherit;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.18); border-color: var(--gold); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
