/* ============================================
   AYKAC CONSULTING — Design System
   Aesthetic: Refined executive consulting
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- Tokens --- */
:root {
  --c-deep:       #0a2e3c;
  --c-teal:       #177895;
  --c-teal-light: #1e9abd;
  --c-sage:       #8aa38c;
  --c-sage-light: #aec4b0;
  --c-cream:      #f4f2e8;
  --c-cream-dark: #e8e5d8;
  --c-olive:      #626245;
  --c-black:      #1a1a1a;
  --c-white:      #ffffff;

  --f-display: 'DM Serif Display', Georgia, serif;
  --f-body:    'Outfit', system-ui, sans-serif;

  --w-page:    1200px;
  --w-narrow:  800px;

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

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--c-black);
  background: var(--c-cream);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-teal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--c-deep); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--f-display); font-weight: 400; line-height: 1.2; color: var(--c-deep); }

/* --- Utilities --- */
.container     { max-width: var(--w-page); margin: 0 auto; padding: 0 2rem; }
.container--sm { max-width: var(--w-narrow); margin: 0 auto; padding: 0 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* --- Grain overlay --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--c-deep);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: box-shadow .3s, background .3s;
}
.site-header.scrolled {
  background: var(--c-deep);
  box-shadow: 0 1px 20px rgba(0, 0, 0, .2);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-header__logo { height: 48px; width: auto; }
.site-header__tagline {
  font-family: var(--f-display);
  font-style: italic;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  border-left: 1px solid rgba(255,255,255,.15);
  padding-left: 1rem;
  display: none;
}
@media (min-width: 768px) {
  .site-header__tagline { display: block; }
}

/* Nav */
.site-nav__list {
  display: flex;
  gap: .25rem;
  align-items: center;
}
.site-nav__link {
  display: block;
  padding: .5rem 1rem;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: rgba(255,255,255,.8);
  border-radius: 6px;
  transition: background .2s, color .2s;
}
.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
  background: rgba(255, 255, 255, .1);
  color: var(--c-white);
}
.site-nav__link--cta {
  background: var(--c-teal);
  color: var(--c-white) !important;
  font-weight: 600;
}
.site-nav__link--cta:hover {
  background: var(--c-deep);
  color: var(--c-white) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-white);
  margin: 5px 0;
  transition: transform .3s var(--ease-out), opacity .2s;
  border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: 80px; left: 0; right: 0; bottom: 0;
    background: var(--c-deep);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 3rem;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform .4s var(--ease-out), opacity .3s;
    z-index: 99;
  }
  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
  }
  .site-nav__list {
    flex-direction: column;
    gap: .5rem;
  }
  .site-nav__link {
    font-size: 1.3rem;
    padding: .75rem 2rem;
  }
}

/* ============================================
   HERO (Homepage)
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 46, 60, .88) 0%,
    rgba(23, 120, 149, .72) 50%,
    rgba(138, 163, 140, .65) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 800px;
}
.hero__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--c-white);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .8s var(--ease-out) .3s forwards;
}
.hero__subtitle {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s var(--ease-out) .5s forwards;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2.5rem;
  background: var(--c-white);
  color: var(--c-deep) !important;
  font-weight: 600;
  font-size: .95rem;
  border-radius: 50px;
  transition: transform .3s var(--ease-spring), box-shadow .3s, background .2s, border-color .2s;
}
.hero__cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
  color: var(--c-teal) !important;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out) 1s forwards;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ============================================
   PAGE HEADER (Inner pages)
   ============================================ */
.page-header {
  padding: 8rem 2rem 3rem;
  text-align: center;
  background: linear-gradient(160deg, var(--c-deep) 0%, #145a6e 60%, var(--c-sage) 100%);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(23,120,149,.3) 0%, transparent 70%);
}
.page-header__title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--c-white);
  position: relative;
  z-index: 1;
}
.page-header__subtitle {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 550px;
  margin: 1rem auto 0;
  position: relative;
  z-index: 1;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 3.5rem 0;
}
.section--alt {
  background: var(--c-white);
}
.section--dark {
  background: var(--c-deep);
  color: rgba(255,255,255,.85);
}
.section--dark h2,
.section--dark h3 { color: var(--c-white); }
.section--dark a { color: var(--c-sage-light); }
.section--dark a:hover { color: var(--c-white); }

.section__eyebrow {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: .75rem;
}
.section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}
.section__lead {
  font-size: 1.1rem;
  color: var(--c-olive);
  max-width: 650px;
  line-height: 1.8;
}
.section__lead--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ============================================
   CONTENT PROSE
   ============================================ */
.prose {
  max-width: var(--w-narrow);
  margin: 0 auto;
}
.prose p {
  margin-bottom: 1.25rem;
  color: var(--c-black);
  line-height: 1.8;
}
.prose h2 {
  font-size: 2rem;
  margin: 2rem 0 .75rem;
}
.prose h3 {
  font-size: 1.6rem;
  margin: 1.75rem 0 .5rem;
}
.prose h4 {
  font-size: 1.3rem;
  margin: 1.5rem 0 .5rem;
}
.prose ul, .prose ol {
  margin: 1rem 0 1.5rem 1.5rem;
  list-style: disc;
}
.prose li {
  margin-bottom: .5rem;
  line-height: 1.7;
}
.prose blockquote {
  border-left: 3px solid var(--c-teal);
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
  background: var(--c-white);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 1.15rem;
}
.prose blockquote cite {
  display: block;
  margin-top: .75rem;
  font-size: .9rem;
  color: var(--c-olive);
  font-style: normal;
}
.prose hr {
  border: none;
  height: 1px;
  background: var(--c-cream-dark);
  margin: 2rem 0;
}
.prose .btn,
.prose p > .btn {
  margin-top: .75rem;
}

/* ============================================
   CARDS
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.card {
  background: var(--c-white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(10,46,60,.06);
  transition: transform .3s var(--ease-out), box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-teal), var(--c-sage));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10,46,60,.08);
}
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--c-teal), var(--c-sage));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--c-white);
  font-size: 1.4rem;
}
.card__title {
  font-size: 1.25rem;
  margin-bottom: .75rem;
}
.card__text {
  color: var(--c-olive);
  font-size: .95rem;
  line-height: 1.7;
}

/* ============================================
   TEAM
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.team-member {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.team-member__photo {
  width: 100px;
  min-width: 100px;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid var(--c-cream-dark);
}
.team-member__info { flex: 1; }
.team-member__name {
  font-size: 1.15rem;
  margin-bottom: .25rem;
}
.team-member__name a {
  color: var(--c-deep);
  transition: color .2s;
}
.team-member__name a:hover { color: var(--c-teal); }
.team-member__bio {
  font-size: .9rem;
  color: var(--c-olive);
  line-height: 1.7;
}

/* ============================================
   BRANDS
   ============================================ */
.brands {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.brands img {
  height: 50px;
  width: auto;
  transition: transform .3s var(--ease-out);
}
.brands img:hover { transform: scale(1.05); }
.brands--lg { gap: 4rem; margin-top: 2.5rem; }
.brands--lg img { height: 80px; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--c-deep) 0%, #145a6e 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(138,163,140,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--c-white);
  margin-bottom: 1rem;
  position: relative;
}
.cta-banner__text {
  color: rgba(255,255,255,.7);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  position: relative;
}
.cta-banner a:not(.btn) { color: var(--c-sage-light); }
.cta-banner a:not(.btn):hover { color: var(--c-white); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: .9rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .3s var(--ease-spring), box-shadow .3s, background .2s;
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,.15);
}
.btn--primary {
  background: var(--c-teal);
  color: var(--c-white) !important;
}
.btn--primary:hover { background: var(--c-teal-light); color: var(--c-white) !important; }
.btn--white {
  background: var(--c-white);
  color: var(--c-deep) !important;
}
.btn--white:hover { color: var(--c-teal) !important; }
.btn--outline {
  background: transparent;
  color: var(--c-teal) !important;
  border: 2px solid var(--c-teal);
}
.btn--outline:hover { background: var(--c-teal); color: var(--c-white) !important; }
.btn--outline-light {
  background: transparent;
  color: var(--c-white) !important;
  border: 2px solid rgba(255,255,255,.5);
}
.btn--outline-light:hover { background: var(--c-white); color: var(--c-deep) !important; }
.btn--linkedin {
  background: #0077b5;
  color: var(--c-white) !important;
}
.btn--linkedin:hover { background: #005f8d; color: var(--c-white) !important; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--c-deep);
  color: rgba(255,255,255,.6);
  padding: 3rem 0 1.5rem;
}
.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}
.site-footer__brand .site-header__logo {
  height: 40px;
  margin-bottom: 1rem;
}
.site-footer__brand p {
  font-size: .85rem;
  max-width: 300px;
  line-height: 1.7;
}
.site-footer__nav h4 {
  color: var(--c-white);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer__nav ul { display: flex; flex-direction: column; gap: .5rem; }
.site-footer__nav a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: color .2s;
}
.site-footer__nav a:hover { color: var(--c-white); }

.site-footer__bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
}
.site-footer__bottom a {
  color: rgba(255,255,255,.5);
}
.site-footer__bottom a:hover { color: var(--c-white); }

/* ============================================
   QUOTE BLOCK
   ============================================ */
.quote-block {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--c-white);
}
.quote-block__text {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--c-deep);
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.5;
}
.quote-block__cite {
  font-family: var(--f-body);
  font-size: .9rem;
  color: var(--c-olive);
}

/* ============================================
   VALUES GRID
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.value-item {
  padding: 2rem;
  background: var(--c-cream);
  border-radius: 10px;
  border-left: 3px solid var(--c-teal);
}
.value-item__title {
  font-size: 1.15rem;
  margin-bottom: .5rem;
  color: var(--c-teal);
}
.value-item__text {
  font-size: .93rem;
  color: var(--c-olive);
  line-height: 1.7;
}

/* ============================================
   MEDIA + TEXT
   ============================================ */
.media-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
}
.media-text--reverse { direction: rtl; }
.media-text--reverse > * { direction: ltr; }
.media-text__image {
  border-radius: 12px;
  overflow: hidden;
}
.media-text__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   HERO ACTIONS
   ============================================ */
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s var(--ease-out) .7s forwards;
}
.hero__cta--ghost {
  background: transparent;
  border: 2px solid rgba(255,255,255,.4);
  color: var(--c-white) !important;
}
.hero__cta--ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
  color: var(--c-white) !important;
  box-shadow: none;
}

/* ============================================
   STAT STRIP
   ============================================ */
.stat-strip { padding: 2.5rem 0; }
.stat-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-strip__item {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.stat-strip__number {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--c-white);
  line-height: 1;
}
.stat-strip__label {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* ============================================
   SPLIT INTRO
   ============================================ */
.split-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.split-intro__left .section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
}
.split-intro__right p {
  color: var(--c-olive);
  line-height: 1.85;
  font-size: 1.05rem;
}

/* ============================================
   CARD LINK VARIANT
   ============================================ */
.card--link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.card--link:hover { color: inherit; }
.card--link .card__title { transition: color .2s; }
.card--link:hover .card__title { color: var(--c-teal); }

/* ============================================
   FEATURED CARD
   ============================================ */
.featured-card {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: var(--c-white);
  border-radius: 14px;
  padding: 2.5rem;
  border: 1px solid rgba(10,46,60,.06);
  box-shadow: 0 4px 24px rgba(10,46,60,.04);
}
.featured-card__badge { flex-shrink: 0; }
.featured-card__badge img { border-radius: 10px; }
.featured-card__content .section__eyebrow { margin-bottom: .5rem; }
.featured-card__content .section__title { margin-bottom: .75rem; }
.featured-card__content p {
  color: var(--c-olive);
  line-height: 1.75;
  margin-bottom: .5rem;
}
.featured-card--horizontal {
  overflow: hidden;
  padding: 0;
}
.featured-card--horizontal .featured-card__image {
  flex: 0 0 240px;
  align-self: stretch;
}
.featured-card--horizontal .featured-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-card--horizontal .featured-card__content {
  padding: 2rem 2.5rem 2rem 0;
}

/* ============================================
   TEAM CARDS
   ============================================ */
.team-card {
  background: var(--c-white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(10,46,60,.06);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: box-shadow .3s;
}
.team-card:hover {
  box-shadow: 0 8px 30px rgba(10,46,60,.06);
}
.team-card__photo {
  width: 90px;
  min-width: 90px;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
}
.team-card__info { flex: 1; }
.team-card__name {
  font-family: var(--f-display);
  font-size: 1.15rem;
  margin-bottom: .15rem;
}
.team-card__name a { color: var(--c-deep); }
.team-card__name a:hover { color: var(--c-teal); }
.team-card__role {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: .6rem;
}
.team-card__bio {
  font-size: .88rem;
  color: var(--c-olive);
  line-height: 1.7;
}

/* ============================================
   QUOTE DECORATION
   ============================================ */
.quote-block { position: relative; }
.quote-block__decoration {
  font-family: var(--f-display);
  font-size: 8rem;
  line-height: 1;
  color: var(--c-teal);
  opacity: .08;
  position: absolute;
  top: .5rem;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollLine {
  0%, 100% { opacity: .3; transform: scaleY(.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  /* Sections */
  .section { padding: 2.5rem 0; }
  .container { padding: 0 1.25rem; }

  /* Hero */
  .hero { min-height: 85vh; }
  .hero__content { padding: 1.5rem; }
  .hero__bg { background-attachment: scroll; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__cta { width: 100%; max-width: 280px; justify-content: center; }
  .hero__scroll { display: none; }

  /* Grids */
  .card-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  /* Team */
  .team-member { flex-direction: column; align-items: center; text-align: center; }
  .team-card { flex-direction: column; align-items: center; text-align: center; }

  /* Media text */
  .media-text { grid-template-columns: 1fr; }
  .media-text--reverse { direction: ltr; }

  /* Page header */
  .page-header { padding: 6.5rem 1.25rem 2rem; }
  .page-header__subtitle { font-size: 1rem; }

  /* Featured cards */
  .featured-card { flex-direction: column; padding: 1.5rem; gap: 1.5rem; }
  .featured-card__badge img { width: 120px; height: 120px; }
  .featured-card--horizontal .featured-card__image { flex: none; max-height: 180px; overflow: hidden; border-radius: 10px; }
  .featured-card--horizontal .featured-card__content { padding: 1rem 0 0; }

  /* Split intro */
  .split-intro { grid-template-columns: 1fr; gap: 1rem; }

  /* Stat strip */
  .stat-strip__grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .stat-strip__number { font-size: 1.8rem; }
  .stat-strip__label { font-size: .65rem; }

  /* Quote */
  .quote-block { padding: 2.5rem 1.25rem; }
  .quote-block__decoration { font-size: 5rem; }

  /* CTA banner */
  .cta-banner { padding: 2.5rem 1.25rem; }
  .cta-banner__title { font-size: 1.4rem; }

  /* Buttons — full width on mobile */
  .cta-banner .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* Footer */
  .site-footer__inner { flex-direction: column; gap: 1.5rem; }
  .site-footer__bottom { flex-direction: column; text-align: center; }

  /* Brands */
  .brands { gap: 2rem; }
  .brands img { height: 40px; }
}

/* Small phones */
@media (max-width: 400px) {
  body { font-size: 15px; }
  .site-header__inner { height: 64px; }
  .site-header__logo { height: 36px; }
  .site-header__tagline { display: none; }
  .site-nav { top: 64px; }
  .page-header { padding-top: 5.5rem; }
  .stat-strip__grid { grid-template-columns: 1fr; gap: 1rem; }
  .card { padding: 1.5rem; }
  .team-card { padding: 1.5rem; }
  .value-item { padding: 1.25rem; }
}

/* Print */
@media print {
  .site-header, .site-footer, .hero__scroll, .cta-banner { display: none; }
  body { background: white; color: black; font-size: 12pt; }
  .hero { min-height: auto; padding: 2rem; }
  .hero__overlay { background: rgba(0,0,0,.1); }
}
