/* ============================================
   BAM Haus Experiences LLC — Styles
   Palette driven by the BAM logo: red / yellow / blue
   ============================================ */

:root {
  --bam-red: #E63946;
  --bam-yellow: #F5C518;
  --bam-blue: #1D6FB8;
  --ink: #141414;
  --ink-soft: #3a3a3a;
  --muted: #6b6b6b;
  --paper: #FAF7F2;
  --paper-alt: #F1ECE4;
  --line: #1414141a;

  --font-display: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --max: 1200px;
  --header-h: 76px;
  --radius: 4px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* --- Section heads --- */
.section-head { margin-bottom: 48px; max-width: 780px; }
.section-head--light { color: var(--paper); }
.section-kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bam-red);
  margin-bottom: 14px;
}
.section-head--light .section-kicker { color: var(--bam-yellow); }
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-sub {
  margin-top: 14px;
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* --- Fade-ins --- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.fade-in.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .fade-in, .fade-in.is-visible { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.header--scrolled {
  background: rgba(250, 247, 242, 0.96);
  border-bottom-color: var(--line);
}
.header__container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
/* Overhanging masthead: logo sits much larger than the header and spills
   down into the hero below. Shrinks back to fit on scroll. */
.header__logo-link {
  flex-shrink: 0;
  display: block;
  align-self: flex-start;
  margin-top: 10px;
  position: relative;
  z-index: 2;
}
.header__logo {
  height: 132px;
  width: auto;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(20, 20, 20, 0.08));
  transition: height .35s var(--ease), filter .35s var(--ease);
}
.header--scrolled .header__logo {
  height: 56px;
  filter: drop-shadow(0 2px 4px rgba(20, 20, 20, 0.06));
}

.header__nav { margin-left: auto; }
.header__nav-list { list-style: none; display: flex; gap: 28px; }
.header__nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  transition: color .2s var(--ease);
}
.header__nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--bam-red);
  transition: width .3s var(--ease);
}
.header__nav-link:hover { color: var(--bam-red); }
.header__nav-link:hover::after { width: 100%; }

.header__socials { margin-left: 8px; }
.header__menu-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-left: auto;
}
.header__menu-toggle span {
  width: 22px; height: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.header__menu-toggle--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__menu-toggle--open span:nth-child(2) { opacity: 0; }
.header__menu-toggle--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Socials (shared) --- */
.socials { list-style: none; display: flex; gap: 10px; align-items: center; }
.socials__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 999px;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.socials__link svg { width: 16px; height: 16px; }
.socials__link:hover {
  transform: translateY(-2px);
  background: var(--ink);
  color: var(--paper);
}
.socials--large { gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.socials--large .socials__link {
  width: auto; height: auto;
  padding: 14px 22px;
  border-radius: 999px;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
}
.socials--large .socials__link svg { width: 18px; height: 18px; }

/* ============================================
   1. INTRODUCTION
   ============================================ */
.intro {
  position: relative;
  min-height: 100vh;
  /* Extra top space so the overhanging logo has room to land */
  padding: calc(var(--header-h) + 110px) 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--paper);
}
.intro__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.intro__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}
.intro__blob--red {
  width: 420px; height: 420px;
  background: var(--bam-red);
  top: -120px; right: -80px;
}
.intro__blob--yellow {
  width: 380px; height: 380px;
  background: var(--bam-yellow);
  bottom: -140px; left: 10%;
}
.intro__blob--blue {
  width: 480px; height: 480px;
  background: var(--bam-blue);
  top: 30%; right: 20%;
}

.intro__inner { position: relative; z-index: 1; width: 100%; }
.intro__eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.intro__tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.75rem, 8vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 14ch;
}
.intro__tagline-accent {
  color: var(--bam-red);
  position: relative;
  display: inline-block;
}
.intro__tagline-accent::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0.08em;
  width: 100%; height: 0.18em;
  background: var(--bam-yellow);
  z-index: -1;
  transform: skewX(-8deg);
}
.intro__subtext {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 48px;
}

.intro__reel {
  position: relative;
  max-width: 760px;
}
.intro__reel-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow:
    14px 14px 0 var(--bam-yellow),
    14px 14px 0 1px var(--ink);
  transition: transform .4s var(--ease);
}
.intro__reel-frame:hover { transform: translate(-2px, -2px); }
.intro__reel-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  text-align: center;
  gap: 14px;
  background:
    linear-gradient(rgba(27,27,27,0.72), rgba(27,27,27,0.72)),
    url("images/banner-logo.png") center / cover no-repeat,
    var(--ink);
}
.intro__reel-icon { width: 64px; height: 64px; color: var(--bam-yellow); }
.intro__reel-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
}
.intro__reel-sub {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ============================================
   2. ABOUT
   ============================================ */
.about {
  padding: 120px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
  gap: 64px;
  align-items: center;
}
.about__body {
  max-width: 780px;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.about__body p + p { margin-top: 20px; }
.about__portrait img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 10px 10px 0 var(--bam-yellow), 10px 10px 0 1px var(--ink);
}
.about__lead {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 28px !important;
}

/* ============================================
   3. SERVICES
   ============================================ */
.services {
  padding: 120px 0;
  background: var(--paper-alt);
}
.services__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.services__text-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.services__media-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.service__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink);
}
.service__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.service__media:hover img { transform: scale(1.04); }
.service__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(20,20,20,0.25));
  pointer-events: none;
}
.service-item { padding: 12px 0; }
.service__number {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--bam-blue);
  margin-bottom: 18px;
}
.service-item:nth-child(1) .service__number { color: var(--bam-red); }
.service-item:nth-child(2) .service__number { color: var(--bam-yellow); }
.service-item:nth-child(3) .service__number { color: var(--bam-blue); }
.service-item:nth-child(4) .service__number { color: var(--bam-red); }
.service__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.service__desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 52ch;
}

/* ============================================
   4. TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 120px 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 260px; height: 260px;
  background: var(--bam-red);
  border-radius: 50%;
  opacity: 0.12;
  filter: blur(30px);
  pointer-events: none;
}
.testimonials::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -60px;
  width: 300px; height: 300px;
  background: var(--bam-blue);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(40px);
  pointer-events: none;
}
.testimonials .section-title { color: var(--paper); }
/* --- Carousel (testimonials) --- */
.carousel {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  z-index: 1;
}
.carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.carousel__viewport::-webkit-scrollbar { display: none; }
.carousel__viewport:focus-visible {
  outline: 2px solid var(--bam-yellow);
  outline-offset: 6px;
  border-radius: 8px;
}

.carousel__track {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.carousel__slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  padding: 8px 4px;
  box-sizing: border-box;
}

/* Nav buttons */
.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
  z-index: 3;
}
.carousel__nav svg { width: 20px; height: 20px; }
.carousel__nav:hover,
.carousel__nav:focus-visible {
  background: var(--bam-yellow);
  border-color: var(--bam-yellow);
  color: var(--ink);
  outline: none;
  transform: translateY(-50%) scale(1.06);
}
.carousel__nav--prev { left: -60px; }
.carousel__nav--next { right: -60px; }

/* Dots */
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.carousel__dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(250,247,242,0.25);
  cursor: pointer;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.carousel__dot:hover { background: rgba(250,247,242,0.55); }
.carousel__dot--active {
  background: var(--bam-yellow);
  transform: scale(1.35);
}
.carousel__dot:focus-visible {
  outline: 2px solid var(--bam-yellow);
  outline-offset: 3px;
}

/* Testimonial card */
.testimonial {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 44px 44px 32px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: -14px;
  left: 28px;
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--bam-yellow);
  opacity: 0.9;
  pointer-events: none;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.55;
  margin: 0;
  color: var(--paper);
}
.testimonial figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}
.testimonial__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--bam-yellow);
  letter-spacing: 0.02em;
}
.testimonial__title {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: rgba(250,247,242,0.65);
}

/* ============================================
   5. FOLLOW
   ============================================ */
.follow {
  padding: 120px 0;
  background: var(--paper);
}
.follow__feed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.follow__tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ink);
}
.follow__tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.follow__tile:hover img { transform: scale(1.06); }

/* ============================================
   6. CONTACT
   ============================================ */
.contact {
  padding: 120px 0;
  background: var(--paper-alt);
  border-top: 1px solid var(--line);
}
.contact__container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact__intro { max-width: 480px; }
.contact__lede {
  margin: 18px 0 32px;
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 44ch;
}
.contact__direct { border-top: 1px solid var(--line); padding-top: 24px; }
.contact__email {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--bam-red);
  border-bottom: 2px solid transparent;
  transition: border-color .2s var(--ease);
}
.contact__email:hover { border-bottom-color: var(--bam-red); }
.contact__city {
  margin-top: 8px;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact__form {
  background: var(--paper);
  padding: 40px;
  border-radius: 6px;
  border: 1px solid var(--line);
  box-shadow: 10px 10px 0 var(--bam-blue);
}
.contact__field { margin-bottom: 22px; }
.contact__field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.contact__field input,
.contact__field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--paper-alt);
  border: 1.5px solid transparent;
  border-radius: 4px;
  padding: 14px 16px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.contact__field input:focus,
.contact__field textarea:focus {
  outline: none;
  background: var(--paper);
  border-color: var(--bam-red);
}
.contact__field textarea { resize: vertical; min-height: 120px; }
.contact__field .contact__error {
  display: block;
  font-size: 0.82rem;
  color: var(--bam-red);
  margin-top: 6px;
  min-height: 1em;
}
.contact__field input.is-error,
.contact__field textarea.is-error { border-color: var(--bam-red); }

.contact__submit {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 4px;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.contact__submit:hover { background: var(--bam-red); transform: translateY(-2px); }
.contact__success {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--bam-blue);
  font-weight: 500;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity .3s var(--ease), max-height .3s var(--ease);
}
.contact__success--show { opacity: 1; max-height: 80px; }

/* Form-level notice (used for network/server errors). Same animation
   behavior as .contact__success; color communicates state. */
.contact__notice {
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity .3s var(--ease), max-height .3s var(--ease);
}
.contact__notice--error { color: var(--bam-red); }
.contact__notice--show { opacity: 1; max-height: 120px; }

/* Disabled submit button during an in-flight request. */
.contact__submit[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0 0;
}
.footer__container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer__logo {
  height: 96px;
  width: auto;
  margin-bottom: 20px;
  display: block;
  /* Transparent logo on dark: the black "HAUS" type is hard to read here,
     so we lean into the B-A-M as the mark and let HAUS sit as a quiet stamp. */
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}
.footer__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}
.footer__meta {
  font-size: 0.85rem;
  color: rgba(250,247,242,0.55);
  margin-top: 6px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bam-yellow);
  margin-bottom: 16px;
}
.footer__line { margin-bottom: 6px; }
.footer__line a { color: rgba(250,247,242,0.85); transition: color .2s var(--ease); }
.footer__line a:hover { color: var(--bam-yellow); }
.footer__social .socials__link {
  border-color: rgba(250,247,242,0.4);
  color: var(--paper);
}
.footer__social .socials__link:hover {
  background: var(--bam-yellow);
  border-color: var(--bam-yellow);
  color: var(--ink);
}

.footer__bottom {
  border-top: 1px solid rgba(250,247,242,0.1);
  padding: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(250,247,242,0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .header__logo { height: 96px; }
  .header--scrolled .header__logo { height: 48px; }
  .intro { padding-top: calc(var(--header-h) + 80px); }

  .header__nav, .header__socials { display: none; }
  .header__menu-toggle { display: flex; }
  .header--menu-open .header__nav {
    display: block;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 24px;
  }
  .header--menu-open .header__nav-list { flex-direction: column; gap: 14px; }
  .header--menu-open .header__socials {
    display: flex;
    position: absolute;
    top: 100%; right: 24px;
    margin-top: 220px;
  }

  .services__list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services__text-col { gap: 40px; }
  .services__media-col { gap: 24px; }

  /* Carousel: tuck nav buttons inside on small screens */
  .carousel__nav--prev { left: 4px; }
  .carousel__nav--next { right: 4px; }
  .testimonial { padding: 36px 24px 24px; min-height: 340px; }
  .testimonial::before { left: 16px; font-size: 5rem; }
  .testimonial blockquote { font-size: 1.05rem; }

  .follow__feed { grid-template-columns: repeat(2, 1fr); }

  .contact__container { grid-template-columns: 1fr; gap: 48px; }
  .contact__form { padding: 28px; box-shadow: 6px 6px 0 var(--bam-blue); }

  .footer__container { grid-template-columns: 1fr; gap: 32px; }

  .about, .services, .testimonials, .follow, .contact { padding: 80px 0; }

  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__portrait { max-width: 320px; }
}

@media (max-width: 560px) {
  .header__logo { height: 76px; }
  .header--scrolled .header__logo { height: 44px; }
  .intro { padding-top: calc(var(--header-h) + 60px); }

  .intro__reel-frame { box-shadow: 8px 8px 0 var(--bam-yellow), 8px 8px 0 1px var(--ink); }
  .services__list { gap: 56px; }
}
