/* =========================================================
   WILD HOUSE — CINEMATIC LANDING
   Desktop + Mobile faithful to supplied reference
   ========================================================= */

:root {
  --bg: #080b0b;
  --bg-soft: #0d1111;
  --panel: #101414;
  --panel-2: #141919;
  --line: #303636;

  --white: #f4f4f2;
  --muted: #a3aaaa;
  --cyan: #70e2e4;
  --cyan-soft: #9ef3f4;

  --font-display: "Anton", sans-serif;
  --font-condensed: "Barlow Condensed", sans-serif;
  --font-body: "Inter", sans-serif;

  --container: 1280px;
  --section-space: clamp(4.5rem, 7vw, 7.5rem);
  --transition: 180ms ease;
}

/* -------------------------
   Reset
   ------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

::selection {
  color: var(--bg);
  background: var(--cyan);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 1rem;
  left: 1rem;
  padding: 0.65rem 0.9rem;
  color: var(--bg);
  background: var(--cyan);
  font-weight: 700;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: none;
}

/* -------------------------
   Hero
   ------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #111;
}

.hero__background,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero__slide.is-active {
  z-index: 1;
  opacity: 1;
}

.hero__overlay,
.hero__content {
  transition: opacity 700ms ease;
}

.js .hero--sequence:not(.is-content-slide) .hero__overlay,
.js .hero--sequence:not(.is-content-slide) .hero__content {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.js .hero--sequence.is-content-slide .hero__overlay,
.js .hero--sequence.is-content-slide .hero__content {
  visibility: visible;
  opacity: 1;
}

.hero__background img,
.hero__background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__background-youtube {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  border: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.08) 48%,
      rgba(0, 0, 0, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.16),
      rgba(0, 0, 0, 0.04) 62%,
      rgba(0, 0, 0, 0.28)
    );
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 100svh;
}

.navbar {
  display: flex;
  min-height: 7rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-grid;
  justify-items: center;
  gap: 0.25rem;
  color: var(--white);
  text-decoration: none;
}

.brand__mark {
  width: 2.9rem;
}

.brand__mark svg {
  width: 100%;
  fill: currentColor;
}

.brand__name {
  font-family: var(--font-condensed);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.brand .custom-logo-link,
.about-brand .custom-logo-link {
  display: inline-grid;
  place-items: center;
}

.brand .custom-logo {
  width: 2.9rem;
  height: auto;
}

.about-brand .custom-logo {
  width: min(11rem, 48vw);
  height: auto;
}

.desktop-nav {
  display: none;
}

.menu-toggle {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-content: center;
  gap: 0.3rem;
  padding: 0;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--white);
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  display: grid;
  width: min(22rem, 86vw);
  height: 100dvh;
  align-content: center;
  gap: 0.3rem;
  padding: 2rem;
  background: rgba(5, 8, 8, 0.98);
  border-left: 1px solid var(--line);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav a {
  padding: 0.85rem 0;
  color: var(--white);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero__content {
  position: absolute;
  top: 50%;
  left: 1rem;
  max-width: 37rem;
  transform: translateY(-38%);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 5.1rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero__content p {
  max-width: 31rem;
  margin: 1.1rem 0 0;
  font-family: var(--font-condensed);
  font-size: clamp(0.9rem, 2.4vw, 1.05rem);
  line-height: 1.35;
}

/* -------------------------
   Generic sections
   ------------------------- */
.section {
  padding: var(--section-space) 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.section-title {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
}

.section-title h2,
.colombia-section__intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1;
  text-transform: uppercase;
}

.section-title h2 span,
.colombia-section__intro h2 span {
  color: var(--cyan);
}

/* -------------------------
   About
   ------------------------- */
.about-section {
  padding-top: clamp(4rem, 6vw, 6rem);
}

.about-grid {
  display: grid;
  gap: 2.7rem;
  align-items: center;
}

.about-brand {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.5rem;
  min-height: 15rem;
  color: var(--cyan);
}

.about-brand__mark {
  width: 100%;
  max-width: 7rem;
  height: auto;
}

.about-brand__mark svg {
  fill: currentColor;
}

.about-brand strong {
  font-family: var(--font-condensed);
  font-size: 1.65rem;
  letter-spacing: 0.28em;
}

.about-copy h2 {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(0.5rem, 6vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}

.about-copy h2 span {
  color: var(--cyan);
}

.about-copy p {
  max-width: 42rem;
  margin: 0 0 1rem;
  color: #e4e5e3;
  font-size: 0.93rem;
  line-height: 1.55;
}

.pillars {
  display: grid;
  gap: 0.9rem;
  margin-top: clamp(3rem, 5vw, 4.5rem);
}

.pillar-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 8rem;
  padding: 1.15rem;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.pillar-card__icon {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  color: var(--white);
}

.pillar-card__icon svg {
  width: 2.7rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.pillar-card__icon-image {
  width: 2.7rem;
  height: 2.7rem;
  object-fit: contain;
}

.pillar-card h3 {
  margin: 0;
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pillar-card p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.69rem;
  line-height: 1.4;
}

/* -------------------------
   Projects
   ------------------------- */
.projects-section {
  position: relative;
}

.projects-shell {
  position: relative;
  padding-bottom: 2.5rem;
}

.projects-track {
  display: grid;
  grid-auto-columns: minmax(73%, 1fr);
  grid-auto-flow: column;
  gap: 1.2rem;
  overflow-x: hidden;
  padding: 0 0.15rem 1rem;
  scrollbar-width: none;
}

.projects-track::-webkit-scrollbar {
  display: none;
}

.project-card {
  scroll-snap-align: start;
}

.project-card > a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.project-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 0.77;
  background: var(--panel);
  border: 1px solid #b8bcbc;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.project-card:hover img {
  transform: scale(1.025);
}

.project-card h3 {
  margin: 0.65rem 0 0;
  color: var(--cyan-soft);
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 400;
  text-align: center;
}

.carousel-arrow,
.gallery-arrow {
  border: 0;
  color: var(--cyan);
  background: transparent;
  cursor: pointer;
  transition:
    color var(--transition),
    transform var(--transition);
}

.carousel-arrow:hover,
.gallery-arrow:hover {
  color: var(--white);
}

.carousel-arrow {
  position: absolute;
  z-index: 3;
  bottom: 0;
  font-size: 1.5rem;
}

.carousel-arrow--prev {
  left: 0;
}

.carousel-arrow--next {
  right: 0;
}

/* -------------------------
   Press
   ------------------------- */
.press-grid {
  display: grid;
}

.press-card {
  min-height: 14rem;
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.press-card:last-child {
  border-bottom: 0;
}

.press-card__publisher {
  min-height: 3.4rem;
  display: grid;
  place-items: center;
  font-family: var(--font-condensed);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.press-card__publisher--serif {
  font-family: Georgia, serif;
  font-size: 2.55rem;
  font-weight: 400;
}

.press-card p {
  max-width: 17rem;
  margin: 1rem auto;
  color: #dedfdd;
  font-size: 0.72rem;
  line-height: 1.45;
}

.press-card a {
  color: var(--cyan);
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  text-decoration: none;
}

/* -------------------------
   Founders
   ------------------------- */
.founders-grid {
  display: grid;
  gap: 2.4rem;
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(8.5rem, 0.7fr) minmax(0, 1.3fr);
  gap: 1.2rem;
  align-items: stretch;
}

.founder-card figure {
  margin: 0;
  overflow: hidden;
  background: var(--panel);
}

.founder-card figure img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
  filter: grayscale(1);
}

.founder-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 5vw, 2.35rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.founder-card h3 span {
  color: var(--cyan);
}

.founder-card small {
  color: var(--cyan);
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-card p {
  max-width: 24rem;
  margin: 1rem 0;
  color: #dfdfdc;
  font-size: 0.78rem;
  line-height: 1.5;
}

.founder-card__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.founder-card__links a {
  color: var(--cyan-soft);
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  text-decoration: none;
}

.founder-card__links .imdb {
  padding: 0.1rem 0.35rem;
  border: 1px solid var(--cyan);
}

/* -------------------------
   Why Colombia
   ------------------------- */
.colombia-section {
  padding-top: var(--section-space);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.colombia-section__intro {
  padding-bottom: clamp(2rem, 4vw, 3.2rem);
  text-align: center;
}

.colombia-section__intro p {
  max-width: 52rem;
  margin: 1.2rem auto 0;
  color: #d6d7d4;
  font-size: 0.84rem;
  line-height: 1.5;
}

.colombia-gallery {
  position: relative;
  min-height: clamp(20rem, 48vw, 37rem);
  overflow: hidden;
}

.colombia-gallery figure {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 450ms ease;
}

.colombia-gallery figure.is-active {
  opacity: 1;
}

.colombia-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.colombia-gallery::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 11, 11, 0.1),
    rgba(8, 11, 11, 0.2)
  );
  content: "";
}

.gallery-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  font-size: 1.6rem;
  transform: translateY(-50%);
}

.gallery-arrow:hover {
  transform: translateY(-50%) scale(1.08);
}

.gallery-arrow--prev {
  left: clamp(1rem, 6vw, 6rem);
}

.gallery-arrow--next {
  right: clamp(1rem, 6vw, 6rem);
}

/* -------------------------
   Partners
   ------------------------- */
.partners-section {
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
}

.section-title--white h2 {
  color: var(--white);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.partner-logo {
  display: grid;
  min-height: 7rem;
  place-items: center;
  padding: 1.1rem;
  background: var(--bg);
}

.partner-logo img {
  max-width: 8.5rem;
  max-height: 3.5rem;
  object-fit: contain;
}

/* -------------------------
   Footer
   ------------------------- */
.footer {
  padding: 2.2rem 0 1.7rem;
  background: var(--bg);
}

.footer__inner {
  display: grid;
  justify-items: center;
  gap: 1.2rem;
  text-align: center;
}

.footer__socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-family: var(--font-condensed);
  font-size: 2.25rem;
  font-weight: 700;
  text-decoration: none;
}

.footer__social-icon {
  display: block;
  max-width: 24px;
  max-height: 20px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.footer__social-icon--imdb {
  max-width: 30px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1rem;
}

.footer__nav a {
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 0.8rem;
  color: var(--muted);
  font-family: var(--font-condensed);
  font-size: 0.68rem;
}

.footer__contact a {
  color: var(--cyan);
  text-decoration: none;
}

.footer__copyright {
  margin: 0;
  color: var(--cyan);
  font-family: var(--font-condensed);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* -------------------------
   Tablet
   ------------------------- */
@media (min-width: 42rem) {
  .container {
    width: min(calc(100% - 4rem), var(--container));
  }

  .hero__content {
    left: 2rem;
  }

  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }

  .projects-track {
    grid-auto-columns: minmax(42%, 1fr);
  }

  .press-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .press-card {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .press-card:last-child {
    border-right: 0;
  }

  .founders-grid {
    gap: 1.5rem;
  }

  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* -------------------------
   Desktop
   ------------------------- */
@media (min-width: 64rem) {
  .container {
    width: min(calc(100% - 7rem), var(--container));
  }

  .navbar {
    min-height: 8rem;
  }

  .menu-toggle,
  .mobile-nav {
    display: none;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 2.3rem;
  }

  .desktop-nav a {
    color: var(--white);
    font-family: var(--font-condensed);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
      color var(--transition),
      opacity var(--transition);
  }

  .desktop-nav a:hover {
    color: var(--cyan);
  }

  .hero__content {
    top: 48%;
    left: clamp(3rem, 7vw, 7rem);
    transform: translateY(-30%);
  }

  .hero h1 {
    font-size: clamp(4.6rem, 7vw, 7rem);
  }

  .hero__content p {
    font-size: 1rem;
  }

  .about-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
  }

  .about-brand {
    min-height: 18rem;
  }

  .pillars {
    margin-top: 4rem;
  }

  .projects-track {
    grid-auto-columns: minmax(28%, 1fr);
    gap: 2.3rem;
    overflow-x: hidden;
  }

  .projects-shell {
    padding-bottom: 0;
  }

  .carousel-arrow {
    display: block;
  }

  .press-card {
    padding-inline: 3rem;
  }

  .founders-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .founder-card {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1rem;
  }

  .founder-card figure img {
    min-height: 23rem;
  }

  .founder-card h3 {
    font-size: clamp(1.8rem, 2.3vw, 2.7rem);
  }

  .colombia-gallery {
    min-height: 36rem;
  }

  .partner-logo {
    min-height: 8rem;
  }
}

/* -------------------------
   Wide
   ------------------------- */
@media (min-width: 90rem) {
  :root {
    --container: 1380px;
  }
}

/* =========================================================
   CINEMATIC SCROLL REVEALS
   ========================================================= */
.reveal {
  --reveal-distance-y: 24px;
  --reveal-distance-x: 0px;
  --reveal-scale: 1;
  --reveal-opacity-duration: 650ms;
  --reveal-transform-duration: 860ms;
  --reveal-ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  opacity: 1;
  transform: none;
  will-change: opacity, transform;
}

.reveal-fade {
  --reveal-distance-y: 0px;
}

.reveal-up {
  --reveal-distance-y: 24px;
}

.reveal-left {
  --reveal-distance-x: -28px;
}

.reveal-right {
  --reveal-distance-x: 28px;
}

.reveal-scale {
  --reveal-distance-y: 28px;
  --reveal-scale: 0.985;
}

.js .reveal {
  transition:
    opacity var(--reveal-opacity-duration) var(--reveal-ease),
    transform var(--reveal-transform-duration) var(--reveal-ease);
}

.js .reveal:not(.is-visible) {
  opacity: 0;
  transform: translate3d(var(--reveal-distance-x), var(--reveal-distance-y), 0)
    scale(var(--reveal-scale));
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero__title-line {
  display: block;
}

.js .hero__title-line {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity 560ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.js .hero__title.is-visible .hero__title-line {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 48rem) {
  .reveal-up,
  .reveal-scale,
  .reveal-left,
  .reveal-right {
    --reveal-distance-y: 20px;
    --reveal-distance-x: 0px;
  }
}

/* -------------------------
   Reduced motion
   ------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .projects-track {
    scroll-behavior: auto;
  }

  .reveal,
  .hero__title-line {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* -------------------------
   Mobile refinements
   ------------------------- */
@media (max-width: 41.99rem) {
  .brand .brand__logo {
    display: block;
    width: 6.5rem;
    max-height: 4rem;
    object-fit: contain;
  }

  .about-grid {
    gap: 1.25rem;
    align-items: center;
  }

  .about-brand {
    min-height: 0;
  }

  .about-brand__logo,
  .about-brand__mark {
    width: 100%;
    max-width: 7rem;
    height: auto;
  }

  .about-brand strong {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-align: center;
  }

  .about-copy h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.7rem, 8vw, 2.4rem);
    text-align: left;
  }

  .about-copy p {
    margin-bottom: 0.7rem;
    font-size: 0.78rem;
    line-height: 1.45;
  }
}

/* About: diseño móvil en dos columnas */
@media (max-width: 41.99rem) {
  .about-grid {
    align-items: center;
  }

  .about-brand {
    min-height: 0;
  }

  .about-brand__logo,
  .about-brand__mark {
    width: 100%;
    max-width: 7rem;
    height: auto;
  }

  .about-brand strong {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-align: center;
  }

  .about-copy h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.7rem, 8vw, 2.4rem);
    text-align: center;
  }

  .about-copy p {
    margin-bottom: 0.7rem;
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .brand .brand__logo {
    display: block;
    width: 6.5rem;
    max-height: 4rem;
    object-fit: contain;
  }
}
