/* Brand system extracted from the existing logo: leaf, timber, berry, sky and sunshine. */
:root {
  --leaf: #6fb62f;
  --leaf-dark: #4f9227;
  --forest: #20543f;
  --timber: #8a5633;
  --berry: #e83d4d;
  --sky: #31a9d6;
  --sunshine: #f7c945;
  --cream: #fff9ef;
  --mint: #dff4de;
  --blush: #ffd9d6;
  --ink: #21312b;
  --white: #ffffff;
  --line: rgba(33, 49, 43, 0.1);
  --shadow: 0 24px 70px rgba(32, 84, 63, 0.13);
  --shadow-strong: 0 35px 90px rgba(32, 84, 63, 0.22);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .mobile-cta {
  display: none;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--sunshine);
  color: var(--forest);
}

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--forest);
  color: white;
  padding: 0.75rem 1rem;
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  background: rgba(255, 249, 239, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(33, 49, 43, 0.1);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-lockup img {
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(32, 84, 63, 0.12));
}

.brand-lockup span {
  display: grid;
  line-height: 1.1;
}

.brand-lockup strong {
  font-family: "Nunito", "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: var(--forest);
}

.brand-lockup small {
  margin-top: 0.18rem;
  color: rgba(33, 49, 43, 0.62);
  font-size: 0.75rem;
  font-weight: 800;
}

.brand-lockup-light strong,
.brand-lockup-light small {
  color: white;
}

.site-header nav a:not(.brand-lockup):not(.btn):not(.icon-link) {
  color: rgba(33, 49, 43, 0.72);
  font-weight: 800;
  transition: color 180ms ease;
}

.site-header nav a:not(.brand-lockup):not(.btn):not(.icon-link):hover {
  color: var(--forest);
}

.nav-toggle,
.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--forest);
  box-shadow: 0 10px 30px rgba(32, 84, 63, 0.08);
}

.nav-toggle svg,
.icon-link svg,
.btn svg {
  width: 1.15rem;
  height: 1.15rem;
}

.mobile-menu {
  display: grid;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem 1.4rem;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
}

.mobile-menu a:not(.btn) {
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  color: var(--forest);
  font-weight: 900;
}

.mobile-menu a:not(.btn):hover {
  background: var(--mint);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.85rem;
  border-radius: 999px;
  padding: 0.82rem 1.15rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-large {
  min-height: 3.35rem;
  padding: 1rem 1.35rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--leaf);
  color: white;
  box-shadow: 0 18px 40px rgba(111, 182, 47, 0.28);
}

.btn-primary:hover {
  background: var(--leaf-dark);
  box-shadow: 0 24px 54px rgba(111, 182, 47, 0.34);
}

.btn-secondary {
  border: 1px solid rgba(32, 84, 63, 0.14);
  background: rgba(255, 255, 255, 0.86);
  color: var(--forest);
}

.btn-light {
  background: white;
  color: var(--forest);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.shadow-soft {
  box-shadow: var(--shadow);
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(135deg, #fff9ef 0%, #edf9f2 48%, #fff0d2 100%);
  overflow: hidden;
}

.hero-ribbon {
  position: absolute;
  inset: auto -10% -12rem -10%;
  height: 23rem;
  background: linear-gradient(90deg, rgba(49, 169, 214, 0.12), rgba(247, 201, 69, 0.24), rgba(232, 61, 77, 0.12));
  clip-path: polygon(0 28%, 18% 16%, 38% 30%, 58% 12%, 78% 28%, 100% 18%, 100% 100%, 0 100%);
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  color: var(--berry);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 2.25rem;
  height: 0.18rem;
  border-radius: 999px;
  background: var(--sunshine);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.8);
}

.trust-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin-top: 2rem;
  max-width: 40rem;
}

.trust-strip div {
  display: grid;
  gap: 0.1rem;
  border: 1px solid rgba(32, 84, 63, 0.1);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.72);
  padding: 1rem;
  box-shadow: 0 14px 34px rgba(32, 84, 63, 0.08);
}

.trust-strip strong {
  color: var(--forest);
  font-family: "Nunito", "DM Sans", sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
}

.trust-strip small {
  color: rgba(33, 49, 43, 0.62);
  font-weight: 800;
}

.hero-media {
  min-height: 33rem;
  border-radius: 2.25rem;
  isolation: isolate;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 2rem -0.5rem -1rem 1.8rem;
  z-index: -1;
  border-radius: 42% 58% 48% 52%;
  background: rgba(111, 182, 47, 0.16);
}

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 0.65rem solid white;
  border-radius: 2.25rem;
  background: var(--mint);
  box-shadow: var(--shadow-strong);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 900ms ease, transform 5000ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(32, 84, 63, 0) 44%, rgba(32, 84, 63, 0.42) 100%);
}

.hero-note {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.95rem;
  color: var(--forest);
  font-weight: 900;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.13);
}

.hero-note svg {
  flex: 0 0 auto;
  color: var(--leaf);
}

.float-chip {
  position: absolute;
  z-index: 3;
  display: none;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.85rem 1rem;
  color: var(--forest);
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(32, 84, 63, 0.14);
}

.chip-one {
  top: 1.25rem;
  left: -1.25rem;
}

.chip-two {
  right: -1rem;
  top: 7.5rem;
}

/* Sections */
.section {
  position: relative;
  padding: 5rem 0;
}

.section-white {
  background: white;
}

.section-mint {
  background: linear-gradient(180deg, #f2fbf0 0%, #e3f7e1 100%);
}

.section-cream {
  background: linear-gradient(180deg, #fff9ef 0%, #fff5e7 100%);
}

.section-forest {
  background:
    linear-gradient(135deg, var(--forest) 0%, #173e32 62%, #244a63 100%);
  color: white;
}

.section-heading {
  max-width: 48rem;
}

.section-heading p:last-child {
  margin-top: 1.25rem;
  color: rgba(33, 49, 43, 0.72);
  font-size: 1.08rem;
  line-height: 1.8;
}

.section-forest .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

/* Trust cards */
.trust-card {
  min-height: 17rem;
  border: 1px solid var(--line);
  border-radius: 1.75rem;
  background: #fff;
  padding: 1.55rem;
  box-shadow: 0 14px 42px rgba(32, 84, 63, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(111, 182, 47, 0.35);
  box-shadow: var(--shadow);
}

.trust-card svg {
  width: 2.3rem;
  height: 2.3rem;
  color: var(--leaf);
}

.trust-card h3 {
  margin-top: 1.35rem;
  color: var(--forest);
  font-family: "Nunito", "DM Sans", sans-serif;
  font-size: 1.28rem;
  font-weight: 900;
}

.trust-card p {
  margin-top: 0.75rem;
  color: rgba(33, 49, 43, 0.68);
  line-height: 1.7;
}

/* About collage */
.image-collage {
  position: relative;
  min-height: 34rem;
}

.image-collage img {
  position: absolute;
  object-fit: cover;
  border: 0.55rem solid white;
  box-shadow: var(--shadow);
}

.image-collage img:first-child {
  inset: 0 12% auto 0;
  height: 23rem;
  width: 76%;
  border-radius: 2rem;
}

.image-collage img:nth-child(2) {
  right: 0;
  bottom: 0;
  height: 20rem;
  width: 52%;
  border-radius: 2rem;
}

.collage-badge {
  position: absolute;
  left: 8%;
  bottom: 2rem;
  display: grid;
  place-items: center;
  width: 9rem;
  height: 9rem;
  border: 0.45rem solid white;
  border-radius: 44% 56% 52% 48%;
  background: var(--sunshine);
  color: var(--forest);
  box-shadow: var(--shadow);
}

.collage-badge strong {
  font-family: "Nunito", "DM Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.collage-badge span {
  margin-top: -2rem;
  font-weight: 900;
}

.value-pill {
  display: grid;
  place-items: center;
  min-height: 4rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--forest);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(32, 84, 63, 0.08);
}

/* Program cards */
.program-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.7rem;
}

.program-card {
  position: relative;
  min-height: 23rem;
  overflow: hidden;
  border-radius: 2rem;
  padding: 1.5rem;
  color: var(--forest);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.program-card:hover,
.program-card:focus-visible {
  transform: translateY(-7px);
  box-shadow: var(--shadow-strong);
}

.program-card::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  bottom: -2rem;
  width: 10rem;
  height: 10rem;
  border-radius: 43% 57% 55% 45%;
  background: rgba(255, 255, 255, 0.36);
}

.program-green {
  background: linear-gradient(160deg, #dff4de 0%, #bdebb9 100%);
}

.program-sky {
  background: linear-gradient(160deg, #dff5ff 0%, #bceaff 100%);
}

.program-yellow {
  background: linear-gradient(160deg, #fff1b8 0%, #ffd978 100%);
}

.program-icon {
  display: grid;
  place-items: center;
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.76);
}

.program-icon svg {
  width: 1.8rem;
  height: 1.8rem;
}

.program-card p {
  margin-top: 4rem;
  color: rgba(32, 84, 63, 0.68);
  font-weight: 900;
  text-transform: uppercase;
}

.program-card h3 {
  margin-top: 0.35rem;
  font-family: "Nunito", "DM Sans", sans-serif;
  font-size: 2rem;
  font-weight: 900;
}

.program-card span {
  display: block;
  margin-top: 0.9rem;
  max-width: 21rem;
  color: rgba(33, 49, 43, 0.72);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Gallery */
.gallery-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.75rem;
}

.gallery-item {
  position: relative;
  min-height: 19rem;
  overflow: hidden;
  border-radius: 1.65rem;
  background: var(--mint);
  box-shadow: 0 15px 44px rgba(32, 84, 63, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32, 84, 63, 0) 45%, rgba(32, 84, 63, 0.62) 100%);
}

.gallery-item figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: white;
  font-weight: 900;
}

/* Team */
.team-grid {
  display: grid;
  gap: 1rem;
}

.team-card {
  display: grid;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.65rem;
  background: white;
  padding: 0.8rem;
  box-shadow: 0 14px 42px rgba(32, 84, 63, 0.08);
}

.team-card img {
  height: 15rem;
  width: 100%;
  border-radius: 1.2rem;
  object-fit: cover;
}

.team-card div {
  padding: 0.25rem 0.45rem 0.7rem;
}

.team-card p {
  color: var(--berry);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.team-card h3 {
  margin-top: 0.35rem;
  color: var(--forest);
  font-family: "Nunito", "DM Sans", sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
}

.team-card span {
  display: block;
  margin-top: 0.5rem;
  color: rgba(33, 49, 43, 0.66);
  line-height: 1.65;
}

/* Testimonials */
.carousel-controls {
  display: flex;
  gap: 0.7rem;
}

.carousel-controls button {
  display: inline-grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: background 180ms ease, transform 180ms ease;
}

.carousel-controls button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.testimonial-shell {
  position: relative;
  margin-top: 2.5rem;
}

.testimonial-card {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
}

.testimonial-card.is-active {
  display: block;
  animation: reviewIn 420ms ease both;
}

.stars {
  color: var(--sunshine);
  font-size: 1.15rem;
}

.testimonial-card p {
  margin-top: 1.5rem;
  color: white;
  font-family: "Nunito", "DM Sans", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.35;
}

.testimonial-card div:last-child {
  display: grid;
  gap: 0.25rem;
  margin-top: 1.7rem;
}

.testimonial-card strong {
  color: white;
  font-weight: 900;
}

.testimonial-card span {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 800;
}

@keyframes reviewIn {
  from {
    opacity: 0;
    transform: translateY(0.8rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Facilities */
.facility-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.75rem;
}

.facility-card {
  overflow: hidden;
  border-radius: 1.75rem;
  background: white;
  box-shadow: var(--shadow);
}

.facility-card img {
  height: 17rem;
  width: 100%;
  object-fit: cover;
}

.facility-card div {
  padding: 1.35rem;
}

.facility-card svg {
  color: var(--leaf);
}

.facility-card h3 {
  margin-top: 0.85rem;
  color: var(--forest);
  font-family: "Nunito", "DM Sans", sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
}

.facility-card p {
  margin-top: 0.5rem;
  color: rgba(33, 49, 43, 0.68);
  line-height: 1.7;
}

/* CTA */
.cta-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(32, 84, 63, 0.98) 0%, rgba(49, 169, 214, 0.78) 58%, rgba(232, 61, 77, 0.78) 100%),
    url("../images/gallery-community-1.jpg") center/cover;
}

.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4rem;
  background: white;
  opacity: 0.94;
}

.cta-section::before {
  top: -1px;
  clip-path: polygon(0 0, 100% 0, 100% 30%, 78% 55%, 58% 34%, 34% 64%, 12% 38%, 0 58%);
}

.cta-section::after {
  bottom: -1px;
  clip-path: polygon(0 70%, 18% 46%, 38% 68%, 62% 40%, 84% 62%, 100% 42%, 100% 100%, 0 100%);
}

.cta-section > div {
  position: relative;
  z-index: 1;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: white;
  box-shadow: 0 12px 34px rgba(32, 84, 63, 0.07);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  border-radius: 1.35rem;
  background: transparent;
  padding: 1.15rem 1.25rem;
  color: var(--forest);
  text-align: left;
  font-weight: 900;
}

.faq-item button svg {
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-item button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-panel {
  padding: 0 1.25rem 1.25rem;
  color: rgba(33, 49, 43, 0.68);
  line-height: 1.7;
}

/* Footer */
.footer {
  background: #14352b;
  color: white;
}

.footer h3 {
  margin-bottom: 1rem;
  color: white;
  font-family: "Nunito", "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

.footer a,
.footer span {
  display: block;
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.footer a:hover {
  color: white;
}

.footer .brand-lockup {
  display: inline-flex;
}

.footer .brand-lockup span {
  display: grid;
}

.newsletter {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.35rem;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: white;
  padding: 0.75rem 0.85rem;
  outline: none;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.newsletter button {
  display: inline-grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  border-radius: 999px;
  background: var(--leaf);
  color: white;
}

.social-links {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.map-wrap {
  height: 19rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.8);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.25rem;
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom span,
.footer-bottom a {
  display: inline;
  margin: 0;
}

/* Mobile sticky action */
.mobile-cta {
  position: fixed;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 50;
  display: flex;
  gap: 0.6rem;
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 55px rgba(33, 49, 43, 0.18);
  backdrop-filter: blur(18px);
}

.mobile-cta .btn {
  flex: 1;
}

.mobile-cta .icon-link {
  flex: 0 0 auto;
}

[data-animate] {
  will-change: transform, opacity;
}

/* Responsive refinements */
@media (min-width: 640px) {
  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .gallery-item.tall {
    grid-row: span 2;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-inline: 2rem;
  }
}

@media (min-width: 768px) {
  .program-grid,
  .facility-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .testimonial-card {
    padding: 2.2rem;
  }

  .testimonial-card p {
    font-size: 2.15rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 7rem 0;
  }

  .float-chip {
    display: inline-flex;
  }

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

  .gallery-item {
    min-height: 21rem;
  }

  .gallery-item.tall {
    min-height: 43rem;
  }

  .mobile-cta {
    display: none;
  }
}

@media (max-width: 767px) {
  .brand-lockup span {
    display: none;
  }

  .hero-section > .mx-auto {
    padding-top: 9rem;
  }

  .hero-media {
    min-height: 29rem;
  }

  .image-collage {
    min-height: 31rem;
  }

  .image-collage img:first-child {
    width: 86%;
  }

  .image-collage img:nth-child(2) {
    width: 60%;
  }

  .section {
    padding: 4rem 0;
  }

  .footer {
    padding-bottom: 5.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-animate] {
    will-change: auto;
  }
}
