:root {
  --bg: #f4efe3;
  --paper: #fffdf8;
  --ink: #17352d;
  --muted: #617169;
  --green: #164f39;
  --green-2: #28745b;
  --gold: #e4a92d;
  --terracotta: #b85f3d;
  --blue: #2f6580;
  --line: rgba(23, 53, 45, 0.16);
  --shadow: 0 20px 50px rgba(20, 48, 39, 0.12);
  --radius: 26px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
}

.skip-link:focus {
  left: 10px;
  z-index: 999;
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  max-width: 1500px;
  margin: auto;
  padding: 14px clamp(18px, 5vw, 72px);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: auto;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  text-decoration: none;
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 10px;
}

.main-nav a:hover {
  background: #edf2ea;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-control select {
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  padding: 0 12px;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 900;
}

.button.small {
  min-height: 42px;
  padding: 9px 15px;
  background: var(--green);
  color: #fff;
}

.button.primary {
  background: var(--green);
  color: #fff;
}

.button.secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.button.secondary.dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.hero {
  max-width: 1500px;
  margin: auto;
  padding: 70px clamp(18px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 26px;
  align-items: stretch;
}

.hero-copy,
.hero-panel {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(32px, 6vw, 72px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(22, 79, 57, 0.98), rgba(40, 116, 91, 0.88)),
    radial-gradient(circle at top right, rgba(228, 169, 45, 0.45), transparent 36%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: #ffe6a5;
}

.hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(48px, 7vw, 90px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(19px, 2.2vw, 26px);
  line-height: 1.5;
}

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

.hero-note {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.hero-panel {
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.panel-label {
  margin: 0 0 6px;
  color: var(--green-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.path-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.path-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #e5eee6;
  color: var(--green);
  font-weight: 900;
}

.path-card strong,
.path-card small {
  display: block;
}

.path-card small {
  margin-top: 3px;
  color: var(--muted);
}

.section {
  padding: 82px clamp(18px, 7vw, 108px);
}

.section-heading {
  max-width: 940px;
  margin-bottom: 32px;
}

.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: 40px;
  align-items: end;
}

.section-heading h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.program-card {
  min-height: 530px;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--paper);
  display: flex;
  flex-direction: column;
}

.program-card.agriculture {
  border-top: 7px solid var(--green);
}

.program-card.employer {
  border-top: 7px solid var(--gold);
}

.program-card.professional {
  border-top: 7px solid var(--terracotta);
}

.card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #e4ece5;
  color: var(--green);
  font-size: 24px;
  font-weight: 900;
}

.card-label {
  margin: 22px 0 8px;
  color: var(--green-2);
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 900;
}

.program-card h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.05;
}

.program-card > p:not(.card-label) {
  color: var(--muted);
}

.program-card ul {
  padding-left: 20px;
  margin-bottom: 28px;
}

.status {
  margin-top: auto;
  align-self: flex-start;
  padding: 7px 11px;
  border-radius: 999px;
  background: #e8efe8;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.dark-section {
  background: var(--ink);
  color: #fff;
}

.section-heading.light .eyebrow {
  color: #b8d6c3;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.steps-grid article {
  padding: 26px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.steps-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}

.steps-grid h3 {
  margin: 18px 0 8px;
  font-size: 25px;
}

.steps-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

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

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

.comparison-grid article {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.comparison-label {
  color: var(--green-2);
  font-weight: 900;
}

.comparison-grid h3 {
  margin: 0;
  font-size: 32px;
}

.comparison-grid p:not(.comparison-label) {
  color: var(--muted);
}

.comparison-grid a {
  font-weight: 900;
  color: var(--green);
}

.notice-section {
  padding-top: 26px;
  padding-bottom: 26px;
}

.notice-card {
  max-width: 1320px;
  margin: auto;
  padding: 24px 28px;
  border-radius: 18px;
  border: 1px solid #e4a92d;
  border-left: 7px solid #e4a92d;
  background: #fff5d6;
}

.contact-section {
  background: linear-gradient(135deg, var(--green), #0f3728);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
}

.contact-section .eyebrow {
  color: #b8d6c3;
}

.contact-section p:not(.eyebrow) {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.site-footer {
  padding: 42px 20px;
  background: #0d3024;
  color: #fff;
  text-align: center;
}

.site-footer p {
  margin: 7px 0;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

@media (max-width: 1100px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions .button {
    display: none;
  }

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

  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: auto;
  }

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

@media (max-width: 760px) {
  .header-inner {
    gap: 10px;
  }

  .brand small {
    display: none;
  }

  .hero,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-copy,
  .hero-panel {
    border-radius: 20px;
  }

  .hero-copy {
    padding: 34px 24px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .section-heading.split,
  .comparison-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    width: 100%;
  }
}


/* =========================================================
   VISION AMARU BRAND THEME — v2
   Black, deep forest, warm cream, ochre gold, terracotta
========================================================= */

:root {
  --bg: #efe3ca;
  --paper: #fff7e6;
  --ink: #2b160f;
  --muted: #6d5b4b;
  --green: #082f27;
  --green-2: #174b3f;
  --gold: #f0a91d;
  --terracotta: #9a4b2d;
  --blue: #315d66;
  --line: rgba(95, 61, 27, 0.22);
  --shadow: 0 22px 55px rgba(42, 22, 12, 0.16);
  --radius: 24px;
}

body {
  background:
    radial-gradient(circle at 12% 5%, rgba(240, 169, 29, 0.11), transparent 24%),
    linear-gradient(180deg, #f5ead4 0%, #efe3ca 100%);
  color: var(--ink);
}

.site-header {
  background: rgba(5, 5, 4, 0.97);
  border-bottom: 1px solid rgba(240, 169, 29, 0.35);
}

.brand,
.main-nav a,
.menu-toggle {
  color: #fff7e6;
}

.brand small {
  color: rgba(255, 247, 230, 0.68);
}

.brand-mark {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(240, 169, 29, 0.7);
  border-radius: 50%;
}

.main-nav a:hover {
  background: rgba(240, 169, 29, 0.12);
  color: var(--gold);
}

.language-control select,
.menu-toggle {
  background: #17130f;
  color: #fff7e6;
  border-color: rgba(240, 169, 29, 0.35);
}

.button.small,
.button.primary {
  background: var(--gold);
  color: #1d1208;
}

.button.small:hover,
.button.primary:hover {
  background: #ffc34a;
}

.hero-copy {
  background:
    radial-gradient(circle at 82% 18%, rgba(240, 169, 29, 0.23), transparent 28%),
    linear-gradient(140deg, #061f1a 0%, #0b392f 58%, #15130d 100%);
  border: 1px solid rgba(240, 169, 29, 0.28);
}

.hero-copy .eyebrow,
.panel-label,
.card-label,
.comparison-label,
.eyebrow {
  color: var(--gold);
}

.hero h1,
.section-heading h2,
.contact-section h2,
.program-card h3,
.comparison-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.035em;
}

.hero h1 {
  color: #fff7e6;
}

.lead {
  color: rgba(255, 247, 230, 0.92);
}

.hero-note {
  color: rgba(255, 247, 230, 0.66);
}

.button.secondary {
  background: #fff7e6;
  color: #2b160f;
  border-color: rgba(240, 169, 29, 0.42);
}

.hero-panel {
  background:
    linear-gradient(145deg, #fff7e6 0%, #ead7b5 100%);
  border-color: rgba(154, 75, 45, 0.28);
}

.path-card {
  background: rgba(255, 250, 239, 0.78);
  border-color: rgba(95, 61, 27, 0.22);
}

.path-number {
  background: #0b392f;
  color: var(--gold);
}

.program-card,
.comparison-grid article {
  background: linear-gradient(145deg, #fff8ea, #f0dfc1);
  border-color: rgba(95, 61, 27, 0.22);
}

.program-card.agriculture {
  border-top-color: #0b392f;
}

.program-card.employer {
  border-top-color: var(--gold);
}

.program-card.professional {
  border-top-color: var(--terracotta);
}

.card-icon {
  background: #0b392f;
  color: var(--gold);
}

.status {
  background: #ead6ab;
  color: #5b3418;
}

.dark-section {
  background:
    radial-gradient(circle at 15% 15%, rgba(240, 169, 29, 0.08), transparent 22%),
    linear-gradient(135deg, #07261f 0%, #031511 100%);
}

.steps-grid article {
  background: rgba(255, 247, 230, 0.07);
  border-color: rgba(240, 169, 29, 0.22);
}

.steps-grid span {
  background: var(--gold);
  color: #1d1208;
}

.comparison-section {
  background: #f4e8d1;
}

.comparison-grid a {
  color: #8a471f;
}

.notice-card {
  background: #fff1c9;
  border-color: var(--gold);
  border-left-color: var(--gold);
}

.contact-section {
  background:
    radial-gradient(circle at 85% 20%, rgba(240, 169, 29, 0.16), transparent 25%),
    linear-gradient(135deg, #061f1a, #020b09);
}

.contact-section .eyebrow {
  color: var(--gold);
}

.site-footer {
  background: #050504;
  color: #fff7e6;
  border-top: 1px solid rgba(240, 169, 29, 0.28);
}

.site-footer span {
  color: rgba(255, 247, 230, 0.62);
}

@media (max-width: 1100px) {
  .main-nav {
    background: #0d0b09;
    border-color: rgba(240, 169, 29, 0.3);
  }
}
