/* ═══════════════════════════════════════════
   Ben's Lawn Care — Premium One-Page
   ═══════════════════════════════════════════ */

:root {
  --bg:      #f8f7f3;
  --bg-dark: #0f2a1f;
  --ink:     #141714;
  --muted:   rgba(20, 23, 20, .55);
  --accent:  #1f6b4e;
  --accent2: #0f2a1f;
  --gold:    #c6a35a;
  --line:    rgba(20, 23, 20, .10);
  --card:    rgba(255,255,255,.60);
  --radius:  16px;
  --ease:    cubic-bezier(.22, 1, .36, 1);
  --container: 1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Outfit', ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
}

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

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* ── Grain ── */
.grain {
  position: fixed; inset: 0; pointer-events: none; opacity: .035; z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 60px; border: none; cursor: pointer;
  font-weight: 700; font-size: 15px; letter-spacing: .3px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  opacity: 0; background: rgba(255,255,255,.15); transition: opacity .3s;
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(160deg, #2a8a65, #0f2a1f); color: #fff;
  box-shadow: 0 8px 32px rgba(15, 42, 31, .35);
}
.btn--primary:hover { box-shadow: 0 12px 44px rgba(15, 42, 31, .45); }
.btn--glass {
  background: rgba(255,255,255,.15); backdrop-filter: blur(12px);
  color: #fff; border: 1px solid rgba(255,255,255,.25);
}
.btn--glass:hover { background: rgba(255,255,255,.22); box-shadow: 0 8px 32px rgba(0,0,0,.15); }
.btn--glass-dark {
  background: rgba(255,255,255,.08); backdrop-filter: blur(8px);
  color: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.15);
}
.btn--lg { padding: 16px 36px; font-size: 16px; }
.btn--full { width: 100%; }

/* ── Section labels ── */
.section-label {
  font-size: 13px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.section-label--light { color: var(--gold); }
.section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 56px); line-height: 1.08;
  letter-spacing: -1px; margin-bottom: 48px;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 24px;
  background: rgba(248, 247, 243, .92); backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--line);
  transition: background .4s, box-shadow .4s;
}
.header.scrolled {
  background: rgba(248, 247, 243, .95);
}
.header__inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.header__brand { display: flex; align-items: center; gap: 12px; }
.header__logo {
  width: 44px; height: 44px; object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.15));
  transition: transform .3s var(--ease);
}
.header__brand:hover .header__logo { transform: scale(1.08) rotate(-3deg); }
.header__name { font-weight: 800; font-size: 16px; letter-spacing: .3px; }

.header__nav { display: flex; align-items: center; gap: 6px; }
.header__links { display: flex; align-items: center; gap: 4px; }
.header__links a {
  font-size: 14px; font-weight: 600; color: rgba(20,23,20,.7);
  padding: 8px 16px; border-radius: 999px; transition: all .25s var(--ease);
  position: relative;
}
.header__links a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%;
  width: 0; height: 2px; background: var(--accent); border-radius: 2px;
  transition: all .3s var(--ease); transform: translateX(-50%);
}
.header__links a:hover { color: var(--accent2); }
.header__links a:hover::after { width: 20px; }
.header__cta {
  font-size: 14px; font-weight: 700; color: var(--accent);
  padding: 10px 20px; border-radius: 999px;
  border: 1.5px solid rgba(31,107,78,.2); transition: all .3s var(--ease);
}
.header__cta:hover { background: rgba(31,107,78,.06); border-color: rgba(31,107,78,.35); transform: translateY(-1px); }
.header__toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--line); background: rgba(255,255,255,.7);
  cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.header__toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s; }

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  position: relative; height: 100vh; min-height: 600px; max-height: 1000px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero__parallax { position: absolute; inset: -80px; z-index: 0; }
.hero__parallax img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(15,42,31,.55) 0%, rgba(15,42,31,.72) 50%, rgba(15,42,31,.85) 100%);
}
.hero__content { position: relative; z-index: 2; text-align: center; color: #fff; max-width: 700px; padding: 0 24px; }
.hero__badge {
  display: inline-block; padding: 8px 20px; border-radius: 999px;
  border: 1px solid rgba(198,163,90,.35); background: rgba(198,163,90,.12);
  color: var(--gold); font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(48px, 8vw, 88px); line-height: 1; letter-spacing: -2px; margin-bottom: 20px;
}
.hero__title em { font-style: italic; color: var(--gold); text-shadow: 0 0 60px rgba(198,163,90,.3); }
.hero__sub { font-size: 17px; font-weight: 400; color: rgba(255,255,255,.7); letter-spacing: 1px; margin-bottom: 36px; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero__scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(.6); }
  50%      { opacity: 1;  transform: scaleY(1); }
}

/* ══════════════════════════════════════
   MARQUEE
   ══════════════════════════════════════ */
.marquee {
  background: var(--accent2); padding: 16px 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06);
}
.marquee__track {
  display: flex; gap: 32px; white-space: nowrap;
  animation: marquee 25s linear infinite; width: max-content;
}
.marquee__track span { font-size: 14px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.6); }
.marquee__dot { color: var(--gold) !important; font-size: 10px !important; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   SERVICES
   ══════════════════════════════════════ */
.services { padding: 120px 0 100px; }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.svc {
  padding: 0; border-radius: 20px; border: 1px solid var(--line);
  background: var(--card); backdrop-filter: blur(8px);
  transition: all .4s var(--ease); cursor: default;
  position: relative; overflow: hidden;
}
.svc__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity .5s var(--ease); z-index: 0;
}
.svc__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,42,31,.55) 0%, rgba(15,42,31,.82) 100%);
}
.svc:hover .svc__bg { opacity: 1; }
.svc__inner { position: relative; z-index: 1; padding: 36px 28px; transition: color .4s var(--ease); }
.svc:hover .svc__inner { color: #fff; }
.svc:hover .svc__title { color: #fff; }
.svc:hover .svc__desc { color: rgba(255,255,255,.8); }

.svc::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); z-index: 2;
}
.svc:hover::before { transform: scaleX(1); }
.svc:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(15, 42, 31, .12); border-color: rgba(31,107,78,.2); }

.svc__icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(31,107,78,.1), rgba(198,163,90,.08));
  display: grid; place-items: center; margin-bottom: 20px;
  transition: all .3s var(--ease);
}
.svc:hover .svc__icon { transform: scale(1.1) rotate(-5deg); background: rgba(255,255,255,.15); }
.svc:hover .svc__icon svg { color: var(--gold); }
.svc__icon svg { width: 24px; height: 24px; color: var(--accent); }
.svc__title { font-family: 'DM Serif Display', Georgia, serif; font-size: 22px; margin-bottom: 8px; letter-spacing: -.3px; }
.svc__desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════════════════
   TESTIMONIAL (fixed background)
   ══════════════════════════════════════ */
.imgbreak {
  position: relative; min-height: 50vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center; padding: 80px 24px;
}
.imgbreak__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
@media (hover: none) {
  .imgbreak__bg { background-attachment: scroll; }
}
.imgbreak__overlay { position: absolute; inset: 0; background: rgba(15, 42, 31, .72); }
.imgbreak__content { position: relative; z-index: 2; text-align: center; color: #fff; max-width: 680px; padding: 0 24px; }
.imgbreak__stars { color: var(--gold); font-size: 20px; letter-spacing: 6px; margin-bottom: 20px; text-shadow: 0 0 30px rgba(198,163,90,.4); }
.imgbreak__quote {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(20px, 3vw, 32px); line-height: 1.35;
  letter-spacing: -.3px; margin-bottom: 16px; font-style: italic;
}
.imgbreak__attr { font-size: 14px; color: var(--gold); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }

/* ══════════════════════════════════════
   ABOUT
   ══════════════════════════════════════ */
.about { padding: 120px 0; }
.about__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.about__img-wrap {
  position: relative; border-radius: 24px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(15, 42, 31, .18);
}
.about__img-wrap img { width: 100%; height: 560px; object-fit: cover; transition: transform .6s var(--ease); }
.about__img-wrap:hover img { transform: scale(1.03); }
.about__badge {
  position: absolute; bottom: 20px; left: 20px; padding: 14px 20px; border-radius: 16px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(12px);
  border: 1px solid rgba(20,23,20,.08); box-shadow: 0 16px 40px rgba(0,0,0,.1);
}
.about__badge strong { display: block; font-size: 18px; font-weight: 900; }
.about__badge span { font-size: 13px; color: var(--muted); }
.about__text { font-size: 17px; color: rgba(20,23,20,.7); line-height: 1.7; margin-bottom: 36px; max-width: 48ch; }
.about__stats { display: flex; gap: 32px; }
.stat { padding: 20px 0; border-top: 2px solid var(--accent); }
.stat__num { font-family: 'DM Serif Display', Georgia, serif; font-size: 32px; color: var(--accent2); line-height: 1; margin-bottom: 4px; }
.stat__label { font-size: 13px; color: var(--muted); font-weight: 600; }

/* ══════════════════════════════════════
   BEFORE / AFTER SLIDER
   ══════════════════════════════════════ */
.ba-section { padding: 100px 0 40px; }

.ba {
  position: relative; border-radius: 24px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(15,42,31,.12);
  border: 1px solid var(--line); cursor: ew-resize;
  aspect-ratio: 16 / 8;
  -webkit-user-select: none; user-select: none;
}

/* Both images: identical size, stacked on top of each other */
.ba__img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; object-fit: cover;
}
/* After sits behind */
.ba__img--after { z-index: 1; }
/* Before sits on top, clipped by JS via clip-path */
.ba__img--before { z-index: 2; }

.ba__tag {
  position: absolute; top: 16px; padding: 8px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  background: rgba(15,42,31,.75); color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(8px);
  z-index: 5; pointer-events: none;
}
.ba__tag--after { left: 16px; }
.ba__tag--before { right: 16px; }

.ba__handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 4px;
  transform: translateX(-50%); z-index: 10;
}
.ba__handle-line {
  position: absolute; inset: 0; background: rgba(255,255,255,.7);
  box-shadow: 0 0 12px rgba(0,0,0,.3);
}
.ba__handle-grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 999px;
  background: linear-gradient(135deg, #2a8a65, #0f2a1f);
  border: 2px solid rgba(255,255,255,.4);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  display: grid; place-items: center;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.ba:hover .ba__handle-grip, .ba.dragging .ba__handle-grip {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.ba__handle-grip svg { width: 20px; height: 20px; }

/* ══════════════════════════════════════
   GALLERY
   ══════════════════════════════════════ */
.gallery { padding: 40px 0 120px; }
.gallery__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.gallery__item {
  margin: 0; border-radius: 20px; overflow: hidden; position: relative;
  grid-column: span 6; cursor: pointer;
}
.gallery__item--wide { grid-column: span 6; }
.gallery__item img { width: 100%; height: 280px; object-fit: cover; transition: transform .6s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(to top, rgba(15,42,31,.7), transparent);
  color: #fff; font-weight: 700; font-size: 15px; letter-spacing: .3px;
  transform: translateY(100%); transition: transform .4s var(--ease);
}
.gallery__item:hover figcaption { transform: translateY(0); }

/* ══════════════════════════════════════
   CTA / QUOTE FORM
   ══════════════════════════════════════ */
.cta { position: relative; overflow: hidden; padding: 120px 0; }
.cta__parallax { position: absolute; inset: -60px; }
.cta__parallax img { width: 100%; height: 100%; object-fit: cover; }
.cta__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,42,31,.92), rgba(15,42,31,.85)); }
.cta__content { position: relative; z-index: 2; }
.cta__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.cta__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 52px); line-height: 1.08;
  letter-spacing: -1px; color: #fff; margin-bottom: 12px;
}
.cta__sub { font-size: 17px; color: rgba(255,255,255,.6); margin-bottom: 32px; }
.cta__contact { display: flex; flex-direction: column; gap: 12px; }
.contact-pill {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06);
  transition: all .3s var(--ease);
}
.contact-pill:hover { background: rgba(255,255,255,.12); transform: translateX(4px); }
.contact-pill__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(198,163,90,.15); display: grid; place-items: center; flex-shrink: 0;
}
.contact-pill__icon svg { width: 20px; height: 20px; color: var(--gold); }
.contact-pill strong { display: block; color: #fff; font-weight: 700; font-size: 16px; }
.contact-pill small { color: rgba(255,255,255,.5); font-size: 13px; }

/* ── Form ── */
.form {
  padding: 32px; border-radius: 24px;
  background: rgba(255,255,255,.07); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__label { display: block; margin-bottom: 16px; }
.form__label > span {
  display: block; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.7);
  margin-bottom: 8px; letter-spacing: .5px; text-transform: uppercase;
}
.form__label input, .form__label textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06);
  color: #fff; font-size: 15px; font-family: inherit; outline: none;
  transition: all .3s var(--ease);
}
.form__label input::placeholder, .form__label textarea::placeholder { color: rgba(255,255,255,.3); }
.form__label input:focus, .form__label textarea:focus {
  border-color: var(--gold); background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 3px rgba(198,163,90,.15);
}
.form__checks { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-check { position: relative; cursor: pointer; }
.chip-check input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip-check span {
  display: inline-block; padding: 10px 18px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.7); font-size: 13px; font-weight: 600;
  transition: all .25s var(--ease); cursor: pointer;
}
.chip-check:hover span { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); }
.chip-check input:checked + span { background: rgba(198,163,90,.2); border-color: var(--gold); color: var(--gold); }
.form__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.form__hint { margin-top: 10px; font-size: 13px; color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer { padding: 32px 0; border-top: 1px solid var(--line); background: var(--bg); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer__left { display: flex; align-items: center; gap: 12px; }
.footer__logo { width: 36px; height: 36px; object-fit: contain; }
.footer__name { font-weight: 800; font-size: 14px; }
.footer__loc  { font-size: 12px; color: var(--muted); }
.footer__right { display: flex; align-items: center; gap: 24px; font-size: 13px; color: var(--muted); }
.footer__right a { font-weight: 700; color: var(--accent); transition: opacity .2s; }
.footer__right a:hover { opacity: .7; }

/* ══════════════════════════════════════
   REVEAL ANIMATIONS
   ══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

.services__grid .reveal:nth-child(2) { transition-delay: .08s; }
.services__grid .reveal:nth-child(3) { transition-delay: .16s; }
.services__grid .reveal:nth-child(4) { transition-delay: .24s; }

.gallery__grid .reveal:nth-child(2) { transition-delay: .1s; }
.gallery__grid .reveal:nth-child(3) { transition-delay: .2s; }
.gallery__grid .reveal:nth-child(4) { transition-delay: .3s; }

.about__stats .stat { opacity: 0; transform: translateY(20px); transition: all .6s var(--ease); }
.about__stats.in .stat { opacity: 1; transform: translateY(0); }
.about__stats.in .stat:nth-child(2) { transition-delay: .1s; }
.about__stats.in .stat:nth-child(3) { transition-delay: .2s; }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__img-wrap img { height: 420px; }
  .cta__grid { grid-template-columns: 1fr; }
  .ba { aspect-ratio: 16 / 9; }
}

@media (max-width: 768px) {
  .header__cta { display: none; }
  .header__toggle { display: flex; }
  .header__links {
    display: none; position: absolute; top: 72px; right: 24px;
    min-width: 200px; padding: 12px; border-radius: 18px;
    border: 1px solid var(--line); background: rgba(248,247,243,.95);
    backdrop-filter: blur(20px); box-shadow: 0 20px 60px rgba(0,0,0,.12);
    flex-direction: column; gap: 4px;
  }
  .header__links.open { display: flex; }
  .header__links a { padding: 12px 16px; border-radius: 12px; }
  .header__links a:hover { background: rgba(31,107,78,.06); }
  .header__links a::after { display: none; }

  .services__grid { grid-template-columns: 1fr; }
  .gallery__item, .gallery__item--wide { grid-column: span 12; }
  .gallery__item img { height: 220px; }
  .form__row { grid-template-columns: 1fr; }
  .about__stats { gap: 20px; flex-wrap: wrap; }
  .ba { aspect-ratio: 16 / 10; }
}

@media (max-width: 480px) {
  .hero { min-height: 100svh; }
  .about__img-wrap img { height: 340px; }
  .ba { aspect-ratio: 4 / 3; }
}
