/* ============================================
   TERRA VIVA — Design System
   Várzea do Bem-Estar
   ============================================ */


/* --- Design Tokens --- */
:root {
  /* Palette — Extraída da identidade visual */

  /* Primary — Verde Sálvia */
  --forest: #4F6A5C;
  --forest-deep: #3B2E2A;
  --leaf: #6E8F7C;
  --leaf-light: #8FAE9E;

  /* Secondary — Terracota / Argila */
  --mango: #A86F45;
  --mango-glow: #B8794F;

  /* Accent — Rosa Queimado */
  --accent: #D98F8A;

  /* Tons de pele e terra */
  --caramelo: #D6A57C;
  --bege: #D8C2A8;
  --terracota: #9A5C3A;

  /* Neutros */
  --sand: #F2EFEA;
  --sand-warm: #E8E3DB;
  --earth: #111111;
  --earth-mid: #5D4E47;
  --bark: #3B2E2A;
  --cream: #F9F6F2;
  --white: #ffffff;

  /* Typography */
  --font-display: 'Crimson Text', Georgia, serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing — 8pt grid */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Geometry */
  --radius-sharp: 0px;
  --radius-organic: 24px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(59, 46, 42, 0.07);
  --shadow-card-hover: 0 16px 48px rgba(59, 46, 42, 0.13);
  --shadow-elevated: 0 24px 64px rgba(79, 106, 92, 0.1);

  /* Transitions */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration-fast: 0.2s;
  --duration-normal: 0.4s;
  --duration-slow: 0.7s;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--earth);
  background: var(--sand);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background Blurs */
.blur-blob {
  position: fixed;
  width: 45vw;
  height: 45vw;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.08;
  pointer-events: none;
  animation: blob-float 25s ease-in-out infinite alternate;
}

.blur-blob--1 {
  background: var(--mango);
  top: -10%;
  left: -5%;
  animation-duration: 20s;
}

.blur-blob--2 {
  background: var(--forest);
  bottom: 0%;
  right: -10%;
  animation-duration: 30s;
  animation-delay: -5s;
}

.blur-blob--3 {
  background: var(--terracota);
  top: 40%;
  left: 30%;
  width: 30vw;
  height: 30vw;
  animation-duration: 35s;
  animation-delay: -10s;
}

@keyframes gradient-move {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes blob-float {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(5%, 10%) scale(1.1); }
  66% { transform: translate(-8%, 5%) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* --- Layout --- */
.container {
  width: min(1140px, 90vw);
  margin: 0 auto;
}

.container--narrow {
  width: min(800px, 90vw);
  margin: 0 auto;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--duration-slow) var(--ease-smooth),
    transform var(--duration-slow) var(--ease-spring);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

.reveal-delay-3 {
  transition-delay: 0.36s;
}

.reveal-delay-4 {
  transition-delay: 0.48s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-sm) 0;
  transition: background var(--duration-normal) var(--ease-smooth),
    box-shadow var(--duration-normal) var(--ease-smooth);
}

.nav.scrolled {
  background: rgba(242, 239, 234, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(59, 46, 42, 0.06);
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest-deep);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav__logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  transition: transform var(--duration-fast) var(--ease-spring);
}

.nav__brand:hover .nav__logo {
  transform: scale(1.06) rotate(-2deg);
}

.nav__brand-text {
  line-height: 1.2;
}

.nav__cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--forest);
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-pill);
  transition: all var(--duration-fast) var(--ease-spring);
}

.nav__cta:hover {
  background: var(--forest-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(59, 46, 42, 0.15);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 0 var(--space-3xl);
  background: linear-gradient(-45deg, var(--cream), var(--sand-warm), #f8f4ed, var(--sand), var(--cream));
  color: var(--earth);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 10% 85%, rgba(168, 111, 69, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 15%, rgba(110, 143, 124, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  background: radial-gradient(circle, rgba(110, 143, 124, 0.04) 0%, transparent 65%);
  left: -6%;
  bottom: -12%;
  z-index: 1;
}

.hero .container,
.section .container {
  position: relative;
  z-index: 5;
}

@keyframes morphBlob {
  0% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }

  50% {
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%;
  }

  100% {
    border-radius: 30% 70% 50% 50% / 60% 40% 70% 30%;
  }
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: var(--space-lg);
  background: rgba(110, 143, 124, 0.1);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
}

.hero__badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--leaf);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.6);
  }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  font-weight: 400;
  text-transform: uppercase;
  max-width: 22ch;
  margin-bottom: var(--space-md);
  color: var(--forest-deep);
}

.hero__title em,
h2 em,
h3 em,
p em {
  font-style: normal;
  color: var(--mango);
  font-family: var(--font-display) !important;
}

.hero__title em {
    font-style: normal;
}

.hero__lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.75;
  max-width: 48ch;
  color: var(--earth-mid);
  margin-bottom: var(--space-lg);
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Hero Visual */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__logo {
  width: 100%;
  max-width: 580px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 40px rgba(59, 46, 42, 0.08));
  transition: transform var(--duration-slow) var(--ease-spring);
}

.hero__logo:hover {
  transform: scale(1.03) rotate(1deg);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-spring);
  will-change: transform;
  text-decoration: none;
}

.btn--primary {
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(79, 106, 92, 0.25);
}

.btn--primary:hover {
  background: var(--forest-deep);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(79, 106, 92, 0.3);
}

.btn--primary:active {
  transform: translateY(0) scale(0.98);
}

.btn--outline {
  background: transparent;
  color: var(--forest);
  border: 2px solid rgba(79, 106, 92, 0.25);
  border-radius: var(--radius-pill);
}

.btn--outline:hover {
  border-color: var(--forest);
  background: rgba(79, 106, 92, 0.06);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--forest);
  color: var(--sand);
  border-radius: var(--radius-pill);
}

.btn--dark:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
}

.btn--accent {
  background: var(--mango);
  color: var(--white);
  border-radius: var(--radius-pill);
}

.btn--accent:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

/* ============================================
   IMPACT BAR
   ============================================ */
.impact-bar {
  background: var(--forest-deep);
  padding: var(--space-lg) 0;
  overflow: hidden;
}

.impact-bar__inner {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.impact-stat {
  text-align: center;
}

.impact-stat__number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.impact-stat__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bege);
}

/* ============================================
   SECTIONS — Global
   ============================================ */
.section {
  padding: var(--space-3xl) 0;
}

.section--sand {
  background: var(--sand);
}

.section--cream {
  background: var(--cream);
}

.section--forest {
  background: var(--forest);
  color: var(--sand);
}

.section--warm {
  background: linear-gradient(135deg, var(--sand), var(--sand-warm));
}

.section__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mango);
  margin-bottom: 0.6rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: var(--space-md);
}

.section--forest .section__title {
  color: var(--cream);
}

.section__text {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--earth-mid);
  max-width: 60ch;
}

.section--forest .section__text {
  color: rgba(242, 239, 234, 0.75);
}

/* ============================================
   ABOUT (Quem Somos)
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-card {
  background: var(--cream);
  border: 1px solid rgba(59, 46, 42, 0.06);
  border-radius: var(--radius-organic);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--duration-normal) var(--ease-smooth),
    transform var(--duration-fast) var(--ease-spring);
}

.about-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.about-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--leaf);
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
}

.about-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
  margin-bottom: 0.4rem;
}

.about-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--earth-mid);
}

/* ============================================
   FEATURES (O que fazemos)
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.feature {
  background: var(--sand);
  border: 1px solid rgba(59, 46, 42, 0.06);
  border-radius: var(--radius-organic);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--duration-normal) var(--ease-spring);
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--leaf), var(--mango));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-normal) var(--ease-spring);
}

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

.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.feature__icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  display: block;
  color: var(--forest);
}

.feature__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
  margin-bottom: 0.5rem;
}

.feature__text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--earth-mid);
}

/* ============================================
   PROCESS (Como fazemos)
   ============================================ */
.process-steps {
  display: grid;
  gap: 0;
  margin-top: var(--space-lg);
}

.process-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid rgba(59, 46, 42, 0.07);
  transition: background var(--duration-normal) var(--ease-smooth);
}

.process-step:last-child {
  border-bottom: none;
}

.process-step:hover {
  background: rgba(110, 143, 124, 0.04);
}

.process-step__number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--leaf);
  line-height: 1;
}

.process-step__content {
  padding-top: 0.25rem;
}

.process-step__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
  margin-bottom: 0.25rem;
}

.process-step__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--earth-mid);
}

/* ============================================
   QUOTE (Por que fazemos)
   ============================================ */
.quote-section {
  background: var(--forest-deep);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}

.quote-block {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 46ch;
  margin: 0 auto;
}

.quote-block__mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.5;
  display: block;
  margin-bottom: var(--space-md);
}

.quote-block__text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  line-height: 1.35;
  color: var(--sand);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-style: italic;
  margin-bottom: var(--space-lg);
}

.quote-block__caption {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--bege);
  max-width: 48ch;
  margin: 0 auto;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: stretch;
}

.contact-visual {
  height: 100%;
}

.contact-visual .cta-block__image {
  height: 100%;
  object-fit: cover;
}

.contact-info dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mango);
  margin-top: var(--space-md);
}

.contact-info dt:first-child {
  margin-top: 0;
}

.contact-info dd {
  font-size: 1rem;
  color: var(--earth);
  margin-top: 0.2rem;
}

.contact-card {
  background: var(--cream);
  border: 1px solid rgba(59, 46, 42, 0.06);
  border-radius: var(--radius-organic);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
}

.contact-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
  margin-bottom: var(--space-md);
}

/* ============================================
   CTA SECTION
   ============================================ */
.section--cta {
  background: linear-gradient(-45deg, var(--forest-deep), #2a201d, #42322d, #352a26, var(--forest-deep));
  background-size: 400% 400%;
  animation: gradient-move 10s ease infinite;
  position: relative;
  overflow: hidden;
}

.section--cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(110, 143, 124, 0.12) 0%, transparent 55%),
              radial-gradient(ellipse 40% 60% at 10% 30%, rgba(168, 111, 69, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.section-header--center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto var(--space-xl);
  color: var(--white);
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.5rem);
  color: inherit;
  margin-bottom: var(--space-md);
}

.section-header__text {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.6;
  opacity: 0.95;
  color: inherit;
  transition: all var(--duration-normal);
}

.section-header__text--large {
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  line-height: 1.4;
  font-weight: 400;
  max-width: 1000px;
  margin: 0 auto;
}

.cta-block {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.cta-block__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.0;
  letter-spacing: -0.01em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: var(--space-md);
  margin-top: 0;
}

.cta-block--warm .cta-block__title {
  color: var(--forest-deep);
}

.cta-block__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.cta-block__image {
  width: 100%;
  border-radius: var(--radius-organic);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  display: block;
}

@media (max-width: 800px) {
  .cta-block__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.cta-block__text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--bege);
  max-width: 52ch;
  margin-bottom: var(--space-lg);
}

.cta-block--warm .cta-block__text {
  color: var(--earth-mid);
}

.contact-card__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(59, 46, 42, 0.05);
  font-size: 0.92rem;
  color: var(--earth);
  transition: color var(--duration-fast), padding-left var(--duration-fast);
}

.contact-card__item:last-of-type {
  border-bottom: none;
}

.contact-card__item:hover {
  color: var(--mango);
  padding-left: 0.3rem;
}

.contact-card__item-icon {
  font-size: 1.1rem;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}

.contact-card__actions {
  margin-top: var(--space-md);
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bark);
  color: var(--bege);
  padding: var(--space-xl) 0 var(--space-lg);
  text-align: center;
  font-size: 0.82rem;
}

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

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer__hub-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  opacity: 0.65;
  margin-top: 0.6rem;
  color: var(--accent);
  transition: opacity 0.2s;
}
.footer__hub-link:hover { opacity: 1; color: var(--white); }

.footer__logo {
  height: 60px;
  width: auto;
  margin-bottom: var(--space-xs);
}

.footer__description {
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.8;
}

.footer__copy {
  margin-top: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(216, 194, 168, 0.1);
  width: 100%;
  opacity: 0.6;
}

.footer a {
  color: var(--accent);
  transition: color var(--duration-fast);
}

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

/* ============================================
   RESPONSIVE — Tablet
   ============================================ */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-lg);
  }

  .hero__visual {
    order: -1;
  }

  .hero__logo {
    max-width: 320px;
  }

  .hero__title {
    max-width: none;
  }

  .hero__badge {
    justify-content: center;
  }

  .hero__lead {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

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

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

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: var(--space-2xl) 0;
  }

  .process-step {
    grid-template-columns: 56px 1fr;
  }
}

/* ============================================
   RESPONSIVE — Mobile
   ============================================ */
@media (max-width: 600px) {
  .container {
    width: min(1140px, 88vw);
  }

  .hero {
    padding: 5.5rem 0 var(--space-xl);
    min-height: auto;
  }

  .hero__grid {
    gap: var(--space-md);
  }

  .hero__logo {
    max-width: 240px;
  }

  .hero__title {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
    max-width: none;
  }

  .hero__lead {
    font-size: 0.95rem;
  }

  .hero__badge {
    font-size: 0.7rem;
    padding: 0.35rem 0.8rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    text-align: center;
    justify-content: center;
  }

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

  .section {
    padding: var(--space-xl) 0;
  }

  .section__title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .process-step {
    grid-template-columns: 1fr;
    padding: var(--space-md) 0;
  }

  .process-step__number {
    font-size: 2rem;
  }

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

  .impact-bar__inner {
    flex-direction: row;
    justify-content: space-around;
    gap: var(--space-xs);
  }

  .impact-stat__number {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
  }

  .impact-stat__label {
    font-size: 0.65rem;
    letter-spacing: 0.06em;
  }

  .quote-block__text {
    font-size: clamp(1.1rem, 4.5vw, 1.5rem);
  }

  .quote-block__mark {
    font-size: 3.5rem;
  }

  .contact-card__actions {
    flex-direction: column;
  }

  .contact-card__actions .btn {
    text-align: center;
    justify-content: center;
  }

  .nav__brand-text {
    display: none;
  }

  .nav__logo {
    width: 36px;
    height: 36px;
  }

  .nav__cta {
    font-size: 0.8rem;
    padding: 0.45rem 1rem;
  }

  .footer {
    font-size: 0.78rem;
    padding: var(--space-md) 0;
  }
}

/* ============================================
   RESPONSIVE — Very small
   ============================================ */
@media (max-width: 768px) {
  .contact-card__actions {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .contact-card__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-block__visual {
    min-height: 300px;
  }

  .cta-block__image {
    position: relative;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 380px) {
  .hero__title {
    font-size: 2rem;
  }

  .impact-bar__inner {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }
}