/* FoordBuilt Landing — styles */
:root {
  --orange: #FE5400;
  --orange-hover: #E54A00;
  --peach: #FF9865;
  --ink: #141B39;
  --ink-soft: #2A2F4A;
  --muted: #667085;
  --line: #E5E7EB;
  --bg: #FFFFFF;
  --bg-soft: #F4F5F8;
  --bg-soft-2: #ECECE8;
  --star: #EB921E;
  --shadow: 0 12px 36px rgba(20,27,57,.10);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}

/* Headlines: ExtraBold 800. Body copy: Bold 700 weight for emphasis. */

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
img { display: block; max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ───────── Header / Hero ───────── */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__photo {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('/assets/hero-deck.png');
  background-size: cover;
  background-position: center;
  filter: saturate(1.15) contrast(1.05) brightness(1.08);
  z-index: -2;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(10,12,24,.88) 0%, rgba(10,12,24,.68) 25%, rgba(10,12,24,.32) 55%, rgba(10,12,24,.08) 90%, rgba(10,12,24,.02) 100%),
    linear-gradient(180deg, rgba(10,12,24,.12) 0%, rgba(10,12,24,0) 40%, rgba(10,12,24,.25) 100%);
  z-index: -1;
}

.nav-wrap {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand__logo {
  height: 44px;
  width: auto;
  display: block;
}
.brand__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: .08em;
  font-style: italic;
}
.brand__sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .55em;
  margin-top: 6px;
  color: var(--ink);
  position: relative;
  padding: 0 6px;
}
.brand__sub::before, .brand__sub::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 26px;
  height: 1px;
  background: var(--ink);
}
.brand__sub::before { right: 100%; }
.brand__sub::after  { left: 100%; }

.nav__actions { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .15s ease, color .15s ease, transform .12s ease;
  white-space: nowrap;
  font-family: inherit;
  border: 1.5px solid transparent;
}
.btn:active { transform: translateY(1px); }
.btn--white {
  background: #fff;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--white:hover { background: #f6f6f4; }

/* Phone-number CTAs run a bit bigger than the Enquire Now buttons */
.btn--white,
.cta-bar .btn--phone,
.footer-cta .btn--ghost {
  font-size: 14px;
  letter-spacing: .06em;
  padding: 14px 28px;
}
.strip__phone {
  font-size: 15px;
}
.btn--orange {
  background: var(--orange);
  color: #fff;
}
.btn--orange:hover { background: var(--orange-hover); }
.btn--block { width: 100%; padding: 17px 22px; font-size: 14px; border-radius: 4px; }
.btn__phone-icon {
  width: 16px; height: 16px;
  display: inline-flex;
  align-items: center; justify-content: center;
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 32px 72px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}

.hero__copy { max-width: 540px; padding-top: 8px; }
.hero__kicker {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  margin-bottom: 16px;
  opacity: .95;
}
.hero__title {
  font-weight: 800;
  font-size: 56px;
  line-height: 1.05;
  margin: 0 0 22px;
  letter-spacing: -.015em;
  color: var(--peach);
}
.hero__title em {
  font-style: normal;
  font-weight: 800;
  color: #fff;
}
.hero__desc {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.65;
  max-width: 440px;
  opacity: .95;
  margin: 0 0 32px;
  color: #fff;
}

.hero__badge {
  width: 104px; height: 104px;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));
}

/* ───────── Hero Form ───────── */
.form-card {
  background: #fff;
  color: var(--ink);
  border-radius: 4px;
  padding: 28px 28px 28px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
.field label .req { color: var(--orange); }
.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  background: #fff;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: #B8B8B8; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242,107,38,.12);
}
.field textarea { resize: vertical; min-height: 64px; }

/* ───────── Strip ───────── */
.strip {
  background: var(--bg-soft);
  padding: 32px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.strip__lead {
  font-weight: 800;
  font-size: 26px;
  color: var(--ink);
  letter-spacing: -.005em;
}
.strip__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 14px 22px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  transition: background .15s ease;
}
.strip__phone:hover { background: #f6f6f4; }

/* ───────── Sections ───────── */
section { padding: 80px 0; }
.section-title {
  font-weight: 800;
  font-size: 36px;
  line-height: 1.15;
  text-align: center;
  margin: 0 0 48px;
  letter-spacing: -.015em;
  color: var(--ink);
}

/* Service cards */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service__img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: #ddd;
}
.service__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service:hover .service__img img { transform: scale(1.04); }

.service h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 18px 0 8px;
  letter-spacing: -.01em;
}
.service p {
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 18px;
}
.service__link {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--orange);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  transition: gap .15s ease;
}
.service__link img { display: inline-block; }
.service__link:hover { gap: 10px; }

/* ───────── Why ───────── */
.why { background: var(--bg-soft); }
.why__title {
  text-align: left;
  max-width: 640px;
  margin: 0 0 56px;
  font-size: 36px;
  line-height: 1.15;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.why__item h4 {
  font-size: 15px;
  font-weight: 800;
  margin: 16px 0 10px;
  letter-spacing: -.005em;
}
.why__item p {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.why__icon {
  width: 32px;
  height: 32px;
  display: block;
}

/* ───────── Gallery / Carousel ───────── */
.carousel {
  width: 100%;
  position: relative;
  --gap: 14px;
  --item-w: 588px;
  --item-h: 456px;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.carousel__track {
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0 32px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}
.carousel__item {
  flex: 0 0 var(--item-w);
  width: var(--item-w);
  height: var(--item-h);
  background: #ddd;
  overflow: hidden;
}
.carousel__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  pointer-events: none;
}
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 4px 14px rgba(20,27,57,.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .15s ease, transform .12s ease;
  z-index: 2;
}
.carousel__btn:hover { background: #f6f6f4; }
.carousel__btn:active { transform: translateY(-50%) scale(.96); }
.carousel__btn--prev { left: 20px; }
.carousel__btn--next { right: 20px; }

/* ───────── Orange CTA bar ───────── */
.cta-bar {
  background: var(--orange);
  color: #fff;
  padding: 26px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-bar__title {
  font-weight: 800;
  font-size: 24px;
  margin: 0;
  letter-spacing: -.01em;
}
.cta-bar .btn--phone {
  background: var(--orange);
  color: #fff;
  border: 1.5px solid #fff;
}
.cta-bar .btn--phone:hover { background: var(--orange-hover); }
.cta-bar .btn--enquire {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid #fff;
}
.cta-bar .btn--enquire:hover { background: #f4f4f1; }

/* ───────── Reviews ───────── */
.reviews-title {
  font-weight: 800;
  font-size: 40px;
  line-height: 1.15;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  letter-spacing: -.015em;
  color: var(--ink);
}
.reviews {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}
.review { text-align: center; }
.review__stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
}
.review__stars img { width: 22px; height: auto; }
.review__text {
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 22px;
}
.review__name {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--muted);
  text-align: center;
  margin-top: 0;
}

/* ───────── About ───────── */
.about {
  display: grid;
  grid-template-columns: 0.7fr 1.6fr;
  gap: 80px;
  align-items: center;
}
.about__title {
  font-weight: 800;
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 22px;
  letter-spacing: -.015em;
  color: var(--ink);
}
.about__copy p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--ink);
}
.about__img {
  aspect-ratio: 4/3.4;
  border-radius: 4px;
  overflow: hidden;
  background: #ddd;
}
.about__img img { width: 100%; height: 100%; object-fit: cover; }

/* ───────── Map / Contact ───────── */
.contact { text-align: center; padding-bottom: 0; }
.contact__title {
  font-weight: 800;
  font-size: 34px;
  line-height: 1.2;
  margin: 0 0 28px;
  letter-spacing: -.015em;
  color: var(--ink);
}
.contact__row {
  display: flex; gap: 36px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 36px;
}
.contact__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.map {
  width: 100%;
  height: 380px;
  background: #d8e4d4;
  position: relative;
  overflow: hidden;
}

/* ───────── FAQ ───────── */
.faq-title {
  font-weight: 800;
  font-size: 34px;
  text-align: center;
  margin: 0 0 36px;
  letter-spacing: -.015em;
  color: var(--ink);
}
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.faq-item--open { box-shadow: 0 6px 18px rgba(0,0,0,.05); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  color: var(--ink);
  font-family: inherit;
}
.faq-chevron {
  transition: transform .25s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item--open .faq-chevron { transform: rotate(180deg); }
.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}
.faq-item--open .faq-answer-wrap { grid-template-rows: 1fr; }
.faq-answer {
  overflow: hidden;
}
.faq-answer p {
  margin: 0;
  padding: 0 22px 20px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--muted);
}

/* ───────── Footer CTA ───────── */
.footer-cta {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 88px 32px 80px;
  overflow: hidden;
  isolation: isolate;
}
.footer-cta__bg {
  position: absolute; inset: 0;
  background-image: url('/assets/outdoor-kitchen.png');
  background-size: cover;
  background-position: center;
  filter: blur(2px) saturate(1.2) brightness(.95) contrast(1.05);
  transform: scale(1.06);
  z-index: -2;
}
.footer-cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(8,11,24,.78) 0%, rgba(8,11,24,.55) 45%, rgba(8,11,24,.40) 70%, rgba(8,11,24,.55) 100%),
    radial-gradient(ellipse 80% 70% at 50% 45%, rgba(8,11,24,0) 0%, rgba(8,11,24,.25) 75%, rgba(8,11,24,.50) 100%);
  z-index: -1;
}
.footer-cta h2 {
  font-weight: 800;
  font-size: 36px;
  margin: 0 auto 16px;
  max-width: 640px;
  line-height: 1.2;
  letter-spacing: -.015em;
}
.footer-cta p {
  max-width: 580px;
  margin: 0 auto 30px;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.65;
  opacity: .92;
}
.footer-cta__actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.footer-cta .btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.footer-cta .btn--ghost:hover { background: rgba(255,255,255,.12); }
.footer-cta .btn--enquire-light {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid #fff;
}
.footer-cta .btn--enquire-light:hover { background: #f4f4f1; }

/* ───────── Mobile ───────── */
@media (max-width: 900px) {
  body { font-size: 14.5px; }
  .container { padding: 0 20px; }

  /* Nav: single row, logo left, phone icon + enquire right */
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 18px;
  }
  .brand__logo { height: 32px; }
  .nav__actions {
    width: auto;
    justify-content: flex-end;
    gap: 8px;
  }
  .nav__actions .btn {
    flex: 0 0 auto;
    padding: 10px 14px;
    font-size: 12px;
    letter-spacing: .04em;
  }
  .nav__actions .btn--phone {
    padding: 10px;
    width: 42px;
    height: 42px;
    justify-content: center;
  }
  .btn--phone .btn__phone-text { display: none; }

  /* Hero */
  .hero { min-height: auto; }
  .hero__photo { min-height: auto; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 20px 36px;
  }
  .hero__copy { padding-top: 0; position: relative; padding-right: 0; min-height: auto; }
  .hero__kicker { font-size: 14px; margin-bottom: 12px; }
  .hero__title { font-size: 36px; line-height: 1.08; max-width: 100%; margin-bottom: 18px; }
  .hero__desc { font-size: 14.5px; margin: 0 0 24px; max-width: 100%; }
  .hero__badge {
    display: block;
    position: static;
    margin: 0;
    width: 118px; height: 118px;
  }

  .form-card { padding: 22px 20px; border-radius: 4px; }
  .field input, .field textarea { padding: 13px 14px; font-size: 15px; }
  .btn--block { padding: 16px 22px; font-size: 13px; }

  /* "Call us now" strip */
  .strip { flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 28px 20px; text-align: center; }
  .strip__lead { font-size: 22px; text-align: center; }
  .strip__phone { padding: 14px 22px; font-size: 14px; justify-content: center; }

  section { padding: 56px 0; }
  .section-title { font-size: 28px; margin-bottom: 32px; line-height: 1.15; }

  /* Services */
  .services { grid-template-columns: 1fr; gap: 36px; }
  .service__img { aspect-ratio: 4/3.2; }
  .service h3 { font-size: 22px; margin-top: 20px; }
  .service p { font-size: 14px; }

  /* Why */
  .why__title { font-size: 26px; text-align: left; }
  .why__grid { grid-template-columns: 1fr; gap: 28px; }
  .why__icon { width: 30px; height: 30px; }
  .why__item h4 { font-size: 16px; }
  .why__item p { font-size: 14px; }

  /* Carousel */
  .carousel { --item-w: 320px; --item-h: 250px; --gap: 12px; }
  .carousel__track { padding: 0 16px; }
  .carousel__btn { display: none; }

  /* Orange CTA bar */
  .cta-bar { flex-direction: column; gap: 16px; padding: 32px 20px; text-align: center; }
  .cta-bar__title { font-size: 22px; }
  .cta-bar .btn { width: 100%; max-width: 280px; padding: 14px 22px; font-size: 13px; }

  /* Reviews */
  .reviews-title { font-size: 26px; margin-bottom: 36px; }
  .reviews { grid-template-columns: 1fr; gap: 44px; padding: 0 20px; }
  .review__stars img { width: 24px; }
  .review__text { font-size: 15px; }

  /* About */
  .about { display: flex; flex-direction: column-reverse; gap: 28px; }
  .about__title { font-size: 26px; }
  .about__copy p { font-size: 14px; }

  /* Contact / Map */
  .contact__title { font-size: 26px; }
  .contact__row { gap: 16px; flex-direction: column; align-items: center; }
  .map { height: 320px; }

  /* FAQ */
  .faq-title { font-size: 26px; }
  .faq-question { padding: 16px 18px; font-size: 14px; }
  .faq-answer p { padding: 0 18px 18px; font-size: 13.5px; }

  /* Footer CTA */
  .footer-cta { padding: 56px 20px; }
  .footer-cta h2 { font-size: 26px; }
  .footer-cta p { font-size: 14px; }
  .footer-cta__actions { width: 100%; flex-direction: column; gap: 10px; }
  .footer-cta__actions .btn { width: 100%; padding: 14px 22px; }
}

/* Small phones */
@media (max-width: 420px) {
  .hero__title { font-size: 32px; }
  .strip__lead { font-size: 20px; }
  .section-title { font-size: 24px; }
  .reviews-title, .about__title, .contact__title, .faq-title, .footer-cta h2 { font-size: 22px; }
  .hero__badge { width: 140px; height: 140px; }
}

/* ───────── Mobile card carousels (Services / Reviews) ───────── */
.mcarousel { position: relative; }
.mcarousel__arrows { display: none; }

@media (max-width: 900px) {
  .services.mcarousel__track,
  .reviews.mcarousel__track {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 4px 20px 8px;
    margin: 0 -20px;
    cursor: grab;
    user-select: none;
    max-width: none;
    width: auto;
    touch-action: pan-y;
    overscroll-behavior-x: contain;
  }
  .services.mcarousel__track::-webkit-scrollbar,
  .reviews.mcarousel__track::-webkit-scrollbar { display: none; }
  .services.mcarousel__track.is-dragging,
  .reviews.mcarousel__track.is-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }

  .services.mcarousel__track > .service,
  .reviews.mcarousel__track > .review {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }
  .reviews.mcarousel__track > .review {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 22px 18px;
  }

  .mcarousel { position: relative; }
  .mcarousel__arrows {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
  }
  .mcarousel__btn {
    width: 40px; height: 40px;
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    border: 1.5px solid var(--ink);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
  }
  .mcarousel__btn:active { transform: scale(.96); }

  /* Gallery: 1.2 cards visible on mobile */
  .carousel { --item-w: 80vw; --item-h: 62vw; --gap: 12px; }
  .carousel__track { padding: 0 20px; scroll-snap-type: x mandatory; }
  .carousel__item { scroll-snap-align: start; }
  .carousel__btn { display: none; }

  /* Full-width CTAs on mobile */
  .btn--white, .btn--orange,
  .strip__phone,
  .cta-bar .btn,
  .footer-cta .btn,
  .contact__item {
    width: 100%;
    max-width: 100%;
  }
  .nav__actions .btn { width: auto; }
  .contact__row { width: 100%; padding: 0 4px; }
}

@media (max-width: 420px) {
  .carousel { --item-h: 68vw; }
}
