/* Home page: styles are scoped to .anc-home so header, breadcrumb and footer stay untouched. */
.anc-home {
  --home-ink: #17221b;
  --home-muted: #59655d;
  --home-forest: #174a32;
  --home-forest-dark: #0d3322;
  --home-sand: #f2eadb;
  --home-cream: #fbfaf6;
  --home-white: #fff;
  --home-line: #dfe4dd;
  --home-orange: #df6f2a;
  --home-orange-dark: #b84e12;
  --home-yellow: #ffff00;
  --home-shadow: 0 18px 50px rgba(20,43,29,.13);
  margin: 0;
  overflow: hidden;
  color: var(--home-ink);
  background: var(--home-cream);
  font: 17px/1.7 "Trebuchet MS", Trebuchet, Arial, sans-serif;
}
.anc-home *, .anc-home *::before, .anc-home *::after { box-sizing: border-box; }
.anc-home img { display: block; max-width: 100%; }
.anc-home h1, .anc-home h2, .anc-home h3, .anc-home p { margin-top: 0; }
.anc-home h1, .anc-home h2, .anc-home h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  text-wrap: balance;
}
.anc-home h2 { margin-bottom: 1.15rem; font-size: clamp(2.1rem,4.4vw,3.7rem); letter-spacing: -.035em; }
.anc-home h3 { font-size: clamp(1.3rem,2vw,1.7rem); }
.anc-home a { color: inherit; }
.anc-home :focus-visible { outline: 3px solid #ffb36f; outline-offset: 4px; }
.anc-home__container { width: min(1160px,calc(100% - 40px)); margin-inline: auto; }
.anc-home__section { padding: clamp(4.5rem,8vw,7.5rem) 0; }
.anc-home__section--sand { background: var(--home-sand); }
.anc-home__section--forest { color: var(--home-white); background: var(--home-forest-dark); }

.anc-home__eyebrow {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
  color: var(--home-forest);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.anc-home__eyebrow::before { width: 28px; height: 2px; background: currentColor; content: ""; }
.anc-home__lead { color: var(--home-muted); font-size: clamp(1.08rem,1.5vw,1.22rem); }

.anc-home__hero {
  position: relative;
  display: grid;
  min-height: clamp(500px,62vh,640px);
  align-items: end;
  color: var(--home-white);
  background: var(--home-forest-dark);
}
.anc-home__hero-slides, .anc-home__hero-image, .anc-home__hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.anc-home__hero-slides { overflow: hidden; }
.anc-home__hero-image { opacity: 0; object-fit: cover; object-position: 55% center; transform: scale(1.025); transition: opacity .8s ease,transform 6s ease; }
.anc-home__hero-image.is-active { opacity: 1; transform: scale(1); }
.anc-home__hero-overlay { z-index: 1; background: linear-gradient(90deg,rgba(5,25,17,.94) 0%,rgba(5,25,17,.74) 47%,rgba(5,25,17,.18) 100%); }
.anc-home__hero-inner { position: relative; z-index: 2; padding: clamp(3.25rem,6vw,5rem) 0 clamp(4.75rem,7vw,5.5rem); }
.anc-home__hero-dots { position: absolute; left: 50%; bottom: 1rem; z-index: 4; display: flex; gap: .55rem; padding: .5rem .7rem; border: 1px solid rgba(255,255,255,.38); border-radius: 999px; background: rgba(5,25,17,.58); box-shadow: 0 6px 20px rgba(0,0,0,.22); backdrop-filter: blur(6px); transform: translateX(-50%); }
.anc-home__hero-dot { width: 12px; height: 12px; flex: 0 0 auto; padding: 0; border: 1px solid #fff; border-radius: 50%; background: rgba(255,255,255,.38); cursor: pointer; box-shadow: 0 0 0 1px rgba(0,0,0,.12); transition: width .2s ease,background .2s ease; }
.anc-home__hero-dot.is-active { width: 30px; border-radius: 999px; background: #fff; }
.anc-home__hero .anc-home__eyebrow { color: #c8dda8; }
.anc-home__hero h1 { max-width: 800px; margin-bottom: 1.25rem; font-size: clamp(3.15rem,7.4vw,6.8rem); letter-spacing: -.052em; }
.anc-home__hero-lead { max-width: 710px; margin-bottom: 0; color: rgba(255,255,255,.86); font-size: clamp(1.08rem,2vw,1.35rem); }
.anc-home__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.anc-home__button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.35rem;
  border: 2px solid transparent;
  border-radius: 999px;
  background: var(--home-orange);
  color: #fff !important;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease,background .2s ease;
}
.anc-home__button:hover { background: var(--home-orange-dark); transform: translateY(-2px); }
.anc-home__button--ghost { border-color: rgba(255,255,255,.7); background: rgba(0,0,0,.12); }
.anc-home__button--ghost:hover { background: rgba(255,255,255,.13); }
.anc-home__button--light { background: #fff; color: var(--home-forest-dark) !important; }
.anc-home__button--light:hover { background: var(--home-sand); }
.anc-home__button--outline-dark { border-color: var(--home-ink); background: transparent; color: var(--home-ink) !important; }
.anc-home__button--outline-dark:hover { background: var(--home-ink); color: #fff !important; }

.anc-home__facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin-top: -38px;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--home-shadow);
}
.anc-home__fact { padding: 1.45rem 1.5rem; border-right: 1px solid var(--home-line); }
.anc-home__fact:last-child { border: 0; }
.anc-home__fact strong, .anc-home__fact span { display: block; }
.anc-home__fact strong { margin-bottom: .2rem; color: var(--home-forest); font: 700 1.15rem/1.25 Georgia,"Times New Roman",serif; }
.anc-home__fact span { color: var(--home-muted); font-size: .87rem; line-height: 1.45; }

.anc-home__split { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(2.5rem,7vw,7rem); align-items: start; }
.anc-home__intro-copy { max-width: 660px; }
.anc-home__intro-copy p:last-child { margin-bottom: 0; }
.anc-home__heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.5rem; }
.anc-home__heading h2 { margin-bottom: 0; }
.anc-home__text-link { flex: 0 0 auto; color: var(--home-forest) !important; font-weight: 800; text-decoration-thickness: 2px; text-underline-offset: .28em; }

.anc-home__pathways { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.anc-home__pathway { position: relative; min-height: 450px; overflow: hidden; border-radius: 22px; background: var(--home-forest-dark); color: #fff; box-shadow: 0 10px 30px rgba(20,43,29,.12); }
.anc-home__pathway img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.anc-home__pathway::after { position: absolute; inset: 0; background: linear-gradient(0deg,rgba(6,24,16,.96) 0%,rgba(6,24,16,.55) 52%,rgba(6,24,16,.08) 100%); content: ""; }
.anc-home__pathway:hover img { transform: scale(1.035); }
.anc-home__pathway-body { position: absolute; right: 0; bottom: 0; left: 0; z-index: 1; padding: clamp(1.4rem,3vw,2.2rem); }
.anc-home__pathway h3 { margin: .35rem 0 .65rem; font-size: clamp(1.65rem,3vw,2.35rem); }
.anc-home__pathway p { max-width: 48ch; color: rgba(255,255,255,.82); }
.anc-home__pathway a { font-weight: 800; text-underline-offset: .25em; }
.anc-home__index { color: #c8dda8; font: 700 1.2rem/1 Georgia,"Times New Roman",serif; }

.anc-home__events { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.anc-home__event { display: grid; grid-template-columns: 88px 1fr; gap: 1.2rem; padding: 1.5rem; border: 1px solid var(--home-line); border-radius: 18px; background: #fff; }
.anc-home__event-date { align-self: start; margin: 0; padding-right: 1.1rem; border-right: 1px solid var(--home-line); text-align: center; }
.anc-home__event-date span, .anc-home__event-date strong, .anc-home__event-date small { display: block; }
.anc-home__event-date span { color: var(--home-orange-dark); font-size: .75rem; font-weight: 900; letter-spacing: .1em; }
.anc-home__event-date strong { margin: .2rem 0; font: 700 clamp(1.18rem,1.5vw,1.4rem)/1 Georgia,"Times New Roman",serif; white-space: nowrap; }
.anc-home__event-date small { color: var(--home-muted); }
.anc-home__event h3 { margin: .55rem 0; font-size: 1.3rem; }
.anc-home__event p { margin-bottom: .7rem; color: var(--home-muted); }
.anc-home__event a { color: var(--home-forest); font-weight: 800; }
.anc-home__tag { display: inline-flex; padding: .2rem .6rem; border-radius: 999px; background: #edf3ef; color: var(--home-forest); font-size: .72rem; font-weight: 800; text-transform: uppercase; }

.anc-home__benefits { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(3rem,8vw,8rem); align-items: center; }
.anc-home__benefits .anc-home__eyebrow { color: #bcd69d; }
.anc-home__benefits-copy > p:not(.anc-home__eyebrow) { color: rgba(255,255,255,.78); }
.anc-home__checklist { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; margin: 0; padding: 1px; list-style: none; background: rgba(255,255,255,.14); }
.anc-home__checklist li { margin: 0; padding: 1.5rem; background: var(--home-forest-dark); }
.anc-home__checklist strong, .anc-home__checklist span { display: block; }
.anc-home__checklist strong { margin-bottom: .35rem; color: #fff; font: 700 1.18rem/1.3 Georgia,"Times New Roman",serif; }
.anc-home__checklist span { color: rgba(255,255,255,.68); font-size: .93rem; }

.anc-home__split--media { grid-template-columns: minmax(300px,.9fr) minmax(0,1.1fr); gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.anc-home__trust { padding: clamp(2.5rem,4vw,4rem) 0; }
.anc-home__trust-image { position: relative; width: min(100%,480px); justify-self: start; }
.anc-home__trust-image::before { position: absolute; top: -18px; right: 18px; bottom: 18px; left: -18px; z-index: 0; border-radius: 22px; background: var(--home-sand); content: ""; }
.anc-home__trust-image img { position: relative; z-index: 1; display: block; width: 100%; height: auto !important; aspect-ratio: auto; border-radius: 22px; object-fit: contain; }
.anc-home__trust-copy h2 { margin-bottom: .7rem; font-size: clamp(1.9rem,3.4vw,3rem); }
.anc-home__trust-copy .anc-home__lead { margin-bottom: .65rem; font-size: clamp(1rem,1.25vw,1.1rem); line-height: 1.55; }
.anc-home__plain-list { margin: .65rem 0 0; padding: 0; list-style: none; }
.anc-home__plain-list li { position: relative; padding: .5rem 0 .5rem 1.7rem; font-size: .92rem; line-height: 1.4; border-bottom: 1px solid var(--home-line); }
.anc-home__plain-list li::before { position: absolute; left: 0; color: var(--home-orange); font-weight: 900; content: "✓"; }

.anc-home__important-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.anc-home__info-card { overflow: hidden; border: 1px solid rgba(23,74,50,.09); border-radius: 22px; background: #fff; box-shadow: 0 12px 34px rgba(20,43,29,.08); }
.anc-home__info-media { aspect-ratio: 16/9; overflow: hidden; background: #e8ece8; }
.anc-home__info-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.anc-home__info-card:hover .anc-home__info-media img { transform: scale(1.025); }
.anc-home__info-body { padding: clamp(1.5rem,3vw,2.25rem); }
.anc-home__info-body h3 { margin-bottom: .8rem; font-size: clamp(1.65rem,2.6vw,2.25rem); }
.anc-home__info-body > p:not(.anc-home__info-kicker) { color: var(--home-muted); }
.anc-home__info-kicker { margin-bottom: .55rem; color: var(--home-orange-dark); font-size: .75rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }

.anc-home__section--cta { padding-top: 0; background: var(--home-cream); }
.anc-home__final-cta { display: flex; align-items: center; justify-content: space-between; gap: 3rem; padding: clamp(2.2rem,5vw,4.5rem); border-radius: 26px; background: var(--home-yellow); }
.anc-home__final-cta h2 { max-width: 720px; margin-bottom: .7rem; }
.anc-home__final-cta p:last-child { margin-bottom: 0; }
.anc-home__final-cta .anc-home__actions { flex: 0 0 auto; margin-top: 0; }

.anc-home__affiliation { background: #fff; }
.anc-home__feature-panel { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); gap: clamp(2.5rem,6vw,6rem); align-items: center; }
.anc-home__feature-media { position: relative; width: min(100%,783px); justify-self: center; }
.anc-home__feature-media::before { position: absolute; inset: 20px -20px -20px 20px; border-radius: 24px; background: var(--home-sand); content: ""; }
.anc-home__feature-media img { position: relative; z-index: 1; display: block; width: auto; max-width: 100%; height: auto; border: 1px solid var(--home-line); border-radius: 22px; box-shadow: var(--home-shadow); }
.anc-home__feature-copy { max-width: 560px; }
.anc-home__feature-copy .anc-home__button { margin-top: .7rem; }

.anc-home__help-grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: clamp(2.5rem,7vw,7rem); align-items: center; }
.anc-home__help-media { width: min(100%,900px); justify-self: center; }
.anc-home__help-media img { display: block; width: auto; max-width: 100%; height: auto; border-radius: 24px; }
.anc-home__help-copy .anc-home__eyebrow { color: #bcd69d; }
.anc-home__help-copy > p:not(.anc-home__eyebrow):not(.anc-home__help-name) { max-width: 650px; color: rgba(255,255,255,.78); }
.anc-home__help-name { margin: 1.2rem 0; }
.anc-home__help-name strong, .anc-home__help-name span { display: block; }
.anc-home__help-name strong { color: #fff; font: 700 1.3rem/1.3 Georgia,"Times New Roman",serif; }
.anc-home__help-name span { color: rgba(255,255,255,.65); font-size: .9rem; }

@media (max-width: 940px) {
  .anc-home__facts { grid-template-columns: repeat(2,1fr); }
  .anc-home__fact:nth-child(2) { border-right: 0; }
  .anc-home__fact:nth-child(-n+2) { border-bottom: 1px solid var(--home-line); }
  .anc-home__events { grid-template-columns: 1fr; }
  .anc-home__event { grid-template-columns: 100px 1fr; }
  .anc-home__benefits { grid-template-columns: 1fr; }
  .anc-home__important-grid { grid-template-columns: 1fr; }
  .anc-home__feature-panel, .anc-home__help-grid { grid-template-columns: 1fr; }
  .anc-home__feature-copy { max-width: none; }
  .anc-home__final-cta { align-items: flex-start; flex-direction: column; }
  .anc-home__final-cta .anc-home__actions { width: 100%; }
}
@media (max-width: 720px) {
  .anc-home { font-size: 16px; }
  .anc-home__container { width: min(100% - 28px,1160px); }
  .anc-home__hero { min-height: 560px; }
  .anc-home__hero-image { object-position: 64% center; }
  .anc-home__hero-overlay { background: linear-gradient(0deg,rgba(5,25,17,.96),rgba(5,25,17,.42)); }
  .anc-home__hero-dots { bottom: .85rem; }
  .anc-home__hero h1 { font-size: clamp(2.8rem,14vw,4.25rem); }
  .anc-home__hero-inner { padding: 3rem 0 5.25rem; }
  .anc-home__split, .anc-home__split--media { grid-template-columns: 1fr; gap: 2.2rem; }
  .anc-home__trust { padding: 2.5rem 0; }
  .anc-home__trust-image { width: min(100%,480px); justify-self: center; }
  .anc-home__heading { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .anc-home__pathways { grid-template-columns: 1fr; }
  .anc-home__pathway { min-height: 410px; }
  .anc-home__checklist { grid-template-columns: 1fr; }
  .anc-home__actions { flex-direction: column; }
  .anc-home__button { width: 100%; }
}
@media (max-width: 480px) {
  .anc-home__facts { grid-template-columns: 1fr; margin-top: -24px; }
  .anc-home__fact, .anc-home__fact:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--home-line); }
  .anc-home__fact:last-child { border-bottom: 0; }
  .anc-home__event { grid-template-columns: 72px 1fr; gap: .85rem; padding: 1.15rem; }
  .anc-home__event-date { padding-right: .65rem; }
  .anc-home__event-date strong { font-size: 1.12rem; }
  .anc-home__feature-media::before { inset: 12px -8px -12px 8px; }
  .anc-home__final-cta { padding: 2rem 1.35rem; border-radius: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .anc-home *, .anc-home *::before, .anc-home *::after { scroll-behavior: auto !important; transition: none !important; }
}
