/* ===================================
   DÉBORA LEITE — PSICANALISTA
   Design System
   =================================== */

@font-face {
  font-family: 'Restora';
  src: url('../fonts/RestoraExtraLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Restora';
  src: url('../fonts/RestoraThinItalic.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
}

/* ===================================
   CSS VARIABLES
   =================================== */
:root {
  /* Color Tokens */
  --white:      #ffffff;
  --off-white:  #EAE1DF;
  --blush:      #EAC4B7;
  --sand:       #D7B896;
  --brown:      #995723;
  --forest:     #334C37;
  --hunter:     #466A4E;
  --ink:        #1e2a20;

  /* Usage Assignments */
  --bg-primary:   var(--white);
  --bg-soft:      var(--off-white);
  --bg-warm:      var(--blush);
  --bg-dark:      var(--forest);
  --text-primary: var(--ink);
  --text-muted:   #6b6b5e;
  --accent:       var(--brown);
  --accent-light: var(--sand);
  --divider:      var(--sand);

  /* Typography Scale (10 sizes max) */
  --fs-xs:    0.6875rem;  /* 11px */
  --fs-sm:    0.8125rem;  /* 13px */
  --fs-base:  1rem;       /* 16px */
  --fs-md:    1.1875rem;  /* 19px */
  --fs-lg:    1.5rem;     /* 24px */
  --fs-xl:    2rem;       /* 32px */
  --fs-2xl:   2.875rem;   /* 46px */
  --fs-3xl:   4rem;       /* 64px */
  --fs-4xl:   5.5rem;     /* 88px */
  --fs-5xl:   8rem;       /* 128px */

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
  --space-2xl: 11rem;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

/* ===================================
   RESET & BASE
   =================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===================================
   TYPOGRAPHY UTILITIES
   =================================== */
.t-restora {
  font-family: 'Restora', serif;
}
.t-restora-italic {
  font-family: 'Restora', serif;
  font-style: italic;
  font-weight: 100;
}
.t-montserrat {
  font-family: 'Montserrat', sans-serif;
}
.t-overline {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ===================================
   NAVIGATION
   =================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background:#F7F7F7;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  border-color: var(--off-white);
  box-shadow: 0 1px 24px rgba(51, 76, 55, 0.06);
}

.nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__logo-svg {
  width: 44px;
  height: 28px;
  opacity: 0.85;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-name {
  font-family: 'Restora', serif;
  font-size: var(--fs-md);
  font-weight: 200;
  color: var(--forest);
  letter-spacing: 0.02em;
}

.nav__logo-role {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color 0.3s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brown);
  transition: width 0.3s var(--ease-out);
}

.nav__link:hover {
  color: var(--forest);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--forest);
  padding: 12px 28px;
  border-radius: 2px;
  transition: background 0.3s ease;
}

.nav__cta:hover {
  background: var(--hunter);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--forest);
  transition: all 0.3s ease;
}

/* ===================================
   HERO
   =================================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  background: var(--white);
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) var(--space-lg) var(--space-xl) var(--space-xl);
  position: relative;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.hero__eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--sand);
}

.hero__eyebrow-text {
  color: var(--text-muted);
}

.hero__headline {
  font-family: 'Restora', serif;
  font-weight: 200;
  font-size: clamp(var(--fs-3xl), 6.5vw, var(--fs-4xl));
  line-height: 1.0;
  color: var(--forest);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-md);
}

.hero__headline em {
  font-style: italic;
  font-weight: 100;
  color: var(--brown);
}

.hero__sub {
  font-size: var(--fs-base);
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: var(--space-lg);
  font-weight: 400;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--forest);
  color: var(--off-white);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.3s var(--ease-out);
}

.btn-primary:hover {
  background: var(--hunter);
  transform: translateY(-2px);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 2px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--sand);
  transition: background 0.3s ease;
}

.btn-ghost:hover {
  color: var(--forest);
}

.btn-ghost:hover::after {
  background: var(--forest);
}

/* hero__divan-bg removed */

.hero__right {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__photo-caption {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  writing-mode: vertical-rl;
  color: var(--text-muted);
  opacity: 0.5;
}

.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  opacity: 0.5;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: var(--sand);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ===================================
   MANIFESTO STRIP
   =================================== */
.manifesto {
  background: var(--forest);
  padding: var(--space-lg) var(--space-xl);
  overflow: hidden;
  position: relative;
}

.manifesto__inner {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.manifesto__item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}

.manifesto__text {
  font-family: 'Restora', serif;
  font-weight: 200;
  font-style: italic;
  font-size: var(--fs-xl);
  color: var(--off-white);
  letter-spacing: 0.01em;
}

.manifesto__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sand);
  flex-shrink: 0;
}

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

/* ===================================
   ABOUT
   =================================== */
.about {
  padding: var(--space-2xl) var(--space-xl);
  background: var(--white);
}

.about__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-2xl);
  align-items: start;
}

.about__label-col {
  position: sticky;
  top: calc(80px + var(--space-lg));
}

.about__number {
  font-size: var(--fs-5xl);
  font-family: 'Restora', serif;
  font-weight: 200;
  color: var(--off-white);
  line-height: 1;
  margin-bottom: var(--space-sm);
  user-select: none;
}

.about__label-text {
  color: var(--text-muted);
  margin-top: var(--space-sm);
}

.about__content {
  padding-top: var(--space-sm);
}

.about__headline {
  font-family: 'Restora', serif;
  font-weight: 200;
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-3xl));
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.01em;
}

.about__headline em {
  font-style: italic;
  font-weight: 100;
  color: var(--brown);
}

.about__divider {
  width: 60px;
  height: 1px;
  background: var(--sand);
  margin-bottom: var(--space-lg);
}

.about__body {
  font-size: var(--fs-md);
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: var(--space-md);
}

.about__body + .about__body {
  margin-top: 0;
}

.about__divan {
  margin-top: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--off-white);
}

.about__divan-svg {
  width: 120px;
  opacity: 0.3;
}

.about__credentials {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.about__cred-item {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ===================================
   APPROACH (Services)
   =================================== */
.approach {
  padding: var(--space-2xl) var(--space-xl);
  background: var(--off-white);
}

.approach__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: end;
  margin-bottom: var(--space-xl);
}

.section-header__title {
  font-family: 'Restora', serif;
  font-weight: 200;
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-3xl));
  color: var(--forest);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-header__title em {
  font-style: italic;
  font-weight: 100;
  color: var(--brown);
}

.section-header__desc {
  font-size: var(--fs-base);
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 460px;
  align-self: end;
}

.approach__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.approach__card {
  background: var(--white);
  padding: var(--space-lg) var(--space-md);
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
  cursor: default;
}

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

.approach__card:hover {
  background: var(--forest);
}

.approach__card:hover::before {
  transform: scaleX(1);
}

.approach__card:hover .approach__card-num,
.approach__card:hover .approach__card-title,
.approach__card:hover .approach__card-body {
  color: var(--off-white);
}

.approach__card:hover .approach__card-icon {
  opacity: 0.2;
}

.approach__card-num {
  font-family: 'Restora', serif;
  font-weight: 200;
  font-size: var(--fs-3xl);
  color: var(--off-white);
  line-height: 1;
  margin-bottom: var(--space-md);
  transition: color 0.4s ease;
}

.approach__card-icon {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 64px;
  opacity: 0.08;
  transition: opacity 0.4s ease;
}

.approach__card-title {
  font-family: 'Restora', serif;
  font-weight: 200;
  font-size: var(--fs-lg);
  color: var(--forest);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
  transition: color 0.4s ease;
}

.approach__card-body {
  font-size: var(--fs-sm);
  line-height: 1.8;
  color: var(--text-muted);
  transition: color 0.4s ease;
}

/* ===================================
   PROCESS
   =================================== */
.process {
  padding: var(--space-2xl) var(--space-xl);
  background: #f5f2ef;
}

.process__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.process__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-xl);
}

.process__label {
  color: var(--hunter);
  margin-bottom: var(--space-sm);
}

.process__title {
  font-family: 'Restora', serif;
  font-weight: 200;
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-3xl));
  color: var(--forest);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.process__title em {
  font-style: italic;
  font-weight: 100;
}

.process__quote {
  font-family: 'Restora', serif;
  font-style: italic;
  font-weight: 100;
  font-size: var(--fs-xl);
  color: var(--brown);
  max-width: 340px;
  text-align: right;
  line-height: 1.4;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(153, 87, 35, 0.15);
}

.process__step {
  padding: var(--space-lg) var(--space-md);
  border-right: 1px solid rgba(153, 87, 35, 0.15);
  position: relative;
}

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

.process__step-num {
  font-family: 'Restora', serif;
  font-weight: 200;
  font-size: var(--fs-2xl);
  color: var(--sand);
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.process__step-title {
  font-family: 'Restora', serif;
  font-weight: 200;
  font-size: var(--fs-lg);
  color: var(--forest);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.process__step-body {
  font-size: var(--fs-sm);
  line-height: 1.8;
  color: var(--text-muted);
}

.process__step-connector {
  position: absolute;
  top: calc(var(--space-lg) + 20px);
  right: -18px;
  width: 36px;
  height: 1px;
  background: var(--sand);
  z-index: 1;
}

.process__step:last-child .process__step-connector {
  display: none;
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonial {
  padding: var(--space-2xl) var(--space-xl);
  background: var(--white);
}

.testimonial__inner {
  max-width: 1400px;
  margin: 0 auto;
}

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

.testimonial__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.testimonial__card {
  background: var(--off-white);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}

.testimonial__card:hover {
  background: #ede8e4;
}

.testimonial__card-mark {
  font-family: 'Restora', serif;
  font-size: 5rem;
  line-height: 0.7;
  color: var(--sand);
  user-select: none;
}

.testimonial__card-quote {
  font-family: 'Restora', serif;
  font-weight: 200;
  font-style: italic;
  font-size: var(--fs-md);
  color: var(--forest);
  line-height: 1.65;
  flex: 1;
  letter-spacing: -0.01em;
}

.testimonial__card-footer {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(153, 87, 35, 0.15);
}

.testimonial__card-initials {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Restora', serif;
  font-weight: 200;
  font-size: var(--fs-sm);
  color: var(--brown);
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.testimonial__card-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial__card-type {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
}

.testimonial__card-year {
  color: var(--text-muted);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta {
  padding: var(--space-2xl) var(--space-xl);
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.cta__bg-text {
  position: absolute;
  bottom: -0.1em;
  right: -0.02em;
  font-family: 'Restora', serif;
  font-weight: 200;
  font-size: 22vw;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.cta__inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-xl);
  align-items: center;
}

.cta__label {
  color: var(--sand);
  margin-bottom: var(--space-md);
}

.cta__title {
  font-family: 'Restora', serif;
  font-weight: 200;
  font-size: clamp(var(--fs-2xl), 5vw, var(--fs-4xl));
  color: var(--off-white);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-md);
}

.cta__title em {
  font-style: italic;
  font-weight: 100;
  color: var(--sand);
}

.cta__sub {
  font-size: var(--fs-base);
  line-height: 1.7;
  color: rgba(234, 225, 223, 0.7);
  max-width: 500px;
}

.cta__action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-md);
}

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--off-white);
  color: var(--forest);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 20px 40px;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.3s ease, transform 0.3s var(--ease-out);
}

.btn-light:hover {
  background: var(--white);
  transform: translateY(-3px);
}

.cta__contact-line {
  font-size: var(--fs-xs);
  color: rgba(234, 225, 223, 0.5);
  text-align: right;
  letter-spacing: 0.08em;
}

.cta__divan {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  opacity: 0.04;
  pointer-events: none;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--ink);
  padding: var(--space-lg) var(--space-xl);
}

.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: var(--space-md);
}

.footer__brand-name {
  font-family: 'Restora', serif;
  font-weight: 200;
  font-size: var(--fs-xl);
  color: var(--off-white);
  letter-spacing: 0.01em;
}

.footer__brand-role {
  color: var(--sand);
  margin-top: 4px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer__link {
  font-size: var(--fs-sm);
  color: rgba(234, 225, 223, 0.5);
  transition: color 0.3s ease;
  letter-spacing: 0.04em;
}

.footer__link:hover {
  color: var(--sand);
}

.footer__social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-xs);
}

.footer__social-link {
  font-size: var(--fs-sm);
  color: rgba(234, 225, 223, 0.5);
  transition: color 0.3s ease;
  letter-spacing: 0.04em;
}

.footer__social-link:hover {
  color: var(--sand);
}

.footer__bottom {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  color: rgba(234, 225, 223, 0.3);
}

.footer__credit {
  color: rgba(234, 225, 223, 0.3);
  text-align: right;
}

/* ===================================
   REVEAL ANIMATIONS
   =================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  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 OVERLAY
   =================================== */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav__mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-link {
  font-family: 'Restora', serif;
  font-weight: 200;
  font-size: var(--fs-2xl);
  color: var(--forest);
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

.nav__mobile-link:hover {
  color: var(--brown);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1200px) {
  :root {
    --space-xl: 5rem;
    --space-2xl: 8rem;
  }

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

@media (max-width: 900px) {
  .nav__links {
    display: none;
  }
  .nav__cta {
    display: none;
  }
  .nav__burger {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    display: flex;
    flex-direction: column-reverse;
  }

  .hero__right {
    height: 100vw;
    max-height: 520px;
  }

  .hero__left {
    padding: var(--space-xl) var(--space-md);
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .about__label-col {
    position: static;
  }

  .about__number {
    font-size: var(--fs-3xl);
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

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


  .process__top {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
  }

  .process__quote {
    text-align: left;
    max-width: 100%;
    font-size: var(--fs-lg);
  }

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

  .process__step:nth-child(2) {
    border-right: none;
  }

  .process__step-connector {
    display: none;
  }

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

  .cta__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .cta__action {
    align-items: flex-start;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer__social {
    align-items: flex-start;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
  }

  .manifesto__inner {
    gap: var(--space-lg);
  }

  .manifesto__text {
    font-size: var(--fs-lg);
  }
}

@media (max-width: 600px) {
  :root {
    --space-xl: 3.5rem;
    --space-2xl: 5rem;
  }

  .nav__inner {
    padding: 0 var(--space-md);
  }

  .hero__left {
    padding: var(--space-lg) var(--space-md);
  }

  .about,
  .approach,
  .process,
  .testimonial,
  .cta,
  .footer {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

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

  .process__step {
    border-right: none;
    border-bottom: 1px solid rgba(153, 87, 35, 0.15);
  }

  .process__step:last-child {
    border-bottom: none;
  }
}
