:root {
  --ink: #15221d;
  --ink-2: #20322b;
  --forest: #17362c;
  --forest-2: #0f2a22;
  --gold: #c7a16a;
  --gold-2: #e0c89f;
  --paper: #f4f1ea;
  --paper-2: #ebe7de;
  --muted: #69746f;
  --line: rgba(21, 34, 29, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(21, 34, 29, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 241, 234, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 78px;
  padding: 0 22px;
}

.brand {
  align-items: center;
  display: flex;
  gap: 14px;
  min-width: 230px;
}

.brand-mark {
  align-items: center;
  background: var(--forest);
  border-radius: 8px;
  color: var(--gold-2);
  display: grid;
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  height: 44px;
  letter-spacing: 0.04em;
  place-items: center;
  width: 44px;
}

.brand-name {
  display: grid;
  gap: 0;
  font-weight: 760;
  letter-spacing: 0.01em;
  line-height: 1.12;
}

.brand-name small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links a {
  color: rgba(21, 34, 29, 0.78);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--forest);
}

.nav-cta,
.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  line-height: 1.15;
  min-height: 46px;
  padding: 14px 18px;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.nav-cta,
.btn-primary {
  background: var(--forest);
  color: var(--white);
}

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

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.46);
  color: var(--white);
}

.btn-light {
  background: var(--paper);
  border-color: var(--line);
  color: var(--ink);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  background: currentColor;
  content: "";
  display: block;
  height: 2px;
  width: 26px;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before {
  position: absolute;
  top: -8px;
}

.menu-toggle span::after {
  position: absolute;
  top: 8px;
}

.hero {
  background: var(--forest-2);
  color: var(--white);
  min-height: calc(100vh - 78px);
  overflow: hidden;
  position: relative;
}

.hero::before {
  background: linear-gradient(90deg, rgba(15, 42, 34, 0.96) 0%, rgba(15, 42, 34, 0.88) 38%, rgba(15, 42, 34, 0.35) 72%, rgba(15, 42, 34, 0.18) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-inner {
  align-items: start;
  display: grid;
  margin: 0 auto;
  max-width: var(--max);
  min-height: calc(100vh - 78px);
  padding: 32px 22px 62px;
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  color: var(--gold-2);
  display: block;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 0.98;
  margin: 0;
}

h1,
.display {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 94px);
  font-weight: 700;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero h1 {
  font-size: clamp(44px, 5.4vw, 72px);
  line-height: 1;
  max-width: 820px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 0;
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.lead {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2.3vw, 24px);
  font-weight: 430;
  line-height: 1.48;
  margin-top: 24px;
  max-width: 760px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.78);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 46px;
  max-width: 760px;
  padding-top: 22px;
}

.hero-proof strong {
  color: var(--white);
  display: block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: 36px 22px 72px;
}

.section-dark {
  background: var(--forest-2);
  color: var(--white);
}

.section-soft {
  background: var(--paper-2);
}

.container {
  margin: 0 auto;
  max-width: var(--max);
}

.split {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
}

.section-intro {
  max-width: 820px;
}

.section-intro p,
.split p,
.page-copy p {
  color: var(--muted);
  font-size: 18px;
  margin-top: 22px;
}

.section-dark .section-intro p,
.section-dark .split p {
  color: rgba(255, 255, 255, 0.72);
}

.split .thesis-signature {
  border-left: 3px solid var(--gold);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.12;
  margin-top: 30px;
  padding-left: 20px;
}

.media-frame {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.media-frame img {
  aspect-ratio: 1.18 / 1;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section > .container > .grid-2:first-child,
.section > .container > .grid-3:first-child,
.section > .container > .timeline:first-child,
.section > .container > .status-list:first-child,
.section > .container > .content-list:first-child {
  margin-top: 0;
}

.card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.section-dark .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.card .kicker {
  color: var(--gold);
  display: block;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.card p {
  color: var(--muted);
  margin-top: 14px;
}

.section-dark .card p {
  color: rgba(255, 255, 255, 0.7);
}

.timeline {
  counter-reset: step;
  display: grid;
  gap: 14px;
  margin-top: 42px;
}

.timeline-item {
  align-items: start;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 18px;
  grid-template-columns: 54px 1fr;
  padding: 22px;
}

.section-dark .timeline-item {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.timeline-item::before {
  align-items: center;
  background: var(--forest);
  border-radius: 50%;
  color: var(--gold-2);
  content: counter(step, decimal-leading-zero);
  counter-increment: step;
  display: grid;
  font-size: 12px;
  font-weight: 850;
  height: 44px;
  place-items: center;
  width: 44px;
}

.section-dark .timeline-item::before {
  background: var(--gold);
  color: var(--ink);
}

.timeline-item h3 {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 19px;
  line-height: 1.2;
}

.timeline-item p {
  color: var(--muted);
  margin-top: 6px;
}

.section-dark .timeline-item p {
  color: rgba(255, 255, 255, 0.68);
}

.status-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.status-list span,
.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex;
  font-size: 13px;
  font-weight: 750;
  padding: 8px 12px;
  width: fit-content;
}

.form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid label {
  color: var(--ink);
  display: grid;
  font-size: 13px;
  font-weight: 760;
  gap: 7px;
}

input,
select,
textarea {
  background: #fbfaf6;
  border: 1px solid rgba(21, 34, 29, 0.18);
  border-radius: 7px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}

textarea {
  min-height: 96px;
  resize: vertical;
}

.form-disclaimer,
.legal-note {
  color: var(--muted);
  font-size: 12px;
  margin-top: 14px;
}

.page-hero {
  background: var(--forest-2);
  color: var(--white);
  padding: 36px 22px 68px;
}

.page-hero .container {
  max-width: 960px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 21px;
  margin-top: 22px;
}

.content-list {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.content-list li {
  border-top: 1px solid var(--line);
  list-style: none;
  padding-top: 16px;
}

.content-list ul {
  margin: 0;
  padding: 0;
}

.faq {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.faq details {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 820;
}

.faq p {
  color: var(--muted);
  margin-top: 12px;
}

.site-footer {
  background: #101c18;
  color: rgba(255, 255, 255, 0.72);
  padding: 54px 22px 28px;
}

.footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
}

.site-footer strong {
  color: var(--white);
}

.site-footer a:hover {
  color: var(--gold-2);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  margin-top: 32px;
  padding-top: 22px;
}

.whatsapp-float {
  align-items: center;
  background: #1f8f55;
  border-radius: 999px;
  bottom: 22px;
  box-shadow: 0 16px 38px rgba(16, 28, 24, 0.22);
  color: var(--white);
  display: inline-flex;
  font-size: 14px;
  font-weight: 850;
  gap: 9px;
  min-height: 52px;
  padding: 0 18px;
  position: fixed;
  right: 22px;
  z-index: 50;
}

.whatsapp-float svg {
  height: 22px;
  width: 22px;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    inset: 78px 0 auto 0;
    padding: 22px;
    position: fixed;
  }

  body.nav-open .nav-links {
    display: grid;
  }

  .nav-links a,
  .nav-links .nav-cta {
    justify-content: flex-start;
    width: 100%;
  }

  .split,
  .grid-2,
  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .brand-name {
    font-size: 15px;
  }

  .brand-name small {
    font-size: 9px;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 28px 20px 48px;
  }

  h1,
  .display {
    font-size: clamp(38px, 10.5vw, 46px);
    line-height: 1.03;
    overflow-wrap: break-word;
  }

  .hero h1 {
    font-size: clamp(34px, 9vw, 42px);
    line-height: 1.06;
  }

  h2 {
    font-size: clamp(30px, 8.8vw, 40px);
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  .page-hero h1 {
    font-size: clamp(34px, 9.5vw, 42px);
    line-height: 1.06;
  }

  .hero-copy,
  .page-hero .container {
    max-width: 100%;
  }

  .lead,
  .page-hero p,
  .section-intro p,
  .split p,
  .page-copy p {
    font-size: 17px;
    line-height: 1.58;
  }

  .section {
    padding: 30px 20px 54px;
  }

  .page-hero {
    padding: 30px 20px 50px;
  }

  .card,
  .form-panel {
    padding: 22px;
  }

  .hero-actions,
  .actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .whatsapp-float {
    bottom: 14px;
    border-radius: 50%;
    font-size: 0;
    height: 56px;
    justify-content: center;
    left: auto;
    min-height: 56px;
    padding: 0;
    right: 14px;
    width: 56px;
  }

  .whatsapp-float::after {
    content: "WA";
    font-size: 12px;
    letter-spacing: 0.02em;
  }
}
