/* ========================================
   amber solutions — style.css
   ======================================== */

:root {
  --amber: #CF7424;
  --amber-hover: #E08A38;
  --amber-pressed: #A85A1A;

  --dark-1: #0A0908;
  --dark-2: #121110;
  --dark-3: #1A1918;

  --light-1: #F2EDE7;

  --sand: #B5A898;
  --tertiary: #8A7F73;
  --ink: #0A0908;
  --ink-2: #52493F;

  --ease: cubic-bezier(0.25, 0.1, 0.25, 1.0);

  --container: 1200px;
  --narrow: 720px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Urbanist', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--light-1);
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

/* ============ TYPOGRAPHY ============ */
.h1 { font-size: 38px; font-weight: 700; line-height: 1.15; letter-spacing: -0.4px; }
.h2 { font-size: 31px; font-weight: 600; line-height: 1.2; letter-spacing: -0.3px; margin-top: 16px; }
.h2-light { color: var(--light-1); }
.h3 { font-size: 25px; font-weight: 600; line-height: 1.3; letter-spacing: -0.2px; }
.h4 { font-size: 20px; font-weight: 600; line-height: 1.4; }

.body-lg { font-size: 16px; line-height: 1.6; max-width: var(--narrow); margin-top: 24px; color: var(--ink-2); }
.section-dark .body-lg { color: #8A7F73; }

.brand-pop {
  color: #CF7424 !important;
  font-weight: 700;
  letter-spacing: -0.1px;
}

.hard-underline {
  font-weight: 600;
  color: var(--ink);
  border-bottom: 2px solid var(--amber);
  padding-bottom: 1px;
}
.section-dark .hard-underline { color: var(--light-1); }

.overline {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
}
.overline.center { text-align: center; }

.caption { font-size: 12px; line-height: 1.4; letter-spacing: 0.2px; }
.muted { color: var(--tertiary); }

/* ============ LAYOUT ============ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.container.narrow { max-width: var(--narrow); }

.section {
  padding: 96px 0;
  position: relative;
}
.section-dark { background: var(--dark-1); color: var(--light-1); }
.section-light { background: var(--light-1); color: var(--ink); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: background 150ms var(--ease), color 150ms var(--ease), transform 150ms var(--ease);
  cursor: pointer;
  letter-spacing: 0.1px;
}
.btn-primary {
  background: var(--amber);
  color: #F2EDE7;
}
.btn-primary:hover { background: var(--amber-hover); }
.btn-primary:active { background: var(--amber-pressed); }

.btn-dark {
  background: var(--dark-1);
  color: var(--light-1);
}
.btn-dark:hover { background: var(--dark-2); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  transition: transform 300ms var(--ease), background 300ms var(--ease), backdrop-filter 300ms var(--ease);
  opacity: 0;
  animation: navFadeIn 500ms var(--ease) forwards;
  animation-delay: 0ms;
}
@keyframes navFadeIn { to { opacity: 1; } }

.nav.scrolled {
  background: rgba(242, 237, 231, 0.90);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(10, 9, 8, 0.08);
}
.nav.hidden { transform: translateY(-100%); }

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 25px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  gap: 32px;
  opacity: 0;
  animation: navFadeIn 500ms var(--ease) forwards;
  animation-delay: 1200ms;
}
.nav-links a {
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  transition: color 150ms var(--ease);
  position: relative;
}
.nav-links a:hover { color: var(--amber); }
.nav-links a.active { color: var(--amber); }

.nav-toggle { display: none; color: var(--ink); padding: 8px; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 8, 0.98);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms var(--ease), visibility 300ms var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--light-1);
  padding: 8px;
}
.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}
.mobile-links a {
  font-size: 28px;
  font-weight: 500;
  color: var(--light-1);
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  background: var(--light-1);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 32px 64px;
}

/* Hero background — canvas particle field + trajectory accent */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  display: block;
}

.hero-inner {
  text-align: center;
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.hero-brand {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-brand em { font-style: normal; font-weight: 600; }
.hero-brand .light { font-weight: 300; }

.hero-tagline {
  font-size: 25px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--amber);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 16px;
  color: var(--ink-2);
  max-width: 480px;
  margin: 0 auto 32px;
  opacity: 0;
  transform: translateY(16px);
  animation: heroFade 500ms var(--ease) forwards;
  animation-delay: 800ms;
}

.hero-cta {
  opacity: 0;
  transform: translateY(16px);
  animation: heroFade 400ms var(--ease) forwards;
  animation-delay: 1100ms;
}

@keyframes heroFade {
  to { opacity: 1; transform: translateY(0); }
}

/* reveal-mask clip reveal */
.reveal-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.15;
  padding-bottom: 0.1em;
}
.reveal-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 600ms var(--ease);
}

/* Hero reveals fire on load */
.hero-brand .reveal-inner {
  animation: revealUp 600ms var(--ease) forwards;
  animation-delay: 200ms;
}
.hero-tagline .reveal-inner {
  animation: revealUp 600ms var(--ease) forwards;
  animation-delay: 500ms;
}
@keyframes revealUp {
  to { transform: translateY(0); }
}

/* Scroll-triggered reveal-mask */
.is-visible .reveal-inner {
  transform: translateY(0);
}

/* ============ ABOUT ============ */
.about .overline { margin-bottom: 16px; }

/* ============ SERVICES ============ */
.services .overline { margin-bottom: 16px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.service-card {
  background: #EAE2D6;
  border: 1px solid rgba(10, 9, 8, 0.08);
  border-radius: 8px;
  padding: 32px;
  transition: border-color 300ms var(--ease), box-shadow 300ms var(--ease), transform 300ms var(--ease);
}
.service-card:hover {
  border-color: rgba(207, 116, 36, 0.5);
  box-shadow: 0 4px 12px rgba(10, 9, 8, 0.08);
}
.service-card h3 {
  color: var(--ink);
  margin-bottom: 16px;
}
.service-card p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(207, 116, 36, 0.08);
  color: var(--amber);
  margin-bottom: 24px;
  transition: background 300ms var(--ease), color 300ms var(--ease), transform 300ms var(--ease);
}
.service-card:hover .service-icon {
  background: rgba(207, 116, 36, 0.14);
  transform: translateY(-2px);
}
.service-icon svg { display: block; }

/* ============ PARTNERS ============ */
.partners .overline { text-align: center; margin-bottom: 48px; }

.marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-row {
  display: flex;
  gap: 88px;
  padding-right: 88px;
  align-items: center;
}
.marquee-row img {
  height: 56px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 300ms var(--ease), transform 300ms var(--ease);
}
.marquee-row img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.06);
}

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

.partners-note {
  text-align: center;
  font-size: 14px;
  color: var(--tertiary);
  max-width: 560px;
  margin: 48px auto 0;
  line-height: 1.5;
}

/* ============ TEAM ============ */
.team .overline { margin-bottom: 16px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 64px auto 0;
}
.team-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 220px;
  width: 100%;
  justify-self: center;
  background: transparent;
}
.team-photo {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  background: var(--dark-1);
  position: relative;
  transition: transform 400ms cubic-bezier(0.25, 0.1, 0.25, 1.0),
              box-shadow 400ms cubic-bezier(0.25, 0.1, 0.25, 1.0);
}
.team-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(10, 9, 8, 0.18),
              0 0 0 1px rgba(207, 116, 36, 0.35);
}
.team-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24' fill='none' stroke='%231A1918' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/><circle cx='12' cy='7' r='4'/></svg>") center/48px no-repeat;
  opacity: 1;
  z-index: 0;
}
.team-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  /* Per-card tuning via inline style:
     --face-position (crop Y), --image-scale (zoom), --shift-x (horizontal nudge) */
  object-position: center var(--face-position, 25%);
  transform: scale(var(--image-scale, 1)) translateX(var(--shift-x, 0));
  transform-origin: center center;
  display: block;
  position: relative;
  z-index: 1;
}
.team-photo-david::before,
.team-photo-daniel::before,
.team-photo-alex::before,
.team-photo-kayley::before { display: none; }
.team-card figcaption {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}
.team-note {
  text-align: center;
  color: var(--ink-2);
  max-width: 600px;
  margin: 64px auto 0;
  line-height: 1.6;
}

/* ============ CAPABILITIES ACCORDION ============ */
.team { padding-top: 128px; padding-bottom: 128px; }

.capabilities {
  max-width: 900px;
  margin: 56px auto 0;
}
.capabilities .overline {
  text-align: center;
  margin-bottom: 12px;
}
.caps-heading {
  font-family: 'Urbanist', system-ui, -apple-system, sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.2px;
  color: var(--ink);
  text-align: center;
  margin: 12px auto 40px;
  max-width: 640px;
}
.caps-heading .reveal-inner {
  transition-delay: 150ms;
}
.capabilities-heading {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.2px;
  color: var(--light-1);
  text-align: center;
  margin-bottom: 48px;
}
.capabilities-heading .reveal-inner {
  transition-delay: 150ms;
}

/* Pressable chips that morph into an expanded card in-place */
.caps-chips {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}
.caps-chip {
  display: grid;
  /* second row is collapsed by default; expands via .is-expanded */
  grid-template-rows: auto 0fr;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  max-width: 680px;
  padding: 14px 22px;
  background: #EAE2D6;
  color: var(--ink);
  border: 1px solid rgba(10, 9, 8, 0.08);
  border-radius: 10px;
  font-family: 'Urbanist', system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1px;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.35),
              0 1px 0 rgba(242, 237, 231, 0.04) inset;
  transition: grid-template-rows 400ms cubic-bezier(0.25, 0.1, 0.25, 1.0),
              padding 400ms cubic-bezier(0.25, 0.1, 0.25, 1.0),
              transform 300ms var(--ease),
              border-color 300ms var(--ease),
              background 300ms var(--ease),
              box-shadow 300ms var(--ease),
              color 300ms var(--ease),
              opacity 300ms var(--ease);
}
.caps-chip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  white-space: nowrap;
}
.caps-chip-left {
  display: inline-flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}
.caps-chip-icon {
  color: var(--tertiary);
  flex-shrink: 0;
  margin-right: 14px;
  transition: color 300ms cubic-bezier(0.25, 0.1, 0.25, 1.0);
}
.caps-chip-label { display: inline-block; }
.caps-chip-toggle {
  color: var(--tertiary);
  flex-shrink: 0;
  transition: color 300ms cubic-bezier(0.25, 0.1, 0.25, 1.0),
              transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1.0);
}

/* Collapsible body — clipped by grid row size (0fr → 1fr) */
.caps-chip-body {
  overflow: hidden;
  min-height: 0;
  opacity: 0;
  transition: opacity 250ms var(--ease), margin-top 400ms cubic-bezier(0.25, 0.1, 0.25, 1.0);
  margin-top: 0;
}
.caps-chip-text {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.65;
  white-space: normal;
  letter-spacing: 0;
}

/* Hover (only on non-expanded chips) */
.caps-chip:hover:not(.is-expanded) {
  transform: translateY(-2px);
  border-color: rgba(207, 116, 36, 0.55);
  background: #E0D6C7;
  box-shadow: 0 6px 14px rgba(10, 9, 8, 0.08),
              0 1px 0 rgba(255, 255, 255, 0.5) inset;
}
.caps-chip:hover:not(.is-expanded) .caps-chip-toggle,
.caps-chip:hover:not(.is-expanded) .caps-chip-icon {
  color: var(--amber);
}
.caps-chip:active:not(.is-expanded) {
  transform: translateY(1px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0),
              0 1px 0 rgba(0, 0, 0, 0.4) inset;
}

/* Expanded state — chip opens to reveal description (same width, more padding) */
.caps-chip.is-expanded {
  grid-template-rows: auto 1fr;
  padding: 22px 26px;
  background: rgba(207, 116, 36, 0.12);
  border-color: var(--amber);
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(10, 9, 8, 0.10),
              0 0 0 1px rgba(207, 116, 36, 0.45) inset;
  cursor: default;
}
.caps-chip.is-expanded .caps-chip-toggle {
  color: var(--amber);
  transform: rotate(45deg); /* + becomes × when expanded */
}
.caps-chip.is-expanded .caps-chip-icon {
  color: var(--amber);
}
.caps-chip.is-expanded .caps-chip-body {
  opacity: 1;
  margin-top: 14px;
}

/* Siblings dim when a chip is expanded */
.caps-chips.has-expanded .caps-chip:not(.is-expanded) {
  opacity: 0.38;
  transform: scale(0.96);
}
.caps-chips.has-expanded .caps-chip:not(.is-expanded):hover {
  opacity: 0.85;
  transform: scale(1);
}

.caps-chip:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .capabilities { max-width: 720px; }
}

@media (max-width: 640px) {
  .team { padding-top: 64px; padding-bottom: 64px; }
  .capabilities { max-width: 100%; margin-top: 40px; }
  .caps-heading { font-size: 20px; margin-bottom: 32px; }
  .caps-chips { gap: 8px; }
  .caps-chip { padding: 10px 14px; font-size: 13px; }
  .caps-chip.is-expanded { padding: 18px 20px; }
  .caps-chip-icon { margin-right: 10px; }
  .caps-chip-text { font-size: 14px; }
}

/* ============ CTA ============ */
.section-cta {
  background: var(--amber);
  padding: 125px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* wipe: a dark overlay that retracts from the left as the section enters view */
.cta-wipe {
  position: absolute;
  inset: 0;
  background: var(--dark-1);
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform 600ms var(--ease);
  pointer-events: none;
  z-index: 0;
}
.section-cta.is-visible .cta-wipe {
  transform: scaleX(0);
}

.cta-inner { position: relative; z-index: 1; }
.cta-heading {
  color: #F2EDE7;
  font-weight: 700;
  font-size: 31px;
  margin-top: 0;
}
.cta-body {
  color: rgba(242, 237, 231, 0.85);
  max-width: 520px;
  margin: 24px auto 32px;
  font-size: 16px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-channel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 36px;
  border-radius: 8px;
  font-family: 'Urbanist', system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
  transition: background 300ms cubic-bezier(0.25, 0.1, 0.25, 1.0),
              transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1.0),
              box-shadow 300ms cubic-bezier(0.25, 0.1, 0.25, 1.0);
}
.cta-channel svg { flex-shrink: 0; fill: #FFFFFF; }

.cta-wa { background: #25D366; }
.cta-wa:hover {
  background: #1EBE5A;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.cta-tg { background: #2AABEE; }
.cta-tg:hover {
  background: #229ED9;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(42, 171, 238, 0.3);
}

.cta-note {
  font-family: 'Urbanist', system-ui, -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-top: 20px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--light-1);
  border-top: 1px solid rgba(10, 9, 8, 0.08);
  padding: 48px 0 32px;
  color: var(--tertiary);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-self: start;
}
.footer-location {
  justify-self: center;
  text-align: center;
}
.footer-left img { height: 24px; }
.footer-right {
  display: flex;
  gap: 16px;
  justify-self: end;
}
.footer-right a {
  color: var(--tertiary);
  transition: color 300ms var(--ease);
  display: inline-flex;
  align-items: center;
  padding: 6px;
}
.footer-right a:hover { color: var(--amber); }

.footer-location {
  color: var(--ink-2);
}
.footer-email {
  justify-self: center;
  color: var(--tertiary);
  text-decoration: none;
  transition: color 200ms var(--ease);
}
.footer-email:hover { color: var(--amber); }

/* ============ ANIMATIONS ============ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* staggered children */
.stagger-children .fade-up:nth-child(1) { transition-delay: 0ms; }
.stagger-children .fade-up:nth-child(2) { transition-delay: 100ms; }
.stagger-children .fade-up:nth-child(3) { transition-delay: 200ms; }
.stagger-children .fade-up:nth-child(4) { transition-delay: 300ms; }
.stagger-children .fade-up:nth-child(5) { transition-delay: 400ms; }
.stagger-children .fade-up:nth-child(6) { transition-delay: 500ms; }

.services-grid .fade-up {
  transform: translateY(20px) scale(0.97);
}
.services-grid .fade-up.is-visible {
  transform: translateY(0) scale(1);
}

/* focus states */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 48px 0; }
  .container { padding: 0 24px; }

  .hero { padding: 100px 24px 48px; }
  .hero-brand { font-size: 28px; }
  .hero-tagline { font-size: 18px; }
  .hero-sub { font-size: 15px; }

  .h2 { font-size: 26px; }

  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-inner { padding: 12px 24px; }

  .services-grid { grid-template-columns: 1fr; margin-top: 40px; }
  .service-card { padding: 24px; }

  .team-grid { grid-template-columns: repeat(2, 1fr); margin-top: 40px; gap: 16px; }

  .footer-inner { grid-template-columns: 1fr; justify-items: center; gap: 16px; text-align: center; }
  .footer-left { flex-direction: column; gap: 8px; justify-self: center; }
  .footer-right { justify-self: center; }

  .marquee-row { gap: 56px; padding-right: 56px; }
  .marquee-row img { height: 42px; max-width: 64px; }

  .cta-buttons { flex-direction: column; gap: 12px; align-items: stretch; }
  .cta-channel { width: 100%; padding: 0 24px; }
}

@media (min-width: 1024px) {
  .hero-brand { font-size: 48px; }
}

@media (min-width: 640px) and (max-width: 1024px) {
  .hero-brand { font-size: 36px; }
  .hero-tagline { font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-inner { transform: translateY(0) !important; }
}
