/* ═══════════════════════════════════════════════
   Anca Stefania PMU Artist — White Clean Style
   ═══════════════════════════════════════════════ */

/* ─── Tokens ─── */
:root {
  --white:    #ffffff;
  --off:      #f7f7f7;
  --light:    #efefef;
  --dark:     #1a1a1a;
  --dark-60:  #666666;
  --dark-30:  #aaaaaa;
  --line:     #e0e0e0;
  --accent:   #1a1a1a;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  Inter, system-ui, sans-serif;

  --pad:   clamp(1.25rem, 5vw, 2.5rem);
  --max:   72rem;
  --sec:   clamp(2.5rem, 6vw, 5rem);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-size: clamp(14px, 1.7vw, 16px);
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
}

.site-status-bar {
  padding: 0.55rem var(--pad);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
  color: #5a4a12;
  background: #fff8df;
  border-bottom: 1px solid #eadfa8;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--pad);
  z-index: 200;
  padding: 0.65rem 1rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--dark);
}

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

a:focus-visible,
button:focus-visible,
.btn-primary:focus-visible,
.btn-outline:focus-visible,
.btn-white:focus-visible {
  outline: 2px solid var(--dark-30);
  outline-offset: 3px;
}

.drawer__link:focus-visible {
  outline: 2px solid var(--dark);
  outline-offset: 2px;
}

.drawer__link[aria-current="page"] {
  color: var(--dark);
  font-weight: 600;
}

.footer__nav a[aria-current="page"] {
  color: var(--white);
  font-weight: 600;
}

/* ─── Layout ─── */
.wrap {
  width: min(100% - var(--pad) * 2, var(--max));
  margin-inline: auto;
}

.section { padding-block: var(--sec); }
.section + .section { padding-top: clamp(1rem, 3vw, 1.75rem); }
.section--white { background: var(--white); }
.section--gray  { background: var(--off); }
.section--gray + .section--white,
.section--white + .section--gray { padding-top: clamp(0.75rem, 2.5vw, 1.25rem); }
.section--dark  { background: var(--dark); color: var(--white); }

/* ─── Typography ─── */
.section__label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark-60);
  margin-bottom: 1rem;
}

.section__label--light {
  color: rgba(255,255,255,0.6);
}

.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.section__intro {
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.75;
  color: var(--dark-60);
  max-width: 52rem;
  margin-bottom: 2rem;
}

.section__body {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.75;
  color: var(--dark-60);
  max-width: 46rem;
  margin-bottom: 1.25rem;
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 2rem;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--dark);
  border: 2px solid var(--dark);
  transition: background 0.2s, color 0.2s;
}

.btn-primary:hover {
  background: transparent;
  color: var(--dark);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 2rem;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  background: transparent;
  border: 2px solid var(--dark);
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 2rem;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--white);
  border: 2px solid var(--white);
  transition: background 0.2s, color 0.2s;
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 1px solid var(--dark);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.btn-link:hover { opacity: 0.6; }

/* ─── Navigation ─── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  height: 70px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.nav__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  text-align: center;
  flex-shrink: 1;
  min-width: 0;
  max-width: calc(100% - 3rem);
}

.nav__logo-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 4.2vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--dark);
  white-space: nowrap;
}

.nav__logo-sub {
  font-family: var(--sans);
  font-size: 0.5625rem;
  font-weight: 600;
  color: var(--dark-60);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.32rem;
  padding-left: 0.2em;
}

.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
}

.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--dark);
  transition: transform 0.2s, opacity 0.2s;
}

.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Drawer ─── */
.drawer {
  position: fixed;
  inset: 70px 0 0 0;
  z-index: 99;
  background: var(--white);
  display: flex;
  flex-direction: column;
  padding: 2rem var(--pad);
  gap: 0;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s, opacity 0.3s;
  border-top: 1px solid var(--line);
}

.drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.drawer__link {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.drawer__link--cta {
  margin-top: 1.5rem;
  background: var(--dark);
  color: var(--white);
  padding: 1rem 2rem;
  text-align: center;
  border-bottom: none;
}

/* ─── Hero ─── */
.hero {
  padding-top: 70px;
}

.hero__photo-wrap {
  width: 100%;
  aspect-ratio: unset;
  max-height: none;
  height: auto;
  overflow: hidden;
  position: relative;
  background: #4a5c48;
}

/* Gradient: photo fades into page — no abrupt cut */
.hero__photo-wrap::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 30%;
  background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.45) 65%, #ffffff 100%);
  pointer-events: none;
}

.hero__photo {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: unset;
  object-position: unset;
  display: block;
  background: #4a5c48;
}

/* Hero banner Gala — aceeași poză pe mobil și desktop */
.hero--banner {
  position: relative;
}

.hero--banner .hero__photo-wrap {
  background: #2d3d2b;
}

.hero--banner .hero__photo-wrap::after {
  display: none;
}

.hero--banner .hero__photo--banner {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  display: block;
  vertical-align: top;
}

.hero--banner .hero__content {
  border-top: 1px solid var(--line);
}

.hero__content {
  padding: clamp(0.5rem, 1.5vw, 1rem) var(--pad) clamp(3rem, 8vw, 5rem);
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}

.hero__brand-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark-60);
  margin-bottom: 1.5rem;
}

.hero__heading {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.65rem, 4.8vw, 2.75rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin-bottom: 1.25rem;
  max-width: 22em;
  margin-inline: auto;
}

.hero__lead {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.hero__lead em {
  font-style: italic;
}

.hero__social-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark-60);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.hero__social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-60);
}

.hero__social a:hover { color: var(--dark); }

/* ─── Consult ─── */
.consult__wrap {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 768px) {
  .consult__wrap {
    grid-template-columns: 1fr 1fr;
  }
}

.consult__photo-wrap {
  aspect-ratio: 3/4;
}

/* ─── Services ─── */
.services {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .services {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 2rem;
  }

  .service-card__photo-wrap {
    max-height: 11.5rem;
    margin-bottom: 1.25rem;
  }

  .service-card__photo {
    object-fit: contain;
    object-position: center;
  }
}

.service-card {
  background: var(--white);
}

.service-card__photo-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: var(--off);
}

.service-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: var(--off);
}

.service-card__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.service-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--dark-60);
  margin-bottom: 1rem;
}

.service-card__price {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

/* ─── About ─── */
.about {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (min-width: 768px) {
  .about { grid-template-columns: 1fr 1fr; }
}

.about__photo-wrap {
  aspect-ratio: 3/4;
}

.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--light);
}

.about__awards {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.award {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--dark-60);
  padding-left: 1rem;
  border-left: 2px solid var(--dark);
}

/* ─── Powder ─── */
.powder__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .powder__grid { grid-template-columns: 1fr 1fr; }
}

.powder__photo-wrap {
  aspect-ratio: 4/3;
}

/* ─── Gallery ─── */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
}

.gallery__item {
  aspect-ratio: 1;
  background: var(--light);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 0.85rem;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
}

.gallery__preface-title {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--dark);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.gallery__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem;
  text-align: center;
  background: linear-gradient(145deg, #f5f0eb 0%, #efe8e4 48%, #f7f7f7 100%);
  color: var(--dark-60);
}

.gallery__placeholder-icon {
  width: 2rem;
  height: 2rem;
  opacity: 0.42;
}

.gallery__placeholder-text {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
  max-width: 11rem;
}

.service-card__photo-label {
  margin: 0.45rem 0 0.85rem;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-30);
}

.services__illustration-note {
  margin-top: 1.75rem;
  font-size: 12px;
  line-height: 1.6;
  color: var(--dark-30);
  letter-spacing: 0.03em;
  text-align: center;
}

/* ─── Testimonials ─── */
.testimonials {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .testimonials { grid-template-columns: repeat(3, 1fr); }
}

.testimonial {
  background: var(--white);
  padding: 2rem;
}

.testimonial__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.testimonial__author {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-60);
  font-style: normal;
}

.testimonials__source {
  margin-top: 1.5rem;
  font-size: 12px;
  color: var(--dark-30);
}

/* ─── Social section ─── */
.social-section { text-align: center; }

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

/* ─── CTA Final ─── */
.cta-final {
  text-align: center;
}

.cta-final__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.cta-final__sub {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 38rem;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

/* ─── Footer ─── */
.footer {
  background: var(--dark);
  color: var(--white);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

.footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer__heading {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0.85rem;
}

.footer__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-style: normal;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
}

.footer__list a {
  color: rgba(255, 255, 255, 0.58);
  transition: color 0.2s;
}

.footer__list a:hover {
  color: var(--white);
}

.footer__logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 0.5rem;
}

.footer__logo-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.35rem, 4vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white);
  white-space: nowrap;
}

.footer__logo-sub {
  font-family: var(--sans);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.35rem;
  padding-left: 0.2em;
}

.footer__tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1.25rem;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.footer__nav a:hover {
  color: var(--white);
}

.footer__bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__bar a {
  color: rgba(255, 255, 255, 0.45);
}

.footer__bar a:hover {
  color: var(--white);
}

.footer__links {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.4);
}

.footer__copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

/* ─── Cookie banner ─── */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  padding: 0.85rem var(--pad);
  background: rgba(28, 25, 23, 0.96);
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__text {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  max-width: 36rem;
  text-align: center;
}

.cookie-banner__text a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__btn {
  flex-shrink: 0;
  min-height: 40px;
  padding: 0 1.25rem;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--white);
  border: none;
  cursor: pointer;
}

.cookie-banner__btn:hover {
  background: rgba(255,255,255,0.9);
}

.cookie-banner__btn:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

body.has-cookie-banner {
  padding-bottom: 4.5rem;
}

/* ─── Sticky WhatsApp (FAB — icon only) ─── */
.sticky-wa {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  left: auto;
  z-index: 140;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  border-radius: 50%;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  text-decoration: none;
  color: var(--white);
  background: #25D366;
  box-shadow:
    0 4px 18px rgba(37, 211, 102, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.14);
}

.sticky-wa::before {
  content: "";
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.sticky-wa:hover {
  background: #20BD5A;
}

body.has-cookie-banner .sticky-wa {
  bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 900px) {
  .sticky-wa {
    width: 3.4375rem;
    height: 3.4375rem;
    right: 1.35rem;
    bottom: 1.35rem;
  }

  .sticky-wa::before {
    width: 1.7rem;
    height: 1.7rem;
  }
}

/* ─── Hero sub (supporting text below H1) ─── */
.hero__sub {
  font-family: var(--sans);
  font-size: clamp(13px, 1.6vw, 15px);
  line-height: 1.75;
  color: var(--dark-60);
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

@media (min-width: 900px) {
  .hero__sub {
    margin-inline: auto;
    text-align: center;
  }
}

/* ─── Hero badges ─── */
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 2rem;
}

.badge {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-60);
  border: 1px solid var(--line);
  padding: 0.3rem 0.8rem;
  white-space: nowrap;
}

/* ─── Authority section ─── */
.authority__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 640px) {
  .authority__grid { grid-template-columns: repeat(4, 1fr); }
}

.authority__item {
  border-top: 2px solid var(--dark);
  padding-top: 1.25rem;
}

.authority__num {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.authority__label {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.5;
  color: var(--dark-60);
}

.authority__note {
  font-size: 14px;
  line-height: 1.75;
  color: var(--dark-60);
  max-width: 48rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.authority__note a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--dark);
}

.authority__note a:hover {
  color: var(--dark-60);
}

/* ─── Client qualification ─── */
.qualify__wrap {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .qualify__wrap { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.qualify__col {
  padding-top: 2rem;
  border-top: 2px solid var(--dark);
}

.qualify__col--no {
  border-top-color: var(--dark-30);
}

.qualify__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.qualify__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.qualify__list li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--dark-60);
  padding-left: 1.25rem;
  position: relative;
}

.qualify__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--dark);
  font-weight: 600;
}

.qualify__list--no li::before {
  content: "✕";
  color: var(--dark-30);
}

/* ─── Info grid (Ce este micropigmentarea) ─── */
#despre-procedura .section__title {
  margin-bottom: 1rem;
}

.info__grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .info__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.75rem;
    align-items: stretch;
  }
}

.info__item {
  background: var(--off);
  border: 1px solid var(--line);
  padding: 1rem 1.125rem;
}

.info__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.info__item .section__body {
  margin-bottom: 0;
  max-width: none;
}

/* ─── Gallery note ─── */
.gallery__note {
  font-size: 12px;
  color: var(--dark-30);
  margin-top: 1.25rem;
  letter-spacing: 0.03em;
}

/* ─── Desktop nav links ─── */
@media (min-width: 900px) {
  .nav__burger { display: none; }

  .nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .nav__logo {
    flex-shrink: 0;
    max-width: none;
  }

  .footer__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.5rem 3rem;
    align-items: start;
  }

  .footer__block--brand,
  .footer__block--contact,
  .footer__block--program {
    align-items: flex-start;
    text-align: left;
  }

  .footer__list {
    align-items: flex-start;
  }

  .footer__nav {
    justify-content: flex-start;
  }

  .footer__bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .drawer {
    position: static;
    inset: auto;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    flex-direction: row;
    padding: 0;
    border: none;
    background: transparent;
    gap: 1.75rem;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    height: auto;
  }

  .drawer.open {
    transform: none;
  }

  .drawer__link {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dark-60);
    padding: 0;
    border: none;
  }

  .drawer__link:hover { color: var(--dark); }

  .drawer__link--cta {
    background: var(--dark);
    color: var(--white);
    padding: 0.6rem 1.25rem;
    margin-top: 0;
  }

  /* Hero banner desktop: grafic stânga (card) + text dreapta, aceeași înălțime */
  .hero--banner {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: stretch;
    gap: clamp(1.25rem, 2.5vw, 2rem);
    padding: calc(70px + clamp(1.25rem, 2.5vw, 2rem)) var(--pad) clamp(2rem, 3.5vw, 2.75rem);
    min-height: auto;
    box-sizing: border-box;
  }

  .hero--banner .hero__photo-wrap {
    margin-top: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    height: 100%;
  }

  .hero--banner .hero__photo--banner {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    border-radius: 12px;
  }

  .hero--banner .hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    max-width: none;
    margin-inline: 0;
    text-align: left;
    padding: clamp(0.5rem, 1.5vw, 1rem) 0 clamp(0.5rem, 1.5vw, 1rem) clamp(0.25rem, 1vw, 0.75rem);
    border-top: none;
  }

  .hero--banner .hero__brand-label {
    margin-bottom: 1rem;
  }

  .hero--banner .hero__heading {
    margin-inline: 0;
    max-width: 14em;
    text-align: left;
    font-size: clamp(1.65rem, 2.35vw, 2.35rem);
    line-height: 1.2;
  }

  .hero--banner .hero__sub {
    margin-inline: 0;
    text-align: left;
    max-width: 36em;
  }

  .hero--banner .hero__badges {
    justify-content: flex-start;
  }

  .hero:not(.hero--banner) {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: stretch;
    padding-top: 0;
    min-height: calc(100vh - 70px);
  }

  .hero:not(.hero--banner) .hero__photo-wrap {
    margin-top: 70px;
    height: calc(100vh - 70px);
    min-height: 480px;
    max-height: 860px;
    overflow: hidden;
  }

  .hero:not(.hero--banner) .hero__photo-wrap::after {
    display: block;
    top: 0;
    bottom: 0;
    left: unset;
    right: 0;
    width: 28%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.5) 72%, #ffffff 100%);
  }

  .hero:not(.hero--banner) .hero__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .hero:not(.hero--banner) .hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    max-width: none;
    margin-inline: 0;
    margin-top: 70px;
    padding: clamp(2rem, 4vw, 3rem) var(--pad) clamp(2rem, 4vw, 3rem) clamp(1rem, 2.5vw, 2rem);
  }

  .hero:not(.hero--banner) .hero__social {
    justify-content: flex-start;
  }

  .hero:not(.hero--banner) .hero__badges {
    justify-content: flex-start;
  }

  .hero:not(.hero--banner) .hero__heading {
    margin-inline: 0;
    max-width: 14em;
  }

  .hero:not(.hero--banner) .hero__sub {
    margin-inline: 0;
    text-align: left;
  }
}

/* ─── Authority grid variants ─── */
.authority__grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .authority__grid--2col { max-width: 36rem; }
}

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

@media (min-width: 640px) {
  .authority__grid--3col { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Award block ─── */
.award-block__body {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
  margin-top: 0;
}

.award-block__title {
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
}

.award-block__text .section__label {
  margin-bottom: 0.75rem;
}

@media (max-width: 767px) {
  .section__title { margin-bottom: 1rem; }

  .award-block__body,
  .press-block__body {
    gap: 1rem;
    margin-top: 0;
  }

  .about .btn-primary {
    margin-top: 0.5rem;
  }
}

@media (min-width: 768px) {
  .award-block__body {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: stretch;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .award-block__title {
    margin-bottom: 1.25rem;
  }
}

.award-block__text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.award-block__meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.award-block__meta-item {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-60);
}

.award-block__photo-wrap {
  overflow: hidden;
  line-height: 0;
}

.award-block__photo {
  width: 100%;
  height: auto;
  display: block;
  background: var(--light);
}

.award-block__photo-wrap--portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  max-width: min(100%, 400px);
  margin-inline: auto;
  background: var(--light);
  overflow: hidden;
}

@media (min-width: 768px) {
  .award-block__photo-wrap--portrait {
    margin-inline: 0;
    max-width: none;
    aspect-ratio: unset;
    height: 100%;
    min-height: 0;
  }
}

.award-block__photo--portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.award-block__text .btn-outline {
  margin-top: 0.5rem;
  align-self: flex-start;
}

.award-block__photo-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 2.5rem 1rem 0.85rem;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
}

/* ─── Press block ─── */
.press-block__body {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .press-block__body {
    grid-template-columns: 1fr 1fr;
  }

  .press-block__photo-wrap {
    order: -1;
  }
}

.press-block__source {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-60);
  margin-bottom: 1.25rem;
}

.press-block__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.5;
  color: var(--dark);
  margin: 0 0 1.25rem;
  padding-left: 1rem;
  border-left: 2px solid var(--dark);
}

.press-block__photo-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.press-block__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--light);
}

.press-block .btn-outline {
  color: var(--white);
  background: var(--dark);
  border-color: var(--dark);
}

.press-block .btn-outline:hover {
  background: transparent;
  color: var(--dark);
}

/* ─── Process steps ─── */
.process-steps {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .process-steps { grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
}

.process-step {
  border-top: 2px solid var(--dark);
  padding-top: 1.25rem;
}

.process-step__num {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  line-height: 1;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.process-step__title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.section__cta {
  display: flex;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.section__cta--left {
  justify-content: flex-start;
}

.section__cta--right {
  justify-content: flex-end;
}

.section__cta .btn-primary,
.section__cta .btn-outline {
  max-width: 100%;
  text-align: center;
}

.process-step__desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--dark-60);
}


/* ─── FAQ ─── */
#faq .section__title {
  margin-bottom: 1rem;
}

.faq-list {
  display: grid;
  gap: 0;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .faq-list {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }
}

.faq-item {
  border-top: 1px solid var(--line);
}

@media (max-width: 639px) {
  .faq-item[open] {
    background: var(--off);
  }
}

.faq-item:last-of-type {
  border-bottom: 1px solid var(--line);
}

@media (min-width: 640px) {
  .faq-item:last-of-type {
    border-bottom: none;
  }

  .faq-item[open] {
    background: transparent;
  }
}

.faq-question {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 0.125rem;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.faq-question:focus {
  outline: none;
}

.faq-question:focus-visible {
  outline: 2px solid var(--dark-30);
  outline-offset: 3px;
  border-radius: 2px;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-family: var(--sans);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--dark-60);
  flex-shrink: 0;
  min-width: 1.25rem;
  margin-right: 0.125rem;
  text-align: center;
  line-height: 1.3;
}

.faq-item[open] > .faq-question::after {
  content: '−';
}

.faq-answer {
  font-size: 13px;
  line-height: 1.75;
  color: var(--dark-60);
  padding: 0 0.125rem 1rem;
}

@media (max-width: 639px) {
  .faq-item[open] > .faq-question,
  .faq-item[open] > .faq-answer {
    padding-inline: 1rem;
  }

  .faq-item[open] > .faq-question {
    padding-top: 1rem;
  }

  .faq-item[open] > .faq-answer {
    padding-bottom: 1rem;
  }
}

@media (min-width: 640px) {
  .faq-item {
    border-top: 1px solid var(--line);
    padding-top: 1.25rem;
  }

  .faq-item--desktop > .faq-question {
    pointer-events: none;
    cursor: default;
    padding: 0;
    margin-bottom: 0.6rem;
  }

  .faq-item--desktop > .faq-question::after {
    display: none;
  }

  .faq-item--desktop > .faq-answer {
    padding-bottom: 0;
  }
}


/* ─── Galați landing ─── */
.page-galati .galati-hero {
  padding-top: clamp(1rem, 3vw, 1.5rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.page-galati .galati-hero .section__title {
  max-width: 16em;
}

.page-galati .galati-hero .section__intro {
  margin-bottom: 1.5rem;
}

.page-galati .galati-hero + .section {
  padding-top: clamp(1rem, 3vw, 1.75rem);
}

.page-galati .authority__grid--3col {
  margin-top: 0;
  margin-bottom: 0;
}

.breadcrumb {
  padding-top: calc(70px + 0.75rem);
  padding-bottom: 0;
  background: var(--white);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-60);
}

.breadcrumb__list li + li::before {
  content: "·";
  margin-right: 0.5rem;
  color: var(--dark-30);
}

.breadcrumb__list a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumb__list a:hover {
  color: var(--dark);
}

.galati-travel .section__body a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--dark);
}

.galati-travel .section__body a:hover {
  color: var(--dark-60);
}

.info__item .section__body a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--dark);
}

.faq-list--single {
  max-width: 42rem;
}

@media (min-width: 640px) {
  .faq-list--single {
    grid-template-columns: 1fr;
  }
}

/* ─── Service landing pages ─── */
.page-service .service-hero {
  padding-top: clamp(0.5rem, 2vw, 1rem);
}

.service-hero__grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 768px) {
  .service-hero__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-hero__photo-col {
  display: flex;
  flex-direction: column;
}

.service-hero__photo-wrap {
  overflow: hidden;
  line-height: 0;
}

.service-hero__photo {
  width: 100%;
  height: auto;
  display: block;
}

.service-hero__photo-note {
  margin: 0.45rem 0 0;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-30);
  text-align: center;
}

.internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.internal-links__item {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  border: 1px solid var(--line);
  padding: 0.55rem 1rem;
  transition: background 0.2s, color 0.2s;
}

.internal-links__item:hover {
  background: var(--dark);
  color: var(--white);
}

.authority-strip {
  padding: 1rem var(--pad) 0;
  text-align: center;
}

.authority-strip__inner {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.75rem;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-60);
  border: 1px solid var(--line);
  padding: 0.75rem 1.25rem;
  background: var(--off);
}

.authority-strip__inner a {
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-card__detail {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-60);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-card__detail:hover {
  color: var(--dark);
}

.map-embed {
  width: 100%;
  height: clamp(260px, 50vw, 420px);
  border: 0;
  display: block;
  background: var(--light);
}

.map-embed-wrap {
  margin-top: 1.5rem;
  line-height: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--light);
}

.sticky-wa:focus-visible {
  outline: 2px solid var(--dark);
  outline-offset: 3px;
}

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