:root {
  --navy: #1a2744;
  --navy-mid: #2c3e6b;
  --navy-light: #3d5494;
  --navy-dim: rgba(26,39,68,0.07);
  --navy-dim2: rgba(26,39,68,0.13);
  --silver: #8a97b0;
  --silver-light: #c2cad8;
  --gold: #a8895a;
  --gold-light: #c9a96e;
  --bg: #f7f8fa;
  --white: #ffffff;
  --text: #1a2744;
  --text-muted: #5a6680;
  --text-faint: #9aa3b8;
  --border: #dde2ea;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }

/* ── NAV ── */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(247,248,250,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; flex-direction: column; align-items: flex-start; gap: 0; text-decoration: none; }
.nav-logo-main { display: flex; align-items: baseline; gap: 6px; }
.nav-v { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; color: var(--navy); line-height: 1; letter-spacing: -0.5px; }
.nav-etor { font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 300; color: var(--navy); letter-spacing: 6px; }
.nav-sub { font-family: 'Jost', sans-serif; font-size: 8px; font-weight: 500; color: var(--silver); letter-spacing: 3.5px; text-transform: uppercase; margin-top: 1px; }

.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-menu a {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--navy); }
.nav-menu a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--gold);
}

.nav-cta {
  background: var(--navy);
  color: white;
  border: none;
  padding: 10px 24px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.nav-cta:hover { background: var(--navy-mid); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  padding: 4px;
}

@media (max-width: 900px) {
  .nav-menu { position: fixed; top: 68px; left: 0; right: 0; background: var(--white); flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 24px 20px; border-bottom: 1px solid var(--border); display: none; }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-menu .nav-cta { margin-top: 12px; text-align: center; }
  .nav-toggle { display: block; }
}

/* ── HERO ── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 130px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(26,39,68,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.hero-content { max-width: 780px; margin: 0 auto; text-align: center; animation: fadeUp 0.8s ease both; }
.hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--silver); margin-bottom: 28px;
}
.hero-label::before, .hero-label::after { content: ''; display: block; width: 32px; height: 1px; background: var(--silver-light); }
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6.5vw, 64px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}
.hero-headline em { font-style: italic; color: var(--navy-light); }
.hero-headline .gold { color: var(--gold); }
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 2.6vw, 22px);
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.5;
}
.hero-desc {
  font-size: 15px; color: var(--text-muted); line-height: 1.8;
  max-width: 560px; margin: 0 auto 40px; font-weight: 300;
}
.hero-cta-wrap { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px; }

/* ── PAGE HEADER (non-home pages) ── */
.page-header {
  padding: 150px 40px 70px;
  text-align: center;
  position: relative;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.page-header-label { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.page-header-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 5.5vw, 54px); font-weight: 600; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.page-header-title em { font-style: italic; color: var(--navy-light); }
.page-header-desc { font-size: 15px; color: var(--text-muted); max-width: 560px; margin: 0 auto; line-height: 1.8; font-weight: 300; }

/* ── BUTTONS ── */
.btn-primary, .btn-light, .btn-outline-nv {
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  border-radius: 100px; cursor: pointer; transition: all 0.25s ease;
  text-decoration: none; display: inline-block; padding: 17px 48px; border: none;
}
.btn-primary { background: var(--navy); color: white; box-shadow: 0 10px 32px rgba(26,39,68,0.2); }
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(26,39,68,0.28); }
.btn-light { background: white; color: var(--navy); box-shadow: 0 10px 32px rgba(0,0,0,0.2); }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(0,0,0,0.3); }
.btn-outline-nv { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); padding: 15.5px 46px; }
.btn-outline-nv:hover { background: var(--navy); color: #fff; }
.btn-note { font-size: 12px; color: var(--text-faint); font-weight: 300; }

/* ── SECTIONS ── */
.section { padding: 96px 40px; }
.section-inner { max-width: 1040px; margin: 0 auto; }
.section-label { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--silver); margin-bottom: 16px; text-align: center; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 4vw, 42px); font-weight: 600; color: var(--navy); text-align: center; line-height: 1.2; margin-bottom: 14px; }
.section-title em { font-style: italic; color: var(--navy-light); }
.section-intro { font-size: 15px; color: var(--text-muted); text-align: center; max-width: 520px; margin: 0 auto 60px; line-height: 1.7; font-weight: 300; }
.section-title.left, .section-intro.left { text-align: left; margin-left: 0; }

/* ── CARDS ── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .card-grid { grid-template-columns: 1fr; } }

.info-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  padding: 30px 26px; position: relative; overflow: hidden; transition: all 0.25s ease;
  animation: fadeUp 0.6s ease both;
}
.info-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--navy-light)); opacity: 0; transition: opacity 0.25s;
}
.info-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,39,68,0.1); border-color: rgba(26,39,68,0.2); }
.info-card:hover::before { opacity: 1; }
.info-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--navy-dim); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 18px; color: var(--navy); }
.info-title { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 600; color: var(--navy); line-height: 1.3; margin-bottom: 10px; }
.info-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.18s; }
.info-card:nth-child(3) { animation-delay: 0.26s; }
.info-card:nth-child(4) { animation-delay: 0.34s; }
.info-card:nth-child(5) { animation-delay: 0.42s; }
.info-card:nth-child(6) { animation-delay: 0.5s; }

/* ── SERVICE GROUPS ── */
.service-group { margin-bottom: 64px; }
.service-group-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 24px; border-bottom: 1px solid var(--border); padding-bottom: 14px; }
.service-group-num { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-weight: 700; color: var(--gold); }
.service-group-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: var(--navy); }

/* ── EMPATHY / DARK BAND ── */
.empathy { background: var(--navy); padding: 96px 40px; position: relative; overflow: hidden; }
.empathy::before { content: ''; position: absolute; top: -150px; right: -150px; width: 500px; height: 500px; background: radial-gradient(ellipse, rgba(255,255,255,0.04) 0%, transparent 65%); pointer-events: none; }
.empathy::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(ellipse, rgba(168,137,90,0.08) 0%, transparent 65%); pointer-events: none; }
.empathy-inner { max-width: 820px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.empathy-quote { font-family: 'Cormorant Garamond', serif; font-size: clamp(22px, 3.6vw, 36px); font-style: italic; color: rgba(255,255,255,0.9); line-height: 1.4; margin-bottom: 28px; }
.empathy-quote strong { font-weight: 600; font-style: normal; color: white; }
.empathy-body { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.8; max-width: 560px; margin: 0 auto 40px; font-weight: 300; }
.empathy-stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; margin-bottom: 44px; }
.stat { text-align: center; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 600; color: white; line-height: 1; margin-bottom: 6px; }
.stat-num span { color: var(--gold-light); }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 400; max-width: 130px; line-height: 1.5; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.1); align-self: stretch; }
@media (max-width: 600px) { .stat-divider { display: none; } }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; margin-top: 8px; background: var(--white); }
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }
.step { padding: 32px 26px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; transition: background 0.2s; }
.step:hover { background: var(--bg); }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 700; color: rgba(26,39,68,0.08); line-height: 1; margin-bottom: 10px; }
.step-title { font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: 0.5px; margin-bottom: 8px; text-transform: uppercase; }
.step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* ── FORM ── */
.form-wrap { max-width: 620px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 40px; box-shadow: 0 8px 40px rgba(26,39,68,0.06); }
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; background: var(--bg); border: 1.5px solid var(--border); border-radius: 10px;
  padding: 13px 15px; font-family: 'Jost', sans-serif; font-size: 14px; color: var(--text); outline: none; transition: border-color 0.2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--navy); }
.form-row textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; justify-content: center; text-align: center; border: none; }

/* ── FINAL CTA ── */
.final-cta { padding: 100px 40px; text-align: center; background: var(--bg); position: relative; }
.final-cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }
.final-cta-label { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.final-cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 5vw, 48px); font-weight: 600; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.final-cta-title em { font-style: italic; color: var(--navy-light); }
.final-cta-sub { font-size: 15px; color: var(--text-muted); max-width: 440px; margin: 0 auto 40px; line-height: 1.7; font-weight: 300; }

/* ── FOUNDER / SOBRE ── */
.founder-wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: center; max-width: 1040px; margin: 0 auto; }
@media (max-width: 800px) { .founder-wrap { grid-template-columns: 1fr; } }
.founder-avatar { width: 96px; height: 96px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 32px; margin-bottom: 20px; }
.founder-quote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 15px; color: var(--text-muted); border-left: 3px solid var(--gold); padding-left: 18px; margin: 22px 0; line-height: 1.6; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 12px; }
@media (max-width: 700px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { background: var(--bg); border-radius: 14px; padding: 24px 20px; }
.value-card-title { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 16px; color: var(--navy); margin-bottom: 6px; }
.value-card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

/* ── FOOTER ── */
footer.site-footer { padding: 40px; border-top: 1px solid var(--border); }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 32px; max-width: 1140px; margin: 0 auto 32px; }
.footer-logo { display: flex; align-items: baseline; gap: 6px; }
.footer-v { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--navy); }
.footer-etor { font-family: 'Jost', sans-serif; font-size: 9px; font-weight: 300; color: var(--navy); letter-spacing: 5px; }
.footer-adm { font-size: 9px; font-weight: 600; color: var(--silver); letter-spacing: 3px; margin-left: 4px; }
.footer-tagline { font-size: 12px; color: var(--text-faint); font-weight: 300; margin-top: 8px; max-width: 260px; line-height: 1.6; }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--silver); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: var(--text-muted); text-decoration: none; margin-bottom: 10px; font-weight: 300; }
.footer-col a:hover { color: var(--navy); }
.footer-bottom { max-width: 1140px; margin: 0 auto; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-text { font-size: 12px; color: var(--text-faint); font-weight: 300; }
.footer-verse { font-family: 'Cormorant Garamond', serif; font-size: 12px; font-style: italic; color: var(--text-faint); }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  nav.site-nav { padding: 14px 20px; }
  .hero { padding: 110px 20px 60px; }
  .page-header { padding: 120px 20px 50px; }
  .section { padding: 72px 20px; }
  .empathy { padding: 72px 20px; }
  .final-cta { padding: 72px 20px; }
  footer.site-footer { padding: 32px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .empathy-stats { gap: 28px; }
  .form-wrap { padding: 26px; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
