:root {
  --ink:#252525;
  --cream:#f6efe3;
  --cream2:#fbf8f2;
  --bronze:#7a4f18;
  --gold:#b28a50;
  --muted:#70695f;
  --white:#fff;
  --line:#e8dfd2;
  --shadow:0 18px 60px rgba(37,37,37,.09);
  --radius:18px;
  --max:1180px;
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
}
body {
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:var(--cream2);
  line-height:1.65;
}
img {
  max-width:100%;
  display:block;
}
.impact-list {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.impact-item {
    display: grid;
    grid-template-columns: 90px 1fr 60px;
    align-items: center;
    gap: 40px;

    padding: 42px 0;

    color: inherit;
    text-decoration: none;

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);

    transition:
        padding 0.3s ease,
        background 0.3s ease;
}

.impact-item:hover {
    padding-left: 20px;
    padding-right: 20px;
}

.impact-number {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.45);
}

.impact-content {
    max-width: 760px;
}

.impact-category {
    display: block;

    margin-bottom: 10px;

    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: #d7b46f;
}

.impact-content h3 {
    margin: 0 0 12px;

    font-family: Georgia, serif;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1.1;
}

.impact-content p {
    max-width: 650px;
    margin: 0;

    color: rgba(255, 255, 255, 0.62);
    font-size: 0.95rem;
    line-height: 1.7;
}

.impact-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(255, 255, 255, 0.2);

    font-size: 1.2rem;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.impact-item:hover .impact-arrow {
    background: #d7b46f;
    color: #101f2b;
}
a {
  color:inherit;
  text-decoration:none;
}
button {
  font:inherit;
}
.container {
  width:min(var(--max),calc(100% - 40px));
  margin:auto;
}
.eyebrow {
  display:flex;
  align-items:center;
  gap:10px;
  font-size:.72rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--bronze);
  font-weight:800;
}


.section {
  padding:96px 0;
}
.section-head {
  display:flex;
  justify-content:space-between;
  gap:30px;
  align-items:end;
  margin-bottom:38px;
}
.section-head h2 {
  font:500 clamp(2rem,4vw,3.4rem)/1.08 Georgia,serif;
  margin:8px 0 0;
}
.section-head p {
  max-width:560px;
  color:var(--muted);
  margin:0;
}
.btn {
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:13px 19px;
  border:1px solid var(--ink);
  border-radius:999px;
  font-weight:750;
  transition:.2s;
}
.btn:hover {
  transform:translateY(-2px);
  background:var(--ink);
  color:#fff;
}
.btn-dark {
  background:var(--ink);
  color:#fff;
}
.btn-cream {
  background:var(--cream);
  border-color:var(--cream);
}
.grid {
  display:grid;
  gap:22px;
}
.cards-3 {
  grid-template-columns:repeat(3,1fr);
}
.cards-2 {
  grid-template-columns:repeat(2,1fr);
}
.card {
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 10px 35px rgba(37,37,37,.045);
}
.card-body {
  padding:25px;
}
.card h3 {
  font:600 1.45rem/1.2 Georgia,serif;
  margin:8px 0 10px;
}
.card p {
  color:var(--muted);
  margin:0 0 18px;
}
.tag {
  display:inline-block;
  color:var(--bronze);
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.topbar {
  background:var(--ink);
  color:#fff;
  font-size:.78rem;
}
.topbar .container {
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:8px 0;
}
.topbar a {
  opacity:.82;
}
.nav {
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(251,248,242,.94);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}
.nav-inner {
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
}
.brand {
  display:flex;
  align-items:center;
  gap:12px;
}
.brand strong {
  display:block;
  font:700 1.05rem Georgia,serif;
}
.brand span {
  display:block;
  font-size:.67rem;
  color:var(--muted);
  letter-spacing:.12em;
  text-transform:uppercase;
}
.nav-links {
  display:flex;
  align-items:center;
  gap:26px;
  font-size:.9rem;
  font-weight:700;
}
.nav-links a {
  color:#3f3b35;
}
.nav-links a.active,.nav-links a:hover {
  color:var(--bronze);
}
.menu {
  display:none;
  border:0;
  background:none;
  font-size:1.6rem;
}
.hero {
  min-height:calc(100vh - 110px);
  display:grid;
  grid-template-columns:1.02fr .98fr;
  background:var(--cream);
  overflow:hidden;
}
.hero-copy {
  display:flex;
  align-items:center;
  padding:80px max(30px,calc((100vw - var(--max))/2));
  padding-right:50px;
}
.hero-copy-inner {
  max-width:620px;
}
.hero h1 {
  font:500 clamp(3.5rem,7vw,6.6rem)/.92 Georgia,serif;
  letter-spacing:-.045em;
  margin:14px 0 24px;
}
.hero h1 span {
  color:var(--bronze);
}
.hero-lead {
  font-size:1.08rem;
  color:var(--muted);
  max-width:570px;
}
.hero-actions {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:28px;
}
.hero-visual {
  position:relative;
  min-height:620px;
  background:#e9e5df;
  display:flex;
  align-items:end;
  justify-content:center;
  overflow:hidden;
}
.hero-visual:after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(246,239,227,.12),transparent 30%,transparent 70%,rgba(37,37,37,.06));
  pointer-events:none;
}
.hero-visual img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
}
.hero-note {
  position:absolute;
  bottom:25px;
  left:25px;
  z-index:2;
  background:rgba(255,255,255,.92);
  padding:14px 16px;
  border-radius:12px;
  font-size:.78rem;
  max-width:260px;
  box-shadow:var(--shadow);
}
.stat-band {
  background:var(--ink);
  color:#fff;
}
.stats {
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.stat {
  padding:34px 20px;
  border-right:1px solid rgba(255,255,255,.12);
}
.stat:last-child {
  border:0;
}
.stat strong {
  font:500 2.1rem Georgia,serif;
  display:block;
  color:#f5dfbd;
}
.stat span {
  font-size:.82rem;
  color:#c8c4bc;
}
.split {
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:center;
}
.portrait-card {
  background:var(--cream);
  border-radius:28px;
  overflow:hidden;
}
.portrait-card img {
  aspect-ratio:4/4.6;
  object-fit:cover;
  object-position:center top;
}
.quote {
  font:500 clamp(1.8rem,3.5vw,3rem)/1.15 Georgia,serif;
  margin:25px 0;
  color:#302a22;
}
.body-copy {
  color:var(--muted);
  font-size:1rem;
}
.link-arrow {
  font-weight:800;
  color:var(--bronze);
}
.dark-section {
  background:var(--ink);
  color:#fff;
}
.dark-section .eyebrow {
  color:#d8b57d;
}
.dark-section .section-head p,.dark-section .body-copy {
  color:#c7c3bb;
}
.project-card img {
  aspect-ratio:16/10;
  object-fit:cover;
  background:var(--cream);
}
.project-placeholder {
  aspect-ratio:16/10;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#eee2ce,#f8f4ed);
  font:500 2rem Georgia,serif;
  color:var(--bronze);
}
.project-card .card-body {
  min-height:190px;
}
.cta {
  background:var(--cream);
  border:1px solid var(--line);
  border-radius:28px;
  padding:55px;
}
.cta h2 {
  font:500 clamp(2rem,4vw,3.2rem) Georgia,serif;
  margin:0 0 12px;
}
.page-hero {
  background:var(--ink);
  color:#fff;
  padding:90px 0;
}
.page-hero h1 {
  font:500 clamp(3rem,7vw,5.8rem)/.95 Georgia,serif;
  margin:12px 0;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.18;
}
.campaign-section {
    padding: 90px 0;
    background: #101f2b;
}

.campaign-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 560px;
    overflow: hidden;
    background: #142b3a;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.campaign-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px;
    color: #ffffff;
}

.campaign-content .eyebrow {
    color: #d7b46f;
}

.campaign-content h2 {
    max-width: 560px;
    margin: 18px 0 24px;
    font: 500 clamp(3rem, 5vw, 5.5rem) / 0.95 Georgia, serif;
    letter-spacing: -0.04em;
}

.campaign-content h2 span {
    display: block;
    color: #d7b46f;
}

.campaign-content p {
    max-width: 500px;
    margin: 0;
    color: #c7d0d5;
    font-size: 1.05rem;
}

.campaign-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 32px;
}

.campaign-btn {
    background: #d7b46f;
    border-color: #d7b46f;
    color: #142b3a;
}

.campaign-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #142b3a;
}

.campaign-note {
    font-size: 0.75rem;
    color: #8e9ba2;
}

.campaign-image {
    min-height: 560px;
    overflow: hidden;
}

.campaign-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.page-hero p {
  max-width:680px;
  color:#c7c3bb;
  font-size:1.05rem;
}
.timeline {
  border-left:1px solid var(--line);
  margin-left:10px;
}
.timeline-item {
  position:relative;
  padding:0 0 45px 38px;
}
.timeline-item:before {
  content:"";
  position:absolute;
  left:-6px;
  top:7px;
  width:11px;
  height:11px;
  border-radius:50%;
  background:var(--bronze);
  box-shadow:0 0 0 5px var(--cream2);
}
.timeline-item h3 {
  font:600 1.4rem Georgia,serif;
  margin:0 0 6px;
}
.timeline-item p {
  color:var(--muted);
  margin:0;
}
.filter {
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:28px;
}
.filter button {
  border:1px solid var(--line);
  background:#fff;
  border-radius:999px;
  padding:9px 14px;
  cursor:pointer;
  font-weight:750;
  color:var(--muted);
}
.filter button.active,.filter button:hover {
  background:var(--ink);
  color:#fff;
  border-color:var(--ink);
}
.post-card {
  padding:26px;
}
.post-meta {
  font-size:.75rem;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.1em;
}
.post-card h3 {
  font:600 1.55rem Georgia,serif;
  margin:10px 0;
}
.media-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.media-tile {
  position:relative;
  overflow:hidden;
  border-radius:14px;
  background:var(--cream);
  aspect-ratio:1;
}
.media-tile img {
  width:100%;
  height:100%;
  object-fit:cover;
}
.media-tile span {
  position:absolute;
  left:12px;
  bottom:12px;
  background:rgba(37,37,37,.8);
  color:#fff;
  padding:7px 10px;
  border-radius:6px;
  font-size:.7rem;
}
.form-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.field {
  display:flex;
  flex-direction:column;
  gap:7px;
}
.field.full {
  grid-column:1/-1;
}
.field label {
  font-size:.78rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.field input,.field textarea {
  width:100%;
  padding:14px 15px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  font:inherit;
  outline:none;
}
.field textarea {
  min-height:170px;
  resize:vertical;
}
.contact-box {
  background:var(--ink);
  color:#fff;
  border-radius:24px;
  padding:35px;
}
.contact-box p {
  color:#c7c3bb;
}
.contact-row {
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,.13);
}
.contact-row:last-child {
  border:0;
}
.contact-row small {
  color:#aaa;
  text-transform:uppercase;
  letter-spacing:.1em;
}
.contact-row a {
  display:block;
  margin-top:3px;
  font-size:1.05rem;
}
.footer {
  background:#191919;
  color:#fff;
  padding:65px 0 25px;
}
.footer-grid {
  display:grid;
  grid-template-columns:1.4fr .8fr .8fr;
  gap:50px;
}
.footer p,.footer a {
  color:#aaa;
}
.footer h4 {
  margin:0 0 14px;
}
.footer-bottom {
  border-top:1px solid #303030;
  margin-top:45px;
  padding-top:20px;
  font-size:.75rem;
  color:#777;
  display:flex;
  justify-content:space-between;
  gap:20px;
}
.notice {
  padding:15px 18px;
  border-radius:12px;
  background:#f0e8da;
  color:#6b512e;
  border:1px solid #e2d4bf;
  font-size:.9rem;
}
.detail-hero {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}
.detail-hero img {
  width:100%;
  border-radius:24px;
}
.prose {
  max-width:780px;
}
.prose h2 {
  font:500 2rem Georgia,serif;
  margin-top:45px;
}
.prose p {
  color:var(--muted);
}
@media(max-width:900px) {
  .hero {
    grid-template-columns:1fr;
  }
  .hero-copy {
    padding:70px 30px;
  }
  .hero-visual {
    min-height:520px;
  }
  .split,.detail-hero {
    grid-template-columns:1fr;
    gap:35px;
  }
  .cards-3 {
    grid-template-columns:1fr 1fr;
  }
  .stats {
    grid-template-columns:1fr 1fr;
  }
  .footer-grid {
    grid-template-columns:1fr 1fr;
  }
  .nav-links {
    position:absolute;
    top:78px;
    left:0;
    right:0;
    background:var(--cream2);
    display:none;
    flex-direction:column;
    align-items:flex-start;
    padding:20px;
    border-bottom:1px solid var(--line);
  }
  .nav-links.open {
    display:flex;
  }
  .menu {
    display:block;
  }
}
@media(max-width:620px) {
  .container {
    width:min(var(--max),calc(100% - 28px));
  }
  .topbar {
    display:none;
  }
  .nav-inner {
    height:70px;
  }
  .nav-links {
    top:70px;
  }
  .cards-3,.cards-2,.stats,.footer-grid,.form-grid {
    grid-template-columns:1fr;
  }
  .hero {
    min-height:auto;
  }
  .hero-copy {
    padding:60px 14px;
  }
  .hero h1 {
    font-size:3.55rem;
  }
  .hero-visual {
    min-height:440px;
  }
  .section {
    padding:70px 0;
  }
  .section-head {
    display:block;
  }
  .section-head p {
    margin-top:15px;
  }
  .cta {
    padding:30px;
  }
  .media-grid {
    grid-template-columns:1fr 1fr;
  }
  .footer-bottom {
    display:block;
  }
  .footer-bottom span {
    display:block;
    margin-top:8px;
  }
}
.campaign-card {
    grid-template-columns: 1fr;
}

.campaign-content {
    padding: 55px 35px;
}

.campaign-image {
    min-height: 500px;
}
.campaign-content {
    padding: 45px 24px;
}

.campaign-content h2 {
    font-size: 3.2rem;
}

.campaign-image {
    min-height: 420px;
}
@media (max-width: 700px) {

    .impact-list {
        margin-top: 40px;
    }

    .impact-item {
        display: grid;
        grid-template-columns: 32px 1fr;
        gap: 16px;

        padding: 30px 0;
    }

    .impact-number {
        align-self: start;
        padding-top: 4px;

        font-size: 0.7rem;
    }

    .impact-content {
        min-width: 0;
    }

    .impact-category {
        margin-bottom: 8px;

        font-size: 0.65rem;
        letter-spacing: 0.1em;
    }

    .impact-content h3 {
        margin-bottom: 10px;

        font-size: 1.65rem;
        line-height: 1.15;
    }

    .impact-content p {
        font-size: 0.88rem;
        line-height: 1.65;
    }

    .impact-arrow {
        display: none;
    }

    .impact-item:hover {
        padding-left: 0;
        padding-right: 0;
    }

}
@media (max-width: 420px) {

    .impact-item {
        grid-template-columns: 26px 1fr;
        gap: 12px;

        padding: 26px 0;
    }

    .impact-content h3 {
        font-size: 1.45rem;
    }

    .impact-content p {
        font-size: 0.84rem;
    }

}
/* =================================
   NEWS TICKER
================================= */

.news-bar {
    display: flex;
    align-items: stretch;

    width: 100%;

    background: #14251e;
    color: #fff;

    overflow: hidden;

    border-bottom: 1px solid rgba(255,255,255,.08);
}

.news-label {
    position: relative;
    z-index: 5;

    flex: 0 0 auto;

    display: flex;
    align-items: center;
    gap: 9px;

    padding: 15px 25px;

    background: #b8924a;

    color: #fff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .12em;

    white-space: nowrap;
}

.live-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #fff;

    animation: newsPulse 1.5s infinite;
}

@keyframes newsPulse {

    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .35;
    }

}

.news-window {
    position: relative;

    flex: 1;

    overflow: hidden;

    display: flex;
    align-items: center;

    white-space: nowrap;
}

.news-track {
    display: inline-flex;
    align-items: center;

    width: max-content;

    animation: newsTicker 30s linear infinite;

    will-change: transform;
}

.news-item {
    display: inline-flex;
    align-items: center;

    color: #fff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 500;

    padding: 0 28px;

    white-space: nowrap;
}

.news-item:hover {
    text-decoration: underline;
}

.news-dot {
    margin-left: 28px;

    opacity: .45;

    font-size: 17px;
}

@keyframes newsTicker {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

@media (max-width: 600px) {

    .news-label {
        padding: 13px 16px;

        font-size: 10px;
    }

    .news-item {
        padding: 0 20px;

        font-size: 12px;
    }

    .news-dot {
        margin-left: 20px;
    }

    .news-track {
        animation-duration: 24s;
    }

}
.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    margin-bottom: 20px;
}

.footer-social-icons a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;

    color: #fff;
    text-decoration: none;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        border-color 0.25s ease;
}

.footer-social-icons svg {
    width: 17px;
    height: 17px;

    fill: currentColor;
}

.footer-social-icons a:hover {
    background: #fff;
    color: #14251e;
    border-color: #fff;
    transform: translateY(-3px);
}

/* Instagram outline */
.footer-social-icons a:nth-child(3) svg rect {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.footer-social-icons a:nth-child(3) svg circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.footer-social-icons a:nth-child(3) svg .instagram-dot {
    fill: currentColor;
    stroke: none;
}
/* ==========================================================
   COMPACT TABLET / MOBILE DESKTOP-MODE LAYOUT
   Keeps the site orderly when a phone requests Desktop Site.
   Does not change the normal <=900px mobile layout.
========================================================== */
@media (min-width: 901px) and (max-width: 1200px) {

  .container {
    width: min(var(--max), calc(100% - 48px));
  }

  .nav-inner {
    height: 70px;
    gap: 18px;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--cream2);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
  }

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

  .nav-links a {
    width: 100%;
    padding: 12px 0;
  }

  .menu {
    display: block;
    cursor: pointer;
  }

  /* Hero becomes one clean, contained composition instead of
     squeezing two desktop columns onto a phone screen. */
  .hero {
    position: relative;
    display: block;
    min-height: 680px;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    min-height: 680px;
  }

  .hero-visual img {
    object-position: center top;
  }

  .hero-visual:after {
    background: linear-gradient(
      90deg,
      rgba(246,239,227,.96) 0%,
      rgba(246,239,227,.86) 42%,
      rgba(246,239,227,.30) 72%,
      rgba(37,37,37,.05) 100%
    );
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    min-height: 680px;
    width: 62%;
    padding: 70px 0;
    align-items: center;
  }

  .hero-copy-inner {
    max-width: 520px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 6vw, 5rem);
  }

  .hero-lead {
    max-width: 500px;
    font-size: 1rem;
  }

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

  .stat {
    padding: 28px 24px;
  }

  .split,
  .detail-hero {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .quote {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
  }

  .cards-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-2 {
    grid-template-columns: 1fr 1fr;
  }

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

  .campaign-card {
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
  }

  .campaign-content {
    padding: 45px 38px;
  }

  .campaign-content h2 {
    font-size: clamp(2.7rem, 5vw, 4.2rem);
  }

  .campaign-image {
    min-height: 500px;
  }

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

  .impact-item {
    grid-template-columns: 70px 1fr 30px;
  }

  .impact-content h3 {
    font-size: 1.7rem;
  }

}
/* =========================================================
   DESKTOP SITE ON MOBILE / TABLET FIX
   ========================================================= */

@media (min-width: 901px) and (max-width: 1200px) {

    /* ---------- GLOBAL ---------- */

    body {
        overflow-x: hidden;
    }

    .container {
        width: min(100% - 48px, 1080px);
    }

    img {
        max-width: 100%;
    }

    h1,
    h2,
    h3,
    p,
    a,
    span {
        overflow-wrap: break-word;
    }


    /* ---------- NAVIGATION ---------- */

    .nav-inner {
        min-height: 72px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 0.8rem;
    }


    /* ---------- NEWS TICKER ---------- */

    .news-bar {
        overflow: hidden;
    }

    .news-window {
        min-width: 0;
        overflow: hidden;
    }


    /* ---------- HERO ---------- */

    .hero {
        grid-template-columns: 1fr 1fr;
        min-height: 540px;
    }

    .hero-copy {
        padding: 45px 35px;
    }

    .hero-copy-inner {
        max-width: 500px;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 5.5vw, 4.8rem);
        line-height: 0.95;
    }

    .hero-lead {
        max-width: 470px;
        font-size: 0.95rem;
    }

    .hero-visual {
        min-height: 540px;
    }


    /* ---------- STATS ---------- */

    .stats {
        grid-template-columns: repeat(2, 2fr);
    }

    .stat {
        padding: 24px 22px;
    }


    /* ---------- GENERAL SECTIONS ---------- */

    .section {
        padding: 65px 0;
    }

    .section-head {
        gap: 30px;
    }

    .section-head h2 {
        font-size: clamp(2.2rem, 4vw, 3.2rem);
    }


    /* ---------- ABOUT / PROFILE ---------- */

    .split {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 40px;
        align-items: stretch;
    }

    .portrait-card {
        height: 100%;
        min-height: 100%;
        overflow: hidden;
    }

    .portrait-card img {
        width: 100%;
        height: 100%;
        min-height: 100%;
        aspect-ratio: auto;
        object-fit: cover;
        object-position: center top;
        display: block;
    }

    .quote {
        font-size: clamp(2rem, 3.3vw, 2.9rem);
        line-height: 1.05;
    }


    /* ---------- CARDS / GRIDS ---------- */

    .grid.cards-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .card-body {
        padding: 20px;
    }


    /* ---------- IMPACT LIST ---------- */

    .impact-item {
        grid-template-columns: 55px 1fr 35px;
        gap: 18px;
        padding: 27px 0;
    }

    .impact-content h3 {
        font-size: 1.4rem;
    }

    .impact-content p {
        max-width: 620px;
    }


    /* ---------- CAMPAIGN ---------- */

    .campaign-section {
        padding: 65px 0;
    }

    .campaign-card {
        grid-template-columns: 1fr 1fr;
        min-height: 460px;
    }

    .campaign-content {
        padding: 42px;
    }

    .campaign-content h2 {
        font-size: clamp(2.7rem, 4.5vw, 4rem);
    }

    .campaign-image {
        min-height: 460px;
    }


    /* ---------- CTA ---------- */

    .cta {
        padding: 40px;
    }


    /* ---------- PAGE HERO ---------- */

    .page-hero {
        padding: 65px 0;
    }


    /* ---------- TIMELINE ---------- */

    .timeline-item {
        padding-bottom: 35px;
    }


    /* ---------- MEDIA / GALLERY ---------- */

    .media-grid,
    .gallery-grid {
        gap: 15px;
    }


    /* ---------- FORMS ---------- */

    .form-grid {
        gap: 15px;
    }


    /* ---------- CONTACT ---------- */

    .contact-grid {
        gap: 30px;
    }


    /* ---------- FOOTER ---------- */

    .footer {
        padding-top: 55px;
    }

    .footer-grid {
        grid-template-columns: repeat(1, 3fr);
        gap: 30px;
    }
}


/* =========================================================
   VERY NARROW DESKTOP-SITE VIEW
   ========================================================= */

@media (min-width: 901px) and (max-width: 1050px) {

    .container {
        width: min(100% - 36px, 980px);
    }


    /* NAV */

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 0.74rem;
    }


    /* HERO */

    .hero {
        min-height: 500px;
    }

    .hero-copy {
        padding: 35px 28px;
    }

    .hero h1 {
        font-size: clamp(3rem, 5.8vw, 4.2rem);
    }

    .hero-visual {
        min-height: 500px;
    }


    /* SECTIONS */

    .section {
        padding: 55px 0;
    }


    /* ABOUT */

    .split {
        gap: 28px;
    }

    .quote {
        font-size: 2rem;
    }


    /* CAMPAIGN */

    .campaign-content {
        padding: 35px;
    }

    .campaign-content h2 {
        font-size: 2.9rem;
    }

    .campaign-image {
        min-height: 430px;
    }
}


/* =========================================================
   ABOUT IMAGE HEIGHT FIX
   ========================================================= */

@media (min-width: 901px) {

    .split {
        align-items: stretch;
    }

    .portrait-card {
        height: 100%;
    }

    .portrait-card img {
        height: 100%;
        min-height: 100%;
        aspect-ratio: auto;
        object-fit: cover;
        object-position: center top;
    }
}


/* =========================================================
   NORMAL PHONE MODE
   Don't let the desktop image-height rule affect phones.
   ========================================================= */

@media (max-width: 900px) {

    .portrait-card img {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 4.6;
        object-fit: cover;
        object-position: center top;
    }
}
.contact-success,
.contact-error {
    max-width: 1200px;
    margin: 25px auto 0;
    padding: 15px 18px;
    border-radius: 10px;
    font-size: 14px;
}

.contact-success {
    background: #e8f5ed;
    color: #1d5c45;
    border: 1px solid #cce8d8;
}

.contact-error {
    background: #fbeaea;
    color: #9d3030;
    border: 1px solid #f0cccc;
}