@charset "UTF-8";
/* CSS Document */

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy:    #1A3D5C;
    --teal:    #1B7A5A;
    --green:   #2D9E6B;
    --blue:    #2468A8;
    --gold:    #FEDE59;
    --gold-lt: #FDF3D0;
    --bg:      #F4F8F6;
    --surface: #FFFFFF;
    --text:    #12243A;
    --muted:   #4E6577;
    --border:  #C8DBD0;
    --blue-lt: #E6EFF9;
    --green-lt:#E3F5EC;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
  }

  /* ── NAV ── */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    height: 96px;
    box-shadow: 0 2px 12px rgba(26,61,92,.35);
  }

  .nav-logo {
	height: 64px;
  }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    color: var(--navy);
    text-decoration: none;
    font-size: .875rem;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: color .2s;
  }

  .nav-links a:hover { color: var(--green); }

  /* ── HERO ── */
  #intro {
    position: relative;
    background: url("img/hero-bkg.webp");
	background-position: 50% 75%;
    overflow: hidden;
    padding: 6rem 2.5rem 5rem;
    text-align: center;
  }

  .hero-geo {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .hero-eyebrow {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .35rem 1rem;
    border-radius: 2px;
    margin-bottom: 1.75rem;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    max-width: 780px;
    margin: 0 auto 1.5rem;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-body {
    max-width: 417px;
    margin: 0 auto 2.5rem;
    color: rgba(255,255,255,.7);
    font-size: 1.05rem;
    font-weight: 300;
  }

  .hero-cta {
    display: inline-block;
    background: var(--green);
    color: #fff;
    font-weight: 600;
    font-size: .95rem;
    padding: .85rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: .03em;
    transition: background .2s, transform .15s;
  }

  .hero-cta:hover { background: var(--teal); transform: translateY(-2px); }

  .hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
  }

  /* ── SECTION SHELL ── */
  section { padding: 4.5rem 2.5rem; }

  .section-inner { max-width: 860px; margin: 0 auto; }

  .section-label {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: .6rem;
  }

  .section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .section-body {
    color: var(--muted);
    font-size: 1rem;
    max-width: 680px;
  }

  .divider {
    width: 48px;
    height: 3px;
    background: #FFFFFF;
    border-radius: 2px;
    margin: 1rem 0 1.75rem;
  }

  /* ── VISION GRID ── */
  #visions { background: var(--surface); }

  .vision-grid {
    margin-top: 2.5rem;
    display: grid;
    gap: 1rem;
  }

  /* ── ACCORDION CARD ── */
  .vision-card {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s;
  }

  .vision-card:hover { border-color: var(--green); box-shadow: 0 4px 18px rgba(27,122,90,.1); }
  .vision-card.open  { border-color: var(--blue); box-shadow: 0 6px 24px rgba(36,104,168,.12); }

  .vision-trigger {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: grid;
    grid-template-columns: 48px 1fr 32px;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    text-align: left;
    font-family: inherit;
  }

  .vision-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--blue-lt);
    color: var(--blue);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .25s, color .25s;
  }

  .vision-card.open .vision-num {
    background: var(--blue);
    color: #fff;
  }

  .vision-trigger-text { flex: 1; }

  .vision-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.35;
    transition: color .2s;
  }

  .vision-card.open .vision-title { color: var(--blue); }

  .vision-subtitle {
    font-size: .85rem;
    color: var(--muted);
    margin-top: .15rem;
    font-weight: 300;
  }

  .vision-chevron {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green-lt);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .25s, transform .35s;
  }

  .vision-card.open .vision-chevron {
    background: var(--blue);
    color: #fff;
    transform: rotate(180deg);
  }

  .vision-chevron svg { display: block; }

  /* ── PANEL ── */
  .vision-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .38s cubic-bezier(.4,0,.2,1);
  }

  .vision-card.open .vision-panel { grid-template-rows: 1fr; }

  .vision-panel-inner {
    overflow: hidden;
  }

  .vision-panel-content {
    padding: 0 1.4rem 1.6rem;
    padding-left: calc(48px + 1rem + 1.4rem);
    border-top: 1px solid var(--border);
  }

  .vision-card.open .vision-panel-content { border-top-color: var(--blue-lt); }

  .vision-panel-content p {
    color: var(--muted);
    font-size: .975rem;
    line-height: 1.75;
    margin-top: 1rem;
  }

  .policy-heading {
    font-size: .8rem !important;
    font-weight: 600 !important;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--teal) !important;
    margin-top: 1.6rem !important;
    margin-bottom: .1rem;
  }

  .policy-list {
    margin: .6rem 0 0 1.2rem;
    display: grid;
    gap: .55rem;
  }

  .policy-list li {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.65;
    padding-left: .25rem;
  }

  .policy-list a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    transition: color .15s;
  }

  .policy-list a:hover { color: var(--teal); }

  /* ── RESOURCES ── */
  .resource-list {
    margin-top: 2.5rem;
    display: grid;
    gap: 1rem;
  }

  .resource-item {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    padding: 1.25rem 1.4rem;
    transition: border-color .25s, box-shadow .25s;
  }

  .resource-item:hover {
    border-color: var(--green);
    box-shadow: 0 4px 18px rgba(27,122,90,.1);
  }

  .resource-name {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35;
  }

  .resource-name a {
    color: var(--navy);
    text-decoration: none;
    transition: color .15s;
  }

  .resource-name a:hover {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .resource-desc {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.7;
    margin-top: .45rem;
  }

  .resource-links {
    margin-top: .7rem;
    display: flex;
    flex-wrap: wrap;
    gap: .35rem 1.4rem;
  }

  .resource-links a {
    color: var(--blue);
    font-size: .9rem;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    transition: color .15s;
  }

  .resource-links a:hover { color: var(--teal); }

  .vision-panel-content .placeholder-text {
    font-style: italic;
    color: #aabbc8;
    font-size: .9rem;
  }

  .panel-tag {
    display: inline-block;
    background: var(--gold-lt);
    color: #7A5C00;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .25rem .75rem;
    border-radius: 2px;
    margin-top: 1rem;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    color: rgba(255,255,255,.55);
    text-align: center;
    padding: 2.5rem;
    font-size: .875rem;
  }

  footer strong { color: #fff; font-weight: 600; }

  /* ── RESPONSIVE ── */
  @media (max-width: 640px) {
    nav { padding: 0 1.25rem; }
    .nav-links { display: none; }
    section { padding: 3rem 1.25rem; }
    #intro { padding: 4rem 1.25rem 3.5rem; }
    .vision-panel-content { padding-left: 1.4rem; }
  }

  /* ── ENTRY ANIMATION ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .vision-card {
    opacity: 0;
    animation: fadeUp .45s ease forwards;
  }

  .vision-card:nth-child(1)  { animation-delay: .05s; }
  .vision-card:nth-child(2)  { animation-delay: .10s; }
  .vision-card:nth-child(3)  { animation-delay: .15s; }
  .vision-card:nth-child(4)  { animation-delay: .20s; }
  .vision-card:nth-child(5)  { animation-delay: .25s; }
  .vision-card:nth-child(6)  { animation-delay: .30s; }
  .vision-card:nth-child(7)  { animation-delay: .35s; }
  .vision-card:nth-child(8)  { animation-delay: .40s; }
  .vision-card:nth-child(9)  { animation-delay: .45s; }

