@import url("_ds/classical-bcb8a53f-43ab-40c5-b621-7f9be1c9cd16/styles.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

@keyframes metricIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-metric-item {
  animation: metricIn 0.55s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-metric-item:nth-child(1) { animation-delay: 0.10s; }
.hero-metric-item:nth-child(2) { animation-delay: 0.22s; }
.hero-metric-item:nth-child(3) { animation-delay: 0.34s; }
.hero-metric-item:nth-child(4) { animation-delay: 0.46s; }

.home-proof-strip {
  background: #080605;
  border-top: 1px solid rgba(182, 130, 53, .35);
  border-bottom: 2px solid rgba(182, 130, 53, .35);
}

.home-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
}

.home-proof-grid .hero-metric-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: clamp(18px, 2.2vw, 26px) clamp(16px, 2vw, 28px);
  border-right: 1px solid rgba(182, 130, 53, .2);
}

.home-proof-grid .hero-metric-item:first-child {
  padding-left: 0;
}

.home-proof-grid .hero-metric-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.home-proof-grid svg {
  flex: none;
  opacity: .95;
}

.home-proof-title {
  color: #f4f1ec;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.home-proof-copy {
  margin-top: 5px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .home-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-proof-grid .hero-metric-item {
    padding: 22px;
    border-bottom: 1px solid rgba(182, 130, 53, .2);
  }

  .home-proof-grid .hero-metric-item:first-child,
  .home-proof-grid .hero-metric-item:nth-child(3) {
    padding-left: 0;
  }

  .home-proof-grid .hero-metric-item:nth-child(2n) {
    padding-right: 0;
    border-right: 0;
  }

  .home-proof-grid .hero-metric-item:nth-child(n+3) {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .home-proof-grid {
    grid-template-columns: 1fr;
  }

  .home-proof-grid .hero-metric-item,
  .home-proof-grid .hero-metric-item:first-child,
  .home-proof-grid .hero-metric-item:nth-child(2n),
  .home-proof-grid .hero-metric-item:nth-child(3) {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(182, 130, 53, .2);
  }

  .home-proof-grid .hero-metric-item:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-metric-item { animation: none; }
}

:root {
  --font-body: "Montserrat", sans-serif;
  --black: #100d0a;
  --black-soft: #17130f;
  --ink: var(--color-text);
  --muted: var(--color-text-muted);
  --muted-strong: #5f5b55;
  --paper: var(--color-bg);
  --cream: var(--color-surface);
  --gold: var(--color-accent);
  --gold2: var(--color-accent-300);
  --line: var(--color-divider);
  --white: #ffffff;
  --container: min(1180px, calc(100% - 40px));
  --radius: var(--radius-lg);
  --shadow: var(--shadow-lg);
  --font-serif: var(--font-heading);
  --font-sans: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(135deg, transparent 0 35%, rgba(182, 130, 53, .06) 35.2%, transparent 35.8%),
    radial-gradient(circle at 82% 18%, rgba(182, 130, 53, .08), transparent 28rem);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  left: 18px;
  top: -48px;
  z-index: 999;
  padding: 10px 14px;
  border: 1px solid var(--gold);
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-md);
  transition: top .2s ease;
}

.skip-link:focus {
  top: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16, 13, 10, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(182, 130, 53, .28);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.brand-word {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img,
.brand-word img,
.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand strong,
.brand-word strong {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.brand small,
.brand-word small {
  display: block;
  margin-top: 3px;
  color:#fff;
  font-size: .66rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
}

.nav-links a {
  padding: 12px 12px;
  color:#fff;
  font-size: .84rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: color .2s ease, background .2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold2);
}

.nav-links .nav-cta {
  margin-left: 8px;
  padding: 12px 20px;
  color: var(--black);
  background: var(--gold2);
  border: 1px solid var(--gold2);
  border-radius: var(--radius-md);
}

.nav-links .nav-cta:hover {
  color: var(--black);
  background: var(--white);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(182, 130, 53, .4);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 7px 0 currentColor, 0 -7px 0 currentColor;
}

.btn,
.btn-primary,
.btn-secondary,
.inline-link,
.cta-button,
.form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold2);
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.inline-link:hover,
.cta-button:hover,
.form button:hover {
  transform: translateY(-1px);
  background: var(--gold2);
  border-color: var(--gold2);
  color: var(--black);
}

.btn-primary,
.cta-button,
.form button {
  background: var(--gold2);
  border-color: var(--gold2);
  color: var(--black);
}

.btn-primary:hover,
.cta-button:hover,
.form button:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.section,
.split-section,
.values-section,
.cta-section,
.contact-section,
.footer {
  position: relative;
  padding: clamp(72px, 9vw, 124px) 0;
}

.section.light,
.split-section.light,
.values-section,
.cta-section,
.contact-section {
  background: var(--paper);
  color: var(--ink);
}

.section.dark,
.split-section.dark,
.footer {
  background: var(--black);
  color: var(--white);
}

.section.dark .muted,
.section.dark .copy,
.split-section.dark .muted,
.split-section.dark .copy,
.footer .muted {
  color:#fff;
}

.section.dark .display-title,
.section.dark h2,
.split-section.dark .display-title,
.split-section.dark h2,
.footer h2,
.footer h3 {
  color: var(--white);
}

.section.dark .eyebrow,
.split-section.dark .eyebrow,
.footer .eyebrow {
  color: var(--gold2);
}

.hero,
.internal-hero {
  position: relative;
  min-height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero-bg,
.internal-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.internal-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(1.04) brightness(.72);
}

.hero-overlay,
.internal-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16,13,10,.94) 0%, rgba(16,13,10,.74) 44%, rgba(16,13,10,.34) 100%),
    linear-gradient(180deg, rgba(16,13,10,.18), rgba(16,13,10,.54));
}

.hero-inner,
.internal-hero-inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-inline: auto;
  padding: 104px 0 66px;
}

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

.hero-kicker,
.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: .74rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-kicker::before,
.eyebrow::before,
.kicker::before {
  content: "";
  display: inline-block;
  width: 42px;
  height: 1px;
  background: currentColor;
}

.hero-title,
.internal-hero h1,
.display-title,
.section-title,
h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0;
  line-height: .96;
}

.hero-title,
.internal-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3.1rem, 8vw, 7rem);
  text-transform: uppercase;
}

.hero-subtitle,
.internal-hero p {
  max-width: 650px;
  margin: 24px 0 0;
  color:#fff;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.72;
}

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

.hero-metrics,
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.metric,
.stat-card {
  min-width: 150px;
  padding: 16px 18px;
  border: 1px solid rgba(182, 130, 53, .32);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .04);
}

.metric strong,
.stat-card strong {
  display: block;
  color: var(--gold2);
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1;
}

.metric span,
.stat-card span {
  display: block;
  margin-top: 7px;
  color:#fff;
  font-size: .72rem;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-head,
.center-head,
.cta-panel {
  max-width: 850px;
  margin-bottom: 42px;
}

.center-head {
  margin-inline: auto;
  text-align: center;
}

.center-head .eyebrow {
  justify-content: center;
}

.display-title,
.section-title,
.cta-panel h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 4.5vw, 5.1rem);
  text-transform: uppercase;
}

.section-head p,
.center-head p,
.copy,
.prose p,
.cta-panel p,
.contact-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.82;
}

.prose p,
.copy p,
.content-block p,
.info-card p,
.editorial-card p,
.wide-card p,
.statement-panel p {
  margin: 0 0 1rem;
}

.prose p:last-child,
.copy p:last-child,
.content-block p:last-child,
.info-card p:last-child,
.editorial-card p:last-child,
.wide-card p:last-child,
.statement-panel p:last-child {
  margin-bottom: 0;
}

.section-grid,
.split-grid,
.feature-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .8fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.split-grid.reverse,
.feature-layout.reverse {
  grid-template-columns: minmax(320px, .8fr) minmax(0, 1.02fr);
}

.cards-grid,
.editorial-grid,
.value-grid,
.program-grid,
.format-grid,
.pillars-grid,
.timeline-grid,
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.two-col,
.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.info-card,
.editorial-card,
.wide-card,
.statement-panel,
.value-card,
.program-card,
.format-card,
.pillar-card,
.timeline-card,
.feature-card,
.about-lead-card,
.palestras-intro-card,
.impact-summary,
.diagnosis-box,
.confidential-box,
.essence-card,
.contact-card,
.form,
.podcast-card,
.screen,
.audio-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .38);
  box-shadow: none;
}

.info-card,
.editorial-card,
.value-card,
.program-card,
.format-card,
.pillar-card,
.timeline-card,
.feature-card,
.contact-card,
.form,
.podcast-card,
.audio-card {
  padding: clamp(22px, 3vw, 32px);
}

.wide-card,
.statement-panel,
.about-lead-card,
.palestras-intro-card,
.impact-summary,
.diagnosis-box,
.confidential-box,
.essence-card {
  padding: clamp(26px, 4vw, 44px);
}

.section.dark .info-card,
.section.dark .editorial-card,
.section.dark .wide-card,
.section.dark .statement-panel,
.section.dark .value-card,
.section.dark .program-card,
.section.dark .format-card,
.section.dark .pillar-card,
.section.dark .timeline-card,
.section.dark .feature-card,
.section.dark .contact-card,
.section.dark .form,
.section.dark .podcast-card,
.section.dark .audio-card,
.split-section.dark .info-card,
.split-section.dark .editorial-card,
.split-section.dark .wide-card,
.split-section.dark .statement-panel,
.footer .contact-card {
  border-color: rgba(182, 130, 53, .36);
  background: rgba(255, 255, 255, .035);
  color: var(--white);
}

.info-card h3,
.editorial-card h3,
.wide-card h3,
.statement-panel h3,
.value-card h3,
.program-card h3,
.format-card h3,
.pillar-card h3,
.timeline-card h3,
.feature-card h3,
.contact-card h3,
.podcast-card h3,
.audio-card h3 {
  margin: 0 0 15px;
  color: inherit;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.info-card p,
.editorial-card p,
.wide-card p,
.statement-panel p,
.value-card p,
.program-card p,
.format-card p,
.pillar-card p,
.timeline-card p,
.feature-card p,
.contact-card p,
.podcast-card p,
.audio-card p {
  color: var(--muted);
}

.section.dark .info-card p,
.section.dark .editorial-card p,
.section.dark .wide-card p,
.section.dark .statement-panel p,
.section.dark .value-card p,
.section.dark .program-card p,
.section.dark .format-card p,
.section.dark .pillar-card p,
.section.dark .timeline-card p,
.section.dark .feature-card p,
.section.dark .contact-card p,
.section.dark .podcast-card p,
.section.dark .audio-card p,
.split-section.dark .info-card p,
.split-section.dark .editorial-card p,
.split-section.dark .wide-card p,
.split-section.dark .statement-panel p,
.footer .contact-card p {
  color:#fff;
}

.icon,
.value-icon,
.card-icon,
.program-icon,
.pillar-icon,
.format-icon {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(182, 130, 53, .48);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 255, 255, .34);
}

.section.dark .icon,
.section.dark .value-icon,
.section.dark .card-icon,
.section.dark .program-icon,
.section.dark .pillar-icon,
.section.dark .format-icon {
  background: transparent;
}

.icon svg,
.value-icon svg,
.card-icon svg,
.program-icon svg,
.pillar-icon svg,
.format-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.75;
}

.image-panel,
.visual-card,
.about-visual,
.palestras-visual,
.impact-visual,
.program-visual {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 6px solid var(--color-surface);
  outline: 1px solid var(--color-divider);
  border-radius: var(--radius);
  background: var(--color-surface);
}

.image-panel img,
.visual-card img,
.about-visual img,
.palestras-visual img,
.impact-visual img,
.program-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: sepia(.18) saturate(.88) contrast(.98);
}

.image-tag,
.visual-note,
.floating-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: min(290px, calc(100% - 36px));
  padding: 14px 16px;
  border: 1px solid rgba(182, 130, 53, .45);
  border-radius: var(--radius-md);
  background: rgba(16, 13, 10, .86);
  color: var(--white);
  font-size: .82rem;
  line-height: 1.45;
}

.about-visual-strip,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.about-visual-strip figure,
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border: 6px solid var(--color-surface);
  outline: 1px solid var(--color-divider);
  border-radius: var(--radius);
  background: var(--color-surface);
}

.about-visual-strip img,
.gallery-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: sepia(.18) saturate(.9) contrast(.98);
}

.about-visual-strip figcaption,
.gallery-grid figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.45;
}

.check-list,
.bullet-list,
ul.clean-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.bullet-list li,
ul.clean-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.check-list li::before,
.bullet-list li::before,
ul.clean-list li::before {
  content: "";
  position: absolute;
  top: .7em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.section.dark .check-list li,
.section.dark .bullet-list li,
.section.dark ul.clean-list li,
.split-section.dark .check-list li,
.split-section.dark .bullet-list li,
.split-section.dark ul.clean-list li {
  color:#fff;
}

.arabesque,
.divider-line {
  position: relative;
  width: 100%;
  height: 1px;
  margin: 42px 0;
  background: linear-gradient(90deg, transparent, rgba(182, 130, 53, .5), transparent);
}

.arabesque::before,
.arabesque::after,
.divider-line::before,
.divider-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(182, 130, 53, .75);
  background: var(--paper);
  transform: translateY(-50%) rotate(45deg);
}

.arabesque::before,
.divider-line::before {
  left: calc(50% - 22px);
}

.arabesque::after,
.divider-line::after {
  right: calc(50% - 22px);
}

.essence-card {
  background: var(--black);
  color: var(--white);
}

.essence-card img {
  width: 80px;
  height: auto;
  margin-bottom: 28px;
}

.essence-card h3,
.essence-card strong {
  color: var(--white);
}

.essence-card p,
.essence-card .essence-line {
  color: var(--gold2);
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.08;
}

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

.form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .6);
  color: var(--ink);
  outline: none;
}

.form textarea {
  min-height: 130px;
  resize: vertical;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(182, 130, 53, .12);
}

.footer {
  border-top: 1px solid rgba(182, 130, 53, .28);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(150px, .45fr));
  gap: 28px;
  align-items: start;
}

.footer h3,
.footer h4 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: uppercase;
}

.footer p,
.footer a,
.footer li {
  color:#fff;
}

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

.footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(182, 130, 53, .24);
  color:#fff;
  font-size: .85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .nav-links {
    position: fixed;
    inset: 78px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 20px 22px;
    background: rgba(16, 13, 10, .98);
    border-bottom: 1px solid rgba(182, 130, 53, .28);
  }

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

  .nav-links a,
  .nav-links .nav-cta {
    width: 100%;
    margin: 0;
    padding: 14px 0;
  }

  .menu-btn {
    display: grid;
  }

  .section-grid,
  .split-grid,
  .split-grid.reverse,
  .feature-layout,
  .feature-layout.reverse,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .editorial-grid,
  .value-grid,
  .program-grid,
  .format-grid,
  .pillars-grid,
  .timeline-grid,
  .feature-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .site-header .brand small,
  .site-header .brand-word small {
    display: none;
  }

  .brand strong,
  .brand-word strong {
    font-size: .9rem;
  }

  .hero,
  .internal-hero {
    min-height: 500px;
  }

  .hero-inner,
  .internal-hero-inner {
    padding: 102px 0 48px;
  }

  .hero-title,
  .internal-hero h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .display-title,
  .section-title,
  .cta-panel h2,
  .contact-copy h2 {
    font-size: clamp(2.2rem, 12vw, 3.7rem);
  }

  .cards-grid,
  .editorial-grid,
  .value-grid,
  .program-grid,
  .format-grid,
  .pillars-grid,
  .timeline-grid,
  .feature-cards,
  .two-col,
  .promise-grid,
  .about-visual-strip,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .image-panel,
  .visual-card,
  .about-visual,
  .palestras-visual,
  .impact-visual,
  .program-visual {
    min-height: 340px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
/* Internal pages: align legacy sections with the new home skin. */
img.hero-bg,
img.internal-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(1.04) brightness(.68);
}

.internal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(16,13,10,.94) 0%, rgba(16,13,10,.72) 48%, rgba(16,13,10,.28) 100%),
    linear-gradient(180deg, rgba(16,13,10,.08), rgba(16,13,10,.48));
}

.internal-page .brand .brand-seal + span {
  border-left: 1px solid rgba(182, 130, 53, .42) !important;
  padding-left: 18px !important;
}

.internal-page .about-lead-card,
.internal-page .palestras-intro-card,
.internal-page .info-card,
.internal-page .statement-panel,
.internal-page .wide-card,
.internal-page .contact-card,
.internal-page .about-visual-strip figure,
.internal-page .gallery-grid figure,
.internal-page .portrait-art,
.internal-page .diagnosis-box,
.internal-page .confidential-box,
.internal-page .impact-summary {
  border-color: var(--line) !important;
  border-radius: var(--radius) !important;
  background: rgba(255, 255, 255, .38) !important;
  box-shadow: none !important;
}

.internal-page .section.dark .about-lead-card,
.internal-page .section.dark .palestras-intro-card,
.internal-page .section.dark .info-card,
.internal-page .section.dark .statement-panel,
.internal-page .section.dark .wide-card,
.internal-page .section.dark .diagnosis-box,
.internal-page .section.dark .confidential-box,
.internal-page .section.dark .impact-summary,
.internal-page .dark .palestras-intro-card {
  border-color: rgba(182, 130, 53, .36) !important;
  background: rgba(255, 255, 255, .035) !important;
}

.internal-page .about-lead-card {
  border-left-width: 1px !important;
}

.internal-page .ornate-rule::before,
.internal-page .ornate-rule::after {
  background: var(--paper) !important;
}

.internal-page .check-list li i,
.internal-page .bullet-list li i,
.internal-page ul.clean-list li i {
  display: none !important;
}

.btn-gold,
.btn-outline,
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold);
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn-gold {
  background: var(--gold2);
  border-color: var(--gold2);
  color: var(--black);
}

.btn-outline,
.btn-dark {
  background: transparent;
  color: var(--gold2);
}

.btn-gold:hover,
.btn-outline:hover,
.btn-dark:hover {
  transform: translateY(-1px);
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

body.internal-page > footer {
  padding: 28px 20px;
  border-top: 1px solid rgba(182, 130, 53, .28);
  background: var(--black);
  color:#fff;
  font-family: var(--font-heading);
  font-size: .95rem;
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 850px) {
  .internal-page .brand .brand-seal + span {
    padding-left: 12px !important;
  }
}
@media (max-width: 860px) {
  #top > nav[style] {
    align-items: flex-start !important;
    flex-wrap: wrap !important;
    row-gap: 14px !important;
  }

  #top > nav[style] > a:first-child {
    width: 100% !important;
  }

  #top > nav[style] > div {
    width: 100% !important;
    justify-content: flex-start !important;
  }

  #top > nav[style] > a:last-child {
    margin-left: 0 !important;
  }
}

@media (max-width: 560px) {
  #top > nav[style] > div {
    font-size: 11px !important;
    gap: 10px !important;
  }
}

/* ===== CORPORATIVOS REDESIGN ===== */
.corp-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px);
}

.corp-eyebrow {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: clamp(56px, 8vw, 96px);
}
.corp-eyebrow-num {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--color-accent-300);
  font-feature-settings: 'tnum' 1;
}
.corp-eyebrow-line {
  flex: 1;
  height: 1px;
  background: rgba(244,241,236,.12);
}
.corp-eyebrow-label {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color:#fff;
}

/* Intro grid */
.corp-intro-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  padding-bottom: clamp(56px, 8vw, 96px);
  border-bottom: 1px solid rgba(244,241,236,.08);
}
.corp-ghost-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(52px, 6.5vw, 96px);
  line-height: .96;
  letter-spacing: -.03em;
  margin: 0 0 clamp(24px, 3vw, 40px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(244,241,236,.22);
}
.corp-ghost-heading em {
  font-style: normal;
  color: #f4f1ec;
  -webkit-text-stroke: 0;
}
.corp-intro-lead {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.75;
  color:#fff;
  margin: 0 0 20px;
}
.corp-intro-body {
  font-size: 14.5px;
  line-height: 1.85;
  color:#fff;
  margin: 0;
}
.corp-aside-label {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color:#fff;
  margin: 0 0 14px;
}
.corp-aside-quote {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.45;
  color:#fff;
  margin: 0 0 20px;
  border-left: 2px solid var(--color-accent);
  padding-left: 18px;
}
.corp-aside-sub {
  font-size: 13px;
  line-height: 1.7;
  color:#fff;
}

/* Gold banner */
.corp-banner {
  background: var(--color-accent);
  padding: clamp(18px, 2.5vw, 26px) clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
  overflow: hidden;
  position: relative;
}
.corp-banner-text {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: -.01em;
  color: #100d0a;
  white-space: nowrap;
}
.corp-banner-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(16,13,10,.35);
  flex-shrink: 0;
}

/* Pillars */
.corp-pillars-section {
  padding: clamp(72px, 9vw, 128px) 0;
  border-bottom: 1px solid rgba(244,241,236,.08);
}
.corp-pillars-label {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color:#fff;
  margin: 0 0 clamp(32px, 4vw, 52px);
}
.corp-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid rgba(244,241,236,.08);
}
.corp-pillar {
  border-right: 1px solid rgba(244,241,236,.08);
  padding: clamp(32px, 4vw, 52px) clamp(24px, 3vw, 40px) clamp(28px, 3.5vw, 44px);
  position: relative;
  overflow: hidden;
  transition: background .45s;
  cursor: default;
}
.corp-pillar:hover { background: rgba(182,130,53,.05); }
.corp-pillar-ghost {
  font-family: var(--font-heading);
  font-size: clamp(80px, 10vw, 140px);
  font-weight: 400;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244,241,236,.06);
  position: absolute;
  top: -12px;
  right: -8px;
  pointer-events: none;
  transition: -webkit-text-stroke-color .45s, transform .45s;
  transform: translateY(0);
}
.corp-pillar:hover .corp-pillar-ghost {
  -webkit-text-stroke-color: rgba(182,130,53,.18);
  transform: translateY(-6px);
}
.corp-pillar-num {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--color-accent);
  margin: 0 0 clamp(20px, 2.5vw, 32px);
}
.corp-pillar-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #f4f1ec;
  margin: 0 0 16px;
}
.corp-pillar-body {
  font-size: 13.5px;
  line-height: 1.8;
  color:#fff;
  margin: 0;
}

/* Stats strip */
.corp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(244,241,236,.08);
  border-bottom: 1px solid rgba(244,241,236,.08);
}
.corp-stat {
  padding: clamp(28px, 4vw, 52px) clamp(20px, 3vw, 36px);
  border-right: 1px solid rgba(244,241,236,.08);
  position: relative;
}
.corp-stat:last-child { border-right: none; }
.corp-stat-num {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -.04em;
  color: #f4f1ec;
  margin: 0 0 8px;
}
.corp-stat-num sup {
  font-size: .42em;
  vertical-align: super;
  letter-spacing: -.01em;
  color: var(--color-accent);
}
.corp-stat-label {
  font-size: 11.5px;
  line-height: 1.55;
  color:#fff;
  letter-spacing: .02em;
}

/* Timeline */
.corp-timeline-section {
  padding: clamp(72px, 9vw, 120px) 0;
  border-bottom: 1px solid rgba(244,241,236,.08);
}
.corp-timeline-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.corp-timeline-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.15;
  letter-spacing: -.015em;
  color: #f4f1ec;
  margin: 0 0 16px;
}
.corp-timeline-sub {
  font-size: 13.5px;
  line-height: 1.8;
  color:#fff;
}
.corp-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.corp-phase {
  background: rgba(244,241,236,.04);
  padding: clamp(22px, 3vw, 36px) clamp(16px, 2vw, 28px);
  position: relative;
  border-top: 2px solid transparent;
  transition: border-color .35s, background .35s;
}
.corp-phase:hover {
  border-color: var(--color-accent);
  background: rgba(182,130,53,.06);
}
.corp-phase-num {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--color-accent);
  margin: 0 0 12px;
}
.corp-phase-dur {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color:#fff;
  margin: 0 0 10px;
}
.corp-phase-desc {
  font-size: 12.5px;
  line-height: 1.75;
  color:#fff;
  margin: 0;
}

/* Diagnostic grid */
.corp-diag-section {
  padding: clamp(72px, 9vw, 120px) 0;
  border-bottom: 1px solid rgba(244,241,236,.08);
}
.corp-diag-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.corp-diag-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  letter-spacing: -.018em;
  color: #f4f1ec;
  margin: 0 0 18px;
}
.corp-diag-body {
  font-size: 14px;
  line-height: 1.8;
  color:#fff;
  margin: 0;
}
.corp-diag-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(244,241,236,.07);
}
.corp-diag-tile {
  background: #100d0a;
  padding: clamp(20px, 2.5vw, 30px) clamp(16px, 2vw, 26px);
  transition: background .3s;
}
.corp-diag-tile:hover { background: rgba(182,130,53,.07); }
.corp-diag-tile-num {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--color-accent);
  margin: 0 0 10px;
}
.corp-diag-tile-title {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .01em;
  color:#fff;
  margin: 0 0 6px;
}
.corp-diag-tile-body {
  font-size: 12px;
  line-height: 1.7;
  color:#fff;
  margin: 0;
}

/* CTA bottom */
.corp-cta-section {
  padding: clamp(72px, 9vw, 120px) 0 0;
}
.corp-cta-inner {
  border: 1px solid rgba(244,241,236,.1);
  padding: clamp(40px, 6vw, 72px) clamp(32px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.corp-cta-quote {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.25;
  letter-spacing: -.015em;
  color: #f4f1ec;
  max-width: 560px;
  margin: 0;
  border-left: 3px solid var(--color-accent);
  padding-left: 22px;
}
.corp-cta-quote span {
  color: var(--color-accent);
  font-style: italic;
}

/* Responsive */
@media (max-width: 960px) {
  .corp-intro-grid,
  .corp-timeline-grid,
  .corp-diag-grid {
    grid-template-columns: 1fr;
  }
  .corp-pillars {
    grid-template-columns: 1fr;
    border-left: none;
  }
  .corp-pillar {
    border-right: none;
    border-bottom: 1px solid rgba(244,241,236,.08);
  }
  .corp-pillar:last-child { border-bottom: none; }
  .corp-stats { grid-template-columns: 1fr 1fr; }
  .corp-stat:nth-child(2) { border-right: none; }
  .corp-stat:nth-child(3) { border-top: 1px solid rgba(244,241,236,.08); }
  .corp-stat:nth-child(4) { border-top: 1px solid rgba(244,241,236,.08); border-right: none; }
}
@media (max-width: 540px) {
  .corp-diag-tiles { grid-template-columns: 1fr; }
  .corp-phases { grid-template-columns: 1fr; gap: 2px; }
  .corp-banner { flex-wrap: wrap; }
}
