/**
 * KNOT STUDIO — Component Styles
 * ============================================================
 * Reusable UI patterns. Requires tokens.css + base.css.
 * ============================================================
 */

@import './tokens.css';


/* ══════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  border: var(--border-width-accent) solid transparent;
  cursor: pointer;
  transition:
    color var(--duration-base) var(--ease),
    background var(--duration-base) var(--ease),
    border-color var(--duration-base) var(--ease),
    opacity var(--duration-base) var(--ease);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn:focus-visible {
  outline: 2px solid var(--color-sky);
  outline-offset: 3px;
}

/* Primary — Sky fill on Night */
.btn--primary {
  background: var(--color-sky);
  color: var(--color-night);
  border-color: var(--color-sky);
}
.btn--primary:hover {
  background: transparent;
  color: var(--color-sky);
}

/* Ghost — outline on dark backgrounds */
.btn--ghost {
  background: transparent;
  color: var(--color-beige);
  border-color: rgba(243, 236, 224, 0.3);
}
.btn--ghost:hover {
  border-color: var(--color-sky);
  color: var(--color-sky);
}

/* Ghost dark — outline on light backgrounds */
.btn--ghost-dark {
  background: transparent;
  color: var(--color-night);
  border-color: rgba(14, 22, 32, 0.25);
}
.btn--ghost-dark:hover {
  border-color: var(--color-night);
  color: var(--color-night);
}

/* Night fill */
.btn--night {
  background: var(--color-night);
  color: var(--color-beige);
  border-color: var(--color-night);
}
.btn--night:hover {
  background: transparent;
  color: var(--color-night);
}

/* Sizes */
.btn--sm {
  font-size: 0.625rem;
  padding: 0.625rem 1.125rem;
  letter-spacing: 0.14em;
}
.btn--lg {
  font-size: var(--text-sm);
  padding: 1.125rem 2.25rem;
}

/* Icon arrow button — text link style */
.btn--arrow {
  background: none;
  border: none;
  color: var(--color-sky);
  padding: 0;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  gap: var(--space-2);
}
.btn--arrow::after {
  content: '→';
  display: inline-block;
  transition: transform var(--duration-base) var(--ease);
}
.btn--arrow:hover::after { transform: translateX(4px); }


/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding-block: var(--space-5);
  padding-inline: var(--page-padding-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--duration-slow) var(--ease),
              padding var(--duration-base) var(--ease);
}

/* Scrolled state — add via JS */
.nav.is-scrolled {
  background: rgba(14, 22, 32, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding-block: var(--space-4);
  border-bottom: var(--border-width) solid var(--color-border-light);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}
.nav__logo-mark {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav__link {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(243, 236, 224, 0.6);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease);
}
.nav__link:hover,
.nav__link.is-active { color: var(--color-beige); }

.nav__cta { margin-left: var(--space-4); }

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-2);
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-beige);
  transition: transform var(--duration-base) var(--ease),
              opacity var(--duration-base) var(--ease);
}

@media (max-width: 768px) {
  .nav {
    padding-inline: var(--page-padding-x);
  }
  .nav__links,
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  /* Open state */
  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--color-night);
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    z-index: calc(var(--z-sticky) - 1);
  }
  .nav.is-open .nav__link {
    font-size: var(--text-h5);
    letter-spacing: 0.05em;
    color: var(--color-beige);
  }
}


/* ══════════════════════════════════════════════════════════
   SECTION HEADER / EYEBROW PATTERN
   ══════════════════════════════════════════════════════════ */

.section-header {
  margin-bottom: var(--space-16);
}
.section-header--center { text-align: center; }
.section-header--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-8);
}

.section-header__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
/* Numbered eyebrow line — e.g. "01 ——" */
.section-header__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-sky);
  flex-shrink: 0;
}

.section-header__title {
  max-width: 20ch;
}
.section-header--center .section-header__title {
  margin-inline: auto;
  max-width: 28ch;
}

.section-header__body {
  max-width: 48ch;
  margin-top: var(--space-4);
}
.section-header--center .section-header__body {
  margin-inline: auto;
}


/* ══════════════════════════════════════════════════════════
   SERVICE ROW
   ══════════════════════════════════════════════════════════ */

.service-list {
  list-style: none;
  border-top: var(--border-width) solid var(--color-border-light);
}

.service-row {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  align-items: center;
  gap: var(--space-8);
  padding-block: var(--space-8);
  border-bottom: var(--border-width) solid var(--color-border-light);
  cursor: pointer;
  transition: gap var(--duration-base) var(--ease);
  text-decoration: none;
  color: inherit;
}
.service-row:hover { gap: calc(var(--space-8) + var(--space-2)); }

.service-row__number {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  color: var(--color-sky);
}

.service-row__title {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: var(--fw-semibold);
  color: var(--color-beige);
  letter-spacing: var(--ls-snug);
  transition: color var(--duration-fast) var(--ease);
}
.service-row:hover .service-row__title { color: var(--color-sky); }

.service-row__arrow {
  font-size: var(--text-h4);
  color: var(--color-sky);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--duration-base) var(--ease),
              transform var(--duration-base) var(--ease);
}
.service-row:hover .service-row__arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 640px) {
  .service-row {
    grid-template-columns: 2.5rem 1fr;
  }
  .service-row__arrow { display: none; }
}


/* ══════════════════════════════════════════════════════════
   CARDS
   ══════════════════════════════════════════════════════════ */

/* Base card */
.card {
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--duration-base) var(--ease),
              transform var(--duration-base) var(--ease);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-beige);
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease);
}
.card:hover .card__media img { transform: scale(1.04); }

.card__body {
  padding: var(--space-8);
}

.card__tag {
  margin-bottom: var(--space-4);
}

.card__title {
  margin-bottom: var(--space-3);
}

.card__copy {
  margin-bottom: var(--space-6);
}

/* Dark card variant */
.card--dark {
  background: rgba(243, 236, 224, 0.04);
  border: var(--border-width) solid var(--color-border-light);
  box-shadow: none;
}
.card--dark:hover {
  background: rgba(243, 236, 224, 0.07);
  box-shadow: none;
  transform: none;
  border-color: rgba(162, 192, 221, 0.3);
}
.card--dark .card__body { padding: var(--space-8); }

/* Stat / number card */
.card--stat {
  background: transparent;
  border: var(--border-width) solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  text-align: center;
  box-shadow: none;
}
.card--stat:hover {
  background: rgba(162, 192, 221, 0.06);
  transform: none;
  box-shadow: none;
}
.card--stat__number {
  font-family: var(--font-heading);
  font-size: var(--text-h1);
  font-weight: var(--fw-bold);
  color: var(--color-sky);
  letter-spacing: var(--ls-tight);
  line-height: 1;
  margin-bottom: var(--space-3);
}
.card--stat__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(243, 236, 224, 0.5);
}


/* ══════════════════════════════════════════════════════════
   TAGS / PILLS
   ══════════════════════════════════════════════════════════ */

.tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3125rem 0.75rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.tag--sky {
  background: rgba(162, 192, 221, 0.12);
  color: var(--color-sky);
  border: var(--border-width) solid rgba(162, 192, 221, 0.25);
}
.tag--night {
  background: var(--color-night);
  color: var(--color-sky);
  border: var(--border-width) solid var(--color-border-light);
}
.tag--beige {
  background: rgba(243, 236, 224, 0.1);
  color: var(--color-beige);
  border: var(--border-width) solid rgba(243, 236, 224, 0.2);
}
.tag--burgundy {
  background: rgba(73, 11, 26, 0.6);
  color: var(--color-beige);
  border: var(--border-width) solid rgba(73, 11, 26, 0.8);
}


/* ══════════════════════════════════════════════════════════
   TICKER / MARQUEE STRIP
   ══════════════════════════════════════════════════════════ */

.ticker {
  overflow: hidden;
  padding-block: var(--space-5);
  border-top: var(--border-width) solid var(--color-border-light);
  border-bottom: var(--border-width) solid var(--color-border-light);
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  width: max-content;
  animation: ticker-scroll 24s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }

.ticker__item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: rgba(243, 236, 224, 0.4);
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker__item::before {
  content: '✦';
  color: var(--color-sky);
  font-size: 0.5rem;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: var(--space-20);
  padding-inline: var(--page-padding-x);
  position: relative;
  overflow: hidden;
  background: var(--color-night);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
/* Gradient overlay */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--color-night) 0%,
    rgba(14, 22, 32, 0.2) 60%,
    transparent 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero__eyebrow {
  margin-bottom: var(--space-6);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-h1);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-none);
  color: var(--color-beige);
  margin-bottom: var(--space-8);
}
/* Sky accent word */
.hero__title em {
  font-style: normal;
  color: var(--color-sky);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: var(--fw-regular);
  line-height: var(--lh-loose);
  color: rgba(243, 236, 224, 0.6);
  max-width: 52ch;
  margin-bottom: var(--space-10);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  right: var(--page-padding-x);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 236, 224, 0.35);
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: var(--color-sky);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}


/* ══════════════════════════════════════════════════════════
   ACCENT RULE / DECORATIVE ELEMENTS
   ══════════════════════════════════════════════════════════ */

/* Horizontal rule with label */
.labeled-rule {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  color: var(--color-sky);
}
.labeled-rule::before,
.labeled-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border-light);
}
.labeled-rule::before { max-width: 32px; }


/* ══════════════════════════════════════════════════════════
   MEDIA / IMAGE FRAMES
   ══════════════════════════════════════════════════════════ */

/* Aspect ratio image container */
.media {
  position: relative;
  overflow: hidden;
  background: var(--color-beige);
}
.media--square   { aspect-ratio: 1 / 1; }
.media--portrait { aspect-ratio: 3 / 4; }
.media--landscape { aspect-ratio: 16 / 9; }
.media--cinema   { aspect-ratio: 21 / 9; }

.media img,
.media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sky border frame */
.media--framed {
  box-shadow: 8px 8px 0 var(--color-sky);
}

/* Caption */
.media__caption {
  margin-top: var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}


/* ══════════════════════════════════════════════════════════
   TESTIMONIAL / PULL QUOTE
   ══════════════════════════════════════════════════════════ */

.quote {
  position: relative;
  padding-left: var(--space-8);
  border-left: 2px solid var(--color-sky);
}

.quote__mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--color-sky);
  opacity: 0.25;
  position: absolute;
  top: -0.1em;
  left: -0.25em;
  user-select: none;
}

.quote__text {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-snug);
  line-height: 1.3;
  color: var(--color-beige);
  margin-bottom: var(--space-6);
}

.quote__attribution {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.quote__name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-sky);
  letter-spacing: 0.04em;
}
.quote__role {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: rgba(243, 236, 224, 0.4);
  letter-spacing: var(--ls-wide);
}


/* ══════════════════════════════════════════════════════════
   TEAM CARD
   ══════════════════════════════════════════════════════════ */

.team-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.team-card__photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-stone);
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter var(--duration-slow) var(--ease);
}
.team-card:hover .team-card__photo img { filter: grayscale(0%); }

.team-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: var(--fw-semibold);
  color: var(--color-beige);
  letter-spacing: var(--ls-snug);
  margin-bottom: var(--space-1);
}
.team-card__title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-sky);
}


/* ══════════════════════════════════════════════════════════
   PROCESS STEP
   ══════════════════════════════════════════════════════════ */

.process-step {
  display: flex;
  gap: var(--space-6);
}

.process-step__number {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: var(--fw-bold);
  color: rgba(162, 192, 221, 0.15);
  letter-spacing: var(--ls-tight);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
  padding-top: 0.1em;
}

.process-step__body { flex: 1; }
.process-step__title {
  margin-bottom: var(--space-3);
}
.process-step__copy {}


/* ══════════════════════════════════════════════════════════
   CONTACT / FORM
   ══════════════════════════════════════════════════════════ */

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(243, 236, 224, 0.5);
}

.form-input,
.form-textarea,
.form-select {
  background: rgba(243, 236, 224, 0.05);
  border: var(--border-width) solid var(--color-border-light);
  border-radius: var(--radius-sm);
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-beige);
  transition: border-color var(--duration-fast) var(--ease),
              background var(--duration-fast) var(--ease);
  width: 100%;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(243, 236, 224, 0.25); }

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-sky);
  background: rgba(162, 192, 221, 0.05);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}


/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */

.footer {
  background: var(--color-night);
  border-top: var(--border-width) solid var(--color-border-light);
  padding-top: var(--space-20);
  padding-bottom: var(--space-12);
  padding-inline: var(--page-padding-x);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-20);
}

.footer__brand {}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  text-decoration: none;
}
.footer__logo-mark {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer__tagline {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-light);
  font-style: italic;
  color: rgba(243, 236, 224, 0.35);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-6);
}

.footer__social {
  display: flex;
  gap: var(--space-4);
}
.footer__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--border-width) solid var(--color-border-light);
  border-radius: var(--radius-sm);
  color: rgba(243, 236, 224, 0.4);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--duration-fast) var(--ease),
              border-color var(--duration-fast) var(--ease);
}
.footer__social-link:hover {
  color: var(--color-sky);
  border-color: var(--color-sky);
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-beige);
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  list-style: none;
}
.footer__link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(243, 236, 224, 0.45);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease);
}
.footer__link:hover { color: var(--color-sky); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-8);
  border-top: var(--border-width) solid var(--color-border-light);
  gap: var(--space-4);
}
.footer__copyright {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: rgba(243, 236, 224, 0.25);
  letter-spacing: 0.04em;
}
.footer__legal {
  display: flex;
  gap: var(--space-6);
}
.footer__legal-link {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: rgba(243, 236, 224, 0.25);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease);
}
.footer__legal-link:hover { color: var(--color-sky); }

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }
}
@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}


/* ══════════════════════════════════════════════════════════
   LOGO STRIP / CLIENT LOGOS
   ══════════════════════════════════════════════════════════ */

.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-10) var(--space-16);
  padding-block: var(--space-12);
  border-top: var(--border-width) solid var(--color-border-light);
  border-bottom: var(--border-width) solid var(--color-border-light);
}
.logo-strip__item {
  height: 28px;
  opacity: 0.35;
  filter: brightness(10);
  transition: opacity var(--duration-base) var(--ease);
}
.logo-strip__item:hover { opacity: 0.7; }


/* ══════════════════════════════════════════════════════════
   UTILITY — VISIBILITY
   ══════════════════════════════════════════════════════════ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.hidden { display: none !important; }
