/* ═══════════════════════════════════════════════════
   ATELIER JORDAN INC. — Landing Page Stylesheet
   Brand Colors:
     Navy  : #0D1128
     Cream : #E8CFA0
     Off-white: #F5F0E8
     Accent: #C4A97A
   ═══════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─────────────────────── */
:root {
  --navy: #0D1128;
  --navy-mid: #131A38;
  --navy-light: #1C2647;
  --cream: #E8CFA0;
  --cream-dark: #C4A97A;
  --cream-pale: #F5EFE0;
  --white: #FDFBF7;
  --text-light: rgba(245, 240, 232, 0.75);
  --text-muted: rgba(245, 240, 232, 0.45);

  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);

  --section-pad: clamp(80px, 10vw, 140px);
  --container: 1200px;
}

/* ─── Reset ─────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--cream-pale);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ─── Utility ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 14px;
  position: relative;
  padding-left: 28px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 1px;
  background: var(--cream);
}

.section-label--red {
  color: #b74312;
}

.section-label--red::before {
  background: #b74312;
}

.section-label--light {
  color: #f8e6c6;
}

.section-label--light::before {
  background: #f8e6c6;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.section-title--light {
  color: var(--cream-pale);
}

.section-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5275;
}

.section-desc--light {
  color: var(--text-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--navy);
  color: var(--cream-pale);
  border-color: var(--navy);
}

.btn--primary:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(13, 17, 40, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--cream-pale);
  transform: translateY(-2px);
}

.btn--cream {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
  font-weight: 600;
}

.btn--cream:hover {
  background: var(--cream-pale);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(232, 207, 160, 0.35);
}

/* Scroll fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out) var(--delay, 0s),
    transform 0.7s var(--ease-out) var(--delay, 0s);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), padding 0.3s;
}

.nav.scrolled {
  background: rgba(13, 17, 40, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(232, 207, 160, 0.1);
  padding: 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px clamp(20px, 5vw, 60px);
  transition: padding 0.3s;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s;
}

/* Over dark hero show cream logo; over light sections show dark wordmark */
.nav__logo-img--dark {
  display: none;
}

.nav__logo-img--light {
  display: block;
}

.nav.over-light .nav__logo-img--dark {
  display: block;
}

.nav.over-light .nav__logo-img--light {
  display: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(245, 240, 232, 0.75);
  transition: color 0.25s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cream);
  transition: width 0.3s var(--ease-out);
}

.nav__link:hover {
  color: var(--cream);
}

.nav__link:hover::after {
  width: 100%;
}

.nav.over-light .nav__link {
  color: rgba(13, 17, 40, 0.65);
}

.nav.over-light .nav__link::after {
  background: var(--navy);
}

.nav.over-light .nav__link:hover {
  color: var(--navy);
}

.nav__link--cta {
  background: var(--cream);
  color: var(--navy) !important;
  padding: 9px 22px;
  border-radius: 100px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--cream-pale);
  box-shadow: 0 8px 24px rgba(232, 207, 160, 0.4);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px clamp(20px, 5vw, 60px) 80px;
}



.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Radial glow */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(232, 207, 160, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(28, 38, 71, 0.9) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--cream);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(5rem, 11vw, 10rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--cream-pale);
  margin-bottom: 36px;
}

.hero__word-spark {
  display: inline-block;
  margin-bottom: clamp(10px, 2vw, 20px);
}

.hero__headline em {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  text-transform: none;
  font-weight: 400;
  color: var(--cream);
  display: block;
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 44px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__actions .btn--primary {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
  font-weight: 600;
}

.hero__actions .btn--primary:hover {
  background: var(--cream-pale);
  box-shadow: 0 12px 32px rgba(232, 207, 160, 0.3);
}

.hero__actions .btn--outline {
  color: rgba(245, 240, 232, 0.7);
  border-color: rgba(245, 240, 232, 0.25);
}

.hero__actions .btn--outline:hover {
  background: rgba(245, 240, 232, 0.08);
  color: var(--cream-pale);
  border-color: rgba(245, 240, 232, 0.5);
  transform: translateY(-2px);
}

.hero__logo-wrap {
  position: absolute;
  right: clamp(20px, 5vw, 60px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.hero__logo {
  width: clamp(200px, 28vw, 400px);
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 32px 80px rgba(232, 207, 160, 0.18));
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 207, 160, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    width: 40px;
  }

  50% {
    opacity: 1;
    width: 60px;
  }
}

/* ═══════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════ */
.about {
  padding: var(--section-pad) 0;
  background: var(--cream-pale);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.about__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 24px;
}

.about__body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #3a4060;
  margin-bottom: 48px;
}

.about__stats {
  display: flex;
  gap: clamp(16px, 3vw, 40px);
  flex-wrap: nowrap;
}

.about__stat {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  white-space: nowrap;
}

.about__stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.75vw, 2.85rem);
  font-weight: 600;
  color: #0f1127;
  line-height: 1;
}

.about__stat-label {
  font-size: clamp(0.7rem, 1.375vw, 1.425rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b74312;
  line-height: 1.2;
}

.about__visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
}

.about__card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  width: fit-content;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

.about__card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(232, 207, 160, 0.1) 0%, transparent 70%);
}



.about__quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--cream);
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════
   MISSION
   ═══════════════════════════════════════════════════ */
.mission {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}



.mission__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.mission__statement {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-light);
  max-width: 820px;
  margin: 0 auto;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════
   APPROACH
   ═══════════════════════════════════════════════════ */
.approach {
  padding: var(--section-pad) 0;
  background: var(--cream-pale);
}

.approach .section-desc {
  color: #4a5275;
}



.approach__steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.approach__step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  background: var(--white);
  border: 1px solid rgba(13, 17, 40, 0.08);
  border-radius: var(--radius-md);
  padding: 40px 28px;
  position: relative;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s;
}

.approach__step:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(13, 17, 40, 0.12);
  border-color: var(--cream-dark);
}

.approach__step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  color: rgba(13, 17, 40, 0.06);
  line-height: 1;
  margin-bottom: 12px;
  position: absolute;
  top: 24px;
  right: 24px;
}

.approach__step-icon {
  display: none;
}

.approach__step-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
  margin-top: 16px;
}

.approach__step-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #5a6380;
}

.approach__connector {
  align-self: center;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, rgba(13, 17, 40, 0.2), rgba(13, 17, 40, 0.05));
  flex-shrink: 0;
  margin: 0 4px;
}

/* ═══════════════════════════════════════════════════
   VALUES
   ═══════════════════════════════════════════════════ */
.values {
  padding: var(--section-pad) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.values::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 207, 160, 0.3), transparent);
}

.values .section-title--light {
  color: var(--cream-pale);
}

.values .section-header .section-desc {
  color: var(--text-light);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.values__item {
  padding: 44px 36px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(232, 207, 160, 0.07);
  transition: background 0.35s var(--ease-out), border-color 0.35s;
  position: relative;
}

.values__item:hover {
  background: rgba(232, 207, 160, 0.05);
  border-color: rgba(232, 207, 160, 0.2);
}

.values__item-line {
  width: 32px;
  height: 2px;
  background: var(--cream);
  margin-bottom: 24px;
  transition: width 0.35s var(--ease-out);
}

.values__item:hover .values__item-line {
  width: 56px;
}

.values__item-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 12px;
}

.values__item-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-light);
}

/* ═══════════════════════════════════════════════════
   CLIENTS
   ═══════════════════════════════════════════════════ */
.clients {
  padding: var(--section-pad) 0;
  background: var(--cream-pale);
}

.clients .section-title {
  color: var(--navy);
}

.clients .section-desc {
  color: #4a5275;
}

.clients__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.clients__card {
  background: var(--white);
  border: 1px solid rgba(13, 17, 40, 0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s;
}

.clients__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(13, 17, 40, 0.13);
  border-color: rgba(13, 17, 40, 0.15);
}

.clients__card-logo {
  padding: 36px 40px 28px;
  background: var(--navy);
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.clients__card-logo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(232, 207, 160, 0.12);
}

.clients__card-logo img {
  max-height: 90px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

/* All client logos with white/light bg */
.clients__card-logo--white-bg {
  background: var(--white);
}

.clients__card-logo--white-bg img {
  filter: none;
}

.clients__card-body {
  padding: 32px 36px 36px;
  flex: 1;
}

.clients__card-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}

.clients__card-product {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dark);
  margin-bottom: 16px;
}

.clients__card-desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #5a6380;
}

/* ═══════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════ */
.cta {
  padding: var(--section-pad) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232, 207, 160, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.cta__inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta__headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--cream-pale);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.cta__sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 24px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.cta__transparency {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.6);
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta__email-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

.cta__email-link:hover {
  color: var(--white);
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  padding: 21px 0 24px;
  background: #b74312;
  border-top: 1px solid rgba(245, 240, 232, 0.2);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 24px;
}

.footer__logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.05em;
}

.footer__tagline em {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  text-transform: none;
  font-weight: 400;
  color: var(--white);
}

.footer__nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.footer__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-pale);
  transition: color 0.25s;
}

.footer__link:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(232, 207, 160, 0.07);
  padding-top: 28px;
  text-align: center;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--cream-pale);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__logo {
    width: clamp(160px, 24vw, 300px);
    opacity: 0.6;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    flex-direction: column;
  }

  .nav__links.open {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100svh;
    background: var(--navy);
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 999;
  }

  .nav__links.open .nav__link {
    font-size: 1rem;
    color: var(--cream-pale);
  }

  .nav__links.open .nav__link--cta {
    font-size: 0.9rem;
  }

  .nav__hamburger {
    display: flex;
    z-index: 1001;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 140px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__eyebrow {
    justify-content: center;
  }

  .hero__sub {
    margin: 0 auto 40px;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__logo-wrap {
    position: relative;
    right: unset;
    top: unset;
    transform: none;
    margin: 48px auto 0;
  }

  .hero__logo {
    width: clamp(160px, 55vw, 260px);
  }

  .hero__scroll-hint {
    display: none;
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__visual {
    order: -1;
  }

  .about__card {
    max-width: 100%;
  }

  .about__stats {
    gap: 24px;
  }

  .approach__steps {
    flex-direction: column;
    align-items: center;
  }

  .approach__connector {
    width: 1px;
    height: 24px;
    background: linear-gradient(180deg, rgba(13, 17, 40, 0.2), rgba(13, 17, 40, 0.05));
    margin: 4px 0;
  }

  .approach__step {
    max-width: 100%;
    width: 100%;
  }

  .values__grid {
    grid-template-columns: 1fr;
  }

  .clients__grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__nav {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__headline {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .about__stats {
    flex-direction: column;
    gap: 20px;
  }
}

/* Particle canvas */
.particle-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--cream);
  pointer-events: none;
  animation: particleDrift var(--dur, 8s) ease-in-out infinite;
  opacity: var(--op, 0.15);
}

@keyframes particleDrift {

  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(var(--dx1, 12px), var(--dy1, -8px));
  }

  66% {
    transform: translate(var(--dx2, -8px), var(--dy2, 10px));
  }
}