:root {
  --burgundy-950: #25000f;
  --burgundy-900: #3a0017;
  --burgundy-800: #530020;
  --burgundy-700: #72002c;
  --pink-600: #c60055;
  --pink-500: #e40068;
  --pink-100: #ffe5f0;
  --cyan-500: #10acd4;
  --cyan-100: #e4f8fd;
  --ink: #25171d;
  --muted: #6f6066;
  --line: #eadde2;
  --paper: #fffafd;
  --white: #ffffff;
  --shadow-sm: 0 12px 35px rgba(75, 1, 30, 0.08);
  --shadow-lg: 0 35px 90px rgba(58, 0, 23, 0.2);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Kufi Arabic", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: 110px;
}

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 1000;
  transform: translateY(-180%);
  padding: 10px 18px;
  color: var(--white);
  background: var(--burgundy-900);
  border-radius: 12px;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  position: relative;
  z-index: 51;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 20px;
  color: #fff6fa;
  background: linear-gradient(90deg, var(--burgundy-950), var(--burgundy-700), var(--burgundy-950));
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.announcement::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.announcement a {
  color: #91e9fb;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.announcement__spark {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 0 6px rgba(16, 172, 212, 0.13), 0 0 16px rgba(16, 172, 212, 0.9);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.91);
  border-bottom: 1px solid rgba(93, 21, 49, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 32px rgba(58, 0, 23, 0.08);
}

.nav-wrap {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(68, 0, 25, 0.08);
}

.brand__text {
  display: grid;
  line-height: 1.35;
}

.brand__text strong {
  color: var(--burgundy-900);
  font-size: 17px;
}

.brand__text small {
  color: var(--pink-600);
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  position: relative;
  padding-block: 29px;
  color: #54464b;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 22px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: linear-gradient(90deg, var(--pink-600), var(--cyan-500));
  border-radius: 4px;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--burgundy-800);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 0;
  border-radius: 16px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.menu-toggle:focus-visible,
.slider-button:focus-visible,
.offer-card:focus-visible,
.lightbox button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(16, 172, 212, 0.45);
  outline-offset: 4px;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button svg path[d^="M20.52"] {
  fill: currentColor;
  stroke: none;
}

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-500), #a90045);
  box-shadow: 0 15px 28px rgba(198, 0, 85, 0.24);
}

.button--primary:hover {
  box-shadow: 0 20px 36px rgba(198, 0, 85, 0.32);
}

.button--small {
  min-height: 46px;
  padding: 11px 20px;
  font-size: 14px;
  border-radius: 14px;
}

.button--ghost {
  color: var(--burgundy-800);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(93, 21, 49, 0.14);
  box-shadow: 0 10px 30px rgba(58, 0, 23, 0.06);
}

.button--ghost:hover {
  background: var(--white);
}

.button--light {
  color: var(--burgundy-900);
  background: var(--white);
  box-shadow: 0 14px 35px rgba(35, 0, 15, 0.25);
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: var(--burgundy-900);
  background: #fff7fa;
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 4px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 122px;
  inset-inline: 20px;
  z-index: 49;
  display: grid;
  padding: 12px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  padding: 13px 15px;
  color: var(--burgundy-900);
  border-bottom: 1px solid #f2e6eb;
  font-weight: 800;
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  min-height: calc(100svh - 122px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 72px 0 84px;
  background:
    radial-gradient(circle at 15% 22%, rgba(16, 172, 212, 0.1), transparent 26%),
    radial-gradient(circle at 82% 50%, rgba(228, 0, 104, 0.1), transparent 31%),
    linear-gradient(135deg, #fff 0%, #fff8fb 50%, #fff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(103, 0, 40, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 0, 40, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(to left, #000, transparent 75%);
  mask-image: linear-gradient(to left, #000, transparent 75%);
}

.hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero__glow--one {
  top: 8%;
  right: -130px;
  width: 360px;
  height: 360px;
  border: 90px solid rgba(228, 0, 104, 0.045);
}

.hero__glow--two {
  bottom: -210px;
  left: 12%;
  width: 420px;
  height: 420px;
  background: rgba(16, 172, 212, 0.05);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.91fr) minmax(430px, 0.78fr);
  align-items: center;
  gap: clamp(58px, 8vw, 112px);
}

.hero__content {
  padding-top: 4px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--pink-600);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(198, 0, 85, 0.13);
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(68, 0, 25, 0.05);
}

.eyebrow__pin {
  width: 8px;
  height: 8px;
  background: var(--cyan-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(16, 172, 212, 0.12);
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--burgundy-950);
  font-size: clamp(45px, 5.7vw, 78px);
  line-height: 1.35;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--pink-600), #9c0040 58%, var(--cyan-500));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.quick-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.quick-contact__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--cyan-500);
  background: var(--cyan-100);
  border-radius: 14px;
}

.quick-contact__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-contact > div:last-child {
  display: grid;
  line-height: 1.3;
}

.quick-contact span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.quick-contact a {
  direction: ltr;
  color: var(--burgundy-900);
  font-size: 18px;
  font-weight: 900;
}

.hero__visual {
  position: relative;
  width: min(100%, 520px);
  justify-self: end;
  padding: 22px;
}

.hero-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 44px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.98) 0 30%, rgba(255, 238, 245, 0.9) 31% 50%, transparent 51%),
    linear-gradient(145deg, #fff8fb, #f2fbfe);
  border: 1px solid rgba(198, 0, 85, 0.17);
  border-radius: 44px 16px 44px 16px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.8deg);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 15px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(198, 0, 85, 0.11);
  border-radius: 34px 10px 34px 10px;
}

.hero-card::after {
  content: "";
  position: absolute;
  top: 15%;
  right: 50%;
  width: 70%;
  aspect-ratio: 1;
  transform: translateX(50%);
  border: 1px solid rgba(16, 172, 212, 0.16);
  border-radius: 50%;
}

.hero-card__halo {
  position: absolute;
  inset: -50%;
  z-index: 3;
  pointer-events: none;
  opacity: 0.35;
  background: linear-gradient(112deg, transparent 40%, rgba(255, 255, 255, 0.42) 50%, transparent 60%);
  transform: translateX(-45%) rotate(10deg);
  animation: sheen 6s ease-in-out infinite;
}

.hero-card__mark {
  position: relative;
  z-index: 2;
  width: 66%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(198, 0, 85, 0.1);
  border-radius: 50%;
  box-shadow: 0 24px 60px rgba(58, 0, 23, 0.12);
  transform: translateY(-8px);
}

.hero-card__mark img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  border-radius: 50%;
}

.hero-card__services {
  position: absolute;
  right: 50%;
  bottom: 30px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: max-content;
  padding: 9px 15px;
  color: var(--burgundy-800);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(198, 0, 85, 0.11);
  border-radius: 100px;
  box-shadow: 0 14px 35px rgba(58, 0, 23, 0.12);
  transform: translateX(50%);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.hero-card__services i {
  width: 4px;
  height: 4px;
  background: var(--cyan-500);
  border-radius: 50%;
}

.hero-card--photo {
  display: block;
  padding: 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 229, 240, 0.84));
}

.hero-card--photo::before {
  inset: 10px;
  border-color: rgba(255, 255, 255, 0.34);
  border-radius: 36px 12px 36px 12px;
}

.hero-card--photo::after {
  display: none;
}

.hero-card--photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 36px 12px 36px 12px;
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  color: var(--burgundy-900);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(93, 21, 49, 0.1);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(58, 0, 23, 0.14);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.floating-note svg {
  width: 32px;
  height: 32px;
  padding: 7px;
  color: var(--cyan-500);
  background: var(--cyan-100);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  border-radius: 10px;
}

.floating-note span {
  font-size: 12px;
  line-height: 1.45;
}

.floating-note strong {
  font-size: 13px;
}

.floating-note--top {
  top: 2px;
  left: -35px;
  animation: float 5s ease-in-out infinite;
}

.floating-note--bottom {
  right: -22px;
  bottom: 18px;
  animation: float 5s 1s ease-in-out infinite;
}

.floating-note__dot {
  width: 9px;
  height: 9px;
  background: #20c978;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(32, 201, 120, 0.12);
}

.scroll-cue {
  position: absolute;
  right: 50%;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 7px;
  transform: translateX(50%);
  color: #8a747d;
  font-size: 12px;
  font-weight: 800;
}

.scroll-cue svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  animation: nudge 1.7s ease-in-out infinite;
}

.trust-strip {
  position: relative;
  z-index: 5;
  background: var(--white);
  border-block: 1px solid var(--line);
}

.trust-strip__grid {
  min-height: 112px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-strip__grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px 34px;
  border-inline-start: 1px solid var(--line);
}

.trust-strip__grid > div:last-child {
  border-inline-start: 0;
}

.trust-strip svg {
  width: 28px;
  height: 28px;
  color: var(--pink-600);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-strip span {
  display: grid;
  line-height: 1.5;
}

.trust-strip strong {
  color: var(--burgundy-900);
  font-size: 15px;
}

.trust-strip small {
  color: var(--muted);
  font-size: 13px;
}

.services {
  background:
    radial-gradient(circle at 100% 0%, rgba(228, 0, 104, 0.05), transparent 20%),
    #fff;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 50px;
}

.section-heading h2,
.location h2,
.featured-offer h2,
.final-cta h2 {
  margin: 0;
  color: var(--burgundy-950);
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.35;
  letter-spacing: 0;
}

.section-heading h2 span,
.location h2 span {
  color: var(--pink-600);
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--pink-600), var(--cyan-500));
  transform: scaleX(0.35);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  top: -75px;
  left: -75px;
  width: 180px;
  height: 180px;
  background: rgba(228, 0, 104, 0.04);
  border-radius: 50%;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(198, 0, 85, 0.22);
  box-shadow: 0 28px 60px rgba(58, 0, 23, 0.12);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  transform: scale(1.35);
}

.service-card__number {
  position: absolute;
  top: 24px;
  left: 28px;
  color: #eadce2;
  font-size: 18px;
  font-weight: 900;
}

.service-card__icon {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 35px;
  color: var(--pink-600);
  background: var(--pink-100);
  border-radius: 21px;
  transform: rotate(-3deg);
}

.service-card--skin .service-card__icon {
  color: var(--burgundy-700);
  background: #f5e5eb;
}

.service-card--laser .service-card__icon {
  color: var(--cyan-500);
  background: var(--cyan-100);
}

.service-card__icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__body > span {
  color: var(--pink-600);
  font-size: 13px;
  font-weight: 900;
}

.service-card h3 {
  margin: 6px 0 12px;
  color: var(--burgundy-900);
  font-size: 27px;
  line-height: 1.35;
}

.service-card p {
  min-height: 58px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.service-card ul {
  display: grid;
  gap: 7px;
  margin: 22px 0 26px;
  padding: 0;
  color: #58494f;
  font-size: 14px;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-inline-start: 20px;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 11px;
  right: 0;
  width: 7px;
  height: 7px;
  background: var(--cyan-500);
  border-radius: 50%;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--burgundy-800);
  font-size: 14px;
  font-weight: 900;
}

.service-card__link svg,
.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.service-card__link:hover svg,
.text-link:hover svg {
  transform: translateX(-4px);
}

.offers-compact {
  padding: 22px 0 92px;
  background: #fff;
}

.offers-compact__card {
  position: relative;
  min-height: 184px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  padding: 30px 36px;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 0%, rgba(228, 0, 104, 0.32), transparent 26%),
    linear-gradient(125deg, #2c0011, #57001f 58%, #360014);
  border-radius: 26px;
  box-shadow: 0 24px 58px rgba(58, 0, 23, 0.17);
}

.offers-compact__card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background-image:
    linear-gradient(45deg, transparent 46%, rgba(255,255,255,.15) 47%, transparent 49%),
    linear-gradient(-45deg, transparent 46%, rgba(255,255,255,.08) 47%, transparent 49%);
  background-size: 28px 28px;
  -webkit-mask-image: linear-gradient(90deg, transparent 8%, #000 90%);
  mask-image: linear-gradient(90deg, transparent 8%, #000 90%);
}

.offers-compact__icon,
.offers-compact__copy,
.offers-compact__action {
  position: relative;
  z-index: 1;
}

.offers-compact__icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  color: #68ddf3;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
}

.offers-compact__icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offers-compact__copy p {
  margin: 0 0 2px;
  color: #72e2f6;
  font-size: 13px;
  font-weight: 900;
}

.offers-compact__copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.35;
}

.offers-compact__copy > span {
  display: block;
  margin-top: 4px;
  color: #e8d2db;
  font-size: 14px;
}

.offers-compact__action {
  min-width: 230px;
  display: grid;
  gap: 12px;
}

.offers-compact__action > div {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.offers-compact__action > div span {
  padding: 4px 9px;
  color: #f3dce6;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
}

.offers-compact__action .button {
  min-height: 48px;
  padding-block: 11px;
  font-size: 14px;
}

.featured-offer {
  padding-block: 18px 96px;
  background: #fff;
}

.featured-offer__card {
  position: relative;
  min-height: 320px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: center;
  gap: 70px;
  overflow: hidden;
  padding: 56px 64px 76px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 10%, rgba(228, 0, 104, 0.38), transparent 27%),
    linear-gradient(125deg, #2c0011, #57001f 58%, #360014);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.featured-offer__card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(45deg, transparent 45%, rgba(255,255,255,.16) 46%, rgba(255,255,255,.16) 48%, transparent 49%),
    linear-gradient(-45deg, transparent 45%, rgba(255,255,255,.09) 46%, rgba(255,255,255,.09) 48%, transparent 49%);
  background-size: 28px 28px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 70%);
  mask-image: linear-gradient(90deg, transparent, #000 70%);
}

.featured-offer__copy,
.featured-offer__price {
  position: relative;
  z-index: 2;
}

.section-kicker--light {
  color: #78e4f7;
}

.featured-offer h2 {
  max-width: 700px;
  color: var(--white);
  font-size: clamp(38px, 5vw, 64px);
}

.featured-offer h2 span {
  color: #ff75aa;
}

.featured-offer__copy > p:not(.section-kicker) {
  margin: 16px 0 28px;
  color: #f2dfe7;
  font-size: 18px;
}

.featured-offer__price {
  width: 190px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  color: var(--burgundy-950);
  background: linear-gradient(145deg, #fff, #ffe4ee);
  border: 8px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255,255,255,.65), 0 24px 60px rgba(12, 0, 5, 0.35);
  transform: rotate(3deg);
}

.featured-offer__price small {
  margin-bottom: -14px;
  color: var(--pink-600);
  font-size: 13px;
  font-weight: 900;
}

.featured-offer__price strong {
  font-size: 70px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.featured-offer__price span {
  font-size: 15px;
  font-weight: 900;
}

.featured-offer__note {
  position: absolute;
  right: 64px;
  bottom: 26px;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.offers {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border-block: 1px solid #f1e4e9;
}

.offers::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -110px;
  width: 350px;
  height: 350px;
  border: 70px solid rgba(16, 172, 212, 0.045);
  border-radius: 50%;
}

.section-heading--offers {
  grid-template-columns: 1fr auto;
}

.slider-controls {
  direction: ltr;
  display: flex;
  gap: 10px;
}

.slider-button {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--burgundy-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(58, 0, 23, 0.06);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.slider-button:hover {
  color: var(--white);
  background: var(--burgundy-900);
  transform: translateY(-2px);
}

.slider-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offer-slider {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 335px);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 6px 4px 28px;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(198, 0, 85, 0.3) transparent;
}

.offer-slider::-webkit-scrollbar {
  height: 7px;
}

.offer-slider::-webkit-scrollbar-thumb {
  background: rgba(198, 0, 85, 0.3);
  border-radius: 10px;
}

.offer-card {
  position: relative;
  overflow: hidden;
  height: 440px;
  padding: 0;
  background: #2c0011;
  border: 1px solid rgba(198, 0, 85, 0.16);
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(58, 0, 23, 0.1);
  cursor: zoom-in;
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card::after {
  content: "تكبير العرض";
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(36, 0, 14, 0.72);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 11px;
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(58, 0, 23, 0.16);
}

.offer-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.offer-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.offer-card:hover img {
  transform: scale(1.018);
}

.offer-card > span {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 10px;
  color: #fff;
  background: rgba(40, 0, 16, 0.72);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 800;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.offers__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
}

.offers__footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink-600);
  font-weight: 900;
}

.location {
  position: relative;
  background: #fff;
}

.location__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
  align-items: stretch;
  gap: 62px;
}

.location h2 {
  max-width: 540px;
}

.location__lead {
  max-width: 570px;
  margin: 20px 0 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.contact-list {
  display: grid;
  gap: 11px;
}

.contact-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: #fffafd;
  border: 1px solid var(--line);
  border-radius: 17px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.contact-item:hover {
  transform: translateX(-4px);
  background: #fff;
  border-color: rgba(198, 0, 85, 0.26);
}

.contact-item__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--pink-600);
  background: var(--pink-100);
  border-radius: 14px;
}

.contact-item__icon svg,
.contact-item__arrow {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item > span:nth-child(2) {
  min-width: 0;
  display: grid;
  line-height: 1.5;
}

.contact-item small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.contact-item strong {
  overflow-wrap: anywhere;
  color: var(--burgundy-900);
  font-size: 14px;
}

.contact-item__arrow {
  color: #ad9da4;
}

.map-card {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  padding: 10px;
  background: linear-gradient(140deg, #fff, #f8e9ef);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 27px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 548px;
  border: 0;
  border-radius: 27px;
  filter: saturate(0.72) contrast(1.03);
}

.map-card__info {
  position: absolute;
  right: 30px;
  left: 30px;
  bottom: 30px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(58, 0, 23, 0.2);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.map-card__pin {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-500), var(--burgundy-700));
  border-radius: 15px;
}

.map-card__pin svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.map-card__info > span:nth-child(2) {
  display: grid;
  line-height: 1.45;
}

.map-card__info small {
  color: var(--muted);
  font-size: 12px;
}

.map-card__info strong {
  color: var(--burgundy-900);
  font-size: 16px;
}

.map-card__info a {
  padding: 9px 12px;
  color: var(--pink-600);
  background: var(--pink-100);
  border-radius: 11px;
  font-size: 13px;
  font-weight: 900;
}

.final-cta {
  padding: 0 0 100px;
  background: #fff;
}

.final-cta__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 34px 40px;
  background: linear-gradient(135deg, #fff5f9, #f6fdff);
  border: 1px solid var(--line);
  border-radius: 28px;
}

.final-cta img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.final-cta p {
  margin: 0 0 4px;
  color: var(--pink-600);
  font-size: 13px;
  font-weight: 900;
}

.final-cta h2 {
  font-size: clamp(24px, 3vw, 36px);
}

.site-footer {
  color: #f8eaf0;
  background: var(--burgundy-950);
}

.footer__top {
  min-height: 160px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 55px;
  padding-block: 36px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer__brand img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  background: #fff;
  border-radius: 17px;
}

.footer__brand div {
  display: grid;
  line-height: 1.5;
}

.footer__brand strong {
  color: var(--white);
  font-size: 17px;
}

.footer__brand span {
  color: #ef97bb;
  font-size: 13px;
  font-weight: 700;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: #d7bdc7;
  font-size: 14px;
  font-weight: 700;
}

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

.footer__social {
  display: flex;
  gap: 9px;
}

.footer__social a {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 13px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer__social a:hover {
  background: var(--pink-600);
  transform: translateY(-2px);
}

.footer__social svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__bottom {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #9f7e8b;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom p:last-child {
  color: #ef97bb;
  font-weight: 800;
}

.lightbox {
  width: min(94vw, 1080px);
  max-width: none;
  height: min(92vh, 900px);
  max-height: none;
  overflow: visible;
  padding: 20px;
  color: #fff;
  background: rgba(27, 0, 11, 0.96);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  box-shadow: 0 35px 100px rgba(0,0,0,.45);
}

.lightbox::backdrop {
  background: rgba(21, 0, 8, 0.78);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.lightbox[open] {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  animation: dialog-in 0.24s ease both;
}

.lightbox figure {
  min-width: 0;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: center;
  gap: 10px;
  margin: 0;
}

.lightbox figure img {
  min-height: 0;
  max-height: calc(92vh - 85px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 16px;
}

.lightbox figcaption {
  color: rgba(255,255,255,.68);
  font-size: 13px;
}

.lightbox__close,
.lightbox__nav {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  cursor: pointer;
}

.lightbox__close {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 3;
  color: var(--burgundy-950);
  background: #fff;
}

.lightbox button:hover {
  background: var(--pink-600);
  color: #fff;
}

.lightbox svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(.2,.8,.2,1), transform 0.75s cubic-bezier(.2,.8,.2,1);
}

.reveal--delay-short {
  transition-delay: 0.09s;
}

.reveal--delay,
.reveal--delay-long {
  transition-delay: 0.16s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes sheen {
  0%, 35% { transform: translateX(-46%) rotate(10deg); }
  65%, 100% { transform: translateX(44%) rotate(10deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes nudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

@keyframes dialog-in {
  from { opacity: 0; transform: scale(.97) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@media (max-width: 1050px) {
  .desktop-nav {
    gap: 21px;
  }

  .desktop-nav a {
    font-size: 14px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
    gap: 48px;
  }

  .floating-note--top {
    left: -10px;
  }

  .floating-note--bottom {
    right: -5px;
  }

  .service-card {
    padding: 27px;
  }

  .location__grid {
    gap: 42px;
  }

  .footer__top {
    grid-template-columns: 1fr auto;
  }

  .footer__social {
    display: none;
  }
}

@media (max-width: 860px) {
  .section {
    padding-block: 82px;
  }

  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 62px 0 86px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .hero__content {
    text-align: center;
  }

  .hero h1,
  .hero__lead {
    margin-inline: auto;
  }

  .hero__actions,
  .quick-contact {
    justify-content: center;
  }

  .hero__visual {
    justify-self: center;
    width: min(90%, 520px);
  }

  .scroll-cue {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading > p {
    max-width: 620px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card p {
    min-height: 0;
  }

  .featured-offer__card {
    gap: 30px;
    padding-inline: 44px;
  }

  .featured-offer__price {
    width: 160px;
  }

  .featured-offer__price strong {
    font-size: 58px;
  }

  .location__grid {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 480px;
  }

  .map-card iframe {
    min-height: 458px;
  }

  .final-cta__inner {
    grid-template-columns: auto 1fr;
  }

  .final-cta .button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 88px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding-block: 68px;
  }

  .announcement {
    min-height: 36px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand img {
    width: 50px;
    height: 50px;
    border-radius: 13px;
  }

  .brand__text strong {
    font-size: 15px;
  }

  .brand__text small {
    font-size: 12px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .mobile-menu {
    top: 115px;
    inset-inline: 14px;
  }

  .hero {
    padding-top: 48px;
    background:
      radial-gradient(circle at 30% 15%, rgba(16, 172, 212, 0.08), transparent 22%),
      radial-gradient(circle at 80% 60%, rgba(228, 0, 104, 0.09), transparent 35%),
      #fff;
  }

  .eyebrow {
    margin-bottom: 15px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 54px);
    line-height: 1.18;
  }

  .hero__lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.8;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 27px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .quick-contact {
    margin-top: 24px;
  }

  .hero__visual {
    width: 100%;
    padding: 12px;
  }

  .hero-card {
    padding: 30px;
    border-radius: 32px 14px 32px 14px;
  }

  .hero-card.hero-card--photo {
    padding: 8px;
  }

  .hero-card--photo > img {
    border-radius: 27px 9px 27px 9px;
  }

  .hero-card__mark {
    width: 69%;
  }

  .hero-card__services {
    bottom: 21px;
    gap: 7px;
    padding: 8px 12px;
    font-size: 11px;
  }

  .floating-note--top {
    top: -8px;
    left: 0;
  }

  .floating-note--bottom {
    right: 0;
    bottom: 2px;
  }

  .floating-note span {
    font-size: 11px;
  }

  .trust-strip__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-block: 8px;
  }

  .trust-strip__grid > div {
    justify-content: flex-start;
    padding: 14px 8px;
    border-inline-start: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip__grid > div:last-child {
    border-bottom: 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .location h2 {
    font-size: 35px;
  }

  .section-heading > p,
  .location__lead {
    font-size: 16px;
  }

  .service-card {
    padding: 25px;
    border-radius: 21px;
  }

  .service-card h3 {
    font-size: 24px;
  }

  .featured-offer {
    padding-block: 0 68px;
  }

  .offers-compact {
    padding: 0 0 68px;
  }

  .offers-compact__card {
    min-height: 0;
    grid-template-columns: auto 1fr;
    gap: 17px;
    padding: 26px 22px;
    border-radius: 22px;
  }

  .offers-compact__icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .offers-compact__icon svg {
    width: 26px;
    height: 26px;
  }

  .offers-compact__copy h2 {
    font-size: 25px;
  }

  .offers-compact__copy > span {
    font-size: 13px;
    line-height: 1.6;
  }

  .offers-compact__action {
    min-width: 0;
    grid-column: 1 / -1;
  }

  .offers-compact__action > div {
    display: none;
  }

  .offers-compact__action .button {
    width: 100%;
  }

  .featured-offer__card {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 28px;
    padding: 40px 28px 80px;
    border-radius: 28px;
  }

  .featured-offer h2 {
    font-size: 40px;
  }

  .featured-offer__copy > p:not(.section-kicker) {
    font-size: 16px;
  }

  .featured-offer__price {
    position: absolute;
    top: 34px;
    left: 22px;
    width: 104px;
    border-width: 5px;
  }

  .featured-offer__price small {
    margin-bottom: -8px;
    font-size: 11px;
  }

  .featured-offer__price strong {
    font-size: 42px;
  }

  .featured-offer__price span {
    font-size: 11px;
  }

  .featured-offer__note {
    right: 28px;
    left: 28px;
    bottom: 24px;
    line-height: 1.55;
  }

  .section-heading--offers {
    grid-template-columns: 1fr;
  }

  .slider-controls {
    display: none;
  }

  .offer-slider {
    width: calc(100% + 14px);
    grid-auto-columns: minmax(250px, 82vw);
    margin-left: -14px;
    padding-left: 14px;
  }

  .offer-card {
    height: 400px;
    border-radius: 20px;
  }

  .offers__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .location__grid {
    gap: 36px;
  }

  .contact-item {
    grid-template-columns: auto 1fr;
  }

  .contact-item__arrow {
    display: none;
  }

  .contact-item strong {
    font-size: 13px;
  }

  .map-card {
    min-height: 430px;
    padding: 7px;
    border-radius: 25px;
  }

  .map-card iframe {
    min-height: 414px;
    border-radius: 19px;
  }

  .map-card__info {
    right: 18px;
    left: 18px;
    bottom: 18px;
    grid-template-columns: auto 1fr;
  }

  .map-card__info a {
    grid-column: 1 / -1;
    text-align: center;
  }

  .final-cta {
    padding-bottom: 68px;
  }

  .final-cta__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 30px 22px;
    text-align: center;
  }

  .final-cta img {
    width: 72px;
    height: 72px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 44px 30px;
  }

  .footer__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
  }

  .footer__bottom {
    min-height: 92px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .lightbox {
    width: calc(100vw - 20px);
    height: calc(100svh - 32px);
    padding: 10px;
    border-radius: 20px;
  }

  .lightbox[open] {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
  }

  .lightbox figure {
    grid-column: 1;
    grid-row: 1;
  }

  .lightbox__nav {
    position: absolute;
    bottom: 18px;
  }

  .lightbox__nav--next {
    right: calc(50% - 56px);
  }

  .lightbox__nav--prev {
    left: calc(50% - 56px);
  }

  .lightbox__close {
    top: 8px;
    right: 8px;
  }

  .lightbox figcaption {
    margin-bottom: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
