/* ================================================
   RAWNAQ — CHAPTERS CSS
   Per-chapter visual treatments
   ================================================ */

/* ================================================
   WEBGL CANVAS
   ================================================ */
#webgl-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Mobile: hide WebGL canvas */
@media (max-width: 768px) {
  #webgl-canvas {
    display: none;
  }
}

/* ================================================
   MAIN CONTENT LAYER
   Sits above WebGL canvas
   ================================================ */
#main-content {
  position: relative;
  z-index: var(--z-content);
}

/* ================================================
   CHAPTER 00 — HERO
   ================================================ */
#hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Mobile fallback background — shown when WebGL disabled */
.hero__bg-mobile {
  display: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%,
    rgba(0, 184, 107, 0.06) 0%,
    transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%,
    rgba(8, 122, 79, 0.04) 0%,
    transparent 60%);
}

@media (max-width: 768px) {
  .hero__bg-mobile {
    display: block;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(24px, 5vw, 80px);
  padding-top: var(--nav-height);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: clamp(48px, 8vh, 100px);
}

.hero__chapter-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s var(--ease-out-expo) 0.2s;
}

.hero__chapter-label.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-md);
}

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(56px, 9vw, 150px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--c-light);
  max-width: 12ch;
  margin-bottom: var(--space-xl);
}

.hero__title em {
  font-style: italic;
  color: var(--c-light-3);
}

.hero__sub {
  max-width: 380px;
  color: var(--c-muted);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 300;
  margin-bottom: var(--space-xl);
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.hero__scroll-cue {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--c-muted-2);
}

.scroll-cue__text {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
}

.scroll-cue__line {
  width: 32px;
  height: 1px;
  background: var(--c-muted-2);
  position: relative;
  overflow: hidden;
}

.scroll-cue__line::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  width: 100%;
  background: var(--c-emerald);
  animation: scroll-line 2s var(--ease-in-out) infinite;
}

@keyframes scroll-line {
  0%   { left: -100%; }
  100% { left: 100%; }
}

/* Hero bottom stats row */
.hero__stats {
  position: absolute;
  bottom: clamp(32px, 5vh, 60px);
  right: clamp(24px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-sm);
}

.hero__stat-value {
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  color: var(--c-muted-2);
  letter-spacing: var(--ls-wide);
}

.hero__stat-value span {
  color: var(--c-light-3);
  margin-right: 6px;
}

/* Large background chapter identifier */
.hero__bg-word {
  position: absolute;
  bottom: -0.15em;
  right: -0.02em;
  font-family: var(--f-display);
  font-size: 28vw;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(243, 245, 242, 0.04);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.05em;
  user-select: none;
}

/* ================================================
   CHAPTER 01 — THE SHIFT
   ================================================ */
#chapter-shift {
  position: relative;
  background: var(--c-dark);
  padding: 0;
}

.shift__pin-container {
  height: 350vh;
}

.shift__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.shift__content {
  padding: 0 clamp(24px, 5vw, 80px);
  width: 100%;
}

.shift__lines {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 2vw, 20px);
  max-width: 900px;
}

.shift__line {
  overflow: hidden;
}

.shift__line-text {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(40px, 6.5vw, 108px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  transform: translateY(115%);
  transition: transform 0s; /* GSAP takes over */
}

.shift__line-text.has-accent {
  color: var(--c-light-3);
}

.shift__line-text.has-emerald {
  color: var(--c-emerald);
}

.shift__divider {
  width: 0;
  height: 1px;
  background: var(--c-dark-4);
  margin: clamp(24px, 4vw, 56px) 0;
}

.shift__conclusion {
  overflow: hidden;
}

.shift__conclusion-text {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(36px, 5.5vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--c-light);
  transform: translateY(115%);
}

.shift__conclusion-text em {
  font-style: italic;
  color: var(--c-emerald);
}

/* Mobile: no sticky */
@media (max-width: 768px) {
  .shift__pin-container {
    height: auto;
  }

  .shift__sticky {
    position: relative;
    height: auto;
    padding: var(--space-3xl) 0;
  }
}

/* ================================================
   CHAPTER 02 — THE TRANSFORMATION (Signature)
   ================================================ */
#chapter-transform {
  position: relative;
  background: var(--c-dark);
  min-height: 200vh;
}

.transform__header {
  padding: var(--space-3xl) clamp(24px, 5vw, 80px) var(--space-xl);
}

.transform__canvas-area {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.transform__webgl-zone {
  position: absolute;
  inset: 0;
}

/* Mobile fallback for signature interaction */
.transform__fallback {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .transform__fallback {
    display: flex;
  }
}

.transform__dom-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(24px, 5vw, 80px);
}

.transform__statement {
  font-family: var(--f-display);
  font-size: clamp(32px, 5vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 14ch;
  margin: 0 auto;
}

.transform__desc {
  max-width: 480px;
  margin: var(--space-xl) auto 0;
  color: var(--c-muted);
  font-size: var(--fs-body-lg);
  text-align: center;
}

/* Mobile before/after clip reveal */
.transform__clip-reveal {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px;
}

.transform__clip-before,
.transform__clip-after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.transform__clip-before {
  background: var(--c-dark-3);
}

.transform__clip-after {
  background: linear-gradient(135deg, var(--c-dark-3) 0%, rgba(0, 184, 107, 0.1) 100%);
  clip-path: inset(0 100% 0 0);
  animation: clip-reveal 3s var(--ease-in-out) 1s infinite alternate;
}

@keyframes clip-reveal {
  0%   { clip-path: inset(0 100% 0 0); }
  100% { clip-path: inset(0 0% 0 0); }
}

/* ================================================
   CHAPTER 03 — WHAT WE TRANSFORM (Services)
   ================================================ */
#chapter-services {
  position: relative;
  background: var(--c-dark);
}

.services__pin-container {
  height: 500vh;
}

.services__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 5fr 7fr;
  overflow: hidden;
}

.services__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--nav-height) clamp(24px, 4vw, 64px) var(--space-3xl);
  border-right: 1px solid rgba(89, 99, 96, 0.12);
}

.services__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--nav-height) clamp(24px, 4vw, 64px) var(--space-3xl);
}

.services__counter {
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  color: var(--c-muted-2);
  letter-spacing: var(--ls-wider);
  margin-bottom: var(--space-xl);
}

.services__title {
  font-family: var(--f-display);
  font-size: clamp(48px, 7vw, 112px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-xl);
  color: var(--c-light);
  transition: color 0.6s ease;
}

.services__desc {
  color: var(--c-muted);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
  max-width: 360px;
  font-weight: 300;
}

.services__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.services__item {
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(89, 99, 96, 0.12);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  opacity: 0.3;
  transition: opacity 0.5s ease;
  cursor: default;
}

.services__item.is-active {
  opacity: 1;
}

.services__item-num {
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  color: var(--c-muted-2);
  letter-spacing: var(--ls-wide);
  flex-shrink: 0;
  width: 28px;
}

.services__item-name {
  font-family: var(--f-body);
  font-size: var(--fs-body);
  color: var(--c-light);
  font-weight: 300;
  letter-spacing: var(--ls-wide);
}

.services__item.is-active .services__item-num {
  color: var(--c-emerald);
}

/* Mobile: Vertical reveal */
@media (max-width: 768px) {
  .services__pin-container {
    height: auto;
  }

  .services__sticky {
    position: relative;
    grid-template-columns: 1fr;
    height: auto;
    gap: var(--space-xl);
    padding: var(--space-3xl) 0;
  }

  .services__left {
    border-right: none;
    border-bottom: 1px solid rgba(89, 99, 96, 0.12);
  }
}

/* ================================================
   CHAPTER 04 — HOW WE BUILD (Process — Horizontal)
   ================================================ */
#chapter-process {
  position: relative;
  background: var(--c-dark-2);
  overflow: hidden;
}

.process__pin-container {
  height: 500vh;
}

.process__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.process__track {
  display: flex;
  height: 100%;
  will-change: transform;
}

.process__header-panel {
  flex-shrink: 0;
  width: 40vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--nav-height) clamp(24px, 4vw, 64px) clamp(40px, 8vh, 80px);
  border-right: 1px solid rgba(89, 99, 96, 0.12);
}

.process__panel {
  flex-shrink: 0;
  width: 50vw;
  height: 100%;
  padding: var(--nav-height) clamp(24px, 4vw, 64px) clamp(40px, 8vh, 80px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid rgba(89, 99, 96, 0.06);
  position: relative;
}

.process__panel:last-child {
  border-right: none;
}

.process__panel-num {
  font-family: var(--f-display);
  font-size: clamp(100px, 18vw, 280px);
  font-weight: 300;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(89, 99, 96, 0.15);
  position: absolute;
  bottom: clamp(30px, 5vh, 60px);
  right: clamp(20px, 3vw, 48px);
  pointer-events: none;
  user-select: none;
  transition: -webkit-text-stroke 0.6s ease;
}

.process__panel:hover .process__panel-num {
  -webkit-text-stroke: 1px rgba(0, 184, 107, 0.2);
}

.process__panel-phase {
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  color: var(--c-emerald);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.process__panel-title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 72px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-lg);
}

.process__panel-desc {
  color: var(--c-muted);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  max-width: 280px;
  font-weight: 300;
}

/* Mobile: vertical stack */
@media (max-width: 768px) {
  .process__pin-container {
    height: auto;
  }

  .process__sticky {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .process__track {
    flex-direction: column;
    height: auto;
  }

  .process__header-panel,
  .process__panel {
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 1px solid rgba(89, 99, 96, 0.12);
    padding: var(--space-2xl) clamp(24px, 5vw, 48px);
  }

  .process__panel-num {
    position: relative;
    font-size: 80px;
    margin-bottom: var(--space-md);
    bottom: auto;
    right: auto;
  }
}

/* ================================================
   CHAPTER 05 — SELECTED WORK (Gallery)
   ================================================ */
#chapter-work {
  position: relative;
  background: var(--c-dark);
  padding: var(--space-3xl) 0;
}

.work__header {
  padding: 0 clamp(24px, 5vw, 80px);
  margin-bottom: var(--space-3xl);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.work__gallery {
  position: relative;
}

/* Project items — art-directed layout */
.project {
  position: relative;
  margin-bottom: clamp(80px, 12vh, 180px);
  padding: 0 clamp(24px, 5vw, 80px);
}

.project--01 {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--space-xl);
  align-items: end;
}

.project--02 {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: var(--space-xl);
  align-items: start;
  margin-left: clamp(40px, 6vw, 120px);
}

.project--03 {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: var(--space-xl);
  align-items: center;
  margin-left: -20px;
}

.project--04 {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-xl);
  align-items: end;
  margin-left: clamp(40px, 8vw, 160px);
}

.project__img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.project__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.8s var(--ease-out-expo);
}

.project__img-wrapper:hover .project__img {
  transform: scale(1.0);
}

.project__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 10, 8, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.project__img-wrapper:hover .project__overlay {
  opacity: 1;
}

/* Project info */
.project__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.project__num {
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  color: var(--c-muted-2);
  letter-spacing: var(--ls-wider);
}

.project__name {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 56px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.project__category {
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  color: var(--c-muted);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
}

.project__desc {
  color: var(--c-muted);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  max-width: 320px;
  font-weight: 300;
  margin-top: var(--space-sm);
}

.project__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--c-emerald);
  margin-top: var(--space-md);
  transition: gap 0.4s var(--ease-out-expo);
}

.project__link:hover {
  gap: 16px;
}

/* Image proportions */
.project__img-wrapper--landscape {
  aspect-ratio: 16/10;
}

.project__img-wrapper--portrait {
  aspect-ratio: 3/4;
}

.project__img-wrapper--square {
  aspect-ratio: 1/1;
}

.project__img-wrapper--wide {
  aspect-ratio: 21/9;
}

/* Mobile gallery */
@media (max-width: 768px) {
  .project--01,
  .project--02,
  .project--03,
  .project--04 {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .project {
    margin-bottom: var(--space-2xl);
  }
}

/* ================================================
   CHAPTER 06 — THE DIFFERENCE
   ================================================ */
#chapter-difference {
  position: relative;
  background: var(--c-dark);
  padding: var(--space-4xl) 0;
  border-top: 1px solid rgba(89, 99, 96, 0.12);
}

.difference__header {
  padding: 0 clamp(24px, 5vw, 80px);
  margin-bottom: var(--space-3xl);
}

.difference__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(89, 99, 96, 0.12);
}

.difference__item {
  padding: var(--space-2xl) clamp(24px, 5vw, 80px);
  border-bottom: 1px solid rgba(89, 99, 96, 0.12);
  border-right: 1px solid rgba(89, 99, 96, 0.12);
  transition: background 0.4s ease;
  position: relative;
  overflow: hidden;
}

.difference__item:nth-child(even) {
  border-right: none;
}

.difference__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-emerald-dim);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.difference__item:hover::after {
  opacity: 1;
}

.difference__item-num {
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  color: var(--c-emerald);
  letter-spacing: var(--ls-wider);
  margin-bottom: var(--space-lg);
}

.difference__item-title {
  font-family: var(--f-display);
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}

.difference__item-desc {
  color: var(--c-muted);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 300;
  max-width: 380px;
}

@media (max-width: 768px) {
  .difference__items {
    grid-template-columns: 1fr;
  }

  .difference__item {
    border-right: none;
  }
}

/* ================================================
   CHAPTER 07 — MAKE THE NEXT MOVE (CTA)
   ================================================ */
#chapter-cta {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--c-dark);
}

.cta__bg-text {
  position: absolute;
  font-family: var(--f-display);
  font-size: 22vw;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(89, 99, 96, 0.08);
  letter-spacing: -0.06em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

.cta__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-muted-2);
}

.cta__headline {
  font-family: var(--f-display);
  font-size: clamp(48px, 7.5vw, 120px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 16ch;
}

.cta__headline em {
  font-style: italic;
  color: var(--c-emerald);
}

.cta__sub {
  color: var(--c-muted);
  font-size: var(--fs-body-lg);
  max-width: 440px;
  text-align: center;
}

.cta__emerald-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--c-emerald));
}

/* ================================================
   FOOTER TAKEOVER
   ================================================ */
#footer {
  position: relative;
  background: var(--c-dark-2);
  z-index: var(--z-content);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: var(--space-3xl) clamp(24px, 5vw, 80px);
  border-top: 1px solid rgba(89, 99, 96, 0.12);
}

/* Sticky footer that rises as user scrolls */
#footer-wrapper {
  position: sticky;
  bottom: 0;
  z-index: 5;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  flex: 0 0 auto;
  max-width: 280px;
}

.footer__logo {
  height: 32px;
  width: auto;
}

.footer__statement {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--c-light);
  max-width: 16ch;
}

.footer__statement em {
  font-style: italic;
  color: var(--c-emerald);
}

.footer__form-area {
  flex: 1;
  max-width: 560px;
  min-width: 280px;
}

.footer__form-title {
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-muted-2);
  margin-bottom: var(--space-xl);
}

.footer__bottom {
  margin-top: auto;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(89, 99, 96, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer__nav {
  display: flex;
  gap: var(--space-xl);
}

.footer__nav-link {
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--c-muted);
  transition: color 0.3s ease;
}

.footer__nav-link:hover {
  color: var(--c-light);
}

.footer__copy {
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  color: var(--c-muted-2);
  letter-spacing: var(--ls-wide);
}

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__contact-link {
  font-family: var(--f-body);
  font-size: var(--fs-body);
  color: var(--c-muted);
  transition: color 0.3s ease;
}

.footer__contact-link:hover {
  color: var(--c-emerald);
}

@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
  }

  .footer__form-area {
    max-width: 100%;
    width: 100%;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
  }

  .footer__nav {
    flex-wrap: wrap;
    gap: var(--space-md);
  }
}
