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

:root {
  --white:       #ffffff;
  --off-white:   #f7f6f4;
  --light:       #eeece8;
  --muted:       #c8c4bc;
  --mid:         #8a857c;
  --dark:        #2c2820;
  --ink:         #1a1714;
  --accent:      #b8a98c;
  --accent-dark: #8a7960;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'DM Sans', system-ui, sans-serif;
  --nav-h:       72px;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(255,255,255,0);
  backdrop-filter: blur(0px);
  z-index: 100;
  transition: background 0.5s var(--ease-out),
              backdrop-filter 0.5s var(--ease-out),
              box-shadow 0.5s var(--ease-out);
}

#navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav-logo {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.nav-logo span { color: var(--accent-dark); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent-dark);
  transition: width 0.4s var(--ease-out);
}

.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink) !important;
  border: 1px solid var(--muted);
  padding: 0.5rem 1.4rem;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s, border-color 0.3s !important;
}

.nav-cta:hover {
  background: var(--ink) !important;
  color: var(--white) !important;
  border-color: var(--ink) !important;
}

.nav-cta::after { display: none !important; }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-slides {
  position: absolute;
  inset: 0;
  display: flex;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s var(--ease-out);
}

.hero-slide.active { opacity: 1; }

/* Slide backgrounds — subtle textured patterns */
.hero-slide:nth-child(1) .slide-bg { background: linear-gradient(135deg, #f5f3ef 0%, #edeae4 100%); }
.hero-slide:nth-child(2) .slide-bg { background: linear-gradient(135deg, #ede9e3 0%, #e6e1d9 100%); }
.hero-slide:nth-child(3) .slide-bg { background: linear-gradient(135deg, #f0ece6 0%, #ebe7df 100%); }

.slide-bg {
  position: absolute;
  inset: 0;
}

/* Decorative grid overlay */
.slide-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,169,140,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,169,140,0.07) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Large decorative serif letter */
.slide-deco {
  position: absolute;
  right: 8vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(240px, 30vw, 420px);
  line-height: 1;
  color: rgba(184,169,140,0.12);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  transition: opacity 0.9s var(--ease-out), transform 1s var(--ease-out);
}

.slide-word {
  position: absolute;
  right: 8.5vw;
  top: calc(50% + 140px);
  transform: translateY(-50%);
  font-family: var(--serif);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(184,169,140,0.5);
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.hero-slide.active .slide-word {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.hero-slide:not(.active) .slide-word {
  opacity: 0;
  transform: translateY(-50%) translateX(20px);
}

.hero-slide.active .slide-deco {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.hero-slide:not(.active) .slide-deco {
  opacity: 0;
  transform: translateY(-50%) translateX(40px);
}

/* Thin accent line */
.slide-line {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.8s var(--ease-out) 0.2s;
}

.hero-slide.active .slide-line { transform: scaleY(1); }

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5vw 10vh;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}

.hero-headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.6rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease-out) 0.5s forwards;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent-dark);
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.8rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.9s var(--ease-out) 0.7s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: 2px;
  transition: background 0.3s, gap 0.3s;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
}

.hero-cta:hover { background: var(--accent-dark); gap: 1.4rem; }

.hero-cta-arrow {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--white);
  position: relative;
  transition: width 0.3s;
}

.hero-cta-arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid var(--white);
  border-right: 1px solid var(--white);
  transform: rotate(45deg);
}

.hero-cta:hover .hero-cta-arrow { width: 26px; }

/* Slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 3.5vh;
  right: 5vw;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-dot {
  width: 20px;
  height: 2px;
  background: var(--muted);
  cursor: pointer;
  transition: background 0.3s, width 0.4s var(--ease-out);
  border: none;
  padding: 0;
}

.hero-dot.active {
  width: 36px;
  background: var(--accent-dark);
}

/* Slide counter */
.hero-counter {
  position: absolute;
  bottom: 3.5vh;
  left: 5vw;
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--muted);
  z-index: 3;
  letter-spacing: 0.06em;
}

.hero-counter span { color: var(--ink); }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 3.5vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 3;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.5s forwards;
}

.scroll-hint-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--muted));
  animation: scrollPulse 2s ease-in-out 2s infinite;
}

.scroll-hint-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─────────────────────────────────────────
   MARQUEE / TICKER
───────────────────────────────────────── */
.marquee-wrap {
  background: var(--ink);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   FEATURE SLIDES (horizontal snap)
───────────────────────────────────────── */
#features {
  padding: 0;
  background: var(--white);
  overflow: hidden;
}

.features-header {
  padding: 7rem 5vw 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.features-header-left { max-width: 480px; }

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1.2rem;
}

.features-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: var(--ink);
}

.features-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.feat-nav-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--muted);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}

.feat-nav-btn:hover { background: var(--ink); border-color: var(--ink); }

.feat-nav-btn svg { transition: stroke 0.3s; }
.feat-nav-btn:hover svg { stroke: white; }

.features-track-wrap {
  overflow: hidden;
  padding: 0 5vw 6rem;
}

.features-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.7s var(--ease-out);
}

.feature-card {
  flex: 0 0 calc(33.333% - 1.35rem);
  min-width: 280px;
  border: 1px solid var(--light);
  border-radius: 3px;
  padding: 3rem 2.5rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
  border-color: var(--muted);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.feature-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--light);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.4s;
}

.feature-card:hover .feature-num { color: var(--muted); }

.feature-card-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1rem;
}

.feature-card-text {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 2rem;
}

.feature-card-link {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.feature-card-link:hover { gap: 14px; }

.feature-card-link::after {
  content: '→';
  font-size: 1rem;
  font-family: var(--serif);
}

/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
#services {
  padding: 8rem 5vw;
  background: var(--off-white);
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: var(--ink);
}

.section-desc {
  max-width: 380px;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--mid);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--muted);
  border: 1.5px solid var(--muted);
}

.service-item {
  background: var(--off-white);
  padding: 3rem 2.8rem;
  position: relative;
  transition: background 0.4s;
  overflow: hidden;
}

.service-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s var(--ease-out);
  z-index: 0;
}

.service-item:hover::after { transform: scaleY(1); }

.service-item > * { position: relative; z-index: 1; }

.service-icon {
  width: 36px; height: 36px;
  margin-bottom: 2rem;
  opacity: 0.4;
  transition: opacity 0.4s;
}

.service-item:hover .service-icon { opacity: 0.7; }

.service-item:hover .service-icon path,
.service-item:hover .service-icon circle,
.service-item:hover .service-icon line,
.service-item:hover .service-icon polyline,
.service-item:hover .service-icon rect { stroke: var(--white) !important; }

.service-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.9rem;
  transition: color 0.4s;
}

.service-item:hover .service-name { color: var(--white); }

.service-text {
  font-size: 0.86rem;
  line-height: 1.75;
  color: var(--mid);
  transition: color 0.4s;
}

.service-item:hover .service-text { color: rgba(255,255,255,0.6); }

.service-tag {
  display: inline-block;
  margin-top: 1.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.3rem 0.8rem;
  border-radius: 1px;
  transition: border-color 0.4s, color 0.4s;
}

.service-item:hover .service-tag {
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.6);
}

/* ─────────────────────────────────────────
   STATS BAND
───────────────────────────────────────── */
.stats-band {
  background: var(--white);
  padding: 6rem 5vw;
  display: flex;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  max-width: 240px;
  padding: 0 3rem;
  border-right: 1px solid var(--light);
  text-align: center;
}

.stat-item:first-child { border-left: 1px solid var(--light); }

.stat-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.stat-num sup {
  font-size: 0.45em;
  vertical-align: top;
  margin-top: 0.3em;
  color: var(--accent-dark);
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─────────────────────────────────────────
   WORK PREVIEW / PORTFOLIO TEASER
───────────────────────────────────────── */
#work-preview {
  padding: 7rem 5vw;
  background: var(--white);
  border-top: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
}

.work-preview-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 8rem;
  align-items: center;
}

.work-preview-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1.12;
  color: var(--ink);
  margin: 1.2rem 0;
  letter-spacing: -.015em;
}
.work-preview-title em { font-style: italic; color: var(--accent-dark); }

.work-preview-sub {
  font-size: .92rem;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 2.5rem;
  max-width: 340px;
}

.work-preview-cta {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  font-size: .73rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--muted);
  padding: .88rem 1.8rem;
  border-radius: 2px;
  transition: background .3s, border-color .3s, color .3s, gap .3s;
}
.work-preview-cta:hover { background: var(--ink); border-color: var(--ink); color: var(--white); gap: 1.3rem; }

.wpc-arrow {
  display: inline-block;
  width: 14px; height: 1px;
  background: currentColor;
  position: relative;
  flex-shrink: 0;
}
.wpc-arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 6px; height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.work-preview-right {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--light);
}

.wp-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--light);
  gap: 1.5rem;
  transition: padding .3s var(--ease-out), background .25s;
  border-radius: 2px;
}
.wp-item:hover { padding-left: 1rem; padding-right: 1rem; background: var(--off-white); }

.wp-item-left {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.wp-num {
  font-family: var(--serif);
  font-size: .85rem;
  color: var(--muted);
  flex-shrink: 0;
  line-height: 1;
  width: 1.4rem;
}

.wp-name {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: .15rem;
  transition: color .3s;
}
.wp-item:hover .wp-name { color: var(--accent-dark); }

.wp-type {
  font-size: .7rem;
  letter-spacing: .08em;
  color: var(--muted);
  text-transform: uppercase;
}

.wp-arrow {
  font-size: 1.3rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: color .3s, transform .35s var(--ease-out);
}
.wp-item:hover .wp-arrow { color: var(--accent-dark); transform: translate(3px, -3px); }

.wp-view-all {
  padding-top: 1.5rem;
  font-size: .73rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.wp-view-all a { transition: color .3s; }
.wp-view-all a:hover { color: var(--ink); }

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
#about {
  padding: 9rem 5vw;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: 'V';
  position: absolute;
  right: -2vw;
  top: -10%;
  font-family: var(--serif);
  font-size: clamp(300px, 40vw, 600px);
  font-weight: 300;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}

.about-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: center;
}

.about-left .section-label { color: var(--accent); }

.about-left-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--white);
  margin-top: 1.2rem;
}

.about-left-title em { font-style: italic; color: var(--accent); }

.about-right p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}

.about-right p:last-child { margin-bottom: 0; }

.about-right strong {
  color: rgba(255,255,255,0.9);
  font-weight: 400;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 0.4rem;
  transition: border-color 0.3s, gap 0.3s;
}

.about-cta:hover { border-color: var(--accent); gap: 1.5rem; color: var(--accent); }

/* ─────────────────────────────────────────
   CTA BAND
───────────────────────────────────────── */
.cta-band {
  padding: 7rem 5vw;
  background: var(--off-white);
  text-align: center;
}

.cta-band-label { color: var(--accent-dark); }

.cta-band-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.15;
  color: var(--ink);
  margin: 1.2rem auto 2.5rem;
  max-width: 700px;
}

.cta-band-title em { font-style: italic; color: var(--accent-dark); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1.1rem 2.6rem;
  border-radius: 2px;
  transition: background 0.3s, gap 0.3s;
}

.btn-primary:hover { background: var(--accent-dark); gap: 1.5rem; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--ink);
  padding: 4rem 5vw 2.5rem;
  color: rgba(255,255,255,0.35);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--white);
}

.footer-logo span { color: var(--accent); }

.footer-tagline {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.footer-col-title {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.2rem;
}

.footer-col-links { display: flex; flex-direction: column; gap: 0.7rem; }

.footer-col-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.3s;
}

.footer-col-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy { font-size: 0.75rem; }

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}

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

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s 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.4s; }

/* ─────────────────────────────────────────
   MOBILE NAV TOGGLE
───────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--white);
    padding: 3rem 5vw;
    gap: 2rem;
    z-index: 99;
  }

  .nav-links.open a {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
  }

  .hero-headline { font-size: clamp(2rem, 8vw, 3.5rem); }

  .features-header { flex-direction: column; align-items: flex-start; }

  .feature-card { flex: 0 0 80vw; }

  .services-grid { grid-template-columns: 1fr; }

  .stats-band { flex-wrap: wrap; gap: 0; }
  .stat-item { flex: 0 0 50%; max-width: none; border: none; border-bottom: 1px solid var(--light); padding: 2rem 1rem; }

  .about-inner { grid-template-columns: 1fr; gap: 3rem; }

  .work-preview-inner { grid-template-columns: 1fr; gap: 4rem; }
  .work-preview-sub { max-width: 100%; }

  .footer-top { flex-direction: column; }

  .slide-deco { display: none; }
}

@media (max-width: 600px) {
  .hero-content { padding: 0 5vw 12vh; }
  .stat-item { flex: 0 0 100%; }
  .footer-links { gap: 2.5rem; }

  #work-preview { padding: 5rem 5vw; }
  .work-preview-inner { gap: 3rem; }
  .wp-name { font-size: 1.2rem; }
  .wp-type { font-size: .65rem; }
  .wp-item { padding: 1.4rem 0; }
  .wp-arrow { font-size: 1rem; }
  .work-preview-cta { font-size: .68rem; padding: .8rem 1.4rem; }
}