/* ============================================================
   Cristina Madeira — Integral Leadership Coach
   Brand: HUMANSHIP™
   ============================================================ */

:root {
  /* Brand palette */
  --teal: #08303A;
  --teal-deep: #061f26;
  --teal-soft: #0e4250;
  --terracotta: #C17D65;
  --terracotta-soft: #d29a87;
  --cream: #FFE6CF;
  --cream-soft: #fff3e3;
  --slate: #5A696E;
  --slate-light: #8b969a;
  --ink: #08303A;
  --paper: #fbf7f1;
  --line: rgba(8, 48, 58, 0.12);
  --line-light: rgba(255, 255, 255, 0.12);

  /* Type */
  --font-sans: 'Montserrat', system-ui, sans-serif;
  --font-display: 'Montserrat', system-ui, sans-serif;

  /* Spacing */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { margin: 0 0 0.5em; font-weight: 600; letter-spacing: -0.02em; line-height: 1.08; }

::selection { background: var(--terracotta); color: var(--cream-soft); }

/* Container */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(251, 247, 241, 0);
  transition: background 0.35s ease, padding 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}
.nav.scrolled {
  background: rgba(251, 247, 241, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--line);
}
.nav.on-dark:not(.scrolled) { color: var(--cream); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: inherit;
}
.logo-mark {
  width: 22px; height: 28px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-transform: lowercase;
}
.logo-text span:last-child { font-weight: 500; }

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 13px;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  opacity: 0.78;
  transition: opacity 0.2s ease;
  padding: 6px 0;
}
.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--terracotta);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--terracotta);
  color: var(--cream-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease;
}
.nav-cta:hover { background: #b56b52; transform: translateY(-1px); }
.nav-cta svg { transition: transform 0.2s ease; }
.nav-cta:hover svg { transform: translateX(2px); }

/* Language switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.lang-opt {
  opacity: 0.5;
  padding: 6px 2px;
  transition: opacity 0.2s ease;
}
.lang-opt:hover { opacity: 0.85; }
.lang-opt.active { opacity: 1; color: var(--terracotta); }
.lang-sep { opacity: 0.4; }

@media (max-width: 920px) {
  .lang-switch { display: none; }
}

.mobile-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  color: inherit;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--teal);
  color: var(--cream);
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(193, 125, 101, 0.18), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(255, 230, 207, 0.06), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-copy {
  max-width: 680px;
}

/* Full-bleed background photo */
.hero-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.55;
}
.hero-bg-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #08303A 0%,
    #08303A 30%,
    rgba(8,48,58,0.82) 55%,
    rgba(8,48,58,0.15) 100%
  );
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta-soft);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-eyebrow::before {
  content: '';
  width: 36px; height: 1px;
  background: var(--terracotta);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.5vw, 104px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  color: var(--cream);
}
.hero h1 .accent {
  color: var(--terracotta);
  font-style: italic;
  font-weight: 500;
}
.hero h1 .stack {
  display: block;
}
.hero-sub {
  font-size: clamp(15px, 1.15vw, 17px);
  color: rgba(255, 230, 207, 0.78);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero-sub strong {
  color: var(--cream);
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  border: 0;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--cream-soft);
  box-shadow: 0 12px 32px -16px rgba(193, 125, 101, 0.6);
}
.btn-primary:hover {
  background: var(--cream);
  color: var(--teal);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255, 230, 207, 0.3);
}
.btn-ghost:hover {
  background: var(--cream);
  color: var(--teal);
  border-color: var(--cream);
}
.btn-dark {
  background: var(--teal);
  color: var(--cream-soft);
}
.btn-dark:hover { background: var(--teal-deep); transform: translateY(-2px); }
.btn-arrow {
  width: 18px; height: 18px;
  transition: transform 0.2s ease;
}
.btn:hover .btn-arrow { transform: translateX(3px); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 230, 207, 0.15);
  max-width: 600px;
}
.hero-proof-item {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 230, 207, 0.65);
}
.hero-proof-item strong {
  display: block;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 13px;
  letter-spacing: 0.01em;
}

/* Hero visual — legacy (hidden, replaced by hero-bg-photo) */
.hero-visual { display: none; }
.hero-visual .stamp {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--teal);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.3;
  padding: 12px;
  z-index: 2;
  animation: spin 30s linear infinite;
}
.stamp-inner {
  display: block;
  transform-origin: center;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero-tag {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 230, 207, 0.5);
  white-space: nowrap;
}
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 230, 207, 0.55);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, var(--terracotta), transparent);
  animation: drop 2.5s ease-in-out infinite;
}
@keyframes drop {
  0%, 100% { transform: scaleY(0.5); opacity: 0.4; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { position: relative; }
.section { padding: clamp(80px, 12vw, 160px) 0; }
.section-cream { background: var(--cream-soft); }
.section-teal { background: var(--teal); color: var(--cream); }
.section-paper { background: var(--paper); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 28px;
}
.eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: currentColor;
}
.section-teal .eyebrow { color: var(--terracotta-soft); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  max-width: 900px;
}
.section-title .accent { color: var(--terracotta); font-style: italic; font-weight: 500; }
.section-lede {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.6;
  color: var(--slate);
  max-width: 680px;
}
.section-teal .section-lede { color: rgba(255, 230, 207, 0.75); }

/* ============================================================
   SERVICES (3 ways to work) — TABS
   ============================================================ */
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}

.tabs {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
}
.tab-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--line);
}
.tab-btn {
  display: grid;
  grid-template-columns: 50px 1fr 20px;
  gap: 18px;
  align-items: center;
  padding: 24px 0;
  border: 0;
  background: none;
  text-align: left;
  border-bottom: 1px solid var(--line);
  color: var(--slate);
  transition: color 0.3s ease, padding 0.3s ease;
  position: relative;
}
.tab-btn:hover { color: var(--teal); }
.tab-btn .num {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--terracotta);
  font-weight: 600;
}
.tab-btn .label {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--teal);
  line-height: 1.25;
}
.tab-btn .chev {
  width: 14px; height: 14px;
  opacity: 0.4;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.tab-btn.active { color: var(--teal); }
.tab-btn.active::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--terracotta);
}
.tab-btn.active .chev { opacity: 1; transform: rotate(90deg); color: var(--terracotta); }

.tab-panel {
  display: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(28px, 4vw, 56px);
  position: relative;
  animation: panel-in 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.tab-panel.active { display: block; }
.tab-panel::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 3px;
  background: var(--terracotta);
}
@keyframes panel-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.tab-panel .for-who {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 18px;
  font-weight: 600;
}
.tab-panel h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--teal);
  margin-bottom: 24px;
  max-width: 700px;
}
.tab-panel .body {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 28px;
  max-width: 720px;
}
.tab-panel .body p + p { margin-top: 14px; }
.tab-panel .work-list {
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.tab-panel .work-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 16px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--teal);
}
.tab-panel .work-list li::before {
  content: '';
  width: 12px; height: 12px;
  margin-top: 7px;
  border: 1.5px solid var(--terracotta);
  border-right: 0; border-bottom: 0;
  background: var(--terracotta);
  /* door shape */
  border-radius: 1px 0 0 1px;
}
.tab-panel .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-bottom: 28px;
}
.tab-panel .meta dt {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate-light);
  font-weight: 600;
  margin-bottom: 4px;
}
.tab-panel .meta dd {
  margin: 0;
  font-size: 15px;
  color: var(--teal);
  font-weight: 500;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi {
  background: var(--cream-soft);
  position: relative;
  overflow: hidden;
}
.testi-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 60px;
}
.testi-controls {
  display: flex;
  gap: 8px;
}
.testi-ctrl {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--teal);
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}
.testi-ctrl:hover { background: var(--teal); color: var(--cream); border-color: var(--teal); }
.testi-ctrl:disabled { opacity: 0.3; cursor: default; }
.testi-ctrl:disabled:hover { background: transparent; color: var(--teal); }

.testi-viewport {
  overflow: hidden;
}
.testi-track {
  display: flex;
  gap: 32px;
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.testi-card {
  flex: 0 0 calc((100% - 64px) / 3);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(8, 48, 58, 0.12);
}
.testi-card .quote-mark {
  font-family: 'Georgia', serif;
  font-size: 88px;
  line-height: 0.4;
  color: var(--terracotta);
  height: 32px;
  margin-bottom: 12px;
}
.testi-card .text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--teal);
  margin-bottom: 28px;
  flex: 1;
  letter-spacing: -0.005em;
}
.testi-card .author {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 14px;
  align-items: center;
}
.testi-card .initials {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.testi-card .name {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
}
.testi-card .role {
  font-size: 12.5px;
  color: var(--slate);
  margin-top: 2px;
}

.testi-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 40px;
}
.testi-dots button {
  width: 24px; height: 3px;
  border-radius: 4px;
  background: var(--line);
  border: 0;
  padding: 0;
  transition: background 0.25s ease, width 0.25s ease;
}
.testi-dots button.active { background: var(--terracotta); width: 40px; }

/* ============================================================
   RECOGNIZED (5 differentiators)
   ============================================================ */
.recog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-light);
  margin-top: 64px;
}
.recog-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  align-items: start;
}
.recog-item:nth-child(odd) { padding-right: 40px; border-right: 1px solid var(--line-light); }
.recog-item:nth-child(even) { padding-left: 40px; }
.recog-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  border-right: 0;
}
.recog-num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--terracotta-soft);
  font-weight: 500;
  border: 1px solid rgba(193, 125, 101, 0.4);
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 2px;
  flex-shrink: 0;
}
.recog-item h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.recog-item p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 230, 207, 0.72);
  margin: 0;
  max-width: 480px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.about-portrait {
  position: sticky;
  top: 100px;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  background: var(--teal);
}
.about-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-portrait .badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--cream);
  color: var(--teal);
  padding: 14px 20px;
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.4;
}
.about-portrait .badge strong { display: block; font-size: 22px; letter-spacing: -0.02em; font-weight: 700; text-transform: none; }

.about h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin-bottom: 16px;
  color: var(--teal);
}
.about .role {
  font-size: 14px;
  color: var(--terracotta);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  font-weight: 500;
}
.about .lede {
  font-size: 19px;
  font-style: italic;
  line-height: 1.5;
  color: var(--teal);
  margin-bottom: 28px;
  padding-left: 24px;
  border-left: 2px solid var(--terracotta);
  letter-spacing: -0.005em;
}
.about .body {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--slate);
  margin-bottom: 40px;
}
.about .body p { margin-bottom: 16px; }

.credentials {
  margin-top: 56px;
  border-top: 1px solid var(--line);
  padding-top: 48px;
}
.credentials h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--teal);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.cred-group {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.cred-group:last-child { border-bottom: 0; }
.cred-group .title {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  padding-top: 4px;
}
.cred-group ul {
  margin: 0; padding: 0; list-style: none;
  display: grid;
  gap: 8px;
}
.cred-group li {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--teal);
}
.cred-group li strong { font-weight: 600; }
.cred-group li span { color: var(--slate); }

.sectors {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sectors .tag {
  font-size: 12px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--slate);
  letter-spacing: 0.02em;
}

/* ============================================================
   HUMANSHIP™
   ============================================================ */
.humanship {
  background: var(--teal);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.humanship::before {
  content: 'HUMANSHIP';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 280px);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: rgba(193, 125, 101, 0.06);
  pointer-events: none;
  white-space: nowrap;
}
.hs-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}
.hs-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--cream);
}
.hs-title sup {
  font-size: 0.4em;
  vertical-align: super;
  color: var(--terracotta);
  font-weight: 500;
}
.hs-intro {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 230, 207, 0.78);
}
.hs-intro strong {
  color: var(--cream);
  font-weight: 500;
}
.hs-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}
.hs-pillar {
  border: 1px solid rgba(255, 230, 207, 0.15);
  border-radius: 4px;
  padding: 36px;
  background: rgba(255, 230, 207, 0.07);
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.hs-pillar:hover {
  border-color: var(--terracotta);
  transform: translateY(-4px);
}
.hs-pillar .pnum {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--terracotta);
  letter-spacing: 0.18em;
  margin-bottom: 24px;
  font-weight: 600;
}
.hs-pillar h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.hs-pillar p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 230, 207, 0.7);
  margin: 0;
}

.hs-stamp {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 230, 207, 0.15);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hs-stamp .hs-stamp-logo {
  height: 130px;
  width: auto;
  filter: none;
}
.hs-stamp .stamp-text {
  font-size: 18px;
  font-style: italic;
  color: var(--cream);
  max-width: 720px;
  line-height: 1.5;
  letter-spacing: -0.005em;
}

/* ============================================================
   COMO TRABALHO
   ============================================================ */
.how-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.how-item {
  display: grid;
  grid-template-columns: 120px 1fr 1.4fr;
  gap: 60px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background 0.3s ease, padding 0.3s ease;
}
.how-item:hover {
  background: rgba(255, 230, 207, 0.18);
  padding-left: 20px;
  padding-right: 20px;
}
.how-num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--terracotta);
  letter-spacing: 0.18em;
  font-weight: 600;
  padding-top: 6px;
}
.how-item h4 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  color: var(--teal);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.how-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--slate);
}

.how-impact {
  margin-top: 80px;
  padding: 56px;
  background: var(--teal);
  color: var(--cream);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.how-impact::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 300px; height: 300px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(193, 125, 101, 0.18), transparent 70%);
}
.how-impact .label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--terracotta-soft);
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
}
.how-impact .text {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
  color: var(--cream);
  margin: 0;
  letter-spacing: -0.01em;
  position: relative;
}
.how-impact .text strong { color: var(--terracotta-soft); font-weight: 500; font-style: italic; }

/* ============================================================
   COMPROMISSO
   ============================================================ */
.commit {
  background: var(--cream-soft);
}
.commit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}
.commit-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-style: italic;
  line-height: 1.2;
  color: var(--teal);
  letter-spacing: -0.025em;
  font-weight: 400;
  position: relative;
  padding-left: 36px;
}
.commit-quote::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 4px; height: calc(100% - 24px);
  background: var(--terracotta);
}
.commit-attribution {
  margin-top: 28px;
  padding-left: 36px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
  font-style: normal;
  font-family: var(--font-sans);
}
.commit-creed {
  font-size: 22px;
  line-height: 1.55;
  color: var(--teal);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.commit-creed strong {
  color: var(--terracotta);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.02em;
}
.commit-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 4px;
  border-top: 1px solid var(--line);
}
.commit-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 18px;
  align-items: start;
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate);
}
.commit-list li strong {
  display: block;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 16px;
}
.commit-list .check {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--terracotta);
  color: var(--cream-soft);
  display: grid; place-items: center;
  margin-top: 4px;
  flex-shrink: 0;
}
.commit-list .check svg { width: 12px; height: 12px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--teal);
  color: var(--cream);
  overflow: hidden;
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(193, 125, 101, 0.15), transparent 60%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
  position: relative;
  z-index: 2;
}
.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin-bottom: 28px;
  color: var(--cream);
}
.contact .lede {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 230, 207, 0.78);
  margin-bottom: 40px;
  max-width: 540px;
}
.contact-info {
  margin-top: 32px;
  display: grid;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 230, 207, 0.15);
}
.contact-info a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  font-size: 15px;
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 230, 207, 0.08);
  transition: color 0.2s ease, padding 0.2s ease;
}
.contact-info a:hover { color: var(--terracotta-soft); padding-left: 8px; }
.contact-info a:last-child { border-bottom: 0; }
.contact-info .icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(255, 230, 207, 0.2);
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-info .label {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-info .label small {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 230, 207, 0.5);
  margin-bottom: 2px;
}
.contact-info .arrow {
  opacity: 0.4;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.contact-info a:hover .arrow { opacity: 1; transform: translateX(4px); }

/* Form */
.form {
  background: rgba(255, 230, 207, 0.04);
  border: 1px solid rgba(255, 230, 207, 0.12);
  padding: 40px;
  border-radius: 4px;
  backdrop-filter: blur(6px);
}
.form h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 28px;
  color: var(--cream);
  font-weight: 600;
  letter-spacing: -0.015em;
}
.form-row { margin-bottom: 22px; }
.form-row label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 230, 207, 0.55);
  margin-bottom: 10px;
  font-weight: 600;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 230, 207, 0.2);
  padding: 10px 0;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 15px;
  outline: 0;
  transition: border-color 0.2s ease;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(255, 230, 207, 0.35); }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--terracotta); }
.form-row select { appearance: none; cursor: pointer; }
.form-row select option { background: var(--teal); color: var(--cream); }
.form-row textarea { resize: vertical; min-height: 100px; }

.form-row.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 22px;
}
.form-row.split > div { margin: 0; }
.form-row.split label { display: block; }

.form-submit {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}
.form-submit button {
  width: 100%;
  justify-content: center;
}
.form-submit .privacy {
  font-size: 12px;
  color: rgba(255, 230, 207, 0.5);
  line-height: 1.5;
  text-align: center;
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.active { display: block; }
.form-success .check-big {
  width: 64px; height: 64px;
  border-radius: 999px;
  background: var(--terracotta);
  color: var(--cream);
  display: grid; place-items: center;
  margin: 0 auto 24px;
}
.form-success h4 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--cream);
  font-weight: 600;
}
.form-success p {
  color: rgba(255, 230, 207, 0.7);
  font-size: 14.5px;
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--teal-deep);
  color: rgba(255, 230, 207, 0.6);
  padding: 56px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 230, 207, 0.08);
}
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta-soft);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-size: 13.5px;
  color: rgba(255, 230, 207, 0.65);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--cream); }
.footer-brand .logo-mark { color: var(--terracotta); }
.footer-brand p {
  font-size: 13px;
  margin-top: 16px;
  line-height: 1.6;
  max-width: 360px;
  color: rgba(255, 230, 207, 0.5);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 230, 207, 0.4);
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================================
   ANIMATIONS — SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
              transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; max-width: 600px; }
  .services-head { grid-template-columns: 1fr; gap: 24px; }
  .tabs { grid-template-columns: 1fr; gap: 24px; }
  .testi-card { flex: 0 0 calc((100% - 32px) / 2); }
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { position: static; max-width: 400px; }
  .hs-head { grid-template-columns: 1fr; gap: 32px; }
  .hs-pillars { grid-template-columns: 1fr; }
  .commit-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .how-item { grid-template-columns: 80px 1fr; }
  .how-item p { grid-column: 1 / -1; padding-left: 0; padding-top: 8px; }
  .how-impact { grid-template-columns: 1fr; padding: 40px; gap: 24px; }
  .recog-grid { grid-template-columns: 1fr; }
  .recog-item:nth-child(odd) { padding-right: 0; border-right: 0; }
  .recog-item:nth-child(even) { padding-left: 0; }
  .cred-group { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 11px; }
  .testi-card { flex: 0 0 100%; }
  .hero-proof { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form { padding: 28px 22px; }
  .form-row.split { grid-template-columns: 1fr; gap: 22px; }
  .tab-btn { grid-template-columns: 40px 1fr 16px; gap: 14px; padding: 20px 0; }
  .tab-btn .label { font-size: 15px; }
  .how-impact { padding: 28px; }
  .commit-quote { padding-left: 24px; font-size: 26px; }
}
