:root {

    --forest: #1e3a28;

    --forest2: #163020;

    --brass: #b5832a;

    --brass-lt: #d4a752;

    --parchment:#f7f2e8;

    --warm-white:#fdfaf4;

    --stone: #6b6355;

    --ink: #1c1a15;

    --rule: #c8bfa8;

  }

 

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

  html { scroll-behavior: smooth; }

 

  body {

    font-family: 'Jost', sans-serif;

    background: var(--warm-white);

    color: #2c2c2c;

    overflow-x: hidden;

  }

 

  /* ══ TOPBAR ══════════════════════════════════════════════ */

  .topbar {

    background: var(--forest);

    padding: 0.55rem 2rem;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 2rem;

    flex-wrap: wrap;

  }

  .topbar span {

    font-size: 0.68rem;

    font-weight: 500;

    letter-spacing: 0.2em;

    text-transform: uppercase;

    color: rgba(247,242,232,0.65);

  }

  .topbar span.accent { color: var(--brass-lt); }

 

  /* ══ HERO ════════════════════════════════════════════════ */

  .hero {

    background: var(--forest2);

    position: relative;

    overflow: hidden;

    padding: 6rem 2rem 5rem;

    text-align: center;

  }
/* HERO IMAGE POSITIONS */
  .hero-images {
    position: absolute;
    top: 1.5rem;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 2;
  }

  .hero-portrait {
    width: 150px !important;
    height: auto !important;
    border-radius: 50%;
    border: 3px solid var(--brass);
  }

  .hero-logo {
    width: 150px !important;
    height: auto !important;
  }

  .hero::before {

    content: '';

    position: absolute;

    inset: 0;

    background-image: repeating-linear-gradient(

      0deg, transparent, transparent 28px,

      rgba(255,255,255,0.022) 28px, rgba(255,255,255,0.022) 29px

    );

    pointer-events: none;

  }

  .hero::after {

    content: '';

    position: absolute;

    inset: 0;

    background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(181,131,42,0.13) 0%, transparent 70%);

    pointer-events: none;

  }

  .hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }

 

  .hero-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 0.75rem;

    font-size: 0.85rem;

    font-weight: 500;

    letter-spacing: 0.24em;

    text-transform: uppercase;

    color: var(--brass-lt);

    margin-bottom: 2.5rem;

    animation: riseIn 0.7s ease both;

  }

  .hero-eyebrow::before, .hero-eyebrow::after {

    content: '';

    display: block;

    width: 36px;

    height: 1px;

    background: var(--brass);

  }

 

  .hero-name {

    font-family: 'EB Garamond', serif;

    font-size: clamp(4rem, 12vw, 8.5rem);

    font-weight: normal;

    line-height: 0.9;

    color: var(--warm-white);

    letter-spacing: -0.01em;

    animation: riseIn 0.8s 0.1s ease both;

  }

  .hero-name em {

    display: block;

    font-style: italic;

    color: var(--brass-lt);

    font-weight: 400;

    font-size: 0.55em;

    letter-spacing: 0.05em;

    margin-top: 0.3rem;

  }

 

  .hero-ornament {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 1rem;

    margin: 2rem 0;

    animation: riseIn 0.8s 0.2s ease both;

  }

  .hero-ornament span { color: var(--brass); font-size: 1.1rem; }

  .hero-ornament::before, .hero-ornament::after {

    content: '';

    flex: 1;

    max-width: 100px;

    height: 1px;

    background: linear-gradient(90deg, transparent, var(--brass));

  }

  .hero-ornament::after { background: linear-gradient(90deg, var(--brass), transparent); }

 

  .hero-tagline {

    font-family: 'EB Garamond', serif;

    font-size: clamp(1.15rem, 3vw, 1.6rem);

    font-style: italic;

    color: rgba(247,242,232,0.78);

    line-height: 1.6;

    max-width: 600px;

    margin: 0 auto 2.5rem;

    animation: riseIn 0.8s 0.3s ease both;

  }

 

  .hero-btn {

    display: inline-block;

    border: 1.5px solid var(--brass);

    color: var(--brass-lt);

    font-size: 0.72rem;

    font-weight: 600;

    letter-spacing: 0.22em;

    text-transform: uppercase;

    padding: 0.8rem 2.4rem;

    text-decoration: none;

    transition: background 0.25s, color 0.25s;

    animation: riseIn 0.8s 0.4s ease both;

  }

  .hero-btn:hover { background: var(--brass); color: var(--forest2); }

 

  /* ══ STATEMENT ═══════════════════════════════════════════ */

  .statement {

    background: var(--parchment);

    padding: 5.5rem 2rem;

  }

  .statement-inner {

    max-width: 700px;

    margin: 0 auto;

    text-align: center;

  }

  .ornamental-rule {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 0.8rem;

    margin-bottom: 2.5rem;

    color: var(--brass);

    font-size: 1rem;

  }

  .ornamental-rule::before, .ornamental-rule::after {

    content: '';

    flex: 1;

    max-width: 80px;

    height: 1px;

    background: var(--rule);

  }

 

  .section-kicker {

    font-size: 1.92rem;

    font-weight: 600;

    letter-spacing: 0.24em;

    text-transform: uppercase;

    color: var(--brass);

    margin-bottom: 1.8rem;

  }

 

  .statement blockquote {

    font-family: 'EB Garamond', serif;

    font-size: clamp(1.2rem, 3vw, 1.55rem);

    font-style: italic;

    line-height: 1.75;

    color: var(--ink);

  }

  .statement-attr {

    margin-top: 2rem;

    font-size: 0.85rem;

    font-weight: 500;

    color: var(--stone);

    letter-spacing: 0.06em;

  }

 

  /* ══ PRIORITIES ══════════════════════════════════════════ */

  .priorities {

    background: var(--warm-white);

    padding: 6rem 2rem;

  }

  .priorities-header {

    text-align: center;

    margin-bottom: 4rem;

  }

  .priorities-header h2 {

    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;

    font-size: clamp(2rem, 5vw, 3rem);

    font-weight: normal;

    color: var(--forest);

    margin-top: 0.5rem;

  }

 

  .priority-block {

    max-width: 900px;

    margin: 0 auto;

    display: flex;

    flex-direction: column;

  }

 

  .priority {

    display: grid;

    grid-template-columns: 80px 1fr;

    gap: 0 2.5rem;

    padding: 3rem 0;

    border-bottom: 1px solid var(--rule);

  }

  .priority:first-child { border-top: 1px solid var(--rule); }

 

  .priority-num {

    font-family: 'EB Garamond', serif;

    font-size: 3.5rem;

    font-weight: normal;

    color: rgba(181,131,42,0.18);

    line-height: 1;

    text-align: right;

    padding-top: 0.1rem;

    letter-spacing: -0.03em;

    user-select: none;

  }

 

  .priority-icon { font-size: 1.4rem; margin-bottom: 0.5rem; }

 

  .priority h3 {

    font-family: 'EB Garamond', serif;

    font-size: 1.6rem;

    font-weight: 600;

    color: var(--forest);

    margin-bottom: 0.6rem;

    line-height: 1.2;

  }

 

  .priority-lead {

    font-size: 1rem;

    line-height: 1.75;

    color: var(--stone);

    margin-bottom: 1.25rem;

    font-weight: 300;

  }

 

  .priority-points {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

    gap: 0.5rem 2rem;

    list-style: none;

  }

  .priority-points li {

    font-size: 0.88rem;

    font-weight: 400;

    color: var(--ink);

    padding: 0.3rem 0 0.3rem 0.75rem;

    border-left: 2px solid var(--brass);

    line-height: 1.5;

  }

 

  /* ══ VALUES BAND ═════════════════════════════════════════ */

  .values {

    background: var(--forest);

    padding: 4.5rem 2rem;

    text-align: center;

  }

  .values-label {

    font-size: 0.88rem;

    font-weight: 600;

    letter-spacing: 0.26em;

    text-transform: uppercase;

    color: var(--brass-lt);

    margin-bottom: 1.5rem;

  }

  .values-list {

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 0.4rem 3rem;

    list-style: none;

  }

  .values-list li {

    font-family: 'EB Garamond', serif;

    font-size: clamp(1rem, 2.5vw, 1.35rem);

    font-style: italic;

    color: rgba(247,242,232,0.82);

    padding: 0.4rem 0;

    position: relative;

  }

 

  /* ══ FISCAL COMMITMENT ═══════════════════════════════════ */

  .fiscal {

    background: var(--parchment);

    padding: 5.5rem 2rem;

  }

  .fiscal-inner {

    max-width: 860px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 3rem 4rem;

    align-items: start;

  }

  .fiscal-intro h2 {

    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;

    font-size: clamp(1.8rem, 4vw, 2.6rem);

    font-weight: normal;

    color: var(--forest);

    line-height: 1.15;

    margin-bottom: 1rem;

  }

  .fiscal-intro p {

    font-size: 0.95rem;

    font-weight: 300;

    color: var(--stone);

    line-height: 1.8;

  }

  .fiscal-commitments {

    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 1.2rem;

  }

  .fiscal-commitments li {

    display: flex;

    gap: 1rem;

    align-items: flex-start;

  }

  .fc-icon {

    width: 32px;

    height: 32px;

    background: var(--forest);

    color: var(--brass-lt);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 0.85rem;

    flex-shrink: 0;

    margin-top: 0.15rem;

  }

  .fc-text strong {

    display: block;

    font-size: 0.88rem;

    font-weight: 600;

    color: var(--ink);

    margin-bottom: 0.2rem;

  }

  .fc-text span {

    font-size: 0.83rem;

    font-weight: 300;

    color: var(--stone);

    line-height: 1.5;

  }

 

  /* ══ CLOSING ═════════════════════════════════════════════ */

  .closing {

    background: var(--forest2);

    padding: 6rem 2rem;

    text-align: center;

    position: relative;

    overflow: hidden;

  }

  .closing::before {

    content: '';

    position: absolute;

    inset: 0;

    background: repeating-linear-gradient(

      0deg, transparent, transparent 28px,

      rgba(255,255,255,0.018) 28px, rgba(255,255,255,0.018) 29px

    );

  }

  .closing-inner { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }

  .closing h2 {

    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;

    font-size: clamp(2rem, 6vw, 3.4rem);

    font-weight: normal;

    color: var(--warm-white);

    line-height: 1.15;

    margin-bottom: 1.5rem;

  }

  .closing h2 em { font-style: italic; color: var(--brass-lt); }

  .closing p {

    font-size: 1.5rem;

    font-weight: 300;

    color: rgba(247,242,232,0.72);

    line-height: 1.8;

    margin-bottom: 2.5rem;

  }

  .closing-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  .btn-primary {

    background: var(--brass);

    color: var(--forest2);

    font-size: 0.72rem;

    font-weight: normal;

    letter-spacing: 0.2em;

    text-transform: uppercase;

    padding: 0.9rem 2.5rem;

    text-decoration: none;

    transition: background 0.2s, transform 0.2s;

  }

  .btn-primary:hover { background: var(--brass-lt); transform: translateY(-2px); }

  .btn-secondary {

    border: 1.5px solid rgba(247,242,232,0.3);

    color: rgba(247,242,232,0.7);

    font-size: 0.72rem;

    font-weight: 500;

    letter-spacing: 0.2em;

    text-transform: uppercase;

    padding: 0.9rem 2.5rem;

    text-decoration: none;

    transition: border-color 0.2s, color 0.2s;

  }

  .btn-secondary:hover { border-color: var(--brass); color: var(--brass-lt); }

 

  /* ══ FOOTER ══════════════════════════════════════════════ */

  footer {

    background: #0d1f12;

    padding: 1.8rem 2rem;

    text-align: center;

    font-size: 0.72rem;

    letter-spacing: 0.06em;

    color: rgba(247,242,232,0.3);

  }

 

  /* ══ ANIMATIONS ══════════════════════════════════════════ */

  @keyframes riseIn {

    from { opacity: 0; transform: translateY(20px); }

    to { opacity: 1; transform: translateY(0); }

  }

 

  @media (max-width: 640px) {

    .fiscal-inner { grid-template-columns: 1fr; gap: 2rem; }

    .priority { grid-template-columns: 48px 1fr; gap: 0 1.5rem; }

    .priority-num { font-size: 2.5rem; }

  }

/* ══ CREDENTIALS ═════════════════════════════════════════ */
.credentials {
  background: var(--parchment);
  padding: 5.5rem 2rem;
}
.credentials-inner {
  max-width: 700px;
  margin: 0 auto;
}
.credentials-header {
  text-align: center;
  margin-bottom: 2.8rem;
}
.credentials-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.credentials-list li {
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--ink);
  padding: 0.4rem 0 0.4rem 1.1rem;
  border-left: 2px solid var(--brass);
  line-height: 1.5;
}