/* ==========================================================================
   شاليه سندس — Sondos Chalet
   Design system: dark cinematic hero + warm light body
   ========================================================================== */

:root {
  /* light body palette */
  --bg:        #f6f1ea;
  --surface:   #ffffff;
  --surface-2: #efe6d9;
  --sand:      #e7dccb;
  --ink:       #262019;
  --ink-soft:  #60564733;
  --ink-mut:   #6b6153;
  --line:      rgba(38, 32, 25, .12);
  --gold:      #b98a3e;
  --gold-deep: #986c2b;
  --ochre:     #c9843b;
  --walnut:    #6b4a34;

  /* dark hero palette */
  --night:   #14110d;
  --night-2: #1e1810;

  --radius:  18px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(38, 32, 25, .06);
  --shadow:    0 18px 50px -18px rgba(38, 32, 25, .28);
  --shadow-lg: 0 40px 90px -30px rgba(20, 17, 13, .45);

  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(64px, 11vw, 140px);

  --font-body: "Tajawal", "Segoe UI", Tahoma, sans-serif;
  --font-en: "Marcellus", "Cormorant Garamond", Georgia, serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- reset-ish ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

h1, h2, h3 { line-height: 1.25; margin: 0; font-weight: 800; letter-spacing: -.01em; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: var(--font-en);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .74rem;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: .8em;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: .6;
}

.section-head { max-width: 640px; margin-bottom: clamp(36px, 6vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: .6;
}
.section-head h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); }
.section-head p { margin: 16px 0 0; color: var(--ink-mut); font-size: 1.05rem; }

.btn {
  --btn-bg: var(--gold);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65em;
  padding: 15px 30px;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
  font-size: .98rem;
  border: 1px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  box-shadow: 0 14px 30px -12px rgba(152, 108, 43, .6);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -14px rgba(152, 108, 43, .7); }
.btn:active { transform: translateY(-1px); }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: currentColor;
  border-color: currentColor;
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(255, 255, 255, .1); box-shadow: none; }
.btn--wa { --btn-bg: #1faf57; box-shadow: 0 14px 30px -12px rgba(31, 175, 87, .6); }
.btn--wa:hover { box-shadow: 0 22px 44px -14px rgba(31, 175, 87, .7); }
.btn svg { width: 20px; height: 20px; }

.btn--lg { padding: 18px 38px; font-size: 1.05rem; }

/* focus visibility */
a:focus-visible, button:focus-visible, iframe:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease), color .4s var(--ease);
  color: #fff;
}
.site-header.scrolled {
  background: rgba(246, 241, 234, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink);
  padding: 10px 0;
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -20px rgba(38, 32, 25, .4);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: .5em;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -.02em;
}
.brand .brand__en {
  font-family: var(--font-en);
  font-size: .78rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: .7;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a:not(.btn) {
  font-size: .98rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  opacity: .92;
}
.nav__links a:not(.btn)::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav__links a:not(.btn):hover::after { transform: scaleX(1); }
.nav__cta { display: inline-flex; }
.nav__links .nav__cta {
  padding: 11px 22px;
  font-size: .92rem;
  gap: .55em;
}
.nav__links .nav__cta svg { width: 17px; height: 17px; }
.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid currentColor;
  border-radius: 12px;
  background: transparent;
  position: relative;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__toggle span::before { transform: translate(-50%, -7px); }
.nav__toggle span::after  { transform: translate(-50%, 7px); }
body.menu-open .nav__toggle span { background: transparent; }
body.menu-open .nav__toggle span::before { transform: translate(-50%, 0) rotate(45deg); }
body.menu-open .nav__toggle span::after  { transform: translate(-50%, 0) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 340px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 96px 30px 40px;
    overflow-y: auto;
    background: var(--night);
    color: #fff;
    transform: translateX(100%);
    transition: transform .5s var(--ease);
    box-shadow: var(--shadow-lg);
  }
  [dir="rtl"] .nav__links { inset: 0 auto 0 0; transform: translateX(-100%); }
  body.menu-open .nav__links { transform: translateX(0); }

  /* While the drawer is open, the header must NOT keep backdrop-filter:
     that property makes the header a containing block for the fixed drawer,
     which collapses the drawer to the header's height once scrolled.
     Also keep the header controls light so they show on the dark drawer. */
  body.menu-open { overflow: hidden; }
  body.menu-open .site-header,
  body.menu-open .site-header.scrolled {
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
    color: #fff;
  }
  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(8, 6, 5, .72);
    animation: scrim-in .3s var(--ease);
  }
  @keyframes scrim-in { from { opacity: 0; } }
  .nav__links a:not(.btn) { font-size: 1.15rem; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav__links a:not(.btn)::after { display: none; }
  .nav__links .nav__cta { margin-top: 22px; padding: 15px 24px; font-size: 1rem; }
  .nav__links .nav__cta svg { width: 19px; height: 19px; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--night); /* plain fallback — no image before the video */
}
.hero__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,17,13,.55) 0%, rgba(20,17,13,.15) 32%, rgba(20,17,13,.55) 68%, rgba(20,17,13,.92) 100%),
    radial-gradient(120% 80% at 80% 0%, rgba(20,17,13,0) 40%, rgba(20,17,13,.5) 100%);
}
.hero__inner {
  padding-top: clamp(96px, 12vh, 150px);
  padding-bottom: clamp(56px, 8vh, 110px);
  width: 100%;
}
.hero__content { max-width: 720px; }
.hero h1 {
  font-size: clamp(2.6rem, 7.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.hero h1 .accent { color: #e7c07a; display: block; }
.hero__lead {
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  max-width: 46ch;
  color: rgba(255, 255, 255, .88);
  font-weight: 400;
}
.hero__actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ==========================================================================
   OVERVIEW
   ========================================================================== */
.overview { padding-block: var(--section-y); }
.overview__grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.overview__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 6;
}
.overview__media img { width: 100%; height: 100%; object-fit: cover; }
.overview__media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25);
  border-radius: inherit;
}
.overview h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
.overview p { color: var(--ink-mut); margin: 18px 0 0; }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery { padding-block: var(--section-y); background: var(--surface-2); overflow: hidden; }
.gallery .section-head { padding-inline: var(--gutter); margin-inline: auto; }
.gallery__viewport {
  margin-top: 8px;
  direction: ltr; /* keep marquee math LTR regardless of page RTL */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  cursor: grab;
}
.gallery__viewport.is-dragging { cursor: grabbing; }
.gallery__track {
  display: flex;
  gap: 22px;
  width: max-content;
  direction: ltr;
  will-change: transform;
}
.gallery__item {
  position: relative;
  flex: none;
  height: clamp(320px, 56vw, 440px);
  width: clamp(250px, 66vw, 340px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--sand);
}
.gallery__item:nth-child(3n) { width: clamp(300px, 80vw, 470px); }
.gallery__item:nth-child(5n) { width: clamp(230px, 58vw, 300px); }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 17, 13, .5));
  opacity: .8;
}
.gallery__viewport:hover .gallery__item img { transform: scale(1.04); }
.gallery__hint {
  margin: 26px auto 0;
  text-align: center;
  font-size: .86rem;
  color: var(--ink-mut);
  letter-spacing: .02em;
}

/* ==========================================================================
   360 TOUR
   ========================================================================== */
.tour { padding-block: var(--section-y); background: var(--night); color: #fff; }
.tour .eyebrow { color: #e7c07a; }
.tour .section-head p { color: rgba(255, 255, 255, .72); }
.tour__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, .12);
  background: #0d0b08;
}

/* Phone: full-bleed viewer that fills the screen while you're on this section.
   No border-radius / overflow / transform on the frame — that combo makes
   mobile browsers clip the embedded WebGL canvas to a stale rectangle
   (looks fine again only after rotating the device). */
@media (max-width: 719px) {
  .tour { padding-block: 0; }
  .tour > .wrap {
    padding-top: 84px;
    padding-bottom: 22px;
    padding-inline: 0;
  }
  .tour .section-head { margin-bottom: 16px; padding-inline: var(--gutter); }
  .tour__frame {
    aspect-ratio: auto;
    height: calc(100svh - 190px);
    min-height: 420px;
    border-radius: 0;
    border-inline: 0;
    overflow: visible;
    box-shadow: none;
  }
}

@media (min-width: 720px) {
  .tour__frame { aspect-ratio: 16 / 10; }
}
.tour__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.tour__warn {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  margin: 0;
  padding: 14px 18px;
  font-size: .86rem;
  line-height: 1.7;
  background: rgba(13, 11, 8, .82);
  color: rgba(255, 255, 255, .9);
  text-align: center;
}
.tour__warn a { color: #e7c07a; text-decoration: underline; }
.tour__warn code { font-family: ui-monospace, monospace; font-size: .8rem; }
.tour__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  text-align: center;
  padding: 24px;
  background-size: cover;
  background-position: center;
}
.tour__placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 11, 8, .55);
  backdrop-filter: blur(2px);
}
.tour__placeholder > * { position: relative; }
.tour__play {
  width: 84px; height: 84px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .6);
  display: grid; place-content: center;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.tour__play svg { width: 30px; height: 30px; margin-inline-start: 3px; }
.tour__placeholder:hover .tour__play { transform: scale(1.08); background: rgba(255, 255, 255, .2); }

/* ==========================================================================
   AMENITIES
   ========================================================================== */
.amenities { padding-block: var(--section-y); }
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.amenity {
  padding: 26px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.amenity:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(185, 138, 62, .4); }
.amenity__icon {
  width: 48px; height: 48px;
  display: grid; place-content: center;
  border-radius: 14px;
  background: linear-gradient(150deg, var(--sand), #f3ebdd);
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.amenity__icon svg { width: 24px; height: 24px; }
.amenity h3 { font-size: 1.05rem; font-weight: 700; }
.amenity p { margin: 6px 0 0; font-size: .9rem; color: var(--ink-mut); line-height: 1.6; }

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews { padding-block: var(--section-y); background: var(--surface-2); }
.reviews__rating {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}
.reviews__rating strong { font-size: 2.2rem; font-weight: 800; }
.stars { display: inline-flex; gap: 3px; color: var(--gold); }
.stars svg { width: 18px; height: 18px; }
.reviews__scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(88vw, 380px);
  gap: 20px;
  overflow-x: auto;
  padding: 6px 4px 22px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.reviews__scroller::-webkit-scrollbar { display: none; }
.review {
  scroll-snap-align: start;
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review p { min-width: 0; overflow-wrap: anywhere; }
.review__stars { color: var(--gold); display: inline-flex; gap: 2px; }
.review__stars svg { width: 16px; height: 16px; }
.review p { margin: 0; color: var(--ink); font-size: 1rem; line-height: 1.8; flex: 1; }
.review__who { display: flex; align-items: center; gap: 12px; }
.review__avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  display: grid; place-content: center;
  font-weight: 700;
  color: #fff;
  background: var(--walnut);
  flex: none;
}
.review__meta { display: flex; flex-direction: column; }
.review__name { font-weight: 700; font-size: .96rem; }
.review__date { font-size: .82rem; color: var(--ink-mut); }
.reviews__disclaimer {
  margin: 18px 0 0;
  font-size: .82rem;
  color: var(--ink-mut);
}

/* ==========================================================================
   LOCATION
   ========================================================================== */
.location { padding-block: var(--section-y); }
.location__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.location p { color: var(--ink-mut); margin: 16px 0 0; }
.location__pluscode {
  margin: 26px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px dashed var(--gold);
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  background: #fff;
}
.location__pluscode span { font-size: .78rem; font-weight: 500; color: var(--ink-mut); letter-spacing: 0; }
.location__actions { margin: 28px 0 0; display: flex; flex-wrap: wrap; gap: 12px; }
.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--sand);
}
.location__map iframe { width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   CONTACT / CTA
   ========================================================================== */
.cta {
  position: relative;
  padding-block: clamp(72px, 12vw, 150px);
  color: #fff;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.cta__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,17,13,.82), rgba(20,17,13,.9));
}
.cta h2 { font-size: clamp(2rem, 5vw, 3.2rem); text-wrap: balance; }
.cta p { margin: 18px auto 0; max-width: 48ch; color: rgba(255, 255, 255, .82); }
.cta__actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta__phone { margin-top: 22px; font-size: 1.1rem; letter-spacing: .04em; direction: ltr; }
.cta__phone a { border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 2px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--night);
  color: rgba(255, 255, 255, .7);
  padding: clamp(48px, 8vw, 80px) 0 32px;
}
.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.site-footer .brand { color: #fff; }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 8px 26px; list-style: none; margin: 0; padding: 0; }
.site-footer__links a:hover { color: #fff; }
.site-footer__bottom {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: .84rem;
}

/* ==========================================================================
   FLOATING WHATSAPP
   ========================================================================== */
.wa-float {
  position: fixed;
  inset-block-end: 20px;
  inset-inline-end: 20px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 999px;
  background: #1faf57;
  color: #fff;
  display: grid;
  place-content: center;
  box-shadow: 0 16px 34px -10px rgba(31, 175, 87, .7);
  transform: translateY(120px);
  transition: transform .5s var(--ease), width .3s var(--ease);
}
.wa-float.is-visible { transform: translateY(0); }
.wa-float svg { width: 28px; height: 28px; }
.wa-float__label { display: none; }
@media (min-width: 700px) {
  .wa-float { width: auto; height: 56px; padding-inline: 20px; gap: 10px; grid-auto-flow: column; }
  .wa-float__label { display: inline; font-weight: 700; font-size: .95rem; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 860px) {
  .overview__grid { grid-template-columns: 1fr; }
  .overview__media { aspect-ratio: 4 / 3; max-height: 560px; }
  .location__grid { grid-template-columns: 1fr; }
  .location__map { order: -1; }
}
@media (min-width: 720px) {
  .amenities__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1040px) {
  .amenities__grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .btn { padding: 14px 24px; width: 100%; }
  .hero__actions .btn { width: 100%; }
}
