:root {
  --navy: #051827;
  --navy-2: #08283b;
  --cream: #fff0d0;
  --paper: #fff8ec;
  --paper-2: #f4ead8;
  --gold: #d89b35;
  --orange: #e65a16;
  --teal: #007d74;
  --red: #c81d17;
  --ink: #122131;
  --muted: #5d6670;
  --line: rgba(5, 24, 39, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 24, 39, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(5, 24, 39, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 92px;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 240, 208, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 190px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: #03111d;
  border-right: 1px solid rgba(255, 240, 208, 0.16);
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  margin-left: auto;
}

.nav a,
.language-toggle a {
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  color: rgba(255, 240, 208, 0.76);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  border-left: 1px solid rgba(255, 240, 208, 0.1);
}

.nav a:hover,
.nav a:focus-visible,
.language-toggle a:hover,
.language-toggle a:focus-visible {
  color: var(--cream);
  background: rgba(216, 155, 53, 0.12);
  outline: none;
}

.nav a[aria-current="page"],
.language-toggle a[aria-current="true"] {
  color: var(--cream);
  background: rgba(216, 155, 53, 0.12);
  box-shadow: inset 0 -5px 0 var(--gold);
  outline: none;
}

.language-toggle {
  display: flex;
  align-items: stretch;
  padding-right: clamp(18px, 5vw, 72px);
  border-left: 1px solid rgba(255, 240, 208, 0.18);
}

.language-toggle a {
  padding-inline: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(780px, calc(100vh - 132px));
  padding: clamp(54px, 8vw, 112px) clamp(20px, 5vw, 72px) clamp(58px, 8vw, 96px);
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(5, 24, 39, 0.98), rgba(8, 40, 59, 0.94)),
    var(--navy);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: auto -6vw -110px auto;
  width: min(58vw, 640px);
  height: min(58vw, 640px);
  opacity: 0.86;
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(216, 155, 53, 0.9) 42% 58%, transparent 58%),
    linear-gradient(45deg, transparent 0 46%, rgba(0, 125, 116, 0.78) 46% 64%, transparent 64%),
    linear-gradient(115deg, transparent 0 52%, rgba(230, 90, 22, 0.82) 52% 66%, transparent 66%);
  transform: rotate(-8deg);
}

.hero-inner,
.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.62fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

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

.hero-mark {
  position: relative;
  justify-self: end;
  width: min(360px, 100%);
  padding: 12px;
  background: linear-gradient(135deg, var(--gold), var(--orange), var(--teal));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.hero-mark::after {
  content: attr(data-label);
  position: absolute;
  right: -18px;
  bottom: 28px;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--cream);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.02;
}

h1 {
  max-width: 850px;
  margin-bottom: 26px;
  color: var(--cream);
  font-size: clamp(3.4rem, 8vw, 7.7rem);
  font-weight: 900;
}

h2 {
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(2.15rem, 4.5vw, 4.25rem);
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.28rem;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 240, 208, 0.84);
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  color: var(--navy);
  background: var(--gold);
  border: 1px solid rgba(255, 240, 208, 0.22);
  border-radius: 4px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 7px 7px 0 rgba(255, 240, 208, 0.12);
}

.button:hover,
.button:focus-visible {
  background: var(--cream);
  outline: 3px solid rgba(216, 155, 53, 0.38);
}

.section {
  padding: clamp(66px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.section-muted {
  background:
    linear-gradient(90deg, rgba(216, 155, 53, 0.12), transparent 28%),
    var(--paper-2);
  border-block: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: start;
}

.statement h2 {
  max-width: 780px;
}

.text-stack {
  padding-left: 24px;
  border-left: 5px solid var(--gold);
}

.text-stack p,
.lead {
  color: var(--muted);
  font-size: clamp(1.06rem, 1.7vw, 1.24rem);
}

.text-stack p:last-child,
.lead {
  margin-bottom: 0;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  color: var(--cream);
  background: #03111d;
  border-block: 1px solid rgba(255, 240, 208, 0.16);
}

.proof-item {
  display: grid;
  gap: 12px;
  min-height: 150px;
  padding: clamp(24px, 4vw, 42px) clamp(20px, 5vw, 72px);
  border-right: 1px solid rgba(255, 240, 208, 0.14);
}

.proof-item span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.proof-item strong {
  max-width: 260px;
  font-size: clamp(1.45rem, 3vw, 2.8rem);
  line-height: 1;
}

.grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

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

.card,
.feature {
  min-height: 226px;
  padding: 28px;
  background: rgba(255, 248, 236, 0.84);
  border: 1px solid var(--line);
}

.card {
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 118px;
  height: 118px;
  border: 18px solid rgba(5, 24, 39, 0.06);
  border-radius: 50%;
}

.card p,
.feature p {
  margin-bottom: 0;
  color: var(--muted);
}

.marker {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--gold);
}

.country-code {
  position: absolute;
  top: 26px;
  right: 24px;
  color: rgba(5, 24, 39, 0.18);
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  font-weight: 950;
  line-height: 1;
}

.accent-colombia .marker {
  background: linear-gradient(90deg, var(--gold), var(--orange), var(--teal));
}

.accent-dominican .marker {
  background: linear-gradient(90deg, var(--red), var(--cream), var(--teal));
}

.accent-future .marker {
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--orange));
}

.feature {
  min-height: 190px;
  background: transparent;
  border-top: 6px solid var(--navy);
}

.feature:nth-child(2) {
  border-top-color: var(--teal);
}

.feature:nth-child(3) {
  border-top-color: var(--orange);
}

.process-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.process-list article {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(220px, 0.58fr) minmax(260px, 0.72fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.process-list span,
.origin-note span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-list h3 {
  margin-bottom: 0;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.origin-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
}

.origin-layout .origin-note {
  grid-column: 1 / -1;
}

.founder-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 26px;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(216, 155, 53, 0.18), transparent 48%),
    var(--navy);
  border-left: 10px solid var(--gold);
}

.founder-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-card strong {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.95;
}

.founder-card p {
  margin-bottom: 0;
  color: rgba(255, 240, 208, 0.82);
  font-weight: 800;
}

.origin-note {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  align-items: center;
  padding: 28px;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(216, 155, 53, 0.2), transparent),
    var(--navy);
  border-left: 10px solid var(--gold);
}

.origin-note strong {
  font-size: clamp(1.3rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 10vw, 142px) clamp(20px, 5vw, 72px);
  color: var(--cream);
  background:
    linear-gradient(92deg, rgba(5, 24, 39, 1), rgba(8, 40, 59, 0.92)),
    var(--navy);
}

.page-hero .section-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 6.4vw, 5.9rem);
}

.callout {
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  background: var(--navy);
  color: var(--cream);
  text-align: center;
}

.callout h2 {
  color: var(--cream);
}

.region-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.region-list span {
  display: flex;
  align-items: end;
  min-height: 150px;
  padding: 22px;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(5, 24, 39, 0.58), rgba(5, 24, 39, 0.9)),
    linear-gradient(135deg, var(--gold), var(--orange), var(--teal));
  border: 1px solid rgba(255, 240, 208, 0.32);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 950;
}

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

.brand-market article {
  position: relative;
  min-height: 260px;
  padding: 30px;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(5, 24, 39, 0.72), rgba(5, 24, 39, 0.96)),
    linear-gradient(135deg, var(--gold), var(--orange), var(--teal));
  overflow: hidden;
}

.brand-market article::after {
  content: "";
  position: absolute;
  right: -64px;
  bottom: -64px;
  width: 190px;
  height: 190px;
  border: 28px solid rgba(255, 240, 208, 0.13);
  border-radius: 50%;
}

.brand-market span {
  display: block;
  margin-bottom: 58px;
  color: rgba(255, 240, 208, 0.34);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 950;
  line-height: 0.75;
}

.brand-market h3 {
  color: var(--cream);
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.brand-market p {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin-bottom: 0;
  color: rgba(255, 240, 208, 0.82);
}

.partner-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.partner-list li {
  position: relative;
  padding: 20px 0 20px 34px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 800;
}

.partner-list li::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 0;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, var(--gold), var(--orange), var(--teal));
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(320px, 0.85fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
}

.form-stack {
  display: grid;
  gap: 18px;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 34px);
  background: var(--navy);
  color: var(--cream);
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 10px;
  background: linear-gradient(var(--gold), var(--orange), var(--teal));
}

.compact-form {
  background: #092238;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 240, 208, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--cream);
  background: rgba(255, 240, 208, 0.08);
  border: 1px solid rgba(255, 240, 208, 0.26);
  border-radius: 0;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(216, 155, 53, 0.28);
}

.contact-form button {
  justify-self: start;
  min-height: 52px;
  padding: 13px 20px;
  color: var(--navy);
  background: var(--gold);
  border: 0;
  border-radius: 4px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 7px 7px 0 rgba(255, 240, 208, 0.12);
}

.contact-form button:hover,
.contact-form button:focus-visible {
  background: var(--cream);
  outline: 3px solid rgba(216, 155, 53, 0.38);
}

.screen-reader-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding: 48px clamp(20px, 5vw, 72px);
  color: rgba(255, 240, 208, 0.82);
  background: #03111d;
  border-top: 8px solid var(--gold);
}

.footer-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 28px;
  align-items: start;
}

.site-footer strong {
  display: block;
  color: var(--cream);
  font-size: 1.15rem;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--cream);
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 240, 208, 0.16);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .brand {
    width: 148px;
    min-height: 112px;
    padding: 12px 22px;
    border-right: 0;
  }

  .nav {
    flex: 1 1 360px;
    justify-content: flex-start;
    margin-left: 0;
    padding: 0 0 14px 0;
    overflow-x: auto;
  }

  .language-toggle {
    min-height: 44px;
    padding: 0 clamp(18px, 5vw, 48px) 14px 0;
    border-left: 0;
  }

  .nav a,
  .language-toggle a {
    min-height: 44px;
    border: 1px solid rgba(255, 240, 208, 0.12);
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .split,
  .origin-layout,
  .contact-layout,
  .three,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .process-list article,
  .proof-band,
  .brand-market,
  .origin-note {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 240, 208, 0.14);
  }

  .hero-mark {
    justify-self: start;
    width: min(310px, 88vw);
  }

  .region-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand {
    width: 132px;
    min-height: 102px;
  }

  .nav a {
    padding-inline: 14px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.08rem;
  }

  .card,
  .feature {
    min-height: auto;
    padding: 24px;
  }

  .card {
    padding-top: 62px;
  }

  .text-stack {
    padding-left: 18px;
  }

  .hero-mark::after {
    right: -8px;
    bottom: 18px;
  }
}
