@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&display=swap');

:root {
  --green: #427512;
  --green-dark: #143b0d;
  --orange: #ff8c00;
  --orange-dark: #f07800;
  --cream: #fffdf6;
  --soft-green: #edf5e7;
  --ink: #12320f;
  --muted: #5f685f;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(20, 40, 20, 0.12);
  --radius: 18px;
}

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

body {
  font-family: "Manrope", Arial, sans-serif;
  background: #ffffff;
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  background: linear-gradient(135deg, #ffffff, #143b0d);
  border-bottom: 5px solid var(--orange);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-wrap {
  max-width: 1360px;
  margin: auto;
  padding: 18px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 250px;
  max-height: 112px;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #ffffff;
  font-weight: 800;
}

.nav-menu a {
  position: relative;
  font-size: 1rem;
}

.nav-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 0;
  height: 4px;
  background: var(--orange);
  border-radius: 20px;
  transition: 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--orange);
  padding: 18px 30px;
  border-radius: 9px;
  color: white;
  box-shadow: 0 12px 28px rgba(255, 140, 0, 0.3);
}

.menu-btn {
  display: none;
  background: none;
  border: 0;
}

.menu-btn span {
  display: block;
  width: 30px;
  height: 3px;
  background: white;
  margin: 6px 0;
  border-radius: 20px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(66, 117, 18, 0.08), transparent 18%),
    linear-gradient(180deg, #fffdf6 0%, #fbfcf4 100%);
}

.hero::before {
  content: "🍁";
  position: absolute;
  font-size: 270px;
  opacity: 0.035;
  left: 47%;
  top: 16%;
  transform: translateX(-50%);
}

.hero-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 170px;
  background:
    radial-gradient(500px 150px at 4% 70%, rgba(66, 117, 18, 0.12), transparent 70%),
    radial-gradient(500px 160px at 100% 70%, rgba(255, 140, 0, 0.12), transparent 70%),
    linear-gradient(175deg, transparent 42%, rgba(237, 245, 231, 0.9) 43%);
}

.hero-inner {
  max-width: 1280px;
  margin: auto;
  padding: 72px 34px 58px;
  display: grid;
  grid-template-columns: 1.05fr 0.78fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--orange-dark);
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .site-header {
    position: relative;
    z-index: 1000;
  }

  .nav-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    padding: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 1002;
  }

  .hamburger span {
    display: block;
    width: 27px;
    height: 3px;
    margin: 3px 0;
    background: #ffffff;
    border-radius: 5px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    width: auto;
    padding: 10px;
    background: #315f35;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    z-index: 1001;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu>a {
    display: block;
    width: 100%;
    padding: 13px 14px;
    margin: 0;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
    border-radius: 8px;
  }

  .nav-menu>a:hover,
  .nav-menu>a.active {
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
  }

  .nav-menu>a::after {
    display: none;
  }

  .header-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
    padding: 14px 4px 4px;
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .header-translator {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #ff8500;
    border-radius: 10px;
  }

  .header-translator i {
    color: #ff8500;
    flex-shrink: 0;
  }

  #google_translate_element {
    width: 100%;
    overflow: hidden;
  }

  #google_translate_element .goog-te-gadget {
    width: 100%;
    font-size: 0;
  }

  #google_translate_element select {
    width: 100%;
    min-height: 44px;
    border: 0;
    outline: 0;
    background: #ffffff;
    color: #153f20;
    font-size: 15px;
    font-weight: 600;
  }

  .nav-menu .nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    background: #ff8500;
    color: #ffffff;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
  }

  .nav-menu .nav-cta:hover,
  .nav-menu .nav-cta.active {
    background: #e87700;
    color: #ffffff;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 5.15rem);
  line-height: 1.12;
  letter-spacing: -0.055em;
  max-width: 770px;
  margin-bottom: 22px;
  font-weight: 900;
}

.hero h1 span {
  color: var(--orange-dark);
}

.hero-copy {
  max-width: 710px;
  font-size: 1.18rem;
  color: var(--muted);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 17px 28px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 900;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  box-shadow: 0 15px 30px rgba(255, 140, 0, 0.28);
}

.outline {
  border: 1.5px solid var(--green-dark);
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.55);
}

.start-card {
  background: white;
  padding: 34px;
  border-radius: 15px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.start-card h2 {
  font-size: 1.75rem;
  margin-bottom: 8px;
  color: var(--green-dark);
}

.start-card>p {
  color: var(--muted);
  margin-bottom: 18px;
}

.choice-card {
  display: grid;
  grid-template-columns: 58px 1fr 20px;
  gap: 18px;
  align-items: center;
  border: 1px solid #e8e8e8;
  border-radius: 9px;
  padding: 14px;
  margin-top: 10px;
  transition: 0.25s ease;
}

.choice-card:hover {
  transform: translateX(6px);
  border-color: rgba(255, 140, 0, 0.5);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.choice-card strong {
  font-size: 0.98rem;
}

.choice-card span {
  color: var(--green);
  font-weight: 900;
}

.choice-card:nth-of-type(2) span {
  color: var(--orange-dark);
}

.choice-card b {
  color: #aaa;
  font-size: 2rem;
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.3rem;
}

.icon.green {
  background: var(--soft-green);
  color: var(--green);
}

.icon.orange {
  background: #fff0db;
  color: var(--orange);
}

.service-strip {
  max-width: 1360px;
  margin: 26px auto 60px;
  padding: 0 34px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.service-pill {
  background: white;
  border-radius: 10px;
  min-height: 96px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-pill span {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--soft-green);
  color: var(--green);
  font-size: 1.35rem;
}

.section {
  max-width: 1280px;
  margin: auto;
  padding: 56px 34px 90px;
}

.section h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 34px;
}

.section h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  background: var(--orange);
  border-radius: 99px;
  margin-top: 20px;
}

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

.program-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid #edf0e9;
  transition: 0.25s ease;
}

.program-card:hover {
  transform: translateY(-7px);
}

.program-card h3 {
  color: var(--green);
  font-size: 1.45rem;
  margin-bottom: 10px;
}

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

.footer {
  background: var(--green-dark);
  color: white;
  padding: 50px 34px 20px;
  border-top: 5px solid var(--orange);
}

.footer-grid {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 30px;
}

.footer a,
.footer p {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 8px;
}

.footer-bottom {
  max-width: 1280px;
  margin: 35px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.7);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay {
  transition-delay: 0.18s;
}

@media (max-width: 1050px) {
  .menu-btn {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 138px;
    left: 18px;
    right: 18px;
    background: white;
    color: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-menu a {
    color: var(--ink);
  }

  .hero-inner,
  .program-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .brand img {
    width: 210px;
  }
}

@media (max-width: 600px) {
  .nav-wrap {
    padding: 14px 18px;
  }

  .brand img {
    width: 170px;
  }

  .hero-inner {
    padding: 48px 22px;
    gap: 36px;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .service-strip {
    grid-template-columns: 1fr;
    padding: 0 22px;
  }

  .section {
    padding-left: 22px;
    padding-right: 22px;
  }
}

.page-hero {
  background: linear-gradient(180deg, #fffdf6 0%, #f4faef 100%);
  padding: 80px 34px 60px;
  border-bottom: 1px solid #edf0e9;
}

.page-hero>div {
  max-width: 1280px;
  margin: auto;
}

.page-hero .eyebrow {
  color: var(--orange-dark);
  font-weight: 900;
  margin-bottom: 12px;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: var(--green-dark);
}

.page-hero p {
  max-width: 780px;
  font-size: 1.2rem;
  color: var(--muted);
  margin-top: 14px;
}

.eligibility-grid,
.content-layout,
.contact-page {
  max-width: 1280px;
  margin: auto;
  padding: 70px 34px;
  display: grid;
  gap: 24px;
}

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

.elig-card,
.main-content,
.side-card,
.contact-info,
.contact-form {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid #edf0e9;
}

.elig-card {
  transition: 0.25s ease;
}

.elig-card:hover {
  transform: translateY(-7px);
}

.elig-card h3,
.main-content h2,
.side-card h3,
.contact-info h2,
.contact-form h2 {
  color: var(--green-dark);
}

.elig-card p,
.main-content p,
.side-card p {
  color: var(--muted);
  margin-top: 10px;
}

.elig-card span,
.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--orange-dark);
  font-weight: 900;
}

.content-layout {
  grid-template-columns: 1fr 360px;
  align-items: start;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.check-grid div {
  background: #f8fbf5;
  border: 1px solid #edf0e9;
  padding: 15px 16px;
  border-radius: 12px;
  font-weight: 800;
}

.check-grid div::before {
  content: "✓";
  color: var(--green);
  margin-right: 8px;
  font-weight: 900;
}

.side-card {
  position: sticky;
  top: 130px;
}

.cta-band {
  max-width: 1280px;
  margin: 20px auto 80px;
  padding: 38px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  border-bottom: 5px solid var(--orange);
}

.cta-band p {
  opacity: 0.9;
}

.contact-page {
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-row {
  padding: 18px 0;
  border-bottom: 1px solid #edf0e9;
}

.contact-row strong {
  color: var(--green-dark);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 12px;
  border: 1px solid #dfe8d7;
  font: inherit;
}

.contact-form textarea {
  min-height: 140px;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {

  .eligibility-grid,
  .content-layout,
  .contact-page,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .side-card {
    position: static;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 22px;
    margin-right: 22px;
  }
}



.pro-hero {
  isolation: isolate;
}

.trust-row {
  display: flex;
  gap: 22px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.trust-row div {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #edf0e9;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.trust-row strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.25rem;
  font-weight: 900;
}

.trust-row span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.program-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--soft-green);
  color: var(--green);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.orange-icon {
  background: #fff0db;
  color: var(--orange-dark);
}

.program-card span {
  display: inline-block;
  margin-top: 18px;
  color: var(--orange-dark);
  font-weight: 900;
}

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

.section-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 580px;
}

.prince-george-hero-image {
  position: relative;
  min-height: 390px;
  overflow: hidden;

  border: 1px solid #dfe8d7;
  border-radius: 28px;

  background: #e8efe3;

  box-shadow:
    0 24px 60px rgba(25, 70, 18, 0.18);
}

.prince-george-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 390px;

  display: block;
  object-fit: cover;
  object-position: center;
}

.prince-george-image-overlay {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;

  padding: 20px 22px;

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

  background:
    linear-gradient(135deg,
      rgba(20, 68, 17, 0.94),
      rgba(55, 105, 13, 0.91));

  color: white;

  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
}

.prince-george-image-overlay span,
.prince-george-image-overlay strong {
  display: block;
}

.prince-george-image-overlay span {
  margin-bottom: 5px;

  color: var(--orange);

  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prince-george-image-overlay strong {
  max-width: 340px;

  color: white;

  font-size: 1.25rem;
  line-height: 1.3;
}

@media (max-width: 950px) {

  .prince-george-hero-image,
  .prince-george-hero-image img {
    min-height: 340px;
  }
}

@media (max-width: 600px) {

  .prince-george-hero-image,
  .prince-george-hero-image img {
    min-height: 280px;
  }

  .prince-george-image-overlay {
    right: 12px;
    bottom: 12px;
    left: 12px;

    padding: 16px;
  }

  .prince-george-image-overlay strong {
    font-size: 1.05rem;
  }
}

.faq-section {
  background: linear-gradient(180deg, #ffffff, #f8fbf5);
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 900px;
}

.faq-item {
  text-align: left;
  background: white;
  border: 1px solid #edf0e9;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}

.faq-item span {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--green-dark);
}

.faq-item p {
  display: none;
  color: var(--muted);
  margin-top: 10px;
}

.faq-item.open p {
  display: block;
}

@media (max-width: 900px) {
  .split-section {
    grid-template-columns: 1fr;
  }

  .trust-row {
    flex-direction: column;
  }
}

.location-box {
  margin-top: 36px;
  padding: 28px;
  background: #f8fbf5;
  border: 1px solid #edf0e9;
  border-radius: 18px;
}

.location-box h2 {
  margin-bottom: 16px;
}

.location-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.location-pills span {
  background: var(--green-dark);
  color: white;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 900;
  border-bottom: 3px solid var(--orange);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.location-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border-radius: 18px;
  background: white;
  border: 1px solid #e8ece6;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .06);
  transition: .3s ease;
}

.location-card:hover {
  transform: translateY(-6px);
  border-color: #ff8c00;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.location-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eef6e8;
  display: grid;
  place-items: center;
  color: #427512;
  font-size: 1.35rem;
}

.location-card h3 {
  color: #2f570c;
  font-size: 1.15rem;
}

.location-card p {
  color: #666;
  font-size: .95rem;
}

.location-card .fa-arrow-up-right-from-square {
  margin-left: auto;
  color: #ff8c00;
}

.side-card .location-box {
  margin-top: 28px;
  padding: 22px;
  border-radius: 18px;
  background: #f8fbf5;
}

.side-card .location-box h2 {
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.side-card .location-box>p {
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.side-card .location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 0;
}

.side-card .location-card {
  padding: 14px;
  border-radius: 14px;
  gap: 12px;
  min-height: auto;
}

.side-card .location-icon {
  width: 42px;
  height: 42px;
  font-size: 1rem;
  flex: 0 0 42px;
}

.side-card .location-card h3 {
  font-size: 0.98rem;
  line-height: 1.2;
}

.side-card .location-card p {
  font-size: 0.78rem;
  line-height: 1.35;
  margin-top: 4px;
}

.side-card .location-card .fa-arrow-up-right-from-square {
  font-size: 0.85rem;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.pathway-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  background: white;
  border-radius: 18px;
  border: 1px solid #e7ece3;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .05);
  transition: .3s;
}

.pathway-card:hover {
  transform: translateY(-6px);
  border-color: #ff8c00;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .10);
}

.pathway-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 16px;
  background: #eef6e8;
  color: #427512;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}

.pathway-icon.orange {
  background: #fff2de;
  color: #ff8c00;
}

.pathway-card h3 {
  margin: 0 0 6px;
  color: #2f570c;
  font-size: 1.15rem;
}

.pathway-card p {
  margin: 0;
  color: #666;
  font-size: .92rem;
}

.pathway-card .fa-arrow-right {
  margin-left: auto;
  color: #ff8c00;
  font-size: 1.15rem;
}

@media(max-width:900px) {

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

}

/* -----------------------------------------
   Homepage support card
----------------------------------------- */

.help-card {
  background: var(--white);
  border: 1px solid rgba(47, 87, 12, 0.12);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 28px 70px rgba(35, 68, 20, 0.13);
  align-self: center;
}

.help-card-top {
  margin-bottom: 24px;
}

.help-label {
  display: inline-flex;
  padding: 7px 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.help-card h2 {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: clamp(1.65rem, 2vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.help-card-top p {
  color: var(--muted);
  font-size: 0.98rem;
}

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

.help-action {
  display: grid;
  grid-template-columns: 48px 1fr 18px;
  gap: 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid #e4eadf;
  border-radius: 15px;
  background: #fff;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.help-action:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  box-shadow: 0 14px 30px rgba(35, 68, 20, 0.09);
}

.help-action-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 1.05rem;
}

.help-action strong,
.help-action span {
  display: block;
}

.help-action strong {
  color: var(--green-dark);
  font-size: 0.96rem;
  line-height: 1.3;
}

.help-action span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.help-action>i {
  color: var(--orange);
  font-size: 0.9rem;
}

.primary-action {
  color: white;
  border-color: var(--green-dark);
  background: linear-gradient(135deg,
      var(--green-dark),
      var(--green));
}

.primary-action .help-action-icon {
  color: var(--green-dark);
  background: var(--orange);
}

.primary-action strong,
.primary-action span {
  color: white;
}

.primary-action span {
  opacity: 0.8;
}

.help-footer {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e4eadf;
  color: var(--muted);
}

.help-footer>i {
  margin-top: 4px;
  color: var(--orange);
}

.help-footer p {
  font-size: 0.84rem;
}

.help-footer a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* -----------------------------------------
   Pathway heading
----------------------------------------- */

.pathway-heading {
  grid-column: 1 / -1;
  margin-top: 38px;
  margin-bottom: 4px;
}

.pathway-heading .eyebrow {
  margin-bottom: 8px;
}

.pathway-heading h2 {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.pathway-heading>p:last-child {
  max-width: 620px;
  color: var(--muted);
}

/* Make pathway cards slightly more compact */
.pathway-grid {
  margin-top: 20px;
}

.pathway-card {
  min-height: 155px;
}

@media (max-width: 900px) {
  .help-card {
    padding: 24px;
  }

  .pathway-heading {
    margin-top: 12px;
  }
}

/* =========================================
   HOMEPAGE LOCATIONS SECTION
========================================= */

.locations-section {
  padding: 96px 30px;
  background:
    radial-gradient(circle at 10% 20%,
      rgba(255, 140, 0, 0.1),
      transparent 25%),
    linear-gradient(135deg,
      var(--green-dark),
      #245f0f);
  color: white;
  border-bottom: 5px solid var(--orange);
}

.locations-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.locations-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 42px;
}

.locations-header>div {
  max-width: 720px;
}

.locations-header .eyebrow {
  margin-bottom: 12px;
  color: var(--orange);
}

.locations-header h2 {
  max-width: 700px;
  margin-bottom: 16px;
  color: white;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.locations-header h2 span {
  color: var(--orange);
}

.locations-header>div>p:last-child {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.locations-contact-btn {
  flex: 0 0 auto;
  gap: 12px;
  background: var(--orange);
  color: white;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
}

.home-location-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
}

.home-location-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  min-height: 260px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: white;
  color: var(--ink);
  box-shadow: 0 18px 45px rgba(7, 33, 5, 0.2);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.home-location-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: 0 25px 55px rgba(7, 33, 5, 0.3);
}

.home-location-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 16px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 1.25rem;
}

.home-location-content h3 {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 1.25rem;
}

.home-location-content p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.home-location-card>span {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 30px;
  color: var(--orange-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.home-location-card>span i {
  font-size: 0.78rem;
}

.locations-support {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.locations-support>div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.locations-support>div>i {
  width: 48px;
  height: 48px;
  display: grid;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 14px;
  background: var(--orange);
  color: white;
  font-size: 1.1rem;
}

.locations-support h3 {
  color: white;
  font-size: 1.1rem;
}

.locations-support p {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.locations-support>a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-weight: 900;
}

/* =========================================
   RESPONSIVE LOCATIONS
========================================= */

@media (max-width: 1050px) {
  .home-location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .locations-header {
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .locations-section {
    padding: 72px 22px;
  }

  .locations-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
  }

  .locations-contact-btn {
    width: auto;
  }

  .locations-support {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  .home-location-grid {
    grid-template-columns: 1fr;
  }

  .home-location-card {
    min-height: 225px;
  }

  .locations-contact-btn {
    width: 100%;
  }
}

/* Align the homepage assistance panel with the top of the hero */
.hero-inner {
  align-items: start;
}

.help-card {
  align-self: start;
  margin-top: 32px;
}

/* Keep the main hero content balanced */
.hero-text {
  align-self: start;
}

/* Keep pathway content away from screen edges */
.pathway-section {
  width: 100%;
  padding: 88px 0;
  background: #ffffff;
}

.pathway-section .section-container {
  width: min(100% - 64px, 1280px);
  margin-inline: auto;
}

/* Desktop pathway layout */
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.pathway-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 20px;
  min-height: 170px;
  padding: 30px;
  border: 1px solid #e2e9dc;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(35, 68, 20, 0.07);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.pathway-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 22px 48px rgba(35, 68, 20, 0.12);
}

.pathway-card-content {
  min-width: 0;
}

.pathway-card h3 {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 1.2rem;
  line-height: 1.35;
}

.pathway-card p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.pathway-card>.fa-arrow-right {
  justify-self: end;
  color: var(--orange);
  font-size: 1.1rem;
}

/* Keep service strip aligned to the same page width */
.service-strip {
  width: min(100% - 64px, 1280px);
  margin-inline: auto;
  padding: 48px 0 70px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 900px) {

  .pathway-section .section-container,
  .service-strip {
    width: min(100% - 40px, 1280px);
  }

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

  .service-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .pathway-section {
    padding: 64px 0;
  }

  .pathway-section .section-container,
  .service-strip {
    width: min(100% - 28px, 1280px);
  }

  .pathway-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pathway-card {
    grid-template-columns: 52px minmax(0, 1fr) 18px;
    min-height: 0;
    padding: 22px;
  }

  .service-strip {
    grid-template-columns: 1fr;
    padding-top: 38px;
  }
}

.best-for-list {
  margin: 18px 0 26px;
  padding-left: 0;
  list-style: none;
}

.best-for-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.98rem;
}

.best-for-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 140, 0, 0.15);
}

.hero-image-card {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(47, 87, 12, 0.12);
  border-radius: 30px;
  background: var(--green-dark);
  box-shadow: 0 25px 60px rgba(20, 50, 15, 0.18);
}

.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--green-soft);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.hero-image-content {
  padding: 30px 34px 34px;
  color: white;
  background:
    radial-gradient(circle at top right,
      rgba(255, 140, 0, 0.18),
      transparent 38%),
    linear-gradient(135deg,
      var(--green-dark),
      var(--green));
}

.hero-image-content>span {
  display: inline-flex;
  padding: 8px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-image-content h2 {
  max-width: 440px;
  margin-bottom: 24px;
  color: white;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.hero-image-content .btn {
  width: auto;
}

@media (max-width: 650px) {
  .hero-image-card {
    border-radius: 22px;
  }

  .hero-image-content {
    padding: 24px;
  }

  .hero-image-content .btn {
    width: 100%;
  }
}

/* =========================================
   PROGRAM PAGE — BEST FOR SECTION
========================================= */

.best-for-section {
  margin-top: 42px;
  padding: 30px;
  border: 1px solid #e2eadc;
  border-radius: 20px;
  background:
    linear-gradient(135deg,
      #fbfdf9,
      var(--green-soft));
}

.best-for-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.best-for-icon {
  width: 54px;
  height: 54px;
  display: grid;
  flex: 0 0 54px;
  place-items: center;
  border-radius: 16px;
  background: white;
  color: var(--green);
  box-shadow: 0 10px 25px rgba(35, 68, 20, 0.08);
  font-size: 1.2rem;
}

.section-kicker {
  margin: 0 0 3px !important;
  color: var(--orange-dark) !important;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.best-for-heading h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: 1.55rem;
}

.best-for-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.best-for-list li {
  position: relative;
  margin: 0;
  padding: 15px 16px 15px 45px;
  border: 1px solid #e3eadf;
  border-radius: 14px;
  background: white;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.best-for-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 140, 0, 0.14);
  transform: translateY(-50%);
}


/* =========================================
   APPOINTMENT CARD
========================================= */

.appointment-card {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 24px;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding: 20px;
  border-radius: 20px;
  background:
    linear-gradient(135deg,
      var(--green-dark),
      var(--green));
  color: white;
  box-shadow: 0 18px 40px rgba(35, 68, 20, 0.2);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.appointment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(35, 68, 20, 0.28);
}

.appointment-card-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--orange);
  color: var(--green-dark);
  font-size: 1.25rem;
}

.appointment-card-content {
  min-width: 0;
}

.appointment-card-content strong,
.appointment-card-content span {
  display: block;
}

.appointment-card-content strong {
  color: white;
  font-size: 1.18rem;
  line-height: 1.3;
}

.appointment-card-content span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.appointment-card-arrow {
  justify-self: end;
  color: var(--orange);
  font-size: 1.15rem;
}


/* Locations sidebar no longer needs Best for */
.locations-sidebar {
  padding: 0;
  overflow: hidden;
}

.locations-sidebar .location-box {
  margin: 0;
  border: 0;
  border-radius: inherit;
}


/* Mobile */
@media (max-width: 650px) {
  .best-for-list {
    grid-template-columns: 1fr;
  }

  .appointment-card {
    grid-template-columns: 52px minmax(0, 1fr) 18px;
    gap: 13px;
    padding: 17px;
  }

  .appointment-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .appointment-card-content strong {
    font-size: 1rem;
  }
}

/* =========================================POSTER SLIDESHOW========================================= */

.poster-slider-section {
  padding: 96px 30px;
  background: #f8fbf5;
}

.poster-slider-container,
.gallery-container {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.poster-slider-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 38px;
}

.poster-slider-heading>div {
  max-width: 720px;
}

.poster-slider-heading h2,
.gallery-toolbar h2 {
  color: var(--green-dark);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.poster-slider-heading p:not(.eyebrow),
.gallery-toolbar p {
  margin-top: 12px;
  color: var(--muted);
}

.poster-slider {
  position: relative;
}

.poster-slider-track {
  position: relative;
  min-height: 580px;
}

.poster-slide {
  display: none;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  min-height: 580px;
  overflow: hidden;
  border: 1px solid #e2e9dc;
  border-radius: 28px;
  background: white;
  box-shadow: 0 25px 65px rgba(35, 68, 20, 0.12);
}

.poster-slide.active {
  display: grid;
  animation: posterFade 0.55s ease;
}

@keyframes posterFade {
  from {
    opacity: 0;
    transform: translateX(16px);
  }

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

.poster-slide-image {
  min-height: 580px;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(255, 140, 0, 0.15), transparent 35%),
    var(--green-soft);
}

.poster-slide-image img {
  width: 100%;
  height: 100%;
  max-height: 532px;
  display: block;
  object-fit: contain;
  border-radius: 18px;
  background: white;
}

.poster-slide-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}

.event-category {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.poster-slide-content h3,
.gallery-card-content h3 {
  color: var(--green-dark);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.event-details {
  display: grid;
  gap: 9px;
  margin: 22px 0;
}

.event-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.event-details i {
  width: 18px;
  color: var(--green);
}

.event-description,
.gallery-description {
  color: var(--muted);
  line-height: 1.75;
}

.poster-slide-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.poster-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--green-dark);
  color: white;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(20, 50, 15, 0.24);
  transform: translateY(-50%);
  transition: 0.25s ease;
}

.poster-slider-arrow:hover {
  background: var(--orange);
  transform: translateY(-50%) scale(1.06);
}

.poster-slider-previous {
  left: -25px;
}

.poster-slider-next {
  right: -25px;
}

.poster-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.poster-slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #cbd8c4;
  cursor: pointer;
  transition: 0.25s ease;
}

.poster-slider-dot.active {
  width: 32px;
  background: var(--orange);
}


/* =========================================GALLERY PAGE========================================= */

.gallery-section {
  padding: 84px 30px 110px;
}

.gallery-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 38px;
}

.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gallery-filter {
  padding: 10px 16px;
  border: 1px solid #dfe7da;
  border-radius: 999px;
  background: white;
  color: var(--green-dark);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

.gallery-filter:hover,
.gallery-filter.active {
  border-color: var(--green);
  background: var(--green);
  color: white;
}

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

.gallery-card {
  overflow: hidden;
  border: 1px solid #e2e9dc;
  border-radius: 22px;
  background: white;
  box-shadow: 0 18px 45px rgba(35, 68, 20, 0.08);
  transition: 0.28s ease;
}

.gallery-card:hover {
  transform: translateY(-7px);
  border-color: var(--orange);
  box-shadow: 0 25px 55px rgba(35, 68, 20, 0.14);
}

.gallery-card[hidden] {
  display: none;
}

.gallery-image-button {
  position: relative;
  width: 100%;
  height: 430px;
  display: block;
  padding: 20px;
  overflow: hidden;
  border: 0;
  background: var(--green-soft);
  cursor: pointer;
}

.gallery-image-button img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 12px;
  background: white;
}

.gallery-image-overlay {
  position: absolute;
  inset: auto 30px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(20, 59, 13, 0.9);
  color: white;
  font-size: 0.86rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.25s ease;
}

.gallery-image-button:hover .gallery-image-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-card-content {
  padding: 26px;
}

.gallery-card-content h3 {
  font-size: 1.35rem;
}

.gallery-card-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: var(--orange-dark);
  font-weight: 900;
}

.empty-events {
  padding: 70px 30px;
  border: 1px dashed #cddac7;
  border-radius: 22px;
  background: var(--green-soft);
  text-align: center;
}

.empty-events>i {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 2.4rem;
}

.empty-events h3 {
  color: var(--green-dark);
}

.empty-events p {
  margin-top: 7px;
  color: var(--muted);
}


/* =========================================GALLERY MODAL========================================= */

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 30px;
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 7, 0.86);
  backdrop-filter: blur(8px);
}

.gallery-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 900px);
  max-height: 90vh;
  padding: 22px;
  overflow: auto;
  border-radius: 22px;
  background: white;
}

.gallery-modal-dialog img {
  width: 100%;
  max-height: calc(90vh - 44px);
  display: block;
  object-fit: contain;
}

.gallery-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--green-dark);
  color: white;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}


/* =========================================RESPONSIVE========================================= */

@media (max-width: 1000px) {
  .poster-slide {
    grid-template-columns: 1fr 1fr;
  }

  .poster-slide-content {
    padding: 40px;
  }

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

@media (max-width: 760px) {

  .poster-slider-section,
  .gallery-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .poster-slider-heading,
  .gallery-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .poster-slide {
    grid-template-columns: 1fr;
  }

  .poster-slider-track {
    min-height: auto;
  }

  .poster-slide-image {
    min-height: 420px;
  }

  .poster-slide-content {
    padding: 30px;
  }

  .poster-slider-arrow {
    top: 380px;
  }

  .poster-slider-previous {
    left: 12px;
  }

  .poster-slider-next {
    right: 12px;
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-image-button {
    height: 390px;
  }

  .poster-slide-actions {
    flex-direction: column;
  }

  .poster-slide-actions .btn {
    width: 100%;
  }
}

.photo-gallery-section {
  padding: 90px 30px 110px;
  background: #ffffff;
}

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

.photo-gallery-card {
  overflow: hidden;
  border: 1px solid #e2e9dc;
  border-radius: 22px;
  background: white;
  box-shadow: 0 18px 45px rgba(35, 68, 20, 0.08);
  transition: 0.28s ease;
}

.photo-gallery-card:hover {
  transform: translateY(-7px);
  border-color: var(--orange);
  box-shadow: 0 25px 55px rgba(35, 68, 20, 0.14);
}

.photo-gallery-card[hidden] {
  display: none;
}

.photo-gallery-button {
  position: relative;
  width: 100%;
  height: 330px;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #eef6e8;
  cursor: pointer;
}

.photo-gallery-button img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.photo-gallery-card:hover img {
  transform: scale(1.05);
}

.photo-gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(to top,
      rgba(15, 48, 10, 0.82),
      rgba(15, 48, 10, 0.04) 65%);
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-gallery-card:hover .photo-gallery-overlay {
  opacity: 1;
}

.photo-gallery-overlay span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.photo-gallery-overlay h3 {
  margin-top: 5px;
  color: white;
  font-size: 1.15rem;
}

.photo-gallery-overlay p {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.photo-gallery-caption {
  padding: 20px 22px;
}

.photo-gallery-caption h3 {
  color: var(--green-dark);
  font-size: 1.08rem;
}

.photo-gallery-caption p {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 950px) {
  .photo-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .photo-gallery-section {
    padding: 65px 20px 85px;
  }

  .photo-gallery-grid {
    grid-template-columns: 1fr;
  }

  .photo-gallery-button {
    height: 300px;
  }

  .photo-gallery-overlay {
    opacity: 1;
  }
}

/* =========================================ALBUM LANDING PAGE========================================= */

.album-section {
  padding: 90px 30px 110px;
  background: #fff;
}

.album-container,
.album-photo-container {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.album-heading {
  margin-bottom: 36px;
}

.album-heading h2 {
  color: var(--green-dark);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

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

.album-card {
  overflow: hidden;
  border: 1px solid #e2e9dc;
  border-radius: 24px;
  background: white;
  box-shadow: 0 18px 45px rgba(35, 68, 20, 0.09);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.album-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: 0 26px 60px rgba(35, 68, 20, 0.15);
}

.album-cover {
  position: relative;
  height: 330px;
  overflow: hidden;
  background: var(--green-soft);
}

.album-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.album-card:hover .album-cover img {
  transform: scale(1.05);
}

.album-cover-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(20, 59, 13, 0.25);
  color: white;
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.album-card:hover .album-cover-overlay {
  opacity: 1;
}

.album-card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 26px;
}

.album-card-content h3 {
  color: var(--green-dark);
  font-size: 1.25rem;
}

.album-card-content p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.album-card-content>i {
  color: var(--orange);
}


/* =========================================INDIVIDUAL ALBUM PAGE========================================= */

.album-page-header {
  padding: 76px 30px 58px;
  background:
    radial-gradient(circle at top right,
      rgba(255, 140, 0, 0.14),
      transparent 35%),
    var(--green-soft);
}

.album-page-header-inner {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.album-back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 30px;
  color: var(--green);
  font-weight: 900;
}

.album-page-header h1 {
  color: var(--green-dark);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.album-page-header-inner>p:last-child {
  margin-top: 12px;
  color: var(--muted);
}

.album-photo-section {
  padding: 80px 30px 110px;
}

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

.album-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: var(--green-soft);
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(35, 68, 20, 0.09);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.album-photo:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(35, 68, 20, 0.16);
}

.album-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.album-photo:hover img {
  transform: scale(1.06);
}

.album-photo-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(20, 59, 13, 0.28);
  color: white;
  font-size: 1.7rem;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.album-photo:hover .album-photo-overlay {
  opacity: 1;
}


/*=========================================RESPONSIVE ALBUMS========================================= */

@media (max-width: 950px) {

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

@media (max-width: 600px) {

  .album-section,
  .album-photo-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .album-grid,
  .album-photo-grid {
    grid-template-columns: 1fr;
  }

  .album-cover {
    height: 290px;
  }

  .album-photo {
    aspect-ratio: 4 / 3;
  }

  .album-photo-overlay {
    opacity: 1;
    background: rgba(20, 59, 13, 0.1);
  }
}

.home-location-content small {
  display: block;
  margin-top: 12px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.45;
}

.home-location-content p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.location-info {
  min-width: 0;
}

.location-info h3 {
  margin: 0 0 5px;
  color: var(--green-dark);
  font-size: 1rem;
  line-height: 1.3;
}

.location-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.location-info small {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

.location-card {
  align-items: flex-start;
}

.location-card>.fa-arrow-up-right-from-square {
  margin-top: 6px;
}

/*==========================================
 LAND ACKNOWLEDGEMENT
==========================================*/

.footer-land {
  margin-top: 60px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-land-content {
  max-width: 1200px;
  margin: auto;
  padding: 0 30px;
}

.footer-land h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-land h3 i {
  color: var(--orange);
  font-size: 1.1rem;
}

.footer-land p {
  color: rgba(255, 255, 255, .78);
  font-size: .96rem;
  line-height: 1.9;
  max-width: 1000px;
}

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

@media(max-width:768px) {

  .footer-land {
    padding: 30px 0;
  }

  .footer-land-content {
    padding: 0 20px;
  }

  .footer-land p {
    font-size: .92rem;
    line-height: 1.75;
  }

}

/*=============================
 FUNDING
=============================*/

.funding-section {
  background: #f8faf6;
  padding: 90px 0;
  border-top: 1px solid #e6ece2;
}

.funding-section .container {
  width: min(1200px, 92%);
  margin: auto;
  text-align: center;
}

.funding-section h2 {
  margin: 12px 0;
  color: var(--green-dark);
  font-size: 2.5rem;
}

.funding-text {
  max-width: 760px;
  margin: 0 auto 50px;
  color: var(--muted);
  line-height: 1.8;
}

.funding-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  align-items: center;
}

.funding-logo {
  background: white;
  border-radius: 20px;
  padding: 30px;
  height: 160px;

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

  box-shadow: 0 12px 35px rgba(0, 0, 0, .07);

  transition: .3s;
}

.funding-logo:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.funding-logo img {
  max-width: 400px;
  max-height: 200px;
  object-fit: contain;
}

.contact-intro {
  margin: 10px 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-row a {
  color: var(--green);
  font-weight: 800;
}

.contact-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 9px;
  color: var(--orange-dark) !important;
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-form-heading {
  margin-bottom: 8px;
}

.contact-form-heading h2 {
  color: var(--green-dark);
  font-size: 2rem;
}

.contact-form-heading p {
  margin-top: 8px;
  color: var(--muted);
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

/* =========================================
   PRINCE GEORGE PAGE
========================================= */

.prince-george-hero {
  padding: 86px 30px;
  background:
    radial-gradient(circle at 85% 15%,
      rgba(255, 140, 0, 0.18),
      transparent 28%),
    linear-gradient(135deg,
      #eef6e8,
      #f8fbf5);
}

.prince-george-hero-inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 60px;
  align-items: center;
}



.northern-intro-section {
  padding: 78px 30px;
  background: var(--green-dark);
  color: white;
}

.northern-intro-container {
  width: min(100%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.northern-intro-copy h2 {
  margin-bottom: 18px;
  color: white;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.northern-intro-copy>p:last-child {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.northern-highlights {
  display: grid;
  gap: 16px;
}

.northern-highlight {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.northern-highlight>i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--orange);
  color: var(--green-dark);
  font-size: 1.1rem;
}

.northern-highlight strong,
.northern-highlight span {
  display: block;
}

.northern-highlight strong {
  color: white;
}

.northern-highlight span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.prince-george-sidebar {
  overflow: visible;
}

.local-office-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 26px 26px 0;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.prince-george-contact-box {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  margin: 0 22px 24px;
  padding: 20px;
  border-radius: 18px;
  background: var(--green-dark);
  color: white;
}

.prince-george-contact-box>i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--orange);
  color: var(--green-dark);
}

.prince-george-contact-box strong {
  color: white;
}

.prince-george-contact-box p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.prince-george-contact-box a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
}

@media (max-width: 950px) {

  .prince-george-hero-inner,
  .northern-intro-container {
    grid-template-columns: 1fr;
  }


}

@media (max-width: 600px) {

  .prince-george-hero,
  .northern-intro-section {
    padding-left: 20px;
    padding-right: 20px;
  }

}

/* ========================================= HEADER TRANSLATOR ========================================= */

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.header-translator {
  width: 180px;
  min-width: 180px;
  height: 48px;

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

  padding: 0 12px;

  border: 1px solid rgba(255, 140, 0, 0.65);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.96);
}

.header-translator>i {
  flex-shrink: 0;
  color: var(--orange);
  font-size: 0.95rem;
}

.header-translator #google_translate_element {
  width: 100%;
  min-width: 0;
}

.header-translator .goog-te-gadget {
  width: 100%;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 1 !important;
}

.header-translator .goog-te-combo {
  width: 100% !important;
  height: 42px !important;

  margin: 0 !important;
  padding: 0 24px 0 4px !important;

  border: 0 !important;
  outline: 0 !important;

  background: transparent !important;
  color: var(--green-dark) !important;

  font-family: inherit !important;
  font-size: 0.87rem !important;
  font-weight: 800 !important;

  cursor: pointer;
}

.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}

body {
  top: 0 !important;
}

.goog-te-banner-frame,
iframe.goog-te-banner-frame,
.skiptranslate iframe {
  display: none !important;
}

.nav-wrap {
  width: min(1460px, 94%);
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  flex-shrink: 0;
}

.brand img {
  width: 235px;
  height: auto;
}

.nav-menu {
  flex: 1;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.nav-menu a {
  font-size: 0.92rem;
  line-height: 1.35;
}

@media (max-width: 1250px) {
  .nav-wrap {
    gap: 18px;
  }

  .brand img {
    width: 205px;
  }

  .nav-menu {
    gap: 20px;
  }

  .header-translator {
    width: 150px;
    min-width: 150px;
  }

  .header-contact-btn {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1050px) {
  .nav-menu {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .header-actions {
    margin-left: auto;
  }
}

@media (max-width: 620px) {
  .header-translator {
    width: 48px;
    min-width: 48px;
    padding: 0;
    justify-content: center;
  }

  .header-translator #google_translate_element {
    position: absolute;
    width: 48px;
    opacity: 0;
  }

  .header-contact-btn {
    display: none;
  }
}

/* Desktop */
.hamburger {
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

@media (max-width: 900px) {
  .site-header {
    position: relative;
    z-index: 1000;
  }

  .header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 86px;
    padding: 8px 16px;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 8px;
    margin: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 1002;
  }

  .hamburger span {
    display: block;
    width: 27px;
    height: 3px;
    margin: 3px 0;
    background: #ffffff;
    border-radius: 4px;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    width: auto;
    padding: 10px;
    background: #315f35;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    z-index: 1001;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    display: block;
    width: 100%;
    padding: 13px 14px;
    margin: 0;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
    border-radius: 8px;
  }

  .nav-menu a:hover,
  .nav-menu a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
  }

  .nav-menu a::after {
    display: none;
  }

  .header-actions {
    display: none;
  }
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* Hidden on desktop */
.mobile-nav-actions {
  display: none;
}

@media (max-width: 900px) {
  .mobile-nav-actions {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    padding: 12px 4px 4px;
    margin-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    box-sizing: border-box;
  }

  .mobile-translator {
    display: flex !important;
    align-items: center;
    width: 100%;
    min-height: 45px;
    padding: 0 12px;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #ff8500;
    border-radius: 8px;
    box-sizing: border-box;
  }

  .mobile-translator i {
    color: #ff8500;
    flex-shrink: 0;
  }

  .mobile-translator #google_translate_element {
    display: block !important;
    width: 100%;
  }

  .mobile-translator .goog-te-gadget {
    width: 100%;
    font-size: 0;
  }

  .mobile-translator select {
    display: block !important;
    width: 100%;
    min-height: 41px;
    border: none;
    outline: none;
    background: #ffffff;
    color: #174521;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
  }

  .nav-menu .mobile-contact {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 45px;
    padding: 11px 16px;
    margin: 0;
    background: #ff8500;
    color: #ffffff;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
  }

  .nav-menu .mobile-contact:hover,
  .nav-menu .mobile-contact.active {
    background: #e97600;
    color: #ffffff;
  }
}

/* Desktop */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-nav-actions {
  display: none;
}

/* Mobile */
@media (max-width: 900px) {
  .header-actions {
    display: none !important;
  }

  .mobile-nav-actions {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    padding: 12px 4px 4px;
    margin-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
}

.header-translator {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 14px;
  background: #ffffff;
  border: 1px solid #ff8500;
  border-radius: 999px;
}

.header-translator i {
  color: #ff8500;
}

.header-translator .goog-te-gadget {
  font-size: 0;
}

.header-translator select {
  border: 0;
  outline: 0;
  background: transparent;
  color: #153f20;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
}

.nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  background: #ff8500;
  color: #ffffff;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.header-actions {
  display: flex;
}

.mobile-nav-actions {
  display: none;
}

@media (max-width: 900px) {
  .header-actions {
    display: none !important;
  }

  .mobile-nav-actions {
    display: flex !important;
  }
}

.utility-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 6%;
  background: #f7f7f7;
  border-bottom: 1px solid #e5e5e5;
}

.utility-social {
  display: flex;
  gap: 18px;
}

.utility-social a {
  color: #2f5f35;
  font-size: 20px;
  transition: .25s;
}

.utility-social a:hover {
  color: #ff8500;
}

.utility-language {
  display: flex;
  align-items: center;
  gap: 10px;
}

.utility-language i {
  color: #ff8500;
  font-size: 20px;
}

@media (max-width:900px) {

  .utility-bar {

    flex-direction: column;
    gap: 12px;

    padding: 12px 20px;
  }

  .utility-social {

    justify-content: center;
    width: 100%;
  }

  .utility-language {

    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 900px) {

  .site-header {
    position: relative;
  }

  .nav-wrap {
    position: relative;
    min-height: 95px;
    display: flex;
    align-items: center;
  }

  .brand img {
    width: 145px;
    height: auto;
  }

  .hamburger {
    display: flex !important;

    position: absolute;

    top: 50%;
    right: 18px;

    transform: translateY(-50%);

    width: 44px;
    height: 44px;

    margin: 0;
    padding: 8px;

    background: none;
    border: none;

    justify-content: center;
    align-items: center;
    flex-direction: column;

    z-index: 2000;
  }

  .hamburger span {
    width: 26px;
    height: 3px;
    margin: 3px 0;
    background: #fff;
    border-radius: 4px;
  }

}