:root {
  --ink: #0c1730;
  --navy: #102a56;
  --navy-deep: #0a1b3a;
  --gold: #d4a017;
  --gold-soft: #e8c45a;
  --leaf: #2f7d57;
  --leaf-soft: #dcebdd;
  --clay: #b95d3b;
  --sky: #e8eef8;
  --paper: #f4f6fb;
  --line: rgba(16, 42, 86, 0.14);
  --shadow: 0 24px 60px rgba(10, 27, 58, 0.18);
  --header-h: 4.25rem;
  --radius: 0.5rem;
  --space: 1.15rem;
  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: 4.5rem;
  background:
    radial-gradient(circle at 8% 12%, rgba(47, 125, 87, 0.14), transparent 30%),
    radial-gradient(circle at 92% 2%, rgba(212, 160, 23, 0.14), transparent 34%),
    linear-gradient(180deg, #fbfcf8 0%, var(--paper) 48%, #e8eef7 100%);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--navy);
}

h1,
h2,
h3,
.brand-name,
.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 800;
}

h2 {
  margin: 0 0 0.9rem;
  font-size: 2rem;
}

h3 {
  margin: 0 0 0.55rem;
  font-size: 1.3rem;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1120px, calc(100% - (var(--space) * 2)));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
    color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.btn:hover {
  background: var(--gold-soft);
  color: var(--navy-deep);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(244, 246, 251, 0.55);
  color: var(--paper);
}

.btn-ghost:hover {
  background: rgba(244, 246, 251, 0.12);
  color: var(--paper);
  border-color: var(--paper);
}

.btn-small {
  min-height: 2.5rem;
  padding: 0.55rem 1rem;
  font-size: 0.95rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease),
    backdrop-filter 0.35s var(--ease);
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(244, 246, 251, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  width: min(1120px, calc(100% - (var(--space) * 2)));
  min-height: var(--header-h);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  text-decoration: none;
  color: var(--paper);
  transition: color 0.35s var(--ease);
}

.site-header.is-scrolled .brand,
.site-header.is-scrolled .nav a,
.site-header.menu-open .brand {
  color: var(--ink);
}

.brand-logo,
.footer-logo {
  width: 2.7rem;
  height: 2.7rem;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 0.65rem;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(16, 42, 86, 0.08);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.brand-name {
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-sub {
  font-size: 0.72rem;
  opacity: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav {
  display: none;
  margin-left: auto;
  gap: 1rem;
}

.nav a,
.mobile-nav a {
  text-decoration: none;
  font-weight: 600;
}

.nav a {
  color: rgba(244, 246, 251, 0.92);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.nav a.is-active,
.mobile-nav a.is-active {
  color: var(--gold-soft);
}

.site-header.is-scrolled .nav a.is-active,
.site-header.menu-open .mobile-nav a.is-active {
  color: var(--navy);
}

.header-cta {
  display: none;
  margin-left: 0.5rem;
}

.nav-toggle {
  margin-left: auto;
  width: 2.85rem;
  height: 2.85rem;
  flex-shrink: 0;
  border: 1px solid rgba(244, 246, 251, 0.35);
  border-radius: 999px;
  background: rgba(10, 27, 58, 0.25);
  display: grid;
  place-content: center;
  gap: 0.35rem;
  cursor: pointer;
  touch-action: manipulation;
}

.site-header.is-scrolled .nav-toggle,
.site-header.menu-open .nav-toggle {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--paper);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled .nav-toggle span,
.site-header.menu-open .nav-toggle span {
  background: var(--ink);
}

.site-header.menu-open .nav-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.site-header.menu-open .nav-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-nav {
  display: grid;
  gap: 0.25rem;
  padding: 0.35rem var(--space) 1.25rem;
  background: rgba(244, 246, 251, 0.98);
  border-bottom: 1px solid var(--line);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.55rem 0.15rem;
  border-bottom: 1px solid var(--line);
}

.mobile-nav a.btn {
  margin-top: 0.65rem;
  border-bottom: 0;
  justify-content: center;
}

.hero {
  position: relative;
  min-height: 92svh;
  min-height: 92dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  transform: scale(1.06);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 27, 58, 0.55) 0%, rgba(10, 27, 58, 0.35) 35%, rgba(10, 27, 58, 0.9) 100%),
    linear-gradient(105deg, rgba(10, 27, 58, 0.88) 0%, rgba(10, 27, 58, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - (var(--space) * 2)));
  max-width: 45rem;
  margin: 0 auto 0 max(var(--space), calc((100% - 1120px) / 2));
  padding: calc(var(--header-h) + 1.5rem) 0 3.5rem;
}

.hero-logo {
  width: clamp(5.25rem, 20vw, 8.25rem);
  height: auto;
  margin: 0 0 1rem;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.hero-lead {
  max-width: 34rem;
  font-size: 1.05rem;
  color: rgba(244, 246, 251, 0.92);
}

.hero-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-actions .btn {
  width: 100%;
}

.section {
  padding: 3.25rem 0;
}

.section-intro {
  max-width: 38rem;
  margin-bottom: 1.75rem;
}

.about-grid,
.impact-grid,
.contact-grid {
  display: grid;
  gap: 1.75rem;
}

.about-aside {
  display: grid;
  gap: 1rem;
}

.profile-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.profile-facts li {
  display: grid;
  gap: 0.1rem;
  padding-left: 0.9rem;
  border-left: 4px solid var(--leaf);
}

.profile-facts strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--navy);
}

.profile-facts span {
  color: rgba(12, 23, 48, 0.7);
  font-size: 0.96rem;
  line-height: 1.45;
}

.poster-frame {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.poster-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.1s var(--ease);
}

.poster-frame:hover img {
  transform: scale(1.02);
}

.programmes {
  background: linear-gradient(180deg, rgba(16, 42, 86, 0.04), transparent 40%);
}

.target {
  background:
    linear-gradient(180deg, rgba(47, 125, 87, 0.06), transparent 55%),
    var(--paper);
}

.target-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.target-item {
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(10, 27, 58, 0.06);
}

.target-item strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
}

.target-item span {
  color: rgba(12, 23, 48, 0.72);
  font-size: 0.98rem;
  line-height: 1.5;
}

.partners {
  background:
    linear-gradient(180deg, rgba(16, 42, 86, 0.04), rgba(232, 238, 248, 0.55) 100%);
}

.partners-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 9.5rem), 1fr));
  gap: 1rem;
  align-items: center;
}

.partner-logo {
  display: grid;
  place-items: center;
  min-height: 7.5rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 32px rgba(10, 27, 58, 0.08);
}

.partner-logo img {
  width: 100%;
  max-height: 5.5rem;
  object-fit: contain;
}

.programme-list {
  display: grid;
  gap: 0;
}

.programme {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.85rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
}

.programme:last-child {
  border-bottom: 1px solid var(--line);
}

.programme-index {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  padding-top: 0.15rem;
}

.campaign-grid {
  display: grid;
  gap: 2rem;
}

.campaign-copy {
  padding-top: 1rem;
}

.campaign-meta {
  display: grid;
  gap: 0.25rem;
  margin-top: 0.85rem;
  color: rgba(12, 23, 48, 0.68);
  font-weight: 600;
  font-size: 0.95rem;
}

.impact {
  color: var(--paper);
  background:
    radial-gradient(circle at 80% 18%, rgba(212, 160, 23, 0.22), transparent 32%),
    linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 55%, #163566 100%);
}

.impact .eyebrow {
  color: var(--gold-soft);
}

.impact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.impact-list li {
  display: grid;
  gap: 0.3rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(244, 246, 251, 0.14);
  border-radius: var(--radius);
  background: rgba(244, 246, 251, 0.05);
}

.impact-list strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-soft);
}

.garden-preview {
  background:
    linear-gradient(180deg, rgba(47, 125, 87, 0.08), rgba(255, 255, 255, 0.58)),
    var(--leaf-soft);
}

.garden-layout {
  display: grid;
  gap: 1.75rem;
}

.garden-collage {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 0.75rem;
}

.garden-photo {
  margin: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(47, 125, 87, 0.18);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(27, 78, 54, 0.16);
}

.garden-photo-large {
  grid-row: span 2;
}

.garden-photo img {
  width: 100%;
  height: 100%;
  min-height: 11rem;
  object-fit: cover;
  aspect-ratio: 1 / 1.12;
}

.garden-photo-large img {
  aspect-ratio: 4 / 5;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  margin-top: 0.45rem;
  color: var(--leaf);
  font-weight: 800;
  text-decoration-color: rgba(47, 125, 87, 0.35);
}

.text-link:hover {
  color: var(--navy);
}

.involve-rows {
  display: grid;
  gap: 0;
}

.involve-row {
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}

.involve-row:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-panel {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-details {
  margin: 0 0 1.35rem;
  display: grid;
  gap: 1.1rem;
}

.contact-details div {
  display: grid;
  gap: 0.2rem;
}

.contact-details dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--navy);
}

.contact-details dd {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.contact-details a {
  color: var(--navy);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.phone-list {
  display: grid;
  gap: 0.35rem;
}

.phone-list a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
}

.contact-actions {
  display: grid;
  gap: 0.75rem;
}

.contact-actions .btn {
  width: 100%;
}

.contact .btn-ghost {
  border-color: rgba(12, 23, 48, 0.18);
  color: var(--ink);
}

.contact .btn-ghost:hover {
  background: rgba(16, 42, 86, 0.08);
  color: var(--ink);
  border-color: var(--navy);
}

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
  background: rgba(16, 42, 86, 0.06);
}

.footer-inner {
  display: grid;
  gap: 1.1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-name {
  margin: 0;
  font-size: 1.1rem;
}

.footer-tag,
.footer-meta {
  margin: 0.2rem 0 0;
  color: rgba(12, 23, 48, 0.68);
  font-size: 0.95rem;
}

.footer-meta {
  display: grid;
  gap: 0.2rem;
  line-height: 1.55;
}

.mobile-call {
  position: fixed;
  left: var(--space);
  right: var(--space);
  bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(10, 27, 58, 0.28);
  touch-action: manipulation;
}

.mobile-call:hover {
  color: var(--navy-deep);
  background: var(--gold-soft);
}

.page-hero {
  position: relative;
  min-height: 72svh;
  min-height: 72dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - (var(--space) * 2)));
  max-width: 45rem;
  margin: 0 auto 0 max(var(--space), calc((100% - 1120px) / 2));
  padding: calc(var(--header-h) + 2rem) 0 4.25rem;
}

.gallery-hero .hero-media img {
  object-position: 50% 50%;
}

.gallery-section {
  background:
    linear-gradient(180deg, #fbfcf8 0%, rgba(232, 238, 248, 0.74) 100%);
}

.gallery-heading {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.gallery-count {
  margin: 0;
  color: var(--leaf);
  font-weight: 800;
}

.gallery-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 1.35rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 32px rgba(10, 27, 58, 0.08);
}

.filter-button {
  min-height: 2.55rem;
  padding: 0.55rem 0.8rem;
  border: 0;
  border-radius: 0.35rem;
  background: transparent;
  color: rgba(12, 23, 48, 0.72);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.filter-button:hover,
.filter-button:focus-visible {
  color: var(--navy);
  background: rgba(47, 125, 87, 0.08);
}

.filter-button.is-active {
  background: var(--navy);
  color: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1rem;
  align-items: start;
}

.gallery-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(10, 27, 58, 0.12);
}

.gallery-card[hidden] {
  display: none;
}

.gallery-image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-image-button img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #dfe5ef;
  transition: transform 0.45s var(--ease), filter 0.45s var(--ease);
}

.gallery-image-button:hover img,
.gallery-image-button:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.gallery-caption {
  padding: 0.9rem 0.95rem 1rem;
}

.gallery-caption span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--leaf);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.gallery-caption h3 {
  margin: 0;
  font-size: 1.05rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 24, 0.78);
  backdrop-filter: blur(10px);
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100vw - 2rem));
  max-height: min(88vh, 820px);
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.lightbox-panel img {
  width: 100%;
  height: min(74vh, 700px);
  object-fit: contain;
  background: #071424;
}

.lightbox-panel figcaption {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 1rem 1rem;
}

.lightbox-panel figcaption span {
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lightbox-panel figcaption strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.2;
}

.lightbox-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(7, 20, 36, 0.74);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: var(--clay);
}

body.lightbox-open {
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

@keyframes hero-drift {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.5%, -1%, 0);
  }
}

@media (min-width: 640px) {
  :root {
    --space: 1.5rem;
    --header-h: 4.5rem;
  }

  body {
    font-size: 1.0625rem;
    padding-bottom: 0;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  .impact-list strong {
    font-size: 1.75rem;
  }

  .mobile-call {
    display: none;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: auto;
  }

  .contact-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .phone-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
  }

  .campaign-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
  }

  .section {
    padding: clamp(4rem, 9vw, 7.5rem) 0;
  }
}

@media (min-width: 768px) {
  .about-grid,
  .impact-grid,
  .contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    gap: 3.5rem;
  }

  .campaign-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.25rem;
  }

  .garden-layout {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 3.5rem;
  }

  .gallery-heading {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .gallery-card-feature {
    grid-column: span 2;
  }

  .gallery-card-feature .gallery-image-button img {
    aspect-ratio: 16 / 10;
  }

  .target-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .involve-rows {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .involve-row {
    padding: 0;
    border: 0;
  }

  .involve-row + .involve-row {
    padding-left: 1.5rem;
    border-left: 1px solid var(--line);
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .footer-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.35rem 1rem;
    text-align: right;
  }

  body {
    background-attachment: fixed;
  }
}

@media (min-width: 960px) {
  .nav,
  .header-cta {
    display: flex;
  }

  .nav-toggle,
  .mobile-nav {
    display: none !important;
  }

  .hero-content {
    padding-bottom: 3.25rem;
  }

  .hero-wash {
    background:
      linear-gradient(105deg, rgba(10, 27, 58, 0.9) 0%, rgba(10, 27, 58, 0.72) 48%, rgba(10, 27, 58, 0.42) 100%),
      linear-gradient(180deg, rgba(10, 27, 58, 0.35) 0%, rgba(10, 27, 58, 0.15) 40%, rgba(10, 27, 58, 0.82) 100%);
  }

  .brand-name {
    font-size: 1.05rem;
  }

  h1 {
    font-size: 4.05rem;
  }

  h2 {
    font-size: 3rem;
  }

  .impact-list strong {
    font-size: 2rem;
  }

  .brand-logo,
  .footer-logo {
    width: 3rem;
    height: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media img,
  .reveal,
  .btn,
  .poster-frame img,
  .gallery-image-button img,
  .filter-button {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
