/* LUMORA Ladies Salon — main stylesheet */

:root {
  --gold: #c9b582;
  --gold-mid: #d4c19a;
  --gold-dark: #b8a270;
  --beige: #e5e0d8;
  --beige-alt: #ddd8d0;
  --peach: #ffd4bd;
  --text: #6b5744;
  --white: #ffffff;
  --light-gray: #f5f2ee;
  --charcoal: #3d3d3d;
  --footer-bg: #6b5744;
  --shadow-soft: 0 18px 50px rgba(62, 52, 42, 0.08);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-script: "Great Vibes", cursive;
  --container: min(1120px, 92vw);
  --container-wide: min(1320px, 94vw);
  --header-height: 76px;
}

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

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;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--light-gray);
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--charcoal);
}

.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;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--white);
  z-index: 10000;
}

.skip-link:focus {
  left: 1rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.container-wide {
  width: var(--container-wide);
  margin-inline: auto;
}

.muted {
  color: rgba(107, 87, 68, 0.82);
}

.small {
  font-size: 0.9rem;
}

.lead {
  font-size: 1.12rem;
}

.section-label {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.35rem;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--charcoal);
}

.section-title--center {
  text-align: center;
}

.section-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(184, 162, 112, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.03);
  color: var(--white);
}

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

.btn-outline:hover {
  background: rgba(201, 181, 130, 0.15);
  color: var(--charcoal);
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-nav {
  padding-inline: 1rem;
  font-size: 0.88rem;
}

.text-link {
  font-weight: 500;
  color: var(--gold-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 162, 112, 0.55);
  padding-bottom: 2px;
}

.text-link:hover {
  border-bottom-color: var(--charcoal);
}

.icon-svg {
  flex-shrink: 0;
  color: var(--gold-dark);
}

.icon-lg {
  width: 32px;
  height: 32px;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}

.site-header.is-scrolled {
  background: color-mix(in srgb, var(--beige) 92%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
  padding-block: 0.35rem;
}

.brand img {
  height: auto;
  width: clamp(140px, 28vw, 180px);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle-lines {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--charcoal);
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  background: var(--charcoal);
  transition: transform 0.25s;
}

.nav-toggle-lines::before {
  top: -8px;
}

.nav-toggle-lines::after {
  top: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.nav-list {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.nav-list a:hover {
  color: var(--gold-dark);
}

/* Hero */
.hero {
  position: relative;
  /* Lighter than global --beige — airy hero wash */
  --beige: #f3f1ee;
  --beige-alt: #eeebe8;
  min-height: min(100vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 3rem) 0 4rem;
  overflow: hidden;
  background: linear-gradient(165deg, var(--white) 0%, var(--beige) 45%, var(--beige-alt) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(251, 249, 247, 0.94) 0%, rgba(243, 240, 236, 0.76) 55%, rgba(255, 220, 200, 0.28) 100%),
    url("../assets/images/pexels-artbovich-7750113.jpg");
  background-size: 100% 100%, cover;
  background-position: 0 0, center 40%;
  background-repeat: no-repeat;
  filter: saturate(0.95);
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  pointer-events: none;
}

.wave-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-logo-wrap img {
  margin-inline: auto;
  width: min(340px, 78vw);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  margin: 1rem 0 1.5rem;
}

.opening-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(201, 181, 130, 0.45);
  font-size: 0.95rem;
  box-shadow: var(--shadow-soft);
}

.opening-badge .icon-calendar {
  color: var(--gold-dark);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.scroll-hint {
  display: block;
  margin-top: 3rem;
  width: 26px;
  height: 42px;
  margin-inline: auto;
  border: 2px solid rgba(107, 87, 68, 0.35);
  border-radius: 20px;
  position: relative;
}

.scroll-hint-line {
  display: block;
  width: 4px;
  height: 10px;
  background: var(--gold-dark);
  border-radius: 4px;
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  animation: scroll-dot 1.6s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
}

/* About */
.about {
  position: relative;
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: var(--white);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.gold-rule {
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1.25rem;
  border-radius: 3px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 500;
}

.about-mask {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
}

.about-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Services */
.services {
  position: relative;
  padding: clamp(4rem, 10vw, 6rem) 0;
  overflow: hidden;
}

.services-bg-tone {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--light-gray) 0%, var(--beige) 100%);
  z-index: -1;
}

.services-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.title-wave {
  width: min(200px, 40vw);
  height: 4px;
  margin: 0.75rem auto 0;
  background: repeating-linear-gradient(
    90deg,
    var(--gold),
    var(--gold) 8px,
    transparent 8px,
    transparent 16px
  );
  opacity: 0.65;
  border-radius: 4px;
}

.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(3rem, 8vw, 5rem);
}

.svc-row--media-end .svc-media {
  order: 2;
}

.svc-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.svc-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.svc-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(201, 181, 130, 0.5);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.6);
}

.svc-title {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
  color: var(--charcoal);
}

.svc-featured {
  margin-top: 2rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(201, 181, 130, 0.55);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(229, 224, 216, 0.65));
  text-align: center;
}

.svc-featured-inner {
  max-width: 720px;
  margin-inline: auto;
}

.svc-featured-img {
  margin-top: 1.25rem;
  border-radius: var(--radius-md);
  width: 100%;
  max-height: 340px;
  object-fit: cover;
}

/* Gallery */
.gallery {
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: var(--white);
}

.gallery-head {
  text-align: center;
  margin-bottom: 2rem;
}

.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  padding: 0;
  border: none;
  cursor: zoom-in;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  width: 100%;
  background: transparent;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.55s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item--tall img {
  min-height: min(420px, 58vw);
  object-fit: cover;
}

.gallery-item--wide img {
  min-height: min(260px, 38vw);
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(62, 52, 42, 0.55), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
}

.gallery-item:hover .gallery-overlay,
.gallery-item:focus-visible .gallery-overlay {
  opacity: 1;
}

.gallery-zoom-label {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
}

.gallery-item:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Team */
.team {
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: linear-gradient(180deg, var(--light-gray), var(--beige));
}

.team-head {
  text-align: center;
  margin-bottom: 2rem;
}

.team-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}

.team-member {
  flex: 0 0 min(260px, 78vw);
  scroll-snap-align: start;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(201, 181, 130, 0.35);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}

.team-member:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: linear-gradient(145deg, var(--gold-mid), var(--gold-dark));
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.team-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
}

.team-role {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 0.75rem;
}

.team-bio {
  margin: 0;
  font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: var(--white);
}

.testimonials-head {
  text-align: center;
  margin-bottom: 2rem;
}

.carousel {
  max-width: 720px;
  margin-inline: auto;
}

.carousel-viewport {
  position: relative;
  min-height: 240px;
}

.quote-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 181, 130, 0.35);
  background: var(--light-gray);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease;
  z-index: 0;
}

.quote-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.quote-mark {
  font-family: var(--font-script);
  font-size: 4rem;
  line-height: 0.5;
  display: block;
  color: rgba(201, 181, 130, 0.55);
  margin-bottom: 0.5rem;
}

.quote-slide p {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  line-height: 1.5;
  margin: 0 0 1.25rem;
}

.quote-slide cite {
  font-style: normal;
  font-weight: 500;
  font-size: 0.95rem;
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 181, 130, 0.55);
  background: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--charcoal);
  transition: background 0.2s, border-color 0.2s;
}

.carousel-btn:hover {
  background: rgba(201, 181, 130, 0.18);
  border-color: var(--gold-dark);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(107, 87, 68, 0.25);
  cursor: pointer;
  padding: 0;
}

.carousel-dot.is-active {
  background: var(--gold-dark);
}

/* Contact */
.contact {
  position: relative;
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: var(--beige);
}

.contact-wave-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.contact-wave-top svg {
  display: block;
  width: 100%;
  height: 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 1rem;
}

.contact-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.contact-list a {
  font-weight: 500;
  color: var(--charcoal);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 181, 130, 0.55);
  display: grid;
  place-items: center;
  color: var(--charcoal);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.65);
  border-color: var(--gold-dark);
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 10;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.82);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 181, 130, 0.35);
  box-shadow: var(--shadow-soft);
}

.form-title {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
}

.booking-form .field {
  margin-bottom: 1rem;
}

.booking-form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.req {
  color: #b45309;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(107, 87, 68, 0.22);
  font-family: var(--font-sans);
  font-size: 1rem;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(201, 181, 130, 0.28);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field-error {
  display: block;
  font-size: 0.82rem;
  color: #b91c1c;
  margin-top: 0.35rem;
  min-height: 1.1em;
}

.booking-form input.is-invalid,
.booking-form select.is-invalid {
  border-color: #b91c1c;
}

.form-success {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #166534;
}

/* Footer */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.92);
  padding: clamp(2.5rem, 6vw, 3.5rem) 0;
}

.footer-inner {
  text-align: center;
}

.footer-logo {
  margin-inline: auto;
  max-width: 180px;
  /* Render logo as solid white on dark footer (PNG must be transparent around artwork for best result) */
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.25rem 0;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 500;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.92);
}

.copyright {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
}

/* FAB WhatsApp */
.fab-wa {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 950;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(62, 52, 42, 0.28);
  text-decoration: none;
  transition: transform 0.2s, filter 0.2s;
}

.fab-wa:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(20, 18, 16, 0.88);
  display: grid;
  place-items: center;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox-img {
  max-width: min(92vw, 1100px);
  max-height: 82vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 0.95rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2.25rem;
  cursor: pointer;
  line-height: 1;
}

body.lightbox-open {
  overflow: hidden;
}
