/* Isabel Noguera Peluqueros — editorial salon landing */

:root {
  --ink: #0b0a09;
  --ink-2: #141210;
  --ink-3: #1c1916;
  --ivory: #f4efe8;
  --ivory-dim: rgba(244, 239, 232, 0.68);
  --ivory-soft: rgba(244, 239, 232, 0.48);
  --gold: #c4a574;
  --gold-hi: #ead7b0;
  --gold-deep: #8c6a3c;
  --line: rgba(196, 165, 116, 0.32);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Outfit", system-ui, -apple-system, sans-serif;
  --nav-h: 84px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 8px);
}

body {
  font-family: var(--sans);
  color: var(--ivory);
  background: var(--ink);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
svg,
video,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--gold-hi);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

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

button {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--ink-2);
  color: var(--ivory);
  padding: 0.6rem 1rem;
}

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

.container {
  width: min(100% - 2.4rem, var(--max));
  margin-inline: auto;
}

.kicker {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.kicker--spaced {
  margin-top: 2.6rem;
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin-bottom: 1.1rem;
}

.section-title--sm {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
}

.lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--ivory-dim);
  max-width: 42rem;
}

.lead--center {
  margin-inline: auto;
  text-align: center;
}

.rule {
  display: block;
  width: 72px;
  height: 1px;
  margin: 1.6rem auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  padding: 0.95rem 1.55rem;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn--gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-hi);
  color: var(--ink);
  border-color: var(--gold-hi);
}

.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(244, 239, 232, 0.28);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-hi);
}

.btn--sm {
  padding: 0.62rem 1.05rem;
  font-size: 0.74rem;
}

.btn--pulse {
  animation: cta-pulse 1.7s ease-in-out infinite;
  transform-origin: center center;
}

.btn--pulse:hover {
  animation-play-state: paused;
}

@keyframes cta-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(196, 165, 116, 0.28);
  }
  50% {
    transform: scale(1.07);
    box-shadow: 0 0 22px 6px rgba(196, 165, 116, 0.42);
  }
}

.label-short {
  display: none;
}

/* Navbar */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--nav-h);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.navbar.is-solid {
  background: rgba(11, 10, 9, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.navbar__inner {
  width: min(100% - 1.6rem, 1320px);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand__img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.55));
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.navbar__link {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

.navbar__link:hover,
.navbar__link.is-active {
  color: var(--ivory);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-toggle {
  display: flex;
  border: 1px solid rgba(244, 239, 232, 0.18);
}

.lang-toggle__btn {
  padding: 0.35rem 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--ivory-soft);
}

.lang-toggle__btn.is-active {
  color: var(--ink);
  background: var(--gold);
}

.navbar__toggle {
  display: none;
  width: 42px;
  height: 42px;
  position: relative;
}

.navbar__toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1px;
  background: var(--ivory);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.navbar__toggle span:nth-child(1) { top: 15px; }
.navbar__toggle span:nth-child(2) { top: 20px; }
.navbar__toggle span:nth-child(3) { top: 25px; }

.navbar__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.navbar__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.navbar__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 46%, rgba(11, 10, 9, 0.58) 0%, rgba(11, 10, 9, 0.2) 46%, rgba(11, 10, 9, 0.72) 100%),
    linear-gradient(180deg, rgba(11, 10, 9, 0.62) 0%, rgba(11, 10, 9, 0.12) 34%, rgba(11, 10, 9, 0.35) 62%, rgba(11, 10, 9, 0.94) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 7rem 1.2rem 5rem;
  display: grid;
  justify-items: center;
  gap: 1.1rem;
}

.hero__logo {
  position: relative;
}

.hero__logo::before {
  content: "";
  position: absolute;
  inset: 6% 8% 16%;
  background: radial-gradient(ellipse, rgba(11, 10, 9, 0.55) 0%, transparent 72%);
  pointer-events: none;
}

.hero__logo img {
  position: relative;
  width: min(62vw, 400px);
  height: auto;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.45));
}

.hero__kicker {
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-hi);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.hero__scroll {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-soft);
}

.hero__scroll:hover {
  color: var(--gold-hi);
}

/* Statement */
.statement {
  padding: 6.5rem 0 4.5rem;
  text-align: center;
}

.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 8vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  display: grid;
  gap: 0.08em;
}

.display span,
.display em {
  display: block;
}

.display em {
  font-style: italic;
  color: var(--gold-hi);
  font-weight: 400;
}

.display--on-photo {
  color: var(--ivory);
}

/* Photo bleed */
.photo-bleed {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 0.4rem;
  padding: 0 0.4rem;
}

.photo-bleed img {
  width: 100%;
  height: min(72vh, 780px);
  object-fit: cover;
}

/* Salon */
.salon {
  padding: 6.5rem 0;
}

.salon__grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 4.5rem;
  align-items: center;
}

.salon__figure img {
  width: 100%;
  height: min(82vh, 860px);
  object-fit: cover;
}

/* Gallery */
.gallery {
  padding: 2rem 0 5rem;
}

.gallery .lead {
  margin-bottom: 1.8rem;
}

.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.8rem;
}

.chip {
  padding: 0.5rem 0.95rem;
  border: 1px solid rgba(244, 239, 232, 0.16);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

.chip:hover {
  border-color: var(--gold);
  color: var(--ivory);
}

.chip.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
  padding: 0 0.4rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
  aspect-ratio: 3 / 4;
  text-align: left;
}

.gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 3 / 2;
}

.gallery__item.is-hidden {
  display: none;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.04);
}

.gallery__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.2rem 1rem 0.9rem;
  background: linear-gradient(180deg, transparent, rgba(11, 10, 9, 0.82));
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ivory);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.gallery__item:hover .gallery__caption,
.gallery__item:focus-visible .gallery__caption {
  opacity: 1;
  transform: none;
}

/* Services */
.services {
  padding: 5.5rem 0 0;
}

.services .container {
  margin-bottom: 2.2rem;
}

.svc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.svc-panel {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.svc-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.32) saturate(0.85);
}

.svc-panel__body {
  position: relative;
  z-index: 1;
  padding: 4rem 3rem 3.4rem;
  min-height: 720px;
}

.svc-panel h3 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 500;
  margin-bottom: 1.6rem;
}

.svc-panel li + li {
  border-top: 1px solid rgba(244, 239, 232, 0.12);
}

.svc-panel a {
  display: grid;
  gap: 0.2rem;
  padding: 0.95rem 0;
  color: var(--ivory);
}

.svc-panel a strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
}

.svc-panel a span {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--ivory-dim);
}

.svc-panel a:hover {
  color: var(--gold-hi);
}

.svc-panel a:hover span {
  color: var(--ivory-dim);
}

/* Team */
.team {
  padding: 6.5rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2.6rem;
}

.member__photo {
  overflow: hidden;
  margin-bottom: 1.2rem;
  aspect-ratio: 4 / 5;
  background: var(--ink-2);
}

.member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.member h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
}

.member__role {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0.3rem 0 0.7rem;
}

.member p:last-child {
  color: var(--ivory-dim);
  font-weight: 300;
  font-size: 0.95rem;
}

/* Reviews */
.reviews-section {
  padding: 2rem 0 5rem;
  overflow: hidden;
}

.reviews-section__intro {
  margin-bottom: 2rem;
}

.reviews-section__google {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  color: var(--ivory-dim);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.g-stars {
  display: inline-flex;
  gap: 1px;
}

.g-star {
  width: 16px;
  height: 16px;
}

.reviews-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.reviews-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 90s linear infinite;
  padding: 0.4rem 0 1rem;
}

.reviews-marquee:hover .reviews-track,
.reviews-marquee:focus-within .reviews-track {
  animation-play-state: paused;
}

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

.g-review {
  width: min(360px, 78vw);
  flex: 0 0 auto;
  background: var(--ink-2);
  border: 1px solid rgba(244, 239, 232, 0.08);
  padding: 1.25rem 1.2rem 1.1rem;
}

.g-review__head {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.g-review__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

.g-review__name {
  font-size: 0.92rem;
  font-weight: 500;
}

.g-review__text {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ivory-dim);
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.g-review__via {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.8rem;
  font-size: 0.72rem;
  color: var(--ivory-soft);
}

.g-logo {
  width: 14px;
  height: 14px;
}

/* CTA banner */
.cta-banner {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.cta-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.28);
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  padding: 5rem 1.4rem;
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.cta-banner__phone {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: var(--gold-hi);
  letter-spacing: 0.04em;
}

.cta-banner__phone:hover {
  color: var(--ivory);
}

/* Contact */
.contact {
  padding: 6.5rem 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: stretch;
}

.contact-phone a,
.contact-email a {
  font-family: var(--serif);
  font-size: 1.55rem;
  color: var(--ivory);
}

.contact-phone {
  margin: 1.1rem 0 0.3rem;
}

.contact-email {
  margin-bottom: 1.6rem;
}

.hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 1.4rem;
  max-width: 320px;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.hours dt {
  color: var(--ivory-dim);
}

.hours dd {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.map-wrap {
  position: relative;
  min-height: 420px;
  background: var(--ink-2);
}

.map-frame {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(0.45) contrast(1.05);
}

.map-fallback {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  background: var(--ink);
  color: var(--ivory);
  padding: 0.45rem 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 3.2rem 0 6.5rem;
  text-align: center;
  color: var(--ivory-dim);
  font-size: 0.88rem;
}

.footer__inner {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
}

.footer__logo {
  width: 150px;
  margin-bottom: 0.4rem;
}

.footer strong {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.footer__legal {
  max-width: 46rem;
  font-size: 0.8rem;
  color: var(--ivory-soft);
}

.footer__credit {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  width: min(100%, 22rem);
  border-top: 1px solid var(--line);
}

.novatek {
  color: var(--gold);
}

.call-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.call-float:hover {
  color: var(--ink);
  background: var(--gold-hi);
  transform: translateY(-2px);
}

/* Dialogs */
.privacy-dialog,
.lightbox {
  border: 0;
  color: var(--ivory);
  max-width: min(92vw, 640px);
}

.privacy-dialog {
  padding: 0;
  background: transparent;
}

.privacy-dialog::backdrop,
.lightbox::backdrop {
  background: rgba(8, 7, 6, 0.88);
}

.dialog-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 2rem 1.6rem;
}

.dialog-card h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.dialog-card p {
  color: var(--ivory-dim);
  margin-bottom: 0.9rem;
}

.lightbox {
  width: min(90vw, 560px);
  height: fit-content;
  max-height: 92vh;
  margin: auto;
  padding: 2.6rem 3.2rem 1.1rem;
  background: var(--ink);
  border: 1px solid var(--line);
  overflow: auto;
}

.lightbox img {
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  margin-inline: auto;
}

.lightbox__close {
  position: absolute;
  top: 0.35rem;
  right: 0.7rem;
  z-index: 2;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--ivory);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--gold-hi);
  background: rgba(11, 10, 9, 0.72);
  border: 1px solid var(--line);
}

.lightbox__nav:hover {
  color: var(--ivory);
  border-color: var(--gold);
}

.lightbox__nav--prev {
  left: 0.45rem;
}

.lightbox__nav--next {
  right: 0.45rem;
}

.lightbox__caption {
  text-align: center;
  padding: 0.7rem 0.4rem 0;
  font-family: var(--serif);
  font-size: 1.2rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reviews-track { animation: none; }
  .gallery__item img { transition: none; }
  .btn--pulse { animation: none; }
}

@media (max-width: 980px) {
  .navbar__nav {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    background: rgba(11, 10, 9, 0.96);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.2rem 1.4rem;
    gap: 0;
    display: none;
    border-bottom: 1px solid var(--line);
  }

  .navbar__nav.is-open {
    display: flex;
  }

  .navbar__link {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(244, 239, 232, 0.08);
  }

  .navbar__toggle {
    display: block;
  }

  .label-full { display: none; }
  .label-short { display: inline; }

  .navbar__actions .btn--sm {
    padding: 0.55rem 0.75rem;
  }

  .salon__grid,
  .contact__grid,
  .svc-split,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

  .photo-bleed {
    grid-template-columns: 1fr;
  }

  .photo-bleed img:nth-child(2),
  .photo-bleed img:nth-child(3) {
    display: none;
  }

  .photo-bleed img {
    height: 58vh;
  }

  .svc-panel__body {
    padding: 2.4rem 1.4rem 2.2rem;
    min-height: 0;
  }

  .member__photo {
    aspect-ratio: 4 / 5;
    max-width: none;
  }

  .contact-email a {
    font-size: 1.15rem;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 640px) {
  .statement {
    padding: 4.2rem 0 3rem;
  }

  .gallery__caption {
    opacity: 1;
    transform: none;
    font-size: 1rem;
  }

  .hero__logo img {
    width: min(82vw, 300px);
  }

  .lightbox {
    padding: 2.4rem 2.6rem 1rem;
  }

  .lightbox__nav {
    width: 38px;
    height: 38px;
  }

  .cta-banner__inner .btn--ghost {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }
}
