:root {
  --cream: #fbf7ee;
  --paper: #fffdf8;
  --ink: #222928;
  --muted: #69716f;
  --salmon: #c98272;
  --salmon-dark: #a96356;
  --charcoal: #27302f;
  --line: rgba(39, 48, 47, 0.12);
  --shadow: 0 24px 70px rgba(67, 46, 39, 0.13);
  --radius: 28px;
  --radius-lg: 44px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

body {
  margin: 0;
  font-family: "Cairo", Tahoma, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 6%, rgba(201, 130, 114, 0.19), transparent 27rem),
    radial-gradient(circle at 90% 35%, rgba(39, 48, 47, 0.09), transparent 24rem),
    var(--cream);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(39, 48, 47, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 48, 47, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 85%);
  z-index: -1;
}

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

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

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

.page-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: transparent;
  z-index: 1000;
}

.page-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--salmon), var(--charcoal));
  box-shadow: 0 0 24px rgba(201, 130, 114, 0.5);
}


.site-header {
  position: fixed;
  top: 18px;
  right: 0;
  left: 0;
  z-index: 900;
  transition: transform .35s ease, top .35s ease;
}

.site-header.is-hidden {
  transform: translateY(-120%);
}

.navbar {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 18px 50px rgba(39, 48, 47, 0.11);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(201, 130, 114, 0.2);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.25;
}

.brand strong {
  font-size: 1rem;
  font-weight: 900;
}

.brand small {
  color: var(--muted);
  font-size: .76rem;
  direction: ltr;
  text-align: right;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  font-size: .93rem;
  transition: .25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: rgba(201, 130, 114, 0.14);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--charcoal);
  cursor: pointer;
  padding: 13px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  border-radius: 10px;
  transition: .25s ease;
}

.lock-panel {
  scroll-snap-align: start;
  scroll-margin-top: 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 145px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.9), rgba(251, 247, 238, 0.62)),
    radial-gradient(circle at 65% 35%, rgba(201, 130, 114, 0.18), transparent 28rem);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 280px;
  height: 280px;
  background: rgba(201, 130, 114, 0.13);
  bottom: 8%;
  left: 7%;
  filter: blur(7px);
}

.hero::after {
  width: 430px;
  height: 430px;
  border: 1px solid rgba(39, 48, 47, 0.09);
  top: 18%;
  left: -7%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--salmon-dark);
  font-weight: 900;
  letter-spacing: .2px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--salmon);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.45rem, 6.2vw, 5.8rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.hero-en {
  margin: 14px 0 0;
  color: var(--salmon-dark);
  font-size: clamp(1.1rem, 2vw, 1.75rem);
  font-weight: 800;
  direction: ltr;
  text-align: right;
}

.hero-text {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 2;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--charcoal), #111817);
  color: #fff;
  box-shadow: 0 18px 34px rgba(39, 48, 47, 0.2);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.45);
  border-color: var(--line);
  color: var(--ink);
}

.btn.full {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
}

.hero-card {
  position: relative;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(255,255,255,0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transform-style: preserve-3d;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(201,130,114,.62), rgba(39,48,47,.18), rgba(255,255,255,.8));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.logo-frame {
  border-radius: 36px;
  overflow: hidden;
  background: var(--cream);
  min-height: 310px;
  display: grid;
  place-items: center;
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-contact {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  direction: ltr;
}

.quick-contact a {
  min-height: 68px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 10px;
  border-radius: 22px;
  background: rgba(201, 130, 114, 0.12);
  border: 1px solid rgba(201, 130, 114, 0.16);
  color: var(--charcoal);
  font-weight: 900;
  font-size: .86rem;
  word-break: break-word;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  right: 50%;
  transform: translateX(50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
}

.scroll-cue i {
  width: 26px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(39,48,47,.22);
  position: relative;
}

.scroll-cue i::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--salmon);
  transform: translateX(50%);
  animation: wheel 1.4s infinite ease;
}

@keyframes wheel {
  0% { opacity: 0; transform: translate(50%, 0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translate(50%, 17px); }
}

.section {
  min-height: 100vh;
  padding: 130px 0;
  display: flex;
  align-items: center;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

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

.section-title h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: -.8px;
}

.section-title p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 2;
  font-size: 1.08rem;
}

.section-title.centered {
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-title.centered .eyebrow {
  justify-content: center;
}

.about-copy {
  padding: 38px;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: var(--shadow);
}

.about-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 2.1;
  font-size: 1.08rem;
}

.info-strip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.info-strip div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(39, 48, 47, 0.045);
}

.info-strip strong,
.info-strip span {
  display: block;
}

.info-strip strong {
  color: var(--charcoal);
  font-weight: 900;
}

.info-strip span {
  margin-top: 6px;
  color: var(--muted);
  font-size: .92rem;
}

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

.service-card {
  min-height: 310px;
  padding: 26px;
  border-radius: 32px;
  background: rgba(255, 253, 248, 0.76);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: 0 16px 44px rgba(39,48,47,.08);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(39,48,47,.14);
}

.service-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  top: -34px;
  left: -34px;
  border-radius: 50%;
  background: rgba(201,130,114,.14);
}

.card-number {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--charcoal);
  color: #fff;
  font-weight: 900;
  direction: ltr;
}

.service-card h3 {
  margin: 34px 0 14px;
  font-size: 1.25rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.products {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.38), transparent);
}

.visual-stack {
  min-height: 560px;
  position: relative;
  display: grid;
  place-items: center;
}

.product-orbit {
  width: min(390px, 88vw);
  height: min(390px, 88vw);
  border-radius: 50%;
  border: 1px solid rgba(39,48,47,.15);
  background:
    radial-gradient(circle, rgba(255,253,248,.88) 0 34%, rgba(201,130,114,.13) 35% 36%, transparent 37%),
    rgba(255,253,248,.45);
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: var(--shadow);
  animation: breathe 5s ease-in-out infinite;
}

.product-orbit::after {
  content: "شركة الهندام";
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--charcoal);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(39,48,47,.18);
}

.product-orbit span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 28px;
  background: rgba(255,253,248,.92);
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: 0 14px 34px rgba(39,48,47,.1);
  color: var(--salmon-dark);
  font-weight: 900;
}

.product-orbit span:nth-child(1) { top: -26px; right: 50%; transform: translateX(50%); }
.product-orbit span:nth-child(2) { top: 50%; left: -42px; transform: translateY(-50%); }
.product-orbit span:nth-child(3) { bottom: -26px; right: 50%; transform: translateX(50%); }
.product-orbit span:nth-child(4) { top: 50%; right: -42px; transform: translateY(-50%); }

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.025); }
}

.floating-panel {
  position: absolute;
  min-width: 250px;
  padding: 18px 22px;
  border-radius: 24px;
  background: rgba(255,253,248,.84);
  border: 1px solid rgba(255,255,255,.84);
  box-shadow: 0 18px 48px rgba(39,48,47,.11);
  backdrop-filter: blur(16px);
  z-index: 2;
}

.floating-panel strong,
.floating-panel span {
  display: block;
}

.floating-panel strong {
  font-size: 1.05rem;
  direction: ltr;
}

.floating-panel span {
  margin-top: 4px;
  color: var(--muted);
  font-size: .91rem;
}

.top-panel { top: 30px; right: 15px; }
.bottom-panel { bottom: 34px; left: 15px; }

.clean-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.clean-list li {
  position: relative;
  padding: 14px 48px 14px 18px;
  border-radius: 18px;
  background: rgba(255,253,248,.7);
  color: var(--muted);
  line-height: 1.8;
}

.clean-list li::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--salmon);
  transform: translateY(-50%);
  box-shadow: 0 0 0 7px rgba(201,130,114,.15);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 72px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,130,114,.55), transparent);
}

.step {
  position: relative;
  padding: 28px;
  border-radius: 34px;
  background: rgba(255,253,248,.78);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: 0 16px 48px rgba(39,48,47,.08);
  min-height: 260px;
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--salmon), var(--salmon-dark));
  color: #fff;
  font-weight: 900;
  font-size: 1.15rem;
  box-shadow: 0 14px 28px rgba(201,130,114,.24);
  direction: ltr;
}

.step h3 {
  margin: 28px 0 10px;
  font-size: 1.24rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.quality-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.quality-cards div {
  padding: 28px 30px;
  border-radius: 30px;
  background: rgba(255,253,248,.78);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: 0 14px 42px rgba(39,48,47,.08);
  transition: transform .3s ease;
}

.quality-cards div:hover {
  transform: translateX(-10px);
}

.quality-cards h3 {
  margin: 0 0 9px;
  font-size: 1.35rem;
  color: var(--salmon-dark);
}

.quality-cards p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 34px;
  align-items: stretch;
}

.contact-info,
.contact-form {
  border-radius: var(--radius-lg);
  background: rgba(255,253,248,.78);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.contact-info {
  padding: 44px;
}

.contact-info h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.25;
  font-weight: 900;
}

.muted {
  color: var(--muted);
  line-height: 2;
}

.contact-list {
  margin-top: 34px;
  display: grid;
  gap: 12px;
}

.contact-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(39,48,47,.045);
  border: 1px solid rgba(39,48,47,.06);
  transition: transform .25s ease, background .25s ease;
}

.contact-list a:hover {
  transform: translateY(-3px);
  background: rgba(201,130,114,.12);
}

.contact-list span {
  color: var(--muted);
  font-weight: 800;
}

.contact-list strong {
  direction: ltr;
  text-align: left;
  font-weight: 900;
  color: var(--charcoal);
}

.contact-form {
  padding: 34px;
}

.form-head h3 {
  margin: 0;
  font-size: 1.7rem;
}

.form-head p {
  margin: 8px 0 22px;
  color: var(--muted);
  direction: ltr;
  text-align: right;
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
}

.contact-form label span {
  display: block;
  margin-bottom: 8px;
  color: var(--charcoal);
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(39,48,47,.1);
  background: rgba(255,255,255,.72);
  color: var(--ink);
  border-radius: 18px;
  min-height: 56px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border .25s ease, box-shadow .25s ease, background .25s ease;
}

textarea {
  resize: vertical;
  min-height: 148px;
}

input:focus,
textarea:focus {
  border-color: rgba(201,130,114,.65);
  box-shadow: 0 0 0 4px rgba(201,130,114,.12);
  background: #fff;
}

.map-section {
  min-height: 100vh;
  padding: 110px 0 70px;
  display: grid;
  align-items: center;
  gap: 32px;
}

.map-copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 900;
}

.map-wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  border-radius: 44px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 12px solid rgba(255,253,248,.86);
  min-height: 520px;
}

.map-wrap iframe {
  width: 100%;
  height: 520px;
  display: block;
  filter: saturate(.92) contrast(.98);
}

.site-footer {
  padding: 34px 0 42px;
  background: var(--charcoal);
  color: #fff;
  text-align: center;
}

.footer-inner {
  display: grid;
  place-items: center;
  gap: 14px;
}

.footer-inner img {
  width: 86px;
  height: 62px;
  object-fit: cover;
  border-radius: 18px;
}

.footer-inner p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-weight: 800;
}

.back-top {
  position: fixed;
  left: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--charcoal);
  color: #fff;
  box-shadow: 0 14px 34px rgba(39,48,47,.2);
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: .25s ease;
  font-size: 1.25rem;
  font-weight: 900;
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(8px);
  transition: opacity .85s cubic-bezier(.2,.8,.2,1), transform .85s cubic-bezier(.2,.8,.2,1), filter .85s cubic-bezier(.2,.8,.2,1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

@media (max-width: 1050px) {
  .hero-grid,
  .split,
  .split.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .timeline::before {
    display: none;
  }

  .hero-card {
    max-width: 680px;
    margin-inline: auto;
  }
}

@media (max-width: 820px) {
  html {
    scroll-snap-type: none;
  }


  .site-header {
    top: 10px;
  }

  .navbar {
    width: calc(100% - 24px);
    border-radius: 28px;
    padding: 10px;
  }

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

  .brand strong {
    font-size: .92rem;
  }

  .brand small {
    max-width: 140px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .nav-links {
    position: fixed;
    top: 84px;
    right: 12px;
    left: 12px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 26px;
    background: rgba(255,253,248,.95);
    border: 1px solid rgba(255,255,255,.84);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
  }

  body.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero,
  .section,
  .map-section {
    min-height: auto;
    padding: 118px 0 70px;
  }

  .hero-grid,
  .split,
  .split.reverse,
  .contact-grid {
    gap: 32px;
  }

  .hero h1,
  .section-title h2,
  .contact-info h2 {
    letter-spacing: 0;
  }

  .quick-contact,
  .info-strip,
  .service-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .logo-frame {
    min-height: 230px;
  }

  .about-copy,
  .contact-info,
  .contact-form {
    padding: 24px;
    border-radius: 30px;
  }

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

  .visual-stack {
    min-height: 470px;
  }

  .product-orbit span {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    font-size: .9rem;
  }

  .floating-panel {
    min-width: 210px;
  }

  .contact-list a {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-list strong {
    text-align: right;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 420px;
    height: 420px;
  }
}

@media (max-width: 460px) {
  .container,
  .map-wrap {
    width: calc(100% - 24px);
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .product-orbit {
    width: 290px;
    height: 290px;
  }

  .product-orbit::after {
    width: 120px;
    height: 120px;
  }

  .product-orbit span:nth-child(2) { left: -22px; }
  .product-orbit span:nth-child(4) { right: -22px; }

  .top-panel {
    right: 0;
  }

  .bottom-panel {
    left: 0;
  }

  .scroll-cue {
    display: none;
  }
}
