:root {
  --forest-950: #0d281f;
  --forest-900: #12342a;
  --forest-800: #173f33;
  --forest-700: #245947;
  --cream-50: #fffdf8;
  --cream-100: #f7f2e7;
  --cream-200: #ebe2cf;
  --gold-500: #cfb36c;
  --gold-300: #e1cd97;
  --ink: #17352b;
  --muted: #586a62;
  --line: rgba(23, 63, 51, 0.15);
  --white: #fff;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --shadow: 0 22px 58px rgba(13, 40, 31, 0.13);
  --shell: min(1060px, calc(100% - 36px));
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-50);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

.contact-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.contact-icon {
  display: block;
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

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

button {
  color: inherit;
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--forest-950);
  border-radius: 10px;
  transform: translateY(-150%);
}

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

.preview-banner {
  padding: 7px 14px;
  color: #2c291d;
  background: #f2d67f;
  font-size: 11px;
  font-weight: 650;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.93);
  backdrop-filter: blur(16px);
}

.header-row {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.brand img,
.brand__mark {
  width: 42px;
  height: 42px;
}

.brand > span,
.brand__text {
  display: grid;
  line-height: 1.05;
}

.brand strong,
.brand__text strong {
  color: var(--forest-950);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 650;
}

.brand small,
.brand__text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.header-map {
  display: grid;
  min-width: 64px;
  min-height: 38px;
  place-items: center;
  color: var(--forest-900);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.header-tools {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.language-picker {
  position: relative;
}

.translate-button {
  display: inline-flex;
  min-height: 44px;
  padding: 0 13px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--forest-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(13, 40, 31, 0.08);
  cursor: pointer;
  font-size: 11px;
  font-weight: 850;
}

.translate-button svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.translate-button-code {
  display: none;
  font-size: 9px;
  letter-spacing: 0.06em;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 140;
  width: min(286px, calc(100vw - 24px));
  padding: 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(13, 40, 31, 0.2);
}

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

.language-menu > strong,
.language-menu > small {
  display: block;
}

.language-menu > strong {
  font-size: 13px;
}

.language-menu > small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
}

.language-options {
  display: grid;
  margin-top: 11px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.language-options button {
  display: flex;
  min-height: 44px;
  padding: 0 10px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--ink);
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: 11px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
  text-align: left;
}

.language-options button span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 850;
}

.language-options button[aria-checked="true"] {
  color: var(--white);
  background: var(--forest-800);
  border-color: var(--forest-800);
}

.language-options button[aria-checked="true"] span {
  color: var(--gold-300);
}

.hero {
  padding: 56px 0 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(207, 179, 108, 0.18), transparent 30%),
    var(--cream-50);
}

.hero-head {
  margin-bottom: 18px;
  text-align: center;
}

.professional-policy {
  display: grid;
  margin: 0 0 16px;
  grid-template-columns: minmax(0, 1fr) minmax(0, .78fr);
  overflow: hidden;
  color: var(--white);
  background: var(--forest-950);
  border: 1px solid rgba(207, 179, 108, .38);
  border-radius: 14px;
  box-shadow: 0 12px 34px rgba(8, 31, 24, .12);
}

.professional-policy > div {
  display: flex;
  min-width: 0;
  padding: 15px 18px;
  align-items: center;
  gap: 12px;
}

.professional-policy > div + div {
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.professional-policy > div > span {
  display: inline-flex;
  width: 38px;
  min-width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--forest-950);
  background: var(--gold-300);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.professional-policy strong,
.professional-policy p {
  display: block;
  margin: 0;
}

.professional-policy strong {
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

.professional-policy p {
  margin-top: 3px;
  color: rgba(255, 255, 255, .74);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--forest-700);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--forest-950);
  font-family: var(--font-display);
  font-weight: 550;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(46px, 7vw, 78px);
  line-height: 0.98;
  overflow-wrap: normal;
  text-wrap: balance;
}

h2 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.02;
}

.location-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.contact-action {
  display: inline-flex;
  min-height: 54px;
  padding: 10px 14px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.1;
  white-space: nowrap;
  transition: transform 150ms ease, filter 150ms ease;
}

.contact-action:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.contact-action--whatsapp,
.mobile-contact--whatsapp {
  background: #075e54;
}

.contact-action--messenger,
.mobile-contact--messenger {
  background: #0866ff;
}

.contact-action--call,
.mobile-contact--call {
  background: #0b873f;
}

.contact-action--directions,
.mobile-contact--directions {
  color: var(--forest-950);
  background: var(--gold-300);
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 21px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
  transition: transform 150ms ease, background-color 150ms ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--forest-800);
}

.button--light {
  color: var(--forest-900);
  background: var(--white);
  border-color: var(--line);
}

.button--outline {
  color: var(--forest-900);
  border-color: var(--line);
}

.button--gold {
  color: var(--forest-950);
  background: var(--gold-300);
}

.booking-paths {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  gap: 10px;
}

.booking-path {
  position: relative;
  display: block;
  overflow: hidden;
  height: 390px;
  color: var(--white);
  background: var(--forest-900);
  border-radius: var(--radius-md);
  isolation: isolate;
}

.booking-path::after {
  position: absolute;
  inset: 35% 0 0;
  z-index: 1;
  background: linear-gradient(transparent, rgba(5, 23, 18, 0.9));
  content: "";
  pointer-events: none;
}

.booking-path:hover img {
  transform: scale(1.025);
}

.shop-mosaic {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 3px;
}

.shop-mosaic img,
.outcall-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.booking-path-copy {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.booking-path-copy small {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-path-copy strong {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 550;
  letter-spacing: -0.03em;
  line-height: 1;
}

.quick-actions {
  display: grid;
  padding-top: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.quick-actions a {
  min-width: 0;
}

.section {
  padding: 76px 0;
}

.section-title {
  margin-bottom: 22px;
  text-align: center;
}

.services {
  background: var(--cream-100);
}

.service-grid {
  display: grid;
  max-width: 720px;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.service-card {
  display: flex;
  min-height: 136px;
  padding: 23px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-align: center;
}

.service-card > span {
  color: var(--gold-500);
  font-family: var(--font-display);
  font-size: 13px;
}

.service-card h3 {
  margin-top: 10px;
  font-size: clamp(24px, 2.5vw, 30px);
  line-height: 1.04;
}

.outcall {
  background: var(--cream-50);
}

.outcall-card {
  padding: clamp(28px, 4vw, 48px);
  color: var(--white);
  background:
    radial-gradient(circle at 96% 10%, rgba(225, 205, 151, 0.18), transparent 30%),
    var(--forest-900);
  border-radius: var(--radius-lg);
}

.outcall-card .eyebrow {
  color: var(--gold-300);
}

.outcall-card h2 {
  max-width: 470px;
  color: var(--white);
}

.outcall-hours {
  margin: 12px 0 0;
  color: var(--gold-300);
  font-size: 11px;
  font-weight: 800;
}

.outcall-intro {
  margin-bottom: 26px;
  text-align: center;
}

.outcall-intro h2 {
  max-width: none;
}

.outcall-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.outcall-price-card {
  overflow: hidden;
  color: var(--forest-950);
  background: var(--cream-50);
  border-radius: 18px;
}

.outcall-price-card h3 {
  padding: 18px 20px 14px;
  color: var(--forest-950);
  font-size: 24px;
}

.outcall-price-card > a {
  display: flex;
  min-height: 58px;
  padding: 10px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--forest-900);
  border-top: 1px solid var(--line);
}

.outcall-price-card > a > span {
  font-size: 11px;
  font-weight: 800;
}

.outcall-price-card > a > strong {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: var(--forest-950);
  font-size: 15px;
  line-height: 1.15;
}

.outcall-price-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.location {
  background: var(--cream-100);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.location-map,
.location-info {
  min-height: 390px;
  border-radius: var(--radius-md);
}

.location-map {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #dae5dc, #bdd2c4);
}

.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.location-map-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  padding: 14px;
  align-items: flex-end;
  justify-content: flex-end;
  cursor: pointer;
  touch-action: pan-y;
}

.location-map-link:focus-visible {
  outline-offset: -5px;
}

.location-map-link > span {
  padding: 10px 14px;
  color: var(--forest-950);
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 10px;
  font-weight: 850;
}

.location-info {
  display: flex;
  padding: clamp(32px, 5vw, 52px);
  flex-direction: column;
  background: var(--cream-50);
  border: 1px solid var(--line);
}

.location-info dl {
  margin: 26px 0 0;
}

.location-info dl > div {
  display: grid;
  min-height: 45px;
  align-items: center;
  border-top: 1px solid var(--line);
  grid-template-columns: 95px 1fr;
}

.location-info dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-info dd {
  margin: 0;
  font-size: 13px;
  font-weight: 750;
  text-align: right;
}

.location-actions {
  margin-top: auto;
  padding-top: 24px;
}

.location-review-link {
  display: inline-flex;
  min-height: 44px;
  width: 100%;
  margin-top: 14px;
  padding: 9px 14px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--forest-700);
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 850;
}

.site-footer {
  color: rgba(255, 255, 255, 0.62);
  background: var(--forest-950);
}

.footer-row {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
}

.footer-row > div {
  display: flex;
  gap: 18px;
}

.mobile-dock {
  display: none;
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 24px, 620px);
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .preview-banner {
    padding-inline: 12px;
    font-size: 9px;
  }

  .header-row {
    min-height: 64px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 18px;
  }

  .header-map {
    display: none;
  }

  .translate-button {
    width: 48px;
    padding: 0;
    gap: 3px;
  }

  .translate-button-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .translate-button-code {
    display: inline;
  }

  .hero {
    padding: 24px 0 14px;
  }

  .hero-head {
    margin-bottom: 12px;
  }

  .professional-policy {
    margin-bottom: 12px;
    grid-template-columns: 1fr;
    border-radius: 13px;
  }

  .professional-policy > div {
    min-height: 57px;
    padding: 9px 11px;
    gap: 9px;
  }

  .professional-policy > div + div {
    border-top: 1px solid rgba(255, 255, 255, .14);
    border-left: 0;
  }

  .professional-policy > div > span {
    width: 32px;
    min-width: 32px;
    height: 32px;
    font-size: 11px;
  }

  .professional-policy strong {
    font-size: 12px;
  }

  .professional-policy p {
    margin-top: 1px;
    font-size: 10px;
  }

  h1 {
    font-size: clamp(31px, 9.2vw, 38px);
    line-height: 1;
    white-space: normal;
  }

  .booking-paths {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .booking-path {
    width: 100%;
    height: min(56vw, 218px);
    border-radius: 18px;
  }

  .booking-path-copy {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .booking-path-copy strong {
    font-size: clamp(16px, 4.3vw, 19px);
    line-height: 1.08;
  }

  .quick-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-actions a {
    min-height: 50px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .section {
    padding: 44px 0;
  }

  .section-title {
    margin-bottom: 18px;
  }

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

  .service-card {
    min-height: 118px;
    padding: 18px;
  }

  .service-card h3 {
    margin-top: 8px;
    font-size: 25px;
  }

  .outcall-card {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .outcall-intro {
    margin-bottom: 20px;
  }

  .outcall-price-grid {
    gap: 7px;
  }

  .outcall-price-card {
    border-radius: 14px;
  }

  .outcall-price-card h3 {
    padding: 14px 12px 11px;
    font-size: 20px;
  }

  .outcall-price-card > a {
    min-height: 58px;
    padding: 9px 12px;
    gap: 6px;
  }

  .outcall-price-card > a > span {
    font-size: 9px;
  }

  .outcall-price-card > a > strong {
    font-size: 13px;
  }

  .outcall-price-card small {
    font-size: 9px;
  }

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

  .location-map {
    order: 2;
    min-height: 225px;
  }

  .location-info {
    order: 1;
    min-height: 340px;
  }

  .location-actions {
    grid-template-columns: 1fr 1fr;
  }

  .footer-row {
    display: grid;
    padding: 24px 0;
    gap: 11px;
  }

  .mobile-dock {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    display: grid;
    min-height: calc(66px + env(safe-area-inset-bottom));
    padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
    color: var(--white);
    background: rgba(13, 40, 31, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    backdrop-filter: blur(14px);
  }

  .mobile-dock a {
    display: grid;
    min-height: 52px;
    min-width: 0;
    padding: 5px 2px;
    place-items: center;
    align-content: center;
    gap: 2px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 15px;
    line-height: 1.15;
  }

  .mobile-dock .contact-icon {
    width: 18px;
    height: 18px;
    max-width: 18px;
    max-height: 18px;
  }

  .mobile-dock span {
    max-width: 100%;
    font-size: 9px;
    font-weight: 850;
    white-space: nowrap;
  }
}

@media (max-width: 390px) {
  .button {
    padding-inline: 15px;
  }

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

/* Simple booking flow: choose a location, then book inside that section. */
.booking-paths {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-path {
  height: 330px;
}

.path-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.shop-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.shop-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
}

.booking-panel {
  max-width: 760px;
  margin: 18px auto 0;
  padding: 22px;
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.booking-panel h3 {
  text-align: center;
  font-size: clamp(25px, 3vw, 34px);
}

.booking-panel__details {
  display: flex;
  margin: 8px 0 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

.booking-panel__details span + span::before {
  margin-right: 10px;
  content: "·";
}

.booking-primary-actions,
.booking-secondary-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.booking-secondary-actions {
  margin-top: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-action--reviews {
  color: var(--forest-900);
  background: var(--cream-100);
  border-color: var(--line);
}

.booking-panel--outcall {
  max-width: 680px;
  padding: 0;
  background: transparent;
  border: 0;
}

.booking-panel--outcall h3 {
  margin-bottom: 12px;
  color: var(--white);
}

@media (max-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .booking-path {
    height: min(48vw, 188px);
  }

  .booking-path-copy strong {
    font-size: clamp(15px, 4.15vw, 18px);
  }

  .shop-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .shop-gallery img {
    border-radius: 14px;
  }

  .booking-panel {
    padding: 16px;
    border-radius: 18px;
  }

  .booking-panel__details {
    display: grid;
    margin-bottom: 14px;
    gap: 3px;
    font-size: 11px;
  }

  .booking-panel__details span + span::before {
    display: none;
  }

  .booking-primary-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-primary-actions .contact-action:first-child {
    grid-column: 1 / -1;
  }

  .booking-primary-actions .contact-action,
  .booking-secondary-actions .contact-action {
    min-height: 48px;
    padding-inline: 9px;
    font-size: 11px;
  }

  .booking-panel--outcall {
    padding: 0;
  }

  .mobile-dock {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
