:root {
  --cream: #F5EFE6;
  --cream-deep: #EBE3D5;
  --ink: #2A2622;
  --ink-soft: #4A453F;
  --ink-faint: #8A8278;
  --sage: #3D5A4A;
  --sage-deep: #2A4234;
  --sage-light: #6B8474;
  --terracotta: #C97B5C;
  --terracotta-deep: #A85F42;
  --paper-line: rgba(42, 38, 34, 0.08);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter Tight', -apple-system, sans-serif;
  --hand: 'Caveat', cursive;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle paper texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 123, 92, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(61, 90, 74, 0.05) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5' /%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

main, nav, footer { position: relative; z-index: 2; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========== NAV ========== */
nav {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--paper-line);
  position: sticky;
  top: 0;
  background: rgba(245, 239, 230, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

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

.logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
}

.logo .mi {
  font-style: italic;
  font-weight: 400;
  font-size: 0.92em;
  color: var(--terracotta-deep);
  margin-right: 0.05em;
}

.logo .viva {
  position: relative;
  font-style: italic;
  font-weight: 400;
  margin-left: 0.3rem;
}

.logo .viva::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: -3px;
  height: 7px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 7' preserveAspectRatio='none'%3E%3Cpath d='M1,4 Q25,1 50,3.5 T99,3' stroke='%233D5A4A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
}

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

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover { color: var(--sage-deep); }

.nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--sage-deep);
  color: var(--cream) !important;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .nav-links li:not(:last-child) { display: none; }
  .nav-links { gap: 0; }
  .nav-cta { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
}

/* ========== HERO ========== */
.hero {
  padding: 6rem 0 5rem;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 500;
  margin-bottom: 1.75rem;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--sage-deep);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 2rem;
  font-variation-settings: "opsz" 144;
}

.hero h1 em {
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 400;
}

.hero h1 .accent {
  position: relative;
  display: inline-block;
}

.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 4px;
  height: 12px;
  background: rgba(201, 123, 92, 0.25);
  z-index: -1;
}

.hero-lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero-cta-row {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--sage-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 38, 34, 0.12);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.25s;
}

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

/* Hero side: portrait card */
.hero-portrait {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--cream-deep);
  border-radius: 4px;
  overflow: hidden;
  transform: rotate(1.5deg);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 30px 60px -20px rgba(42, 38, 34, 0.25),
    0 12px 24px -12px rgba(42, 38, 34, 0.15);
}

.hero-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61, 90, 74, 0.1), rgba(201, 123, 92, 0.08));
  z-index: 1;
}

.hero-portrait-inner {
  position: absolute;
  inset: 1.5rem;
  background:
    linear-gradient(180deg, rgba(42, 38, 34, 0) 45%, rgba(42, 38, 34, 0.78) 100%),
    url('/images/ana-maria-perfil.jpg') 50% 35% / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 1.6rem;
  color: var(--cream);
  z-index: 2;
}

.portrait-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.portrait-title {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.portrait-decorative {
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: 2rem;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--cream);
  font-family: var(--hand);
  font-size: 1.6rem;
  opacity: 0.95;
  line-height: 1;
}

.portrait-meta {
  position: absolute;
  bottom: -0.75rem;
  right: 1rem;
  background: var(--terracotta);
  color: var(--cream);
  padding: 0.55rem 1rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(168, 95, 66, 0.3);
}

/* Margin note */
.margin-note {
  position: absolute;
  font-family: var(--hand);
  font-size: 1.4rem;
  color: var(--terracotta-deep);
  line-height: 1.1;
  pointer-events: none;
}

.margin-note-1 {
  top: 9rem;
  left: 47%;
  max-width: 200px;
  transform: rotate(-4deg);
  display: none;
}

@media (min-width: 1300px) {
  .margin-note-1 {
    display: block;
    top: 7rem;
    left: 51%;
  }
}

.margin-note-1::before {
  content: '↘';
  display: block;
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
}

@media (max-width: 900px) {
  .hero { padding: 3rem 0 4rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-portrait { max-width: 360px; margin: 0 auto; }
  .margin-note-1 { display: none; }
}

/* ========== STATS BAND ========== */
.stats-band {
  padding: 3.5rem 0;
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  background: rgba(235, 227, 213, 0.4);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: left;
}

.stat-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--sage-deep);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}

.stat-num em {
  font-style: italic;
  color: var(--terracotta-deep);
}

.stat-label {
  font-size: 0.88rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .stat-num { font-size: 2.5rem; }
}

/* ========== SECTION HEADERS ========== */
section { padding: 6rem 0; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.section-eyebrow::before {
  content: '§';
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: 0;
  text-transform: none;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  max-width: 760px;
}

.section-title em {
  font-style: italic;
  color: var(--sage-deep);
}

.section-lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 620px;
  line-height: 1.65;
}

/* ========== APPROACH ========== */
.approach {
  position: relative;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
  align-items: start;
}

.approach-text p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
  line-height: 1.75;
}

.approach-text p:first-child::first-letter {
  font-family: var(--serif);
  font-size: 4rem;
  float: left;
  line-height: 0.85;
  margin: 0.3rem 0.6rem 0 0;
  color: var(--sage-deep);
  font-weight: 400;
  font-style: italic;
}

.approach-quote {
  background: var(--cream-deep);
  padding: 2.5rem;
  border-left: 3px solid var(--terracotta);
  margin: 2rem 0;
  position: relative;
}

.approach-quote::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 5rem;
  color: var(--terracotta);
  line-height: 1;
}

.approach-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 400;
}

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

.pillar {
  padding: 2rem 0;
  border-bottom: 1px solid var(--paper-line);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.pillar:first-child { padding-top: 0; }
.pillar:last-child { border-bottom: none; }

.pillar-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--terracotta);
  font-weight: 400;
  line-height: 1;
}

.pillar h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.pillar p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .approach-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ========== PROCESS / TIMELINE ========== */
.process {
  padding: 6.5rem 0;
  background: var(--cream-deep);
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
}

.process .section-eyebrow { color: var(--sage-deep); }
.process .section-eyebrow::before { color: var(--sage-deep); }

.process-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4.5rem;
}

.process-header .section-title { margin-bottom: 0; }

.process-header .section-lead {
  font-size: 1rem;
  line-height: 1.65;
}

.process-timeline {
  position: relative;
}

.process-track {
  position: absolute;
  top: 7px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--sage-deep);
  opacity: 0.22;
}

.process-phases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  position: relative;
}

.process-phase {
  position: relative;
  padding-top: 2.5rem;
}

.process-phase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--cream-deep);
  border: 2px solid var(--sage-deep);
  border-radius: 50%;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.process-phase:hover::before {
  background: var(--terracotta);
  border-color: var(--terracotta);
  transform: scale(1.15);
}

.phase-marker {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--terracotta-deep);
  margin-bottom: 0.45rem;
  letter-spacing: 0.01em;
  line-height: 1;
}

.phase-duration {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.85rem;
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--paper-line);
  border-radius: 999px;
  background: var(--cream);
}

.process-phase h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 0.7rem;
  color: var(--ink);
}

.process-phase p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.process-note {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--paper-line);
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.process-note-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  flex-shrink: 0;
}

.process-note p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.5;
  flex: 1;
  min-width: 280px;
}

@media (max-width: 900px) {
  .process-header { grid-template-columns: 1fr; gap: 2rem; }
  .process-phases { grid-template-columns: repeat(2, 1fr); gap: 3rem 2.5rem; }
  .process-track { display: none; }
}

@media (max-width: 600px) {
  .process-phases { grid-template-columns: 1fr; }
}

/* ========== SERVICES ========== */
.services {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(61, 90, 74, 0.4), transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(201, 123, 92, 0.15), transparent 40%);
  pointer-events: none;
}

.services .section-title { color: var(--cream); }
.services .section-title em { color: var(--terracotta); }
.services .section-lead { color: rgba(245, 239, 230, 0.75); }
.services .section-eyebrow { color: var(--terracotta); }

.services-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: end;
}

.services-tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--terracotta);
  font-size: 1.15rem;
  line-height: 1.4;
  font-weight: 400;
}

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

.service {
  border-top: 1px solid rgba(245, 239, 230, 0.12);
  padding: 3rem 0;
  display: grid;
  grid-template-columns: 80px 1fr 1fr 60px;
  gap: 3rem;
  align-items: start;
  transition: padding-left 0.3s ease;
  cursor: pointer;
}

.service:hover {
  padding-left: 1rem;
}

.service:hover .service-arrow {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--ink);
  transform: rotate(-45deg);
}

.service:last-child { border-bottom: 1px solid rgba(245, 239, 230, 0.12); }

.service-num {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--terracotta);
  letter-spacing: 0.05em;
  padding-top: 0.4rem;
}

.service-title-block h3 {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 0.6rem;
  color: var(--cream);
}

.service-title-block h3 em {
  font-style: italic;
  color: var(--terracotta);
}

.service-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.service-meta span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.55);
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(245, 239, 230, 0.18);
  border-radius: 999px;
}

.service-desc {
  color: rgba(245, 239, 230, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

.service-desc strong {
  color: var(--cream);
  font-weight: 500;
  display: block;
  margin-top: 0.8rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-desc ul {
  list-style: none;
  margin-top: 0.5rem;
}

.service-desc ul li {
  padding-left: 1.2rem;
  position: relative;
  margin-top: 0.4rem;
  font-size: 0.95rem;
}

.service-desc ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--terracotta);
}

.service-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(245, 239, 230, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 0.4rem;
}

@media (max-width: 900px) {
  .services-intro { grid-template-columns: 1fr; gap: 2rem; }
  .service { grid-template-columns: 1fr; gap: 1rem; padding: 2.5rem 0; }
  .service-num { padding-top: 0; }
  .service-arrow { margin-top: 0.5rem; }
}

/* Individual services */
.individual {
  background: var(--cream);
  padding: 5rem 0;
  border-top: 1px solid var(--paper-line);
}

.individual-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.individual-text h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
  color: var(--ink);
}

.individual-text h2 em {
  font-style: italic;
  color: var(--sage-deep);
}

.individual-text p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.individual-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.ind-card {
  background: var(--cream-deep);
  padding: 2rem;
  border-radius: 4px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.ind-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -16px rgba(42, 38, 34, 0.15);
}

.ind-card-tag {
  font-family: var(--sans);
  color: var(--terracotta-deep);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: block;
}

.ind-card h4 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.ind-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

.ind-card-link {
  font-size: 0.88rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: gap 0.25s;
}

.ind-card-link:hover { gap: 0.7rem; }

@media (max-width: 900px) {
  .individual-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .individual-cards { grid-template-columns: 1fr; }
}

/* ========== TOPICS ========== */
.topics {
  padding: 7rem 0;
  position: relative;
}

.topics-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--paper-line);
}

.topic {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  position: relative;
  transition: background 0.25s;
}

.topic:hover {
  background: var(--cream-deep);
}

.topic:nth-child(3n) { border-right: none; }
.topic:nth-last-child(-n+3) { border-bottom: none; }

.topic-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--terracotta-deep);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.topic h4 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.topic p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .topics-header { grid-template-columns: 1fr; gap: 2rem; }
  .topics-grid { grid-template-columns: 1fr 1fr; }
  .topic:nth-child(3n) { border-right: 1px solid var(--paper-line); }
  .topic:nth-child(2n) { border-right: none; }
  .topic:nth-last-child(-n+3) { border-bottom: 1px solid var(--paper-line); }
  .topic:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 600px) {
  .topics-grid { grid-template-columns: 1fr; }
  .topic { border-right: none !important; border-bottom: 1px solid var(--paper-line) !important; }
  .topic:last-child { border-bottom: none !important; }
}

/* ========== ABOUT ========== */
.about {
  background: var(--sage-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4' /%3E%3C/svg%3E");
  opacity: 0.08;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
  position: relative;
}

.about-photo {
  aspect-ratio: 3/4;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.55) 100%),
    url('/images/ana-maria-frontal.jpg') 50% 25% / cover no-repeat;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}

.about-photo-name {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  color: var(--cream);
}

.about-photo-name .first {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.75;
  display: block;
  margin-bottom: 0.6rem;
}

.about-photo-name .full {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.15;
}

.about-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.about-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--terracotta);
}

.about h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  color: var(--cream);
}

.about h2 em {
  font-style: italic;
  color: var(--terracotta);
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(245, 239, 230, 0.85);
  margin-bottom: 1.4rem;
}

.about-credentials {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 239, 230, 0.15);
}

.about-credentials h4 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.cred-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cred-list li {
  font-size: 0.95rem;
  color: rgba(245, 239, 230, 0.9);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.45;
}

.cred-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-size: 0.7rem;
  top: 0.3rem;
}

.cred-list li strong {
  font-weight: 500;
  color: var(--cream);
}

.cred-list li em {
  font-style: italic;
  color: rgba(245, 239, 230, 0.65);
  font-size: 0.88rem;
  display: block;
  margin-top: 0.15rem;
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo { max-width: 360px; }
}

/* ========== COUNTRIES ========== */
.countries {
  padding: 4rem 0;
  border-top: 1px solid var(--paper-line);
  background: var(--cream-deep);
}

.countries-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

.countries-text h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.countries-text h3 em {
  font-style: italic;
  color: var(--terracotta-deep);
}

.countries-text p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.countries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.country-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  background: var(--cream);
  border: 1px solid var(--paper-line);
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 500;
}

.country-tag span:first-child {
  font-family: var(--serif);
  color: var(--terracotta-deep);
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .countries-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ========== CONTACT ========== */
.contact {
  padding: 7rem 0;
  position: relative;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-left h2 {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
}

.contact-left h2 em {
  font-style: italic;
  color: var(--sage-deep);
}

.contact-left h2 .accent {
  position: relative;
  display: inline-block;
}

.contact-left h2 .accent::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 6px;
  height: 14px;
  background: rgba(201, 123, 92, 0.25);
  z-index: -1;
}

.contact-left p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1.4rem;
  max-width: 480px;
}

.contact-channels {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--paper-line);
  text-decoration: none;
  color: var(--ink);
  transition: padding-left 0.25s;
}

.channel:hover {
  padding-left: 0.5rem;
  color: var(--sage-deep);
}

.channel-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  width: 90px;
  flex-shrink: 0;
}

.channel-value {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: -0.005em;
}

/* Form */
.contact-form-wrap {
  background: var(--cream-deep);
  padding: 3rem;
  border-radius: 6px;
  position: relative;
}

.contact-form-wrap::before {
  content: 'Conversemos';
  position: absolute;
  top: -1.5rem;
  right: 2rem;
  background: var(--terracotta);
  color: var(--cream);
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-family: var(--hand);
  font-size: 1.3rem;
  transform: rotate(2deg);
  box-shadow: 0 6px 14px rgba(168, 95, 66, 0.25);
}

.form-row {
  margin-bottom: 1.4rem;
}

.form-row label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--paper-line);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  border-radius: 4px;
  transition: border-color 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--sage-deep);
}

.form-row textarea {
  resize: vertical;
  min-height: 100px;
  font-family: var(--sans);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  width: 100%;
  background: var(--ink);
  color: var(--cream);
  padding: 1.05rem;
  border: none;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-submit:hover {
  background: var(--sage-deep);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-form-wrap { padding: 2rem; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ========== FOOTER ========== */
footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--paper-line);
  background: var(--cream-deep);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: inline-flex;
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 320px;
  line-height: 1.55;
}

.footer-col h5 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--sage-deep); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--paper-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--ink-faint);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom .made {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow,
.hero h1,
.hero-lead,
.hero-cta-row,
.hero-portrait {
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.hero h1 { animation-delay: 0.1s; }
.hero-lead { animation-delay: 0.25s; }
.hero-cta-row { animation-delay: 0.4s; }
.hero-portrait { animation-delay: 0.3s; }

/* Reveal: only hide when JS marks support; otherwise always visible (SEO + no-JS friendly) */
.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-reveal [data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-eyebrow, .hero h1, .hero-lead, .hero-cta-row, .hero-portrait { animation: none !important; }
}

