/* Suir Greenway — mobile-first styles */

:root {
  --blue-primary: #007aab; /* Tipperary CoCo brand blue (AA 4.5:1 with white text) */
  --blue-dark: #005a7d;
  --charcoal: #282c35;
  --footer-dark: #0f1115;
  --text-dark: #1a1d24;
  --text-muted: #4a5866;
  --white: #ffffff;
  --header-teal: #007aab;
  --header-teal-dark: #00658a;
  --accent-lime: #62c49a; /* Lighter brand green */
  --accent-lime-dark: #4fa384;
  --light-blue: #a0d1e5; /* Silhouette blue from screenshot */
  --max-width: 1140px;
  --section-padding: clamp(2rem, 5vw, 4rem);
  --section-inline-padding: clamp(1.5rem, 5vw, 4rem);
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  min-height: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

#main-content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--white);
  color: var(--blue-primary);
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--blue-primary);
  transform: translateY(-120%);
  transition: transform 0.2s;
}

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

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

a {
  color: var(--blue-primary);
}

a:hover {
  color: var(--blue-dark);
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* Header */
.site-header {
  background: var(--header-teal);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow-x: clip;
  flex-shrink: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 4.5rem;
  padding: 0.4rem var(--section-inline-padding);
}

.header-branding {
  flex: 0 1 auto;
  min-width: 0;
  order: 1;
}

.header-logos {
  --header-logo-height: clamp(1.75rem, 4.5vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  max-width: 100%;
}

.header-logo-stack .header-logo-link {
  max-width: 100%;
}

.header-logo-link {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  overflow: hidden;
}

.header-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.header-logo-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  flex: 0 1 auto;
}

.header-logo-stack .header-logo-link {
  width: auto;
  height: var(--header-logo-height);
}

.header-logo--tipperary {
  height: 100%;
  width: auto;
  mix-blend-mode: screen;
}

.header-logo--ocsc {
  height: calc(var(--header-logo-height) * 0.85);
  width: auto;
  mix-blend-mode: screen;
}

.header-tagline {
  display: none; /* Hidden on mobile for cleaner header */
  margin: 0;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.7);
  max-width: 18rem;
}

.site-nav {
  display: none;
  margin-left: auto;
}

.site-nav a,
.footer-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s;
}

.site-nav a:not(.site-nav-cta) {
  white-space: nowrap;
}

.nav-label--short {
  display: none;
}

.site-nav a::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-lime);
  transition: width 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.footer-nav a:hover::after {
  width: 100%;
}

.site-nav a.is-active {
  color: var(--white);
}

.site-nav a:hover,
.footer-nav a:hover {
  color: var(--white);
}

.btn-header-cta {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  background: var(--accent-lime);
  color: var(--text-dark);
  border: none;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  order: 2;
}

.btn-header-cta:hover {
  transform: translateY(-1px);
  background: var(--accent-lime-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: var(--text-dark);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
  order: 3;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.18);
}

.nav-toggle:active {
  transform: scale(0.95);
}

.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  width: 1.25rem;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  width: 1.25rem;
}

.site-header .site-nav.is-open {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--header-teal-dark);
  padding: 1.25rem var(--section-inline-padding);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.site-header .site-nav.is-open a {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
}

.site-header .site-nav.is-open a:last-child {
  border-bottom: none;
}

.site-header .site-nav.is-open a::after {
  display: none; /* Hide the desktop underline effect on mobile */
}

.site-nav-cta {
  display: none;
  order: 10;
}

.site-nav.is-open .site-nav-cta {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 0.35rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  border-bottom: none;
}

@media (max-width: 1199px) {
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "brand toggle";
    align-items: center;
    gap: 0.625rem;
    min-height: 3.75rem;
    padding-block: 0.45rem;
  }

  .header-branding {
    grid-area: brand;
    min-width: 0;
  }

  .header-tagline {
    display: none;
  }

  .nav-toggle {
    display: flex;
    grid-area: toggle;
    order: unset;
    width: 2.35rem;
    height: 2.35rem;
  }

  .header-inner > .btn-header-cta {
    display: none;
  }

  .site-nav {
    display: none;
  }

  .header-logos {
    --header-logo-height: clamp(1.35rem, 3.2vw, 2rem);
    gap: clamp(0.65rem, 2.5vw, 1.25rem);
  }

  .header-logo-stack .header-logo-link {
    max-width: min(9.5rem, 46vw);
  }

  .header-logos > .header-logo-link {
    max-width: min(4.25rem, 20vw);
    flex-shrink: 0;
    margin-left: clamp(0.25rem, 1vw, 0.5rem);
  }

  .header-logo--ocsc {
    height: calc(var(--header-logo-height) * 0.75);
  }

  .site-header .site-nav.is-open {
    display: flex;
    padding-top: 1rem;
    padding-bottom: 1.25rem;
  }
}

@media (max-width: 767px) {
  .header-inner {
    min-height: 3.5rem;
    padding-block: 0.4rem;
  }

  .header-logos {
    --header-logo-height: clamp(1.2rem, 4.8vw, 1.65rem);
    gap: clamp(0.5rem, 3vw, 0.85rem);
  }

  .header-logo-stack .header-logo-link {
    max-width: min(8.25rem, 50vw);
  }

  .header-logos > .header-logo-link {
    max-width: min(3.5rem, 18vw);
    margin-left: clamp(0.2rem, 1.5vw, 0.4rem);
  }

  .header-logo--ocsc {
    height: calc(var(--header-logo-height) * 0.72);
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 77, 107, 0.2);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: #004d6b;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 77, 107, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--blue-primary);
  border-color: var(--blue-primary);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  background: var(--blue-primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 112, 186, 0.2);
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(28rem, 75vh, 50rem);
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 3rem);
  color: var(--white);
  text-align: center;
  background-color: #1a2a1a;
  background-image: 
    linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%),
    url("../assets/images/hero-clonmel.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20vh;
  background: linear-gradient(to top, var(--white) 0%, rgba(255, 255, 255, 0.8) 40%, transparent 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 62rem);
  margin-inline: auto;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 10vw, 7.5rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.hero-lead {
  margin: 0 auto 2rem;
  max-width: 42rem;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.5;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.01em;
}

.btn-hero-outline {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--accent-lime);
  color: var(--text-dark);
  border: none;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 6px 6px 0px var(--header-teal);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-hero-outline:hover {
  transform: translate(-3px, -3px);
  box-shadow: 12px 12px 0px var(--header-teal);
  background: var(--accent-lime-dark);
  color: var(--text-dark);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: heroBounce 2s infinite;
}

.hero-scroll a {
  display: block;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.hero-scroll a:hover {
  opacity: 1;
}

.hero-scroll img {
  width: 2.5rem;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes heroBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.hero-label,
.section-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

/* Sections */
.section {
  padding: var(--section-padding) 0;
}

.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.section p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.split {
  display: grid;
  gap: 2rem;
}

.split-media img {
  width: 100%;
  object-fit: cover;
}

/* About section */
.about {
  --about-col-padding: clamp(1.5rem, 5vw, 4rem);
  padding: clamp(3rem, 8vw, 6rem) 0 0;
  scroll-margin-top: 5.5rem;
  background: var(--white);
  overflow: hidden;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.about-heading {
  position: relative;
  padding: 0 var(--about-col-padding);
}

.about-heading::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 0;
  width: clamp(4rem, 15vw, 8rem);
  height: 100%;
  background: #f0f7fa; /* Very light brand blue */
  z-index: 0;
}

.about-heading h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  display: inline-block;
  padding-bottom: 0.5rem;
  font-size: clamp(1.25rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-primary);
  border-bottom: 2px solid var(--accent-lime);
}

.about-media {
  position: relative;
  padding: 0 var(--about-col-padding);
}

.about-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: 20px 20px 0px #f0f7fa;
}

.about-content {
  padding: 1rem var(--about-col-padding);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
}

.about-content .section-label {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.about-content .section-dates {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-primary);
  max-width: none;
}

.about-content p {
  margin: 0;
  max-width: 32rem;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.about-involved {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  padding: 3rem var(--about-col-padding);
  background: var(--header-teal);
}

.about-involved .about-involved-title {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
  text-align: center;
}

.btn-about {
  background: var(--accent-lime);
  color: var(--text-dark);
  border: none;
  border-radius: 0;
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 6px 6px 0px var(--header-teal);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-about:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px var(--header-teal);
  background: var(--accent-lime-dark);
}

/* About Objectives */
.about-objectives {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: clamp(3rem, 8vw, 6rem) var(--about-col-padding);
  scroll-margin-top: 5.5rem;
  background: var(--white);
}

.objectives-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 0 0 2rem;
}

.objectives-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.objectives-list li {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.objectives-list li strong {
  color: var(--text-dark);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.25rem;
}

.objectives-graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.objectives-graphic img {
  width: 100%;
  max-width: 600px;
  height: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #eef3f7;
}

.split-content-empty {
  display: none;
}

/* Hear section */
.hear {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 10vw, 8rem);
  scroll-margin-top: 5.5rem;
  background: #f0f7fa; /* Very light brand blue */
}

.hear-grid {
  --hear-col-padding: clamp(1.5rem, 5vw, 4rem);
  display: grid;
  gap: 3rem;
  align-items: center;
  width: 100%;
  padding-inline: var(--hear-col-padding);
}

.hear-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
}

.hear-copy h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.hear-copy p {
  max-width: 32rem;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.btn-hear {
  padding: 1.1rem 2.2rem;
  background: var(--accent-lime);
  color: var(--text-dark);
  border: none;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 6px 6px 0px var(--header-teal);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-hear:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px var(--header-teal);
  background: var(--accent-lime-dark);
  color: var(--text-dark);
}

.hear-visual {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  min-height: 22rem;
}

.collage-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.collage-item:hover {
  z-index: 10;
}

.collage-item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 12rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (prefers-reduced-motion: reduce) {
  .hero-inner {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-scroll {
    animation: none;
  }

  .collage-item {
    will-change: auto;
    transform: none !important;
  }
}

/* Partners */
.partners {
  padding: 0;
  background: #f0f7fa; /* Very light brand blue */
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto;
}

.partners-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(4rem, 8vw, 6rem) var(--section-inline-padding);
  background: var(--white);
  position: relative;
}

.partners-logos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../assets/svg/footprint-pattern.svg") repeat;
  background-size: 150px;
  opacity: 0.03;
  pointer-events: none;
}

.partners-logo-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(100%, 18rem);
  height: auto;
  line-height: 0;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.partners-logo-link:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.partners-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: clamp(3rem, 6vw, 4rem);
  object-fit: contain;
}

.partners-logo--ocsc {
  max-height: none;
  width: min(100%, 18rem);
  height: auto;
}

.partners-logo-link--ocsc {
  width: min(100%, 20rem);
}

.partners-contact {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  scroll-margin-top: 5.5rem;
  background: var(--header-teal);
  color: var(--white);
  padding: clamp(4rem, 8vw, 6rem) var(--section-inline-padding);
}

.partners-contact-inner {
  max-width: 34rem;
  position: relative;
  z-index: 2;
}

.partners-contact h2 {
  margin: 0 0 2rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
}

.contact-fao {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}

.contact-address {
  margin: 0 0 2.5rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.5;
  font-weight: 500;
  color: var(--white);
}

.contact-email {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.5;
  font-weight: 700;
}

.partners-contact a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 2px solid var(--accent-lime);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.partners-contact a:hover {
  color: var(--white);
  border-color: var(--white);
}

/* Footer */
.site-footer {
  background: var(--header-teal);
  color: var(--white);
  padding: 3rem 0;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
  padding-inline: var(--section-inline-padding);
  text-align: center;
}

.footer-copyright {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.footer-center {
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
  align-items: center;
}

.footer-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--accent-lime);
  color: var(--white);
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--header-teal-dark);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.footer-top:hover {
  transform: translate(-2px, -5px);
  background: var(--accent-lime-dark);
  box-shadow: 6px 6px 0 var(--header-teal-dark);
}

.footer-top span {
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  border-top: 3px solid var(--text-dark);
  border-left: 3px solid var(--text-dark);
  transform: translateY(2px) rotate(45deg);
}

@media (min-width: 768px) {
  .site-footer {
    padding: 4rem 0;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-top {
    order: 3;
  }

  .footer-copyright {
    order: 1;
  }

  .footer-center {
    order: 2;
  }

  .footer-nav {
    gap: clamp(1.5rem, 3vw, 3.5rem);
  }
}

/* Legal pages */
.legal-content {
  padding: var(--section-padding) var(--section-inline-padding);
  background: var(--white);
}

.legal-content-inner {
  width: min(100%, var(--max-width));
  margin-inline: auto;
}

.legal-lead {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.legal-content h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dark);
}

.legal-content h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
}

.legal-content ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.legal-content a {
  font-weight: 600;
}

/* Consultation page */
.page-hero {
  position: relative;
  background-color: var(--charcoal);
  background-image:
    linear-gradient(135deg, rgba(26, 29, 36, 0.94) 0%, rgba(42, 47, 58, 0.9) 100%),
    url("../assets/images/hero-clonmel.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 100%, rgba(98, 196, 154, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(to top, var(--white) 0%, transparent 100%);
  pointer-events: none;
}

.page-hero:has(#what-happens-next[hidden]) {
  padding: clamp(3.5rem, 10vw, 5.5rem) 0;
}

.page-hero:has(+ .consultation-scheduled-content[hidden]) {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero-inner,
.map-section-intro,
.map-attribution {
  width: 100%;
  padding-inline: var(--section-inline-padding);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 64rem;
  margin-inline: auto;
}

.page-hero-announcement {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.page-hero .hero-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.8rem, 1.8vw, 0.95rem);
}

.page-hero .consultation-dates {
  margin: 0;
}

.page-hero-inner:has(#what-happens-next[hidden]) .page-hero-announcement {
  gap: 1.25rem;
  padding-block: clamp(0.5rem, 2vw, 1.5rem);
}

.page-hero-inner:has(#what-happens-next[hidden]) .hero-label {
  max-width: 22ch;
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
}

.page-hero-inner:has(#what-happens-next[hidden]) .consultation-dates {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.35rem;
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  background: var(--accent-lime);
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(98, 196, 154, 0.3);
}

.page-hero-inner:has(#what-happens-next:not([hidden])) .page-hero-announcement {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.page-hero-inner:has(#what-happens-next:not([hidden])) .consultation-dates {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-lime);
}

.page-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.page-intro {
  margin: 0;
  max-width: none;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.65;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.map-section {
  background: linear-gradient(180deg, #eef3f7 0%, #f8fafb 100%);
  padding-bottom: var(--section-padding);
}

.map-section-intro {
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: 1.5rem;
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.map-section-intro h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.map-section-lead {
  max-width: none;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 1.1rem;
}

.map-panel {
  background: var(--white);
  border: 1px solid #dde5eb;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  padding-inline: var(--section-inline-padding);
  margin-inline: var(--section-inline-padding);
  overflow: hidden;
}

@media (max-width: 767px) {
  .map-panel {
    margin-inline: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
}

.map-toolbar {
  padding-block: 1.5rem 1.25rem;
  border-bottom: 1px solid #e8eef2;
}

.map-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 1.5rem;
}

.map-embed {
  width: 100%;
  height: clamp(360px, 58vh, 620px);
  background: #e8eef2;
  z-index: 0;
  border-radius: 8px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .map-wrap {
    padding-bottom: 1.25rem;
  }

  .map-embed {
    border-radius: 6px;
  }
}

.map-embed .leaflet-container {
  width: 100%;
  height: 100%;
  font-family: inherit;
}

.map-embed .leaflet-control-zoom a {
  color: var(--text-dark);
}

.eircode-form {
  margin: 0;
}

.eircode-search {
  max-width: 26rem;
}

.eircode-form label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.eircode-input-group {
  display: flex;
  align-items: stretch;
  width: 100%;
  box-shadow: 0 1px 3px rgba(26, 29, 36, 0.05);
  border-radius: 6px;
  overflow: hidden;
}

.eircode-form input {
  flex: 1;
  min-width: 0;
  min-height: 3rem;
  padding: 0.7rem 1rem;
  border: 1px solid #c5d3de;
  border-right: 0;
  border-radius: 0;
  font: inherit;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #f8fafb;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.eircode-form input::placeholder {
  color: #9aa8b3;
  text-transform: none;
  letter-spacing: 0;
}

.eircode-form input:focus {
  outline: none;
  background: var(--white);
  border-color: var(--blue-primary);
  box-shadow: inset 0 0 0 1px var(--blue-primary);
}

.eircode-form .btn {
  flex: 0 0 auto;
  border-radius: 0;
  padding-inline: 1.25rem;
  min-height: 3rem;
  box-shadow: none;
}

.map-status {
  min-height: 1.25rem;
  margin: 0.65rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.map-status--success {
  color: #1f6b3f;
}

.map-status--error {
  color: #b42318;
}

.map-status--loading {
  color: var(--blue-primary);
}

.map-legend {
  display: grid;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #d5e0e8;
  border-radius: 6px;
  backdrop-filter: blur(6px);
}

.map-legend--overlay {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 1000;
  width: min(100% - 1.5rem, 13.5rem);
  max-height: calc(100% - 1.5rem);
  margin: 0;
  overflow-y: auto;
  box-shadow: 0 4px 18px rgba(26, 29, 36, 0.14);
  pointer-events: auto;
}

.map-legend-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-bottom: 0.45rem;
  margin-bottom: 0.1rem;
  border-bottom: 1px solid #e6edf2;
}

.map-legend-header strong {
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.map-legend-collapse {
  border: 0;
  background: #eef4f9;
  padding: 0.2rem 0.45rem;
  border-radius: 3px;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue-primary);
  cursor: pointer;
  text-decoration: none;
}

.map-legend-collapse:hover {
  background: #e3edf6;
}

.map-legend--collapsed .map-legend-body,
.map-legend--collapsed .map-legend-group {
  display: none;
}

.map-legend-group {
  display: grid;
  gap: 0.35rem;
}

.map-legend-group-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 0.15rem;
}

.map-legend-group-head strong {
  margin-right: auto;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5c6b76;
}

.map-legend-action {
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--blue-primary);
  cursor: pointer;
  text-decoration: none;
}

.map-legend-action:hover {
  color: var(--blue-dark);
  text-decoration: underline;
}

.map-legend-group > strong {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5c6b76;
}

.map-legend-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.15rem 0;
  font-size: 0.82rem;
  color: var(--text-dark);
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.15s ease;
}

.map-legend-toggle:hover {
  background: #f3f7fa;
}

.map-legend-toggle input {
  width: 0.9rem;
  height: 0.9rem;
  margin: 0;
  accent-color: var(--blue-primary);
  flex: 0 0 0.9rem;
}

.map-legend-toggle span {
  line-height: 1.25;
}

.map-legend-line {
  display: inline-block;
  width: 1.35rem;
  height: 0.22rem;
  border-radius: 999px;
  flex: 0 0 1.35rem;
}

.map-legend-line--boundary {
  background: transparent;
  height: 0;
  border-top: 3px dashed #ff5252;
  border-radius: 0;
}

.leaflet-control-layers {
  font: inherit;
}

.leaflet-control-layers-expanded {
  padding: 0.5rem 0.75rem;
}

.map-attribution {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.modal-open {
  overflow: hidden;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 29, 36, 0.55);
}

.modal-dialog {
  position: relative;
  width: min(100%, 32rem);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(26, 29, 36, 0.2);
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-close:hover {
  color: var(--text-dark);
}

.modal-dialog h2 {
  margin: 0 2rem 0.5rem 0;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.modal-intro {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
}

.feedback-form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.form-field {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.feedback-form-grid .form-field {
  margin-bottom: 0;
}

.form-field label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #c5d3de;
  border-radius: 6px;
  font: inherit;
  background: #f8fafb;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(0, 112, 186, 0.15);
}

.form-field textarea {
  resize: vertical;
  min-height: 7rem;
}

.feedback-form-status {
  min-height: 1.25rem;
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.feedback-form-status--success {
  color: #1f6b3f;
}

.feedback-form-status--error {
  color: #b42318;
}

.feedback-form-status--loading {
  color: var(--blue-primary);
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.content-narrow {
  max-width: 42rem;
}

.consultation-content h2 {
  margin-top: 2rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.consultation-content ul {
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.consultation-dates {
  margin: 0 0 1rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-lime);
}

.consultation-dates--inline {
  color: var(--blue-primary);
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.05rem;
}

.page-intro p {
  margin: 0 0 1.25rem;
}

.page-intro p:last-child {
  margin-bottom: 0;
}

.consultation-criteria {
  margin: 1.5rem 0 !important;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--accent-lime);
  font-size: 1.1rem;
  line-height: 1.6;
}

.consultation-details {
  padding: var(--section-padding) var(--section-inline-padding);
  background: var(--white);
  border-bottom: 1px solid #dde5eb;
}

.consultation-details-inner {
  width: min(100%, var(--max-width));
  margin-inline: auto;
}

.consultation-details-head {
  text-align: center;
  max-width: 48rem;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.consultation-details h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.consultation-details h3 {
  margin-top: 2rem;
  font-size: 1.1rem;
  color: var(--blue-primary);
}

.consultation-grid {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

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

.consultation-card {
  background: #f8fafb;
  border: 1px solid #dde5eb;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.consultation-card h3 {
  margin-top: 0;
  color: var(--blue-primary);
  border-bottom: 2px solid var(--accent-lime);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.consultation-card-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: var(--text-muted);
  line-height: 1.65;
}

.consultation-card-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.25rem;
  position: relative;
}

.consultation-card-list li::before {
  content: "•";
  color: var(--accent-lime);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.consultation-submit-list,
.consultation-events-list,
.consultation-display-list {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.consultation-submit-list li,
.consultation-events-list li,
.consultation-display-list li {
  margin-bottom: 0.5rem;
}

.consultation-funding {
  margin: 3rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid #dde5eb;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
}

.map-corridor-note {
  width: 100%;
  padding-inline: var(--section-inline-padding);
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.footer-funding {
  width: 100%;
  flex: 0 0 100%;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}

.checkbox-group {
  display: grid;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  cursor: pointer;
}

.checkbox-label input {
  width: 1rem;
  height: 1rem;
  margin: 0;
  accent-color: var(--blue-primary);
  flex: 0 0 1rem;
}

.consultation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-form-section {
  padding: var(--section-padding) var(--section-inline-padding);
  background: #f4f8fb;
  border-top: 1px solid #d8e4ed;
}

.contact-form-section-inner {
  width: min(100%, 48rem);
  margin-inline: auto;
  background: var(--white);
  padding: clamp(1.5rem, 5vw, 3rem);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #dde5eb;
}

.contact-form-section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-align: center;
}

.contact-form-lead {
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 42rem;
  text-align: center;
}

.form-required-note,
.form-hint {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.required-indicator {
  color: var(--blue-primary);
  font-weight: 700;
}

.map-keyboard-help {
  margin: 0 0 1rem;
  max-width: 42rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.map-keyboard-help summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--blue-primary);
}

.map-keyboard-help p {
  margin: 0.75rem 0 0;
}

.contact-form .form-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #c5d3de;
  border-radius: 6px;
  font: inherit;
  background: #f8fafb;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.contact-form .form-field select:focus {
  outline: none;
  background: var(--white);
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(0, 112, 186, 0.15);
}

.form-fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 1rem;
}

.form-fieldset legend {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  padding: 0;
  line-height: 1.4;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.radio-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--text-dark);
  cursor: pointer;
}

.radio-label input {
  width: 1rem;
  height: 1rem;
  margin: 0;
  accent-color: var(--blue-primary);
}

/* Focus */
:focus-visible {
  outline: 3px solid var(--blue-primary);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .hear-content {
    align-items: center;
  }

  .hear-copy {
    width: 100%;
    text-align: center;
  }

  .hear-copy p {
    margin-inline: auto;
  }

  .btn-hear {
    display: inline-block;
  }

  .hear-visual {
    width: 100%;
  }

  .collage {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 0;
  }

  .collage-item,
  .collage-item-1,
  .collage-item-2,
  .collage-item-3 {
    position: relative;
    width: 100%;
    margin: 0;
    transform: none !important;
  }

  .collage-item + .collage-item {
    margin-top: 0;
  }

  .collage-item img {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .partners-contact {
    justify-content: center;
    text-align: center;
  }

  .partners-contact-inner {
    margin-inline: auto;
    max-width: 100%;
  }

  .objectives-title {
    text-align: center;
  }

  .about-heading {
    text-align: center;
  }

  .about-heading::before {
    left: 50%;
    transform: translateX(-50%);
    width: min(80%, 16rem);
  }

  .about-content .section-label {
    text-align: center;
  }

  .contact-form-section h2,
  .contact-form-lead {
    text-align: center;
  }

  .contact-form-lead {
    margin-inline: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-top {
    justify-self: center;
  }

  .map-toolbar {
    padding-block-start: 0.85rem;
  }

  .eircode-search {
    max-width: none;
  }

  .eircode-form .btn {
    padding-inline: 0.9rem;
    font-size: 0.72rem;
  }

  .map-legend--overlay {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    max-height: none;
    margin-top: 1rem;
    box-shadow: none;
    border: 1px solid #d5e0e8;
  }

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

/* Desktop */
@media (min-width: 768px) {
  :root {
    --section-inline-padding: clamp(3rem, 8vw, 6rem);
  }

  .split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 3rem;
  }

  .about {
    --about-col-padding: clamp(3rem, 8vw, 6rem);
  }

  .about-layout {
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: auto auto auto auto;
    gap: 0;
    align-items: center;
  }

  .about-heading {
    grid-column: 1 / -1;
    grid-row: 1;
    padding-bottom: clamp(3rem, 6vw, 5rem);
    text-align: left;
  }

  .about-heading::before {
    top: -4rem;
    left: 0;
    transform: none;
    width: 35%;
    height: 120%;
  }

  .about-heading h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    max-width: none;
  }

  .about-content {
    grid-column: 1;
    grid-row: 2;
    padding-right: 4rem;
    align-self: center;
  }

  .about-content .section-label {
    text-align: left;
  }

  .about-media {
    grid-column: 2;
    grid-row: 2;
    padding: 0;
    margin-left: -2rem;
    z-index: 1;
  }

  .about-media img {
    aspect-ratio: 1 / 1.1;
    box-shadow: 30px 30px 0px #f0f7fa;
  }

  .about-involved {
    grid-column: 1 / -1;
    grid-row: 3;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    margin-top: clamp(3rem, 6vw, 4.5rem);
    padding: clamp(2.5rem, 4vw, 3.5rem) var(--about-col-padding);
  }

  .about-objectives {
    grid-column: 1 / -1;
    grid-row: 4;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-top: clamp(4rem, 8vw, 6rem);
    gap: 4rem;
  }

  .objectives-title {
    text-align: left;
  }

  .about-involved-title {
    max-width: 30rem;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    text-align: left;
  }

  .btn-about {
    box-shadow: 6px 6px 0px var(--accent-lime-dark);
  }

  .btn-about:hover {
    box-shadow: 0px 0px 0px var(--accent-lime-dark);
  }

  .hear-grid {
    --hear-col-padding: clamp(3rem, 8vw, 6rem);
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(3rem, 6vw, 5rem);
  }

  .hear-content {
    align-items: flex-start;
    padding-block: 2rem;
  }

  .hear-copy {
    text-align: left;
  }

  .hear-copy p {
    margin-inline: 0;
  }

  .hear-visual {
    min-height: auto;
  }

  .collage {
    display: block;
    height: clamp(38rem, 46vw, 46rem);
    min-height: 42rem;
  }

  .collage-item {
    position: absolute;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  }

  .collage-item img {
    min-height: 0;
    aspect-ratio: auto;
  }

  .collage-item-1 {
    top: 0;
    right: 0;
    width: 72%;
    z-index: 1;
  }

  .collage-item-2 {
    top: 14%;
    left: 0;
    width: 58%;
    z-index: 2;
    border: 8px solid var(--white);
  }

  .collage-item-3 {
    bottom: 0;
    left: 22%;
    width: 62%;
    z-index: 3;
  }

  .partners-grid {
    grid-template-columns: 1fr 1fr;
    min-height: 35rem;
  }

  .partners-logos {
    padding: 4rem clamp(2rem, 4vw, 3rem) 4rem var(--section-inline-padding);
    gap: 4rem;
  }

  .partners-logo-link {
    width: 20rem;
  }

  .partners-contact {
    justify-content: flex-start;
    text-align: left;
    padding: 5rem var(--section-inline-padding) 5rem clamp(2rem, 4vw, 3rem);
  }

  .partners-contact-inner {
    margin-inline: 0;
    max-width: 28rem;
  }
}

@media (min-width: 1200px) {
  .nav-toggle {
    display: none;
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas: "brand nav cta";
    align-items: center;
    column-gap: clamp(1.5rem, 2.5vw, 2.5rem);
    row-gap: 0.5rem;
    flex-wrap: nowrap;
    min-height: 5.5rem;
    padding: 0.65rem var(--section-inline-padding);
  }

  .header-branding {
    grid-area: brand;
    min-width: 0;
    order: unset;
  }

  .site-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: static;
    padding: 0;
    border: none;
    gap: clamp(0.85rem, 1.5vw, 1.75rem);
    grid-area: nav;
    margin-left: 0;
    order: unset;
    flex-shrink: 0;
  }

  .site-nav > a:nth-child(4) {
    padding-right: 0.75rem;
  }

  .site-nav-cta {
    display: none !important;
  }

  .btn-header-cta {
    display: inline-block;
    grid-area: cta;
    order: unset;
    flex-shrink: 0;
    padding: 0.75rem 1.25rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    box-shadow: 4px 4px 0px var(--header-teal-dark);
  }

  .header-logos {
    --header-logo-height: clamp(2rem, 2.5vw, 2.65rem);
    gap: clamp(0.85rem, 1.5vw, 1.5rem);
  }

  .header-logo-stack .header-logo-link {
    max-width: min(10.5rem, 100%);
  }

  .header-logos > .header-logo-link {
    max-width: min(5.25rem, 18%);
    flex-shrink: 0;
  }

  .header-logo--ocsc {
    height: calc(var(--header-logo-height) * 0.9);
  }

  .header-logo-stack {
    gap: 0;
    flex-shrink: 1;
    min-width: 0;
  }

  .header-tagline {
    display: none;
  }

  .site-nav a:not(.site-nav-cta) {
    font-size: 0.72rem;
    letter-spacing: 0.07em;
  }

  .nav-label--long {
    display: none;
  }

  .nav-label--short {
    display: inline;
  }
}

@media (min-width: 1400px) {
  .header-inner {
    min-height: 7rem;
    padding: 0.75rem var(--section-inline-padding);
    column-gap: clamp(2rem, 3vw, 3rem);
  }

  .site-nav {
    gap: clamp(1.5rem, 3vw, 3.5rem);
  }

  .site-nav > a:nth-child(4) {
    padding-right: 1.25rem;
  }

  .btn-header-cta {
    padding: 0.9rem 1.8rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
  }

  .header-logos {
    --header-logo-height: clamp(3rem, 4.5vw, 3.5rem);
    gap: clamp(2rem, 3vw, 3.5rem);
  }

  .header-logo-stack .header-logo-link {
    max-width: none;
  }

  .header-logos > .header-logo-link {
    max-width: none;
  }

  .header-logo--ocsc {
    height: var(--header-logo-height);
  }

  .header-logo-stack {
    gap: 0.5rem;
  }

  .header-tagline {
    display: block;
    font-size: 0.7rem;
    max-width: 22rem;
  }

  .site-nav a:not(.site-nav-cta) {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
  }

  .nav-label--long {
    display: inline;
  }

  .nav-label--short {
    display: none;
  }
}
