/* Baer Land Essentials — shared stylesheet (tokens + chrome + motion).
   Owned by the orchestrator. Page subagents may ONLY append page-scoped
   rules below, each under a banner comment reading: page: <slug>
   Fonts loaded via <link> in each page head (Merriweather + Montserrat).
   Source fonts: Merriweather (headings) + Wix Madefor Text (body).
   Madefor has no free Google face; substituted with Montserrat. */

:root {
  --green-dark: #132a1f;
  --green: #1b3626;
  --green-mid: #2c5e41;
  --gold: #9b804a;
  --gold-header: #b0925a;
  --gold-dark: #82693a;
  --cream: #f0e0c2;
  --text: #1a1a1a;
  --muted: #5c5c5c;
  --white: #ffffff;
  --section-alt: #f4f3ef;
  --font-head: "Merriweather", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", "Segoe UI", Helvetica, Arial, sans-serif;
  --maxw: 1200px;
  --radius: 4px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- Top announcement bar ---------- */
.topbar {
  background: var(--green-dark);
  color: #e9e2d2;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 8px 16px;
}

/* ---------- Header / nav ---------- */
.site-header {
  background: var(--gold-header);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 44px; width: auto; }
.brand .brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  color: #23331f;
  font-size: 17px;
  display: none;
}
.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  display: block;
  text-decoration: none;
  color: #23331f;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 14px;
  border-radius: 3px;
  transition: background 0.25s ease, color 0.25s ease;
}
.main-nav a:hover { background: rgba(19, 42, 31, 0.18); }
.main-nav a.active { background: var(--green-dark); color: #f2ecdd; }

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid #23331f;
  border-radius: 4px;
  color: #23331f;
  font-size: 20px;
  line-height: 1;
  padding: 6px 10px;
  cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 13px 30px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  border: 1.5px solid #fff;
  color: #fff;
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.14); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #f2ecdd;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  transition: gap 0.2s ease, color 0.2s ease;
}
.link-arrow::after { content: "\203A"; font-size: 18px; }
.link-arrow:hover { gap: 12px; color: var(--cream); }

/* ---------- Shared section pieces ---------- */
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}
.section { padding: 72px 0; }
.section-alt { background: var(--section-alt); }
.section-title {
  font-size: clamp(26px, 3.4vw, 36px);
  color: var(--text);
  margin-bottom: 20px;
}
.section-title .accent { color: var(--gold); }
.title-rule::after {
  content: "";
  display: inline-block;
  width: 46px;
  height: 2px;
  background: var(--gold);
  margin-left: 12px;
  vertical-align: middle;
}

/* ---------- Inner page hero (About / Services / Gallery / Contact) ---------- */
.page-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.page-hero .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 28, 20, 0.55);
  z-index: 1;
}
.page-hero .page-hero-inner { position: relative; z-index: 2; padding: 60px 24px; }
.page-hero .brand-eyebrow {
  font-family: var(--font-head);
  font-size: 20px;
  margin-bottom: 8px;
  color: #f2ecdd;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 400;
}

/* ---------- Green CTA band ---------- */
.cta-band {
  background: var(--green-dark);
  color: #f2ecdd;
  padding: 30px 0;
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--font-head);
  color: var(--gold);
  font-size: clamp(18px, 2.4vw, 26px);
  margin: 0;
}

/* ---------- Forms (wired to Apex relay) ---------- */
.lead-form { display: grid; gap: 14px; }
.lead-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
  color: inherit;
}
.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 11px 13px;
  border: 1px solid #cfcabb;
  border-radius: 3px;
  background: #fff;
  color: var(--text);
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus,
.field textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-dark);
  color: #cdd6cc;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-grid h4 {
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 14px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a {
  color: #cdd6cc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer-grid a:hover { color: var(--cream); }
.footer-grid p { font-size: 14px; line-height: 1.7; color: #b9c3b8; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 48px;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #9fab9e;
}

/* ---------- Motion (ported from source fadeIn; pure-CSS, always ends visible) ---------- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.55; }
}

/* Entrance reveals run on load with fill-mode both — the element always
   ends visible whether or not any script runs. Never hides content. */
.reveal { animation: fade-up 0.7s ease both; }
.reveal-2 { animation: fade-up 0.7s ease 0.12s both; }
.reveal-3 { animation: fade-up 0.7s ease 0.24s both; }
.fade { animation: fade-in 1s ease both; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  .reveal, .reveal-2, .reveal-3, .fade {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--gold-header);
    padding: 8px 16px 14px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav a { padding: 11px 12px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band .container { justify-content: center; text-align: center; }
}
@media (max-width: 560px) {
  .lead-form .row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ================= COMPONENTS / HOME (orchestrator-owned) ================= */
.center { text-align: center; }

/* Home hero */
.home-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  padding: 96px 0;
}
.home-hero .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 26, 18, 0.72) 0%, rgba(15, 26, 18, 0.5) 55%, rgba(15, 26, 18, 0.35) 100%);
  z-index: 1;
}
.home-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero-brand {
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #efe8d6;
  margin-bottom: 12px;
}
.hero-headline {
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.25;
  margin-bottom: 18px;
}
.hero-headline a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.hero-headline a:hover { color: var(--cream); }
.hero-sub { color: #e7ecdf; max-width: 560px; font-size: 15.5px; }
.home-hero .link-arrow { margin-top: 6px; }

.home-hero-form {
  background: rgba(28, 54, 38, 0.86);
  border: 1px solid rgba(240, 224, 194, 0.25);
  border-radius: 6px;
  padding: 28px;
  box-shadow: var(--shadow);
  color: #f2ecdd;
  backdrop-filter: blur(2px);
}
.home-hero-form h2 {
  font-family: var(--font-head);
  color: #fff;
  font-size: 26px;
  margin-bottom: 18px;
}
.home-hero-form .field label { color: #efe8d6; }
.home-hero-form .btn { width: 100%; margin-top: 4px; }

/* Inner-page lead form section */
.form-section { padding: 72px 0; }
.form-section .form-wrap { max-width: 720px; margin: 0 auto; }
.form-section h2 {
  font-family: var(--font-head);
  text-align: center;
  font-size: clamp(26px, 3.4vw, 36px);
  margin-bottom: 24px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.about-media img { width: 100%; height: auto; border-radius: 6px; box-shadow: var(--shadow); }
.about-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}
.about-badge img { width: 96px; height: auto; flex: 0 0 auto; }
.badge-head { font-family: var(--font-head); font-weight: 700; font-size: 15px; margin: 0 0 4px; }
.badge-sub { color: var(--gold); font-weight: 600; font-size: 14px; margin: 0; }

/* Service cards */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}
.solutions-title { text-align: center; margin-bottom: 8px; }
.card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e7e3d8;
  border-radius: 6px;
  padding: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-mid);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
}
.card h3 { font-family: var(--font-head); font-size: 17px; margin: 2px 0 6px; }
.card p { font-size: 14px; color: var(--muted); margin: 0; }

/* Why-choose band */
.why-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--green-dark);
  color: #e7ecdf;
}
.why-media { position: relative; min-height: 420px; }
.why-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.why-copy { display: flex; align-items: center; padding: 64px 48px; }
.why-inner { max-width: 560px; }
.why-band .eyebrow { color: var(--cream); }
.why-point { font-family: var(--font-head); color: var(--gold); font-size: 18px; margin: 20px 0 6px; }
.why-band p { color: #d7dfd4; font-size: 15px; }
.why-band .btn { margin-top: 12px; }

/* Collage (home gallery preview) */
.collage {
  columns: 4;
  column-gap: 12px;
  margin-top: 26px;
}
.collage img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 12px;
  break-inside: avoid;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.collage img:hover { transform: scale(1.02); filter: brightness(1.05); }

/* Video / working band */
.video-band {
  position: relative;
  color: #fff;
  padding: 90px 0;
  overflow: hidden;
}
.video-band .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background: var(--green-dark);
}
.video-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 18, 0.7);
  z-index: 1;
}
.video-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.video-logo { width: 72px; height: auto; flex: 0 0 auto; }

@media (max-width: 900px) {
  .home-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .why-band { grid-template-columns: 1fr; }
  .why-media { min-height: 280px; }
  .why-copy { padding: 48px 24px; }
  .collage { columns: 3; }
  .video-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .service-cards { grid-template-columns: 1fr; }
  .collage { columns: 2; }
  .about-badge { flex-direction: column; align-items: flex-start; }
}

/* ================= INNER PAGES (orchestrator-owned) ================= */
.breadcrumb {
  color: #f2ecdd;
  font-size: 15px;
  font-weight: 500;
  margin-top: 6px;
}

/* Simple centered intro block */
.intro { max-width: 860px; margin: 0 auto; text-align: center; }
.intro .eyebrow { text-align: center; }
.intro p { color: var(--muted); }

/* Story / plain text block */
.story { max-width: 860px; margin: 0 auto; }
.story h3 { font-family: var(--font-head); color: var(--gold); font-size: 20px; margin-bottom: 8px; }

/* Two-up media pair (photo + framed overlay), used on about/services */
.media-pair {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.media-pair img { width: 100%; height: auto; display: block; }

/* Photo with the source's "white-background-with-blue-lines" backdrop
   peeking behind it (Wix layered-card look). frame-bg has an explicit
   width/height so the replaced element never collapses. */
.photo-frame { position: relative; margin: 0 18px 18px 0; }
.photo-frame .frame-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.photo-frame .frame-bg {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  transform: translate(18px, 18px);
  opacity: 0.95;
}

/* Alternating service rows */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}
.service-row:last-child { margin-bottom: 0; }
.service-row.reverse .service-row-media { order: 2; }
.service-row-media img { width: 100%; height: auto; border-radius: 6px; box-shadow: var(--shadow); }
.service-row h3 { font-family: var(--font-head); color: var(--gold); font-size: 15px; letter-spacing: 0.02em; margin-bottom: 6px; }
.service-row h2 { font-family: var(--font-head); font-size: clamp(22px, 2.8vw, 30px); margin-bottom: 14px; }
.service-row .offer-label { font-weight: 700; margin: 14px 0 8px; }
.service-row ul { margin: 0 0 12px; padding-left: 20px; }
.service-row li { margin-bottom: 7px; color: var(--muted); }

/* Service areas */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 20px;
}
.areas-list span {
  background: #fff;
  border: 1px solid #e7e3d8;
  border-left: 4px solid var(--gold);
  padding: 14px 22px;
  border-radius: 4px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

/* Full gallery grid */
.gallery-grid {
  columns: 3;
  column-gap: 16px;
  margin-top: 30px;
}
.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 16px;
  break-inside: avoid;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.gallery-grid img:hover { transform: scale(1.02); filter: brightness(1.05); }

/* Vertical (video-still) grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
  align-items: start;
}
.video-grid img { width: 100%; height: auto; border-radius: 5px; }

/* Showcase video tiles (vertical 9:16, click-to-play with poster + controls) */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.showcase-tile {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}
.showcase-video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  height: auto;
  object-fit: cover;
  background: #000;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.contact-info { display: grid; gap: 22px; }
.contact-item h3 {
  font-family: var(--font-head);
  font-size: 17px;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-item p { margin: 0 0 4px; }
.contact-item a { color: var(--gold); font-weight: 600; text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }
.contact-media img { width: 100%; height: auto; border-radius: 6px; box-shadow: var(--shadow); }

#map {
  width: 100%;
  height: 420px;
  border-radius: 6px;
  overflow: hidden;
  z-index: 0;
}

/* Full-width split bands (services rows + about "why choose") */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.split-media { position: relative; min-height: 440px; }
.split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-text { display: flex; align-items: center; padding: 56px clamp(24px, 4vw, 56px); }
.split-text .inner { width: 100%; max-width: 560px; }
.split.green .split-text { background: var(--green-dark); }
.split.green .split-text, .split.green li { color: #e2e9df; }
.split.tan .split-text { background: var(--gold-header); }
.split.tan .split-text, .split.tan li { color: #22331d; }
.band-eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}
.split.green .band-eyebrow { color: var(--cream); }
.split.tan .band-eyebrow { color: var(--green-dark); }
.band-title { font-family: var(--font-head); font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 14px; }
.split.green .band-title { color: #fff; }
.split.tan .band-title { color: #22331d; }
.split-text ul { padding-left: 20px; margin: 0 0 12px; }
.split-text li { margin-bottom: 6px; }
.split-text .offer-label { font-weight: 700; margin: 14px 0 6px; }

/* Green form card (about + contact) */
.form-card {
  background: var(--green-dark);
  color: #f2ecdd;
  border-radius: 6px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.form-card h2 { font-family: var(--font-head); color: #fff; margin-bottom: 18px; text-align: left; }
.form-card .field label { color: #efe8d6; }
.form-card .btn { width: 100%; margin-top: 4px; }

/* Service areas (two-column) */
.areas { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.areas ul { list-style: none; margin: 0; padding: 0; font-size: 17px; }
.areas li { padding: 8px 0; border-bottom: 1px solid #e7e3d8; }
.areas li:last-child { border-bottom: none; }

@media (max-width: 900px) {
  .service-row { grid-template-columns: 1fr; gap: 26px; margin-bottom: 44px; }
  .service-row.reverse .service-row-media { order: 0; }
  .gallery-grid { columns: 2; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .split { grid-template-columns: 1fr; }
  .split-media { min-height: 260px; order: -1; }
  .split-text { padding: 40px 24px; }
  .areas { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 560px) {
  .gallery-grid { columns: 1; }
  .video-grid { grid-template-columns: 1fr; }
  .showcase-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
}
