
/* =============================================
   TIER8 ABOUT PAGE — INDUSTRIAL PREMIUM
   Matching homepage design system exactly
   Palette: Deep charcoal, white, amber/gold
   ============================================= */

:root {
  --black: #08090a;
  --charcoal: #141618;
  --dark: #1c1e22;
  --dark-surface: #22252a;
  --mid-dark: #2e3238;
  --steel: #5a6068;
  --mid-steel: #8a9098;
  --silver: #b8bcc2;
  --light: #e8eaed;
  --off-white: #f4f5f6;
  --white: #ffffff;
  --accent: #d4871c;
  --accent-light: #e89e3a;
  --accent-dark: #b87216;
  --accent-glow: rgba(212, 135, 28, 0.15);
  --accent-subtle: rgba(212, 135, 28, 0.06);
  --green: #2d8a54;

  --font: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', 'Consolas', monospace;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease); }

.container { max-width: 1220px; margin: 0 auto; padding: 0 2rem; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

/* =============================================
   TOP BAR (identical to homepage)
   ============================================= */
.top-bar {
  background: var(--charcoal);
  color: var(--silver);
  font-size: 0.8rem;
  padding: 0.5rem 0;
  position: relative;
  z-index: 1001;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: var(--silver); }
.top-bar a:hover { color: var(--accent-light); }
.top-bar__left { display: flex; gap: 2rem; align-items: center; }
.top-bar__right { display: flex; gap: 1.5rem; align-items: center; }
.top-bar__label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}
.top-bar__value {
  color: var(--white);
  font-weight: 600;
}

/* =============================================
   NAVIGATION (identical to homepage)
   ============================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--light);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav__logo-icon {
  width: 64px;
  height: 64px;
}
.nav__logo-text {
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}
.nav__links {
  display: flex;
  list-style: none;
  gap: 2.25rem;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--steel);
  letter-spacing: 0.01em;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}
.nav__links a:hover { color: var(--charcoal); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.active { color: var(--charcoal); font-weight: 600; }
.nav__links a.active::after { width: 100%; }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  transition: background 0.3s var(--ease), transform 0.2s var(--ease);
}
.nav__cta:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-1px);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: 0.3s;
}

/* =============================================
   PAGE HERO — About variant
   ============================================= */
.page-hero {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.page-hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero__accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero__breadcrumb {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid-steel);
  margin-bottom: 1.5rem;
}
.page-hero__breadcrumb a {
  color: var(--mid-steel);
}
.page-hero__breadcrumb a:hover {
  color: var(--accent-light);
}
.page-hero__breadcrumb span {
  color: var(--accent);
}
.page-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.page-hero__title .accent {
  color: var(--accent);
}
.page-hero__subtitle {
  font-size: 1.1rem;
  color: var(--mid-steel);
  max-width: 560px;
  font-weight: 300;
  line-height: 1.7;
}

/* =============================================
   SECTION SHARED STYLES
   ============================================= */
.section { padding: 5.5rem 0; }
.section--dark { background: var(--charcoal); color: var(--white); }
.section--alt { background: var(--off-white); }

.section-header { margin-bottom: 3rem; }
.section-header--center { text-align: center; }
.section-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--steel);
  margin-top: 1rem;
  max-width: 560px;
  font-weight: 300;
  line-height: 1.7;
}
.section-header--center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}
.section--dark .section-subtitle { color: var(--mid-steel); }

/* =============================================
   BUTTONS (identical to homepage)
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: all 0.3s var(--ease);
  border: none;
  cursor: pointer;
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 135, 28, 0.3);
}
.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--light);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--white);
  color: var(--charcoal);
}
.btn--white:hover {
  background: var(--off-white);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* =============================================
   STORY SECTION — Who We Are
   ============================================= */
.story .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story__images {
  position: relative;
}
.story__img-main {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.story__img-main img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.story__img-inset {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 220px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  border: 5px solid var(--white);
}
.story__img-inset img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.story__badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--accent);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(212, 135, 28, 0.35);
  text-align: center;
}
.story__badge-number {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}
.story__badge-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 0.15rem;
}
.story__text p {
  color: var(--steel);
  margin-bottom: 1.25rem;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
}
.story__text p strong {
  color: var(--charcoal);
  font-weight: 600;
}

/* =============================================
   MISSION / VALUES CARDS
   ============================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 10px;
  padding: 2.25rem 2rem;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease), border-color 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: transparent;
}
.value-card:hover::before {
  transform: scaleX(1);
}
.value-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.value-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}
.value-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.value-card__desc {
  font-size: 0.9rem;
  color: var(--steel);
  font-weight: 300;
  line-height: 1.7;
}

/* =============================================
   STATS COUNTER BAR
   ============================================= */
.stats-bar {
  background: var(--charcoal);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.stats-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item__number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-item__number .accent { color: var(--accent); }
.stat-item__label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid-steel);
}
.stat-item__divider {
  display: none;
}

/* =============================================
   APPROACH / METHODOLOGY
   ============================================= */
.approach .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.approach__content {
  order: 2;
}
.approach__visual {
  order: 1;
  position: relative;
}
.approach__img-stack {
  position: relative;
}
.approach__img-top {
  width: 85%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0,0,0,0.12);
  margin-left: auto;
}
.approach__img-top img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.approach__img-bottom {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 240px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  border: 5px solid var(--white);
}
.approach__img-bottom img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.approach__list {
  margin-top: 2rem;
}
.approach__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.approach__item-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.approach__item-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.approach__item-text p {
  font-size: 0.88rem;
  color: var(--steel);
  font-weight: 300;
  line-height: 1.65;
}

/* =============================================
   TIMELINE
   ============================================= */
.timeline-section {
  background: var(--off-white);
  padding: 5.5rem 0;
}
.timeline {
  position: relative;
  margin-top: 3rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--light);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 24px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px var(--off-white), 0 0 0 6px var(--accent-glow);
  z-index: 2;
}
.timeline-item__year {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.timeline-item__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.timeline-item__desc {
  font-size: 0.9rem;
  color: var(--steel);
  font-weight: 300;
  line-height: 1.7;
}
.timeline-item:nth-child(odd) .timeline-item__content {
  grid-column: 1;
  text-align: right;
  padding-right: 2rem;
}
.timeline-item:nth-child(odd) .timeline-item__spacer {
  grid-column: 2;
}
.timeline-item:nth-child(even) .timeline-item__spacer {
  grid-column: 1;
}
.timeline-item:nth-child(even) .timeline-item__content {
  grid-column: 2;
  padding-left: 2rem;
}

/* =============================================
   CAPABILITIES SECTION (dark)
   ============================================= */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cap-card {
  background: var(--dark-surface);
  border: 1px solid var(--mid-dark);
  border-radius: 10px;
  padding: 2.25rem 2rem;
  transition: transform 0.4s var(--ease-out), border-color 0.3s var(--ease), box-shadow 0.4s var(--ease);
}
.cap-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.cap-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(212, 135, 28, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.cap-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}
.cap-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.cap-card__desc {
  font-size: 0.85rem;
  color: var(--mid-steel);
  font-weight: 300;
  line-height: 1.7;
}

/* =============================================
   PHOTO GALLERY STRIP
   ============================================= */
.gallery-strip {
  padding: 0;
  overflow: hidden;
}
.gallery-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.gallery-strip__item {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
}
.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.gallery-strip__item:hover img {
  transform: scale(1.08);
}
.gallery-strip__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,22,24,0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery-strip__item:hover::after {
  opacity: 1;
}

/* =============================================
   CTA BANNER (identical to homepage)
   ============================================= */
.cta-banner {
  background: var(--accent);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.cta-banner__text {
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* =============================================
   FOOTER (identical to homepage)
   ============================================= */
.footer {
  background: var(--charcoal);
  color: var(--silver);
  padding: 4rem 0 2rem;
  font-size: 0.9rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer__brand-desc {
  color: var(--mid-steel);
  font-size: 0.85rem;
  font-weight: 300;
  margin-top: 0.75rem;
  line-height: 1.7;
}
.footer__heading {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}
.footer__links {
  list-style: none;
}
.footer__links li { margin-bottom: 0.6rem; }
.footer__links a {
  color: var(--mid-steel);
  font-weight: 300;
  font-size: 0.85rem;
}
.footer__links a:hover { color: var(--accent-light); }
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--mid-steel);
  font-size: 0.85rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
}
.footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--steel);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--mid-dark);
  font-size: 0.8rem;
  color: var(--steel);
}
.footer__iso {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer__iso-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.35s; }
.reveal-delay-5 { transition-delay: 0.4s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .story .container { grid-template-columns: 1fr; gap: 3rem; }
  .approach .container { grid-template-columns: 1fr; gap: 3rem; }
  .approach__content { order: 1; }
  .approach__visual { order: 2; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .timeline-item { grid-template-columns: 1fr; gap: 0; }
  .timeline::before { left: 20px; }
  .timeline-item::before { left: 20px; }
  .timeline-item:nth-child(odd) .timeline-item__content,
  .timeline-item:nth-child(even) .timeline-item__content {
    grid-column: 1;
    text-align: left;
    padding-left: 3rem;
    padding-right: 0;
  }
  .timeline-item__spacer { display: none; }
  .gallery-strip__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav .container { height: 64px; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__cta { display: none; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--light);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    gap: 1rem;
  }

  .page-hero { padding: 4rem 0 3rem; }
  .section { padding: 3.5rem 0; }
  .values-grid { grid-template-columns: 1fr; }
  .capabilities-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 2rem; }
  .story__img-inset { width: 160px; right: -10px; bottom: -20px; }
  .story__badge { top: -10px; left: -10px; padding: 0.75rem 1rem; }
  .story__badge-number { font-size: 1.3rem; }
  .approach__img-bottom { width: 180px; bottom: -25px; }
  .gallery-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-strip__grid { grid-template-columns: 1fr; }
}
