/* ============================================================
   Vasaiya Construction — Styles
   ============================================================ */

:root {
  --ink: #16181d;
  --charcoal: #22252c;
  --charcoal-2: #2c3038;
  --gold: #c1974f;
  --gold-dark: #a67e3c;
  --brick: #b0623d;
  --cream: #f7f3ec;
  --sand: #f2ece2;
  --line: #e5ddd0;
  --muted: #6d6a63;
  --white: #ffffff;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 4px 14px rgba(22, 24, 29, .08);
  --shadow-md: 0 14px 40px rgba(22, 24, 29, .12);
  --shadow-lg: 0 30px 70px rgba(22, 24, 29, .18);
  --container: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.text-gold { color: var(--gold); }
.muted { color: var(--muted); font-size: .82em; }

/* ---------- Buttons ---------- */
.btn {
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body);
  font-weight: 700; font-size: .93rem; letter-spacing: .02em;
  padding: 14px 28px; border-radius: 100px; border: 1.5px solid transparent;
  cursor: pointer; transition: all .3s var(--ease); white-space: nowrap;
  line-height: 1;
}
.btn--sm { padding: 11px 20px; font-size: .85rem; }
.btn--block { width: 100%; }
.btn--gold { background: var(--gold); color: #fff; box-shadow: 0 8px 22px rgba(193,151,79,.32); }
.btn--gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(193,151,79,.4); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--charcoal-2); transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--ghost-dark { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost-dark:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--whatsapp { background: #25d366; color: #fff; }
.btn--whatsapp:hover { background: #1eb356; transform: translateY(-2px); }

/* ---------- Topbar ---------- */
.topbar { background: var(--ink); color: rgba(255,255,255,.72); font-size: .8rem; }
.topbar__inner { display: flex; align-items: center; gap: 14px; height: 40px; }
.topbar__item { display: inline-flex; align-items: center; gap: 6px; }
.topbar__sep { opacity: .4; }
.topbar__spacer { flex: 1; }
.topbar__link { transition: color .2s; }
.topbar__link:hover { color: var(--gold); }
.topbar svg { opacity: .8; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, background .3s, border-color .3s;
}
.header.is-scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { height: 46px; width: auto; }
.brand__logo--light { display: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong { font-family: var(--font-body); font-weight: 800; font-size: 1.18rem; letter-spacing: .16em; color: var(--ink); }
.brand__text em { font-style: normal; font-size: .62rem; letter-spacing: .42em; color: var(--muted); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav__link { font-weight: 600; font-size: .93rem; color: var(--charcoal); position: relative; padding: 4px 0; transition: color .2s; }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--gold); transition: width .3s var(--ease); }
.nav__link:hover { color: var(--gold-dark); }
.nav__link:hover::after { width: 100%; }
.nav__cta { margin-left: 4px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__slides { position: absolute; inset: 0; }
.hero__slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.4s var(--ease); transform: scale(1.05); }
.hero__slide.is-active { opacity: 1; animation: heroZoom 8s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__overlay { position: absolute; inset: 0; background:
  linear-gradient(100deg, rgba(13,14,18,.92) 0%, rgba(13,14,18,.72) 42%, rgba(13,14,18,.42) 100%),
  linear-gradient(to top, rgba(13,14,18,.55) 0%, rgba(13,14,18,0) 40%); }
.hero__content { position: relative; z-index: 2; padding: 80px 24px; }
.hero__eyebrow { display: inline-block; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; font-size: .72rem; color: var(--gold); padding: 8px 16px; border: 1px solid rgba(193,151,79,.5); border-radius: 100px; margin-bottom: 24px; }
.hero__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.04; letter-spacing: -.01em; margin-bottom: 22px; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero__lead { font-size: clamp(1rem, 1.6vw, 1.22rem); max-width: 560px; color: rgba(255,255,255,.92); margin-bottom: 36px; text-shadow: 0 1px 14px rgba(0,0,0,.4); }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 3; }
.hero__dots button { width: 32px; height: 4px; border-radius: 4px; border: 0; background: rgba(255,255,255,.4); cursor: pointer; transition: background .3s; padding: 0; }
.hero__dots button.is-active { background: var(--gold); }

/* ---------- Features ---------- */
.features { background: var(--ink); padding: 0; }
.features__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.feature { padding: 44px 30px; color: #fff; border-right: 1px solid rgba(255,255,255,.08); transition: background .3s; }
.feature:last-child { border-right: 0; }
.feature:hover { background: var(--charcoal); }
.feature__icon { font-size: 2rem; display: block; margin-bottom: 14px; }
.feature h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.feature p { font-size: .9rem; color: rgba(255,255,255,.66); line-height: 1.55; }

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section--sand { background: var(--cream); }
.section--dark { background: var(--ink); color: #fff; }
.eyebrow { display: inline-block; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; font-size: .74rem; color: var(--gold-dark); margin-bottom: 14px; }
.eyebrow--light { color: var(--gold); }
.section__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.1; letter-spacing: -.01em; }
.section__title--light { color: #fff; }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section__sub { color: var(--muted); font-size: 1.05rem; margin-top: 16px; }
.section--dark .section__sub, .section--dark p { color: rgba(255,255,255,.7); }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
.about__media { position: relative; }
.about__img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; height: 100%; object-fit: cover; }
.about__badge { position: absolute; right: -18px; bottom: -22px; background: var(--gold); color: #fff; padding: 22px 26px; border-radius: var(--radius); box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px; }
.about__badge strong { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; }
.about__badge span { font-size: .8rem; line-height: 1.3; font-weight: 600; }
.about__body .section__title { margin-bottom: 22px; }
.about__body p { color: #4a4842; margin-bottom: 16px; font-size: 1.02rem; }
.about__list { margin: 22px 0 30px; display: grid; gap: 12px; }
.about__list li { position: relative; padding-left: 30px; color: #3c3a35; font-weight: 500; }
.about__list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; background: var(--gold); color: #fff; border-radius: 50%; font-size: .7rem; display: flex; align-items: center; justify-content: center; font-weight: 800; }

/* ---------- Project (featured, single) ---------- */
.project-featured { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 0; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); max-width: 1050px; margin: 0 auto; }
.project-featured__media { position: relative; min-height: 420px; overflow: hidden; background: var(--sand); }
.project-featured__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.project-featured:hover .project-featured__media img { transform: scale(1.04); }
.project-featured__body { padding: 46px 44px; display: flex; flex-direction: column; justify-content: center; }
.project-featured__title { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; line-height: 1.1; }
.project-featured__desc { color: var(--muted); font-size: 1rem; margin-bottom: 6px; }
.project__tag { position: absolute; top: 18px; left: 18px; background: var(--gold); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 8px 15px; border-radius: 100px; box-shadow: var(--shadow-sm); }
.project__meta { color: var(--gold-dark); font-weight: 700; font-size: .9rem; letter-spacing: .03em; margin: 6px 0 16px; }
.project__specs { display: flex; gap: 26px; flex-wrap: wrap; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 6px 0 24px; }
.project__specs li { font-size: .82rem; color: var(--muted); }
.project__specs strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); font-weight: 600; }
.project__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Gallery ---------- */
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; }
.gallery__item { border: 0; padding: 0; cursor: pointer; overflow: hidden; border-radius: var(--radius-sm); background: var(--sand); position: relative; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .4s; }
.gallery__item::after { content: "⤢"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.6rem; background: rgba(22,24,29,.35); opacity: 0; transition: opacity .3s; }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item:hover::after { opacity: 1; }

/* ---------- Walkthrough ---------- */
.walkthrough__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: center; }
.walkthrough__text .section__title { margin-bottom: 20px; }
.walkthrough__text .btn { margin-top: 12px; }
.walkthrough__player { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); background: #000; }
.walkthrough__player video { width: 100%; max-height: 460px; display: block; background: #000; }

/* ---------- Floor Plans ---------- */
.plans { max-width: 1000px; margin: 0 auto; }
.plans__tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
.plans__tab { font-family: var(--font-body); font-weight: 700; font-size: .92rem; padding: 12px 26px; border-radius: 100px; border: 1.5px solid var(--line); background: #fff; color: var(--charcoal); cursor: pointer; transition: all .3s var(--ease); }
.plans__tab.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.plans__tab:hover:not(.is-active) { border-color: var(--gold); color: var(--gold-dark); }
.plans__viewport { position: relative; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 24px; border: 1px solid var(--line); }
.plans__pane { display: none; position: relative; }
.plans__pane.is-active { display: block; animation: fadeIn .4s var(--ease); }
.plans__pane img { width: 100%; border-radius: var(--radius-sm); }
.plans__zoom { position: absolute; bottom: 16px; right: 16px; background: rgba(22,24,29,.8); color: #fff; font-size: .78rem; font-weight: 600; padding: 8px 14px; border-radius: 100px; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- CTA banner ---------- */
.cta-banner { background: linear-gradient(120deg, var(--gold) 0%, var(--brick) 100%); color: #fff; }
.cta-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 56px 24px; flex-wrap: wrap; }
.cta-banner h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.15; }
.cta-banner p { color: rgba(255,255,255,.9); margin-top: 6px; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact__info .section__title { margin-bottom: 18px; }
.contact__list { margin: 30px 0; display: grid; gap: 22px; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact__ico { font-size: 1.3rem; flex-shrink: 0; width: 44px; height: 44px; background: var(--cream); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.contact__list strong { display: block; font-weight: 700; margin-bottom: 3px; }
.contact__list p { color: var(--muted); font-size: .95rem; line-height: 1.5; }
.contact__list a { color: var(--gold-dark); font-weight: 600; }
.contact__list a:hover { text-decoration: underline; }

.contact__form-wrap { background: var(--ink); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-md); }
.contact__form h3 { font-family: var(--font-display); color: #fff; font-size: 1.6rem; font-weight: 600; margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; color: rgba(255,255,255,.75); font-size: .82rem; font-weight: 600; margin-bottom: 7px; letter-spacing: .02em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-sm); border: 1.5px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05); color: #fff; font-family: var(--font-body); font-size: .95rem; transition: border-color .2s, background .2s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.35); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.08); }
.field select option { color: #16181d; }
.field textarea { resize: vertical; }
.form-note { margin-top: 14px; font-size: .88rem; text-align: center; min-height: 1em; }
.form-note.ok { color: #7fd39b; }
.form-note.err { color: #ec8a7c; }

.contact__map { margin-top: 70px; height: 420px; position: relative; }
.contact__map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.2) contrast(1.05); }
.contact__map-load { width: 100%; height: 100%; border: 0; cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; padding: 24px;
  background: linear-gradient(135deg, var(--sand), var(--cream)); color: var(--ink);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(193,151,79,.10), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(176,98,61,.10), transparent 40%),
    linear-gradient(135deg, var(--sand), var(--cream)); }
.contact__map-pin { font-size: 2.4rem; }
.contact__map-load strong { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; }
.contact__map-hint { color: var(--muted); font-size: .95rem; margin-bottom: 6px; }

/* ---------- Footer ---------- */
.footer { background: #0f1013; color: rgba(255,255,255,.66); padding-top: 66px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; }
.footer__logo { height: 54px; width: auto; margin-bottom: 18px; }
.footer__brand p { font-size: .92rem; line-height: 1.6; margin-bottom: 12px; max-width: 280px; }
.footer__gst { font-size: .8rem; color: rgba(255,255,255,.4); letter-spacing: .03em; }
.footer__col h4 { color: #fff; font-size: .95rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 18px; }
.footer__col a, .footer__col p { display: block; color: rgba(255,255,255,.62); font-size: .92rem; margin-bottom: 10px; transition: color .2s; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .84rem; color: rgba(255,255,255,.45); }

/* ---------- Floating WhatsApp ---------- */
.fab-whatsapp { position: fixed; right: 22px; bottom: 22px; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,.45); z-index: 90; transition: transform .3s var(--ease); animation: fabPulse 2.4s infinite; }
.fab-whatsapp:hover { transform: scale(1.1); }
@keyframes fabPulse { 0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,.45); } 50% { box-shadow: 0 8px 34px rgba(37,211,102,.7); } }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; background: rgba(12,13,16,.94); z-index: 200; display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.is-open { display: flex; animation: fadeIn .3s; }
.lightbox__img { max-width: 92vw; max-height: 88vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 22px; right: 30px; background: none; border: 0; color: #fff; font-size: 2.6rem; cursor: pointer; line-height: 1; opacity: .8; transition: opacity .2s; }
.lightbox__close:hover { opacity: 1; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); color: #fff; width: 54px; height: 54px; border-radius: 50%; font-size: 2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lightbox__nav:hover { background: var(--gold); border-color: var(--gold); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Capture/QA mode — force reveals visible, tame hero height & anims */
.shot-mode { scroll-behavior: auto !important; }
.shot-mode .reveal { opacity: 1 !important; transform: none !important; }
.shot-mode .hero { min-height: 720px; }
.shot-mode .hero__slide, .shot-mode .fab-whatsapp { animation: none !important; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .about__grid { grid-template-columns: 1fr; gap: 50px; }
  .about__badge { right: 20px; }
  .walkthrough__grid { grid-template-columns: 1fr; gap: 34px; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .feature:nth-child(2) { border-right: 0; }
  .feature { border-bottom: 1px solid rgba(255,255,255,.08); }
}

@media (max-width: 820px) {
  .topbar__item:nth-child(3) { display: none; }
  .nav {
    position: fixed; top: 0; right: -100%; width: min(320px, 82vw); height: 100vh;
    background: #fff; flex-direction: column; align-items: flex-start; justify-content: flex-start;
    padding: 100px 34px 40px; gap: 6px; box-shadow: var(--shadow-lg); transition: right .4s var(--ease); z-index: 105;
  }
  .nav.is-open { right: 0; }
  .nav__link { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__link::after { display: none; }
  .nav__cta { width: 100%; margin-top: 18px; }
  .nav-toggle { display: flex; z-index: 106; }
  .project-featured { grid-template-columns: 1fr; max-width: 560px; }
  .project-featured__media { min-height: 300px; aspect-ratio: 4 / 3; }
  .project-featured__body { padding: 34px 28px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .section { padding: 72px 0; }
  .hero { min-height: 82vh; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .topbar__inner { justify-content: center; gap: 8px; font-size: .72rem; height: auto; padding: 8px 0; flex-wrap: wrap; }
  .topbar__spacer, .topbar__sep { display: none; }
  .brand__text em { display: none; }
  .features__grid { grid-template-columns: 1fr; }
  .feature { border-right: 0; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery__item--wide { grid-column: span 1; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 28px 22px; }
  .about__badge { position: static; margin-top: 18px; display: inline-flex; }
  .cta-banner__inner { padding: 40px 20px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}
