@import url('https://fonts.googleapis.com/css2?family=Encode+Sans+Semi+Expanded:wght@400;500;600;700;800&family=Vujahday+Script&display=swap');
:root {
  /*--forest: #174f43;*/
  --forest: #21502f;
  --forest-deep: #0d3b33;
  --cream: #f4efe4;
  --paper: #fbf8f1;
  --clay: #bd654d;
  --sage: #9fb4a7;
  --mist: #dce5df;
  --ink: #1C423A;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Encode Sans Semi Expanded', Arial, Helvetica, sans-serif;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

body.menu-open {
  overflow: hidden;
}

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

.lizard-mark {
  display: block;
  object-fit: contain;
}

[id] {
  scroll-margin-top: 104px;
}

/* Header and navigation
   ================================================== */

.site-header {
  height: 104px;
  padding: 0 5.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(251, 248, 241, .96);
  border-bottom: 1px solid rgba(23, 53, 47, .14);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color:var(--forest);
}

.brand>.lizard-mark {
  width: 106px;
  height: 86px;
}

.brand-type {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-type strong {
  font-size: 25px;
  letter-spacing: .18em;
  font-weight: 700;
}

.brand-type small {
  font-size: 12px;
  letter-spacing: .22em;
  font-weight: 600;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 16px;
  font-weight: 700;
}

.nav-cta {
  border: 1px solid var(--forest);
  padding: 13px 19px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(23, 53, 47, .3);
  border-radius: 50%;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--forest);
  transition: transform .25s ease;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 190;
  border: 0;
  background: rgba(8, 34, 29, .56);
  opacity: 0;
  pointer-events: none;
  transition: opacity .38s ease;
}

.menu-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  width: min(86vw, 390px);
  height: 100dvh;
  padding: 26px 30px 32px;
  background: var(--forest-deep);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  transform: translateX(102%);
  visibility: hidden;
  transition: transform .42s cubic-bezier(.22, 1, .36, 1), visibility 0s .42s;
  box-shadow: -18px 0 60px rgba(4, 28, 23, .22);
}

.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
  transition-delay: 0s;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(244, 239, 228, .22);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.mobile-menu-head button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(244, 239, 228, .35);
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
  font: 300 30px/1 Arial;
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-top: 34px;
}

.mobile-nav a {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid rgba(244, 239, 228, .17);
  font: 400 34px/1.05 Georgia, 'Times New Roman', serif;
}

.mobile-menu-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 17px;
  color: #b8c8c3;
  font-size: 11px;
  line-height: 1.6;
}

.mobile-menu-foot .lizard-mark {
  width: 75px;
  filter: invert(1);
}

/* Hero
   ================================================== */

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  overflow: hidden;
}

.hero-copy {
  padding: 105px 5vw 90px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 14px;
  font-weight: 800;
}

.eyebrow {
  color: var(--clay);
  margin: 0 0 24px;
}

.section-label {
  color: var(--clay);
}

h1,
h2,
.large-copy {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
}

h1 {
  margin: 0;
  font-size: clamp(62px, 6.4vw, 104px);
  line-height: .9;
  letter-spacing: -.055em;
}

h1 em,
h2 em,
.large-copy em {
  font-weight: 400;
  color: var(--clay);
}

.intro {
  font-size: 18px;
  line-height: 1.65;
  max-width: 570px;
  margin: 34px 0 0;
  color: #49625d;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 26px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
}

.primary {
  background: var(--forest);
  color: white;
}

.text-link {
  font-size: 13px;
  font-weight: 800;
  border-bottom: 1px solid rgba(23, 53, 47, .25);
  padding: 0 0 8px;
}

.text-link span {
  color: var(--clay);
  margin-left: 8px;
}

.hero-art {
  position: relative;
  background: var(--forest);
  min-height: 690px;
  overflow: hidden;
}

.hero-art:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 59, 51, .2), transparent 35%), linear-gradient(0deg, rgba(13, 59, 51, .55), transparent 44%);
}

.hero-art>img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 57% center;
}

.image-note {
  position: absolute;
  z-index: 2;
  left: 28px;
  top: 28px;
  padding: 9px 12px;
  border: 1px solid rgba(244, 239, 228, .7);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(13, 59, 51, .38);
  backdrop-filter: blur(8px);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.scribble {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 5%;
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  color: var(--cream);
  font-family: 'Vujahday Script', cursive;
  font-style: normal;
  font-size: clamp(38px, 4vw, 72px);
  line-height: 1;
  transform: translateX(-50%);
  text-shadow: 0 3px 22px rgba(4, 28, 23, .55);
}

.scribble span+span:before {
  content: "•";
  display: inline-block;
  margin-right: 18px;
  font-family: Georgia, serif;
  font-style: normal;
  font-size: .38em;
  vertical-align: middle;
}

/* Service ribbon
   ================================================== */

.service-ribbon {
  background: var(--clay);
  color: var(--cream);
  min-height: 82px;
  padding: 25px 4vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 16px;
  font-weight: 800;
}

.service-ribbon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  line-height: 1.35;
}

.ribbon-icon {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
}

.service-ribbon>i {
  width: 8px;
  height: 8px;
  background: var(--cream);
  border-radius: 50%;
  opacity: .65;
}

.section {
  padding: 112px 7vw;
}

/* Our approach
   ================================================== */

.about {
  display: grid;
  grid-template-columns: minmax(250px, .38fr) 1fr;
  gap: 6vw;
  align-items: start;
}

.approach-image {
  width: 100%;
  max-width: 390px;
  aspect-ratio: 4/5;
  margin: 48px 0 0;
  overflow: hidden;
  background: var(--paper);
  -webkit-mask-image: radial-gradient(ellipse 92% 92% at 50% 49%, #000 55%, rgba(0, 0, 0, .78) 72%, transparent 100%);
  mask-image: radial-gradient(ellipse 92% 92% at 50% 49%, #000 55%, rgba(0, 0, 0, .78) 72%, transparent 100%);
}

.approach-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
}

.large-copy {
  margin: 0;
  font-size: clamp(42px, 4.7vw, 72px);
  line-height: 1.05;
  letter-spacing: -.035em;
  max-width: 950px;
}

.columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 820px;
  margin-top: 50px;
}

.columns p {
  margin: 0;
  color: #526762;
  font-size: 16px;
  line-height: 1.8;
}

/* Nature divider
   ================================================== */

.nature-divider {
  height: clamp(150px, 18vw, 285px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(to bottom, var(--paper) 0 74%, var(--forest-deep) 74% 100%);
  margin-bottom: -1px;
}

.nature-divider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

/* Animals
   ================================================== */

.animals {
  background: var(--forest-deep);
  color: var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: .55fr 1fr .65fr;
  gap: 5vw;
  align-items: end;
}

.section-label.light {
  color: #dda18e;
  align-self: start;
}

.section-heading h2,
.program-intro h2,
.region h2,
.contact h2 {
  margin: 0;
  font-size: clamp(48px, 5.2vw, 82px);
  line-height: .98;
  letter-spacing: -.04em;
}

.section-heading>p,
.program-intro>p {
  margin: 0;
  color: #b9c7c2;
  font-size: 20px;
  line-height: 1.75;
}

.animal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 72px;
}

.animal-grid article {
  min-height: 470px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(244, 239, 228, .22);
  border-radius: 2px;
  background: #214f45;
}

.animal-grid article:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 35, 30, .96) 0%, rgba(7, 35, 30, .72) 29%, transparent 62%);
}

.animal-grid article:nth-child(2):after {
  background: linear-gradient(0deg, rgba(72, 35, 27, .96) 0%, rgba(72, 35, 27, .7) 29%, transparent 62%);
}

.animal-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}

.animal-grid article:hover .animal-photo {
  transform: scale(1.035);
}

.animal-card-copy {
  position: relative;
  z-index: 2;
  padding: 30px;
}

.animal-grid h3 {
  margin: 0 0 12px;
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 400;
}

.animal-grid p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  max-width: 360px;
  color: #d8e1dd;
}

.coming-soon {
  text-align: center;
  margin: 28px 0 0;
  color: #9eb1ab;
  font-size: 11px;
  letter-spacing: .08em;
}

/* Programs
   ================================================== */

.programs {
  background: var(--cream);
  display: grid;
  grid-template-columns: .25fr 1fr;
  gap: 6vw;
}

.program-intro {
  display: grid;
  grid-template-columns: 1fr .62fr;
  align-items: end;
  gap: 7vw;
}

.program-intro h2 {
  color: var(--forest);
}

.program-intro>p {
  color: #5e6e68;
}

.program-list {
  grid-column: 2;
  margin-top: 52px;
  border-top: 1px solid rgba(23, 53, 47, .22);
}

.program-list article {
  display: grid;
  grid-template-columns: 102px 1fr 40px;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(23, 53, 47, .22);
}

.program-icon {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
}

.program-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.program-list h3 {
  margin: 0 0 7px;
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 400;
}

.program-list p {
  margin: 0;
  color: #62716c;
  font-size: 20px;
  line-height: 1.65;
}

.arrow {
  font-size: 25px;
  color: var(--clay);
}

/* Service area
   ================================================== */

.region {
  display: grid;
  grid-template-columns: .8fr 1fr;
  padding-right: 0;
  background: var(--paper);
  align-items: center;
}

.region-copy {
  padding-right: 6vw;
}

.region h2 {
  margin-top: 36px;
  color: var(--forest);
}

.region-copy>p {
  color: #5e6f69;
  line-height: 1.75;
  max-width: 530px;
}

.towns {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.towns span {
  border: 1px solid #bdc8c4;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 11px;
}

.region-graphic {
  position: relative;
  overflow: hidden;
  background: var(--sage);
  aspect-ratio: 1672/941;
}

.service-map {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Wildlife panorama and contact
   ================================================== */

.wildlife-panorama {
  width: 100%;
  aspect-ratio: 1983/793;
  max-height: 590px;
  overflow: hidden;
  background: var(--paper);
}

.wildlife-panorama img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, .3) 7%, #000 24%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, .3) 7%, #000 24%, #000 100%);
}

.contact {
  background: var(--clay);
  color: var(--cream);
  padding: 100px 7vw;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 7vw;
  align-items: start;
}

.contact .eyebrow {
  color: #f1d8cf;
}

.contact h2 em {
  color: var(--forest-deep);
}

.contact-copy>p:last-of-type {
  max-width: 510px;
  margin: 30px 0 22px;
  font-size: 16px;
  line-height: 1.75;
  color: #f4ded6;
}

.contact-copy>a {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(244, 239, 228, .5);
  font-size: 16px;
}

.contact-form {
  border: 1px solid rgba(244, 239, 228, .48);
  padding: 36px;
  background: rgba(115, 46, 32, .08);
	border-radius: 10px;
}

.form-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 30px;
}

.form-heading>span {
  font-family: Georgia, serif;
  font-size: 32px;
}

.form-heading small,
.form-actions>small {
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: .05em;
  opacity: .78;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px 20px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.contact-form label>span {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(244, 239, 228, .64);
  border-radius: 0;
  padding: 9px 0;
  background: transparent;
  color: var(--cream);
  font-size: 16px;
  font-weight: 400;
  outline: none;
}

.contact-form select {
  appearance: auto;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
  min-height: 90px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--forest-deep);
  box-shadow: 0 2px 0 -1px var(--forest-deep);
}

.full-field {
  grid-column: 1/-1;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.form-actions .button {
  border: 0;
  cursor: pointer;
  gap: 16px;
}

.light-button {
  background: var(--cream);
  color: var(--forest);
}

.form-success {
  margin: 22px 0 0;
  padding: 13px 16px;
  border-left: 3px solid var(--forest-deep);
  background: rgba(244, 239, 228, .14);
  font-size: 12px;
  line-height: 1.5;
}

/* Contact gum-leaf background
   ================================================== */

.contact {
  --gumleaf-opacity: 0.10;
  --gumleaf-colour: var(--cream);
  --gumleaf-width: min(850px, 65vw);
  --gumleaf-left: -12%;
  --gumleaf-top: 80%;

  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.contact::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: var(--gumleaf-left);
  top: var(--gumleaf-top);
  width: var(--gumleaf-width);
  height: 115%;
  transform: translateY(-50%);

  background-color: var(--gumleaf-colour);

  -webkit-mask-image: url("gum-leaf-background.svg");
  mask-image: url("gum-leaf-background.svg");

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  -webkit-mask-position: left center;
  mask-position: left center;

  -webkit-mask-size: contain;
  mask-size: contain;

  opacity: var(--gumleaf-opacity);
  pointer-events: none;
}

.contact > * {
  position: relative;
  z-index: 1;
}

/* Footer
   ================================================== */

footer {
  min-height: 120px;
  background: var(--forest-deep);
  color: var(--cream);
  padding: 34px 7vw;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  font-size: 12px;
  letter-spacing: .08em;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: .15em;
}
.footer-script{
	font-family: 'Vujahday Script', cursive;
	font-size:20px;
	text-align: center;
	letter-spacing: normal;
}
.footer-brand .lizard-mark {
  width: 58px;
  /*filter: invert(1);*/
}

/* Restrained motion system: content remains fully visible if JavaScript is unavailable. */

.motion-ready .reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.22, 1, .36, 1), transform .65s cubic-bezier(.22, 1, .36, 1);
}

.motion-ready .reveal-item.is-visible {
  opacity: 1;
  transform: none;
}

.motion-ready .columns>p:nth-child(2),
.motion-ready .animal-grid article:nth-child(2),
.motion-ready .program-list article:nth-child(2) {
  transition-delay: .11s;
}

.motion-ready .animal-grid article:nth-child(3),
.motion-ready .program-list article:nth-child(3) {
  transition-delay: .2s;
}

.motion-ready .section-label.reveal-item {
  transform: translateX(-20px);
}

.motion-ready .section-label.reveal-item.is-visible {
  transform: none;
}

.motion-ready .region-graphic.reveal-item {
  transform: scale(.965);
  transform-origin: center;
}

.motion-ready .region-graphic.reveal-item.is-visible {
  transform: scale(1);
}

.hero-copy>* {
  opacity: 0;
  animation: heroRise .72s cubic-bezier(.22, 1, .36, 1) forwards;
}

.hero-copy>*:nth-child(2) {
  animation-delay: .1s;
}

.hero-copy>*:nth-child(3) {
  animation-delay: .2s;
}

.hero-copy>*:nth-child(4) {
  animation-delay: .3s;
}

.hero-art>img {
  animation: imageEnter 1.1s cubic-bezier(.22, 1, .36, 1) both;
}

.scribble,
.image-note {
  animation: softAppear .8s .72s ease both;
}

.map-ring {
  animation: ringBreathe 5s ease-in-out infinite;
}

.ring-two {
  animation-delay: .55s;
}

.ring-three {
  animation-delay: 1.1s;
}

.button,
.nav-cta,
.animal-grid article {
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.animal-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(5, 35, 29, .16);
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }

}

@keyframes imageEnter {
  from {
    opacity: 0;
    transform: scale(1.035);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }

}

@keyframes softAppear {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }

}

@keyframes ringBreathe {
  0%,
  100% {
    opacity: .6;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: .9;
    transform: translate(-50%, -50%) scale(1.025);
  }

}

/* Accessibility and responsive layouts
   ================================================== */

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }

  .motion-ready .reveal-item,
  .hero-copy>*,
  .hero-art>img,
  .scribble,
  .image-note,
  .map-ring {
    opacity: 1!important;
    transform: none!important;
    animation: none!important;
    transition: none!important;
  }

}

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

  .menu-toggle {
    display: flex;
  }

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

  .hero-copy {
    min-height: 620px;
  }

  .hero-art {
    min-height: 520px;
  }

  .section-heading {
    grid-template-columns: 1fr 1.1fr;
  }

  .section-heading>p {
    grid-column: 2;
  }

  .about,
  .programs {
    grid-template-columns: 1fr;
  }

  .about-copy,
  .program-list {
    grid-column: 1;
  }

  .program-intro {
    grid-template-columns: 1fr .7fr;
  }

}

@media(max-width:700px) {
  [id] {
    scroll-margin-top: 82px;
  }

  .site-header {
    height: 82px;
    padding: 0 20px;
  }

  .brand>.lizard-mark {
    width: 54px;
  }

  .brand-type strong {
    font-size: 12px;
  }

  .brand-type small {
    font-size: 5px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero-copy {
    min-height: 590px;
    padding: 75px 24px;
  }

  .hero-art {
    min-height: 420px;
  }

  .hero-art>img {
    object-position: 61% center;
  }

  .scribble {
    left: 7%;
    bottom: 7%;
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    font-size: 44px;
    line-height: .9;
    letter-spacing: .005em;
    transform: none;
    text-shadow: 0 2px 18px rgba(4, 28, 23, .5);
  }

  .scribble span+span:before {
    content: none;
  }

  .service-ribbon {
    min-height: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .service-ribbon-item {
    width: 100%;
    min-height: 74px;
    padding: 14px 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(244, 239, 228, .26);
    text-align: left;
    white-space: normal;
    line-height: 1.35;
    flex-direction: row;
  }

  .service-ribbon-item:last-child {
    border-bottom: 0;
  }

  .ribbon-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .service-ribbon>i {
    display: none;
  }

  .section {
    padding: 78px 24px;
  }

  .about,
  .section-heading,
  .program-intro,
  .region,
  .contact {
    display: block;
  }

  .large-copy {
    margin-top: 45px;
  }

  .columns,
  .animal-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .animal-grid article {
    min-height: 430px;
  }

  .nature-divider {
    height: 155px;
  }

  .section-heading h2,
  .program-intro h2 {
    margin: 40px 0 22px;
  }

  .program-list {
    margin-top: 45px;
  }

  .program-list article {
    grid-template-columns: 82px 1fr;
    gap: 18px;
  }

  .program-icon {
    width: 78px;
    height: 78px;
  }

  .program-list .arrow {
    display: none;
  }

  .region {
    padding-right: 24px;
  }

  .region-graphic {
    margin-top: 50px;
  }

  .contact-form {
    margin-top: 48px;
    padding: 28px 22px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

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

  .full-field {
    grid-column: auto;
  }

  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

}

@media(max-width:430px) {
  .brand-type small {
    display: none;
  }

  .mobile-menu {
    width: 90vw;
    padding-inline: 24px;
  }

  .mobile-nav a {
    font-size: 31px;
  }

}
