@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/cairo-arabic.woff2") format("woff2");
}

:root {
  --navy: #08345c;
  --navy-deep: #04243f;
  --blue: #229fc0;
  --pool: #35bfd0;
  --sun: #f6ae2d;
  --leaf: #237653;
  --ivory: #fffdf7;
  --soft: #eef8f7;
  --ink-soft: #45627a;
  --line: rgba(8, 52, 92, 0.14);
  --white-line: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 80px rgba(4, 36, 63, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--navy);
  background: var(--ivory);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

html[lang="ar"] body {
  direction: rtl;
  font-family: Cairo, Inter, Arial, sans-serif;
}

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

button {
  color: inherit;
  font: inherit;
}

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

:where(a, button, summary):focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  color: #fff;
  background: var(--navy);
  border-radius: 10px;
  transform: translateY(-150%);
}

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

.campaign-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 9px clamp(18px, 4vw, 64px);
  background: rgba(255, 253, 247, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.campaign-brand {
  display: flex;
  align-items: center;
  min-height: 48px;
}

.campaign-brand img {
  width: 110px;
  height: 52px;
  object-fit: contain;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.text-link,
.share-button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 850;
}

.text-link {
  padding: 0 11px;
}

.share-button {
  gap: 7px;
  padding: 0 15px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  cursor: pointer;
}

.header-cta {
  padding: 0 20px;
  color: #fff;
  background: var(--leaf);
}

.campaign-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
  min-height: calc(100svh - 76px);
  padding: clamp(56px, 7vw, 104px) clamp(20px, 6vw, 92px);
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 12%, rgba(246, 174, 45, 0.17), transparent 26%),
    linear-gradient(130deg, #fffdf7 0%, #f2faf7 58%, #dff7f7 100%);
}

.campaign-hero::before {
  position: absolute;
  z-index: -1;
  right: -7vw;
  bottom: -16vw;
  width: 43vw;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(34, 159, 192, 0.23);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(53, 191, 208, 0.05),
    0 0 0 96px rgba(53, 191, 208, 0.04);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 710px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #9b4a15;
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

html[lang="ar"] .eyebrow {
  letter-spacing: 0;
  text-transform: none;
}

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

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(4.1rem, 8.1vw, 8.4rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.84;
}

h1 span {
  color: var(--blue);
}

html[lang="ar"] h1 {
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  font-weight: 570;
  line-height: 1.65;
}

.offer-lockup {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: end;
  width: fit-content;
  margin-top: 31px;
  padding: 16px 22px 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(8, 52, 92, 0.11);
  border-left: 5px solid var(--sun);
  border-radius: 0 18px 18px 0;
  box-shadow: 0 16px 45px rgba(8, 52, 92, 0.08);
}

html[dir="rtl"] .offer-lockup {
  border-right: 5px solid var(--sun);
  border-left: 1px solid rgba(8, 52, 92, 0.11);
  border-radius: 18px 0 0 18px;
}

.offer-from {
  align-self: center;
  margin-right: 12px;
  color: var(--ink-soft);
  font-weight: 850;
}

html[dir="rtl"] .offer-from {
  margin-right: 0;
  margin-left: 12px;
}

.offer-lockup strong {
  color: var(--navy);
  font-size: clamp(3.8rem, 6vw, 6.1rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.76;
}

.currency {
  color: var(--sun);
  font-size: 0.58em;
  vertical-align: top;
}

.offer-unit {
  align-self: end;
  margin-left: 9px;
  font-size: 1rem;
  font-weight: 850;
}

html[dir="rtl"] .offer-unit {
  margin-right: 9px;
  margin-left: 0;
}

.offer-lockup small {
  grid-column: 2 / 4;
  margin-top: 8px;
  color: var(--ink-soft);
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--leaf);
  box-shadow: 0 16px 36px rgba(35, 118, 83, 0.22);
}

.button-primary > span:first-child {
  color: #74df9a;
}

.button-secondary {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
}

.button-dark {
  color: #fff;
  background: var(--navy);
}

.button-sun {
  color: var(--navy-deep);
  background: var(--sun);
  box-shadow: 0 16px 36px rgba(246, 174, 45, 0.23);
}

.micro-proof {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 17px 0 0 8px;
  color: var(--leaf);
  font-size: 0.91rem;
  font-weight: 800;
}

.hero-gallery {
  position: relative;
  min-height: min(640px, 69vw);
}

.hero-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 9px solid #fff;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo figcaption,
.photo-grid figcaption {
  position: absolute;
  right: 15px;
  bottom: 14px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(4, 36, 63, 0.76);
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 850;
  backdrop-filter: blur(9px);
}

html[dir="rtl"] .hero-photo figcaption,
html[dir="rtl"] .photo-grid figcaption {
  right: auto;
  left: 15px;
}

.hero-photo-main {
  top: 0;
  right: 0;
  width: 91%;
  height: 68%;
  transform: rotate(1.8deg);
}

.hero-photo-pool {
  left: 0;
  bottom: 0;
  width: 61%;
  height: 42%;
  transform: rotate(-3.5deg);
}

.sun-stamp {
  position: absolute;
  z-index: 3;
  right: -20px;
  bottom: 21%;
  display: grid;
  place-content: center;
  width: 118px;
  aspect-ratio: 1;
  color: var(--navy);
  text-align: center;
  background: var(--sun);
  border: 7px solid var(--ivory);
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(8, 52, 92, 0.22);
  transform: rotate(8deg);
}

.sun-stamp span {
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.sun-stamp strong {
  font-size: 1.5rem;
  font-weight: 900;
}

.fact-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: #fff;
  background: var(--navy);
}

.fact-bar > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 124px;
  padding: 22px clamp(18px, 4vw, 60px);
  border-right: 1px solid var(--white-line);
}

html[dir="rtl"] .fact-bar > div {
  border-right: 0;
  border-left: 1px solid var(--white-line);
}

.fact-bar > div:last-child {
  border: 0;
}

.fact-icon {
  display: grid;
  place-content: center;
  width: 48px;
  aspect-ratio: 1;
  color: var(--navy);
  background: var(--sun);
  border-radius: 50%;
  font-size: 1.25rem;
}

.fact-bar p,
.fact-bar span {
  display: block;
}

.fact-bar p {
  margin: 0;
}

.fact-bar strong {
  font-size: 1rem;
}

.fact-bar p span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.83rem;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 9vw, 140px);
  padding: clamp(88px, 10vw, 154px) clamp(20px, 7vw, 112px);
}

.story-copy {
  max-width: 550px;
}

.story-copy h2,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.15rem, 6vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

html[lang="ar"] .story-copy h2,
html[lang="ar"] .section-heading h2,
html[lang="ar"] .final-cta h2 {
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.story-copy > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  margin-top: 22px;
  color: var(--leaf);
  font-weight: 900;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-self: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: 0 20px 65px rgba(8, 52, 92, 0.08);
}

.benefit-grid article {
  min-height: 220px;
  padding: clamp(26px, 4vw, 46px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

html[dir="rtl"] .benefit-grid article {
  border-right: 0;
  border-left: 1px solid var(--line);
}

.benefit-grid article:nth-child(2n) {
  border-right: 0;
  border-left: 0;
}

.benefit-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.benefit-grid article > span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.benefit-grid h3 {
  margin: 32px 0 9px;
  font-size: 1.25rem;
  font-weight: 900;
}

.benefit-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

.rates-section {
  padding: clamp(88px, 10vw, 150px) clamp(20px, 7vw, 112px);
  background:
    radial-gradient(circle at 87% 0, rgba(53, 191, 208, 0.12), transparent 28%),
    #eef7f4;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 48px;
}

.section-heading > p:last-child:not(.eyebrow) {
  max-width: 600px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}

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

.rate-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 50px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 18px 55px rgba(8, 52, 92, 0.09);
}

.rate-card-featured::after {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 210px;
  aspect-ratio: 1;
  content: "";
  background: rgba(246, 174, 45, 0.18);
  border-radius: 50%;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.rate-label {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 900;
}

.rate-badge {
  padding: 8px 11px;
  color: var(--leaf);
  background: rgba(35, 118, 83, 0.1);
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 900;
}

.capacity {
  margin: 9px 0 31px;
  color: var(--ink-soft);
  font-weight: 650;
}

.rate-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  border-top: 1px solid var(--line);
}

.rate-row span {
  color: var(--ink-soft);
  font-weight: 750;
}

.rate-row strong {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.rate-card .button {
  width: 100%;
  margin-top: 19px;
}

.rate-details {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  margin-top: 24px;
}

.rate-details p {
  display: flex;
  gap: 9px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 650;
}

.rate-details p span {
  display: grid;
  flex: 0 0 auto;
  place-content: center;
  width: 22px;
  aspect-ratio: 1;
  color: #fff;
  background: var(--leaf);
  border-radius: 50%;
  font-size: 0.72rem;
}

.photo-section {
  padding: clamp(88px, 10vw, 150px) clamp(20px, 5vw, 80px);
  color: #fff;
  background: var(--navy-deep);
}

.section-heading-light h2 {
  color: #fff;
}

.section-heading-light .eyebrow {
  color: var(--sun);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 210px;
  gap: 14px;
}

.photo-grid figure {
  position: relative;
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
}

.photo-grid .photo-wide {
  grid-column: span 7;
  grid-row: span 2;
}

.photo-grid figure:nth-child(2) {
  grid-column: span 5;
}

.photo-grid figure:nth-child(3) {
  grid-column: span 5;
}

.photo-grid .photo-pool {
  grid-column: span 7;
}

.photo-grid figure:last-child {
  grid-column: span 5;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.photo-grid figure:hover img {
  transform: scale(1.025);
}

.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(40px, 8vw, 130px);
  padding: clamp(88px, 10vw, 150px) clamp(20px, 7vw, 112px);
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 55px 25px 0;
  list-style: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 900;
}

html[dir="rtl"] .faq-list summary {
  padding-right: 0;
  padding-left: 55px;
}

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

.faq-list summary::after {
  position: absolute;
  top: 19px;
  right: 0;
  display: grid;
  place-content: center;
  width: 34px;
  aspect-ratio: 1;
  content: "+";
  color: var(--navy);
  background: var(--soft);
  border-radius: 50%;
  font-size: 1.25rem;
}

html[dir="rtl"] .faq-list summary::after {
  right: auto;
  left: 0;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 700px;
  margin: -5px 54px 25px 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

html[dir="rtl"] .faq-list details p {
  margin-right: 0;
  margin-left: 54px;
}

.final-cta {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin: 0 clamp(16px, 3vw, 48px) clamp(16px, 3vw, 48px);
  padding: clamp(54px, 8vw, 110px) clamp(28px, 7vw, 100px);
  color: #fff;
  background:
    linear-gradient(110deg, rgba(8, 52, 92, 0.96), rgba(8, 52, 92, 0.75)),
    url("/assets/pool-pergola-walkway.webp") center / cover;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.final-cta .eyebrow {
  color: var(--sun);
}

.final-cta h2 {
  color: #fff;
}

.final-cta p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.final-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 15px;
}

.phone-link {
  min-height: 44px;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.campaign-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 31px clamp(20px, 5vw, 80px) 38px;
}

.footer-brand img {
  width: 92px;
  height: 48px;
  object-fit: contain;
}

.campaign-footer p {
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.campaign-footer > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 0.84rem;
  font-weight: 800;
}

.campaign-footer a:hover {
  color: var(--blue);
}

.mobile-booking-bar {
  display: none;
}

.share-toast {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  padding: 12px 16px;
  color: #fff;
  background: var(--navy-deep);
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-size: 0.86rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

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

html[dir="rtl"] .share-toast {
  right: auto;
  left: 22px;
}

@media (max-width: 1040px) {
  .campaign-hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero-gallery {
    min-height: 650px;
  }

  .hero-photo-main {
    width: 85%;
  }

  .hero-photo-pool {
    width: 56%;
  }

  .story-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .story-copy {
    max-width: 760px;
  }
}

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

  .campaign-header {
    min-height: 68px;
    padding: 8px 15px;
  }

  .campaign-brand img {
    width: 92px;
    height: 44px;
  }

  .share-button span:last-child,
  .header-cta {
    display: none;
  }

  .share-button {
    width: 44px;
    padding: 0;
  }

  .campaign-hero {
    min-height: auto;
    padding: 55px 18px 64px;
  }

  h1 {
    font-size: clamp(3.8rem, 18vw, 6rem);
  }

  .hero-lead {
    margin-top: 24px;
  }

  .offer-lockup {
    width: 100%;
  }

  .offer-from {
    font-size: 0.82rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .micro-proof {
    justify-content: center;
    margin-left: 0;
  }

  .hero-gallery {
    min-height: 430px;
  }

  .hero-photo {
    border-width: 6px;
    border-radius: 22px;
  }

  .hero-photo-main {
    width: 95%;
    height: 68%;
  }

  .hero-photo-pool {
    width: 69%;
    height: 40%;
  }

  .sun-stamp {
    right: -3px;
    width: 88px;
    border-width: 5px;
  }

  .sun-stamp strong {
    font-size: 1.15rem;
  }

  .fact-bar {
    grid-template-columns: 1fr;
    padding: 10px 18px;
  }

  .fact-bar > div {
    justify-content: flex-start;
    min-height: 90px;
    padding: 16px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--white-line);
  }

  html[dir="rtl"] .fact-bar > div {
    border-left: 0;
    border-bottom: 1px solid var(--white-line);
  }

  .story-section,
  .rates-section,
  .photo-section,
  .faq-section {
    padding: 82px 18px;
  }

  .story-copy h2,
  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .benefit-grid,
  .rate-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid article {
    min-height: auto;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit-grid article:nth-last-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .benefit-grid h3 {
    margin-top: 20px;
  }

  .photo-grid {
    display: flex;
    gap: 12px;
    margin-right: -18px;
    margin-left: -18px;
    padding: 0 18px 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .photo-grid figure,
  .photo-grid .photo-wide,
  .photo-grid figure:nth-child(2),
  .photo-grid figure:nth-child(3),
  .photo-grid .photo-pool,
  .photo-grid figure:last-child {
    flex: 0 0 84vw;
    height: 390px;
    scroll-snap-align: center;
  }

  .final-cta {
    grid-template-columns: 1fr;
    margin: 0 12px 12px;
    padding: 64px 24px;
    border-radius: 27px;
  }

  .campaign-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-bottom: 40px;
    text-align: center;
  }

  .campaign-footer > div {
    justify-content: center;
  }

  .mobile-booking-bar {
    position: fixed;
    z-index: 70;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 62px;
    padding: 0 20px;
    color: #fff;
    background: var(--leaf);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 17px;
    box-shadow: 0 16px 45px rgba(4, 36, 63, 0.32);
    font-size: 0.85rem;
    font-weight: 800;
  }

  .mobile-booking-bar > span:last-child {
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.26);
  }

  html[dir="rtl"] .mobile-booking-bar > span:last-child {
    padding-right: 18px;
    padding-left: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.26);
    border-left: 0;
  }

  .share-toast {
    right: 14px;
    bottom: 88px;
    left: 14px;
    text-align: center;
  }

  html[dir="rtl"] .share-toast {
    right: 14px;
    left: 14px;
  }
}

@media (max-width: 420px) {
  .offer-lockup {
    grid-template-columns: auto auto 1fr;
    padding-right: 14px;
    padding-left: 14px;
  }

  .offer-lockup strong {
    font-size: 3.6rem;
  }

  .offer-unit {
    font-size: 0.81rem;
  }

  .hero-gallery {
    min-height: 360px;
  }

  .photo-grid figure,
  .photo-grid .photo-wide,
  .photo-grid figure:nth-child(2),
  .photo-grid figure:nth-child(3),
  .photo-grid .photo-pool,
  .photo-grid figure:last-child {
    height: 320px;
  }
}

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

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