/* 1) Fonts FIRST (paths relative to /assets/styles/main.css → ../fonts/*) */
@font-face { font-family:"Clash Grotesk"; src:url("../fonts/ClashGrotesk-Extralight.woff") format("woff"); font-weight:200; font-style:normal; font-display:swap; }
@font-face { font-family:"Clash Grotesk"; src:url("../fonts/ClashGrotesk-Light.woff")      format("woff"); font-weight:300; font-style:normal; font-display:swap; }
@font-face { font-family:"Clash Grotesk"; src:url("../fonts/ClashGrotesk-Regular.woff")    format("woff"); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:"Clash Grotesk"; src:url("../fonts/ClashGrotesk-Medium.woff")     format("woff"); font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:"Clash Grotesk"; src:url("../fonts/ClashGrotesk-Semibold.woff")   format("woff"); font-weight:600; font-style:normal; font-display:swap; }
@font-face { font-family:"Clash Grotesk"; src:url("../fonts/ClashGrotesk-Bold.woff")       format("woff"); font-weight:700; font-style:normal; font-display:swap; }
/* Use border-box so padding/border are inside declared width */
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }

/* (nice-to-have) media defaults to avoid overflow */
img, video, svg { max-width: 100%; height: auto; display: block; }
/* 2) Design tokens */
:root{
  /* font sizes */
  --fs-h1xl: 5rem;
  --fs-h1: 3.815rem;
  --fs-h2: 3.052rem;
  --fs-h3: 2.441rem;
  --fs-h4: 1.953rem;
  --fs-h5: 1.563rem;
  --fs-h6: 1.25rem;
  --fs-lead: 1.25rem;
  --fs-body: 1.1rem;
  --fs-small: 0.95rem;
  --fs-caption: 0.875rem;
  --fs-overline: 0.75rem;
  --fs-micro: 0.6875rem;

  /* families */
  --font-body: "Clash Grotesk", Arial, sans-serif;
  --font-heading: "Clash Grotesk", Arial, sans-serif;
    --font-serif-condensed: "span-compressed", serif;

  /* weights */
  --fw-extralight: 200;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* line-heights (unitless) */
  --lh-tight: 1.1;
  --lh-snug: 1.2;
  --lh-normal: 1.65;
  --lh-loose: 1.75;

  /* spacing */
  --space-xxs: .25rem;  /* 4px  */
  --space-xs:  .5rem;   /* 8px  */
  --space-s:   .75rem;  /* 12px */
  --space-m:   1rem;    /* 16px */
  --space-l:   1.5rem;  /* 24px */
  --space-xl:  2rem;    /* 32px */
  --space-xxl: 3rem;    /* 48px */
  --space-xxxl:4rem;    /* 64px */
  --space-huge:5rem;    /* 80px */
  --space-mega:6rem;    /* 96px */
  --space-giga:7.5rem;  /* 120px */

  /* colours */
  --council-white: #f9f9f9;
  --council-full-white: #ffffff;
  --council-cream: #eceae7;
  --council-orange: #e8664a;
  --council-green: #163c39;
}


/* 3) Base */
html { font-synthesis-weight: none; }
html{
    scroll-behavior: smooth;
}
body{
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.95rem + 0.25vw, var(--fs-body)); /* your fluid body size */
  line-height: var(--lh-normal);
  font-weight: var(--fw-regular);
  color: #111;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Optional wrapper for long-form content */
.prose{ max-width: 65ch; }

/* Reset default heading margins; you can reapply per component */
:where(h1,h2,h3,h4,h5,h6){ margin: 0 0 var(--space-m); font-family: var(--font-heading); }

/* 4) Headings (with gentle fluid scaling so mobile isn’t overwhelmed) */
h1 { font-size: clamp(2rem, 1rem + 3vw, var(--fs-h1)); line-height: var(--lh-tight); font-weight: var(--fw-bold); }
h2 { font-size: clamp(1.75rem, 1.1rem + 2.4vw, var(--fs-h2)); line-height: var(--lh-tight); font-weight: var(--fw-bold); }
h3 { font-size: clamp(1.5rem, 1rem + 1.8vw, var(--fs-h3)); line-height: var(--lh-tight); font-weight: var(--fw-bold); }
h4 { font-size: clamp(1.25rem, 1rem + 1vw,  var(--fs-h4)); line-height: var(--lh-snug);  font-weight: var(--fw-semibold); }
h5 { font-size: var(--fs-h5); line-height: var(--lh-snug); font-weight: var(--fw-semibold); }
h6 { font-size: var(--fs-h6); line-height: var(--lh-snug); font-weight: var(--fw-semibold); }

body{
    margin: 0px;
}

/* =========================
   FLUID TYPOGRAPHY UTILITIES
   ========================= */

/* Display / Headings */
.is--h1xl {
  font-size: clamp(2.5rem, 1.5rem + 4vw, var(--fs-h1xl));
  line-height: var(--lh-tight);
  font-weight: var(--fw-bold);
  font-family: var(--font-heading);
}

.is--h1 {
  font-size: clamp(2rem, 1.25rem + 2.5vw, var(--fs-h1));
  line-height: var(--lh-tight);
  font-weight: var(--fw-bold);
  font-family: var(--font-heading);
}

.is--h2 {
  font-size: clamp(1.75rem, 1.1rem + 2vw, var(--fs-h2));
  line-height: var(--lh-tight);
  font-weight: var(--fw-bold);
  font-family: var(--font-heading);
}

.is--h3 {
  font-size: clamp(1.5rem, 1rem + 1.5vw, var(--fs-h3));
  line-height: var(--lh-tight);
  font-weight: var(--fw-bold);
  font-family: var(--font-heading);
}

.is--h4 {
  font-size: clamp(1.25rem, 1rem + 1vw, var(--fs-h4));
  line-height: var(--lh-snug);
  font-weight: var(--fw-semibold);
  font-family: var(--font-heading);
}

.is--h5 {
  font-size: clamp(1.1rem, 0.95rem + 0.5vw, var(--fs-h5));
  line-height: var(--lh-snug);
  font-weight: var(--fw-semibold);
  font-family: var(--font-heading);
}

.is--h6 {
  font-size: clamp(1rem, 0.9rem + 0.25vw, var(--fs-h6));
  line-height: var(--lh-snug);
  font-weight: var(--fw-semibold);
  font-family: var(--font-heading);
}

/* Body */
.is--body {
  font-size: clamp(1rem, 0.95rem + 0.25vw, var(--fs-body));
  line-height: var(--lh-normal);
  font-weight: var(--fw-regular);
  font-family: var(--font-body);
  color: #111;
}

/* Lead paragraph */
.is--lead {
  font-size: clamp(1.1rem, 1rem + 0.5vw, var(--fs-lead));
  line-height: var(--lh-loose);
  font-weight: var(--fw-regular);
  font-family: var(--font-body);
}

/* Small */
.is--small {
  font-size: clamp(0.85rem, 0.8rem + 0.25vw, var(--fs-small));
  line-height: var(--lh-normal);
  font-weight: var(--fw-regular);
  font-family: var(--font-body);
}

/* Caption */
.is--caption {
  font-size: clamp(0.8rem, 0.75rem + 0.2vw, var(--fs-caption));
  line-height: 1.4;
  font-weight: var(--fw-regular);
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  color: #555;
}

/* Overline */
.is--overline {
  font-size: clamp(0.7rem, 0.65rem + 0.15vw, var(--fs-overline));
  line-height: 1.3;
  font-weight: var(--fw-semibold);
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Micro */
.is--micro {
  font-size: clamp(0.65rem, 0.6rem + 0.1vw, var(--fs-micro));
  line-height: 1.3;
  font-weight: var(--fw-regular);
  font-family: var(--font-body);
}



/* =========================
   FONT WEIGHT UTILITIES
   ========================= */
.fw-extralight { font-weight: var(--fw-extralight); }
.fw-light      { font-weight: var(--fw-light); }
.fw-regular    { font-weight: var(--fw-regular); }
.fw-medium     { font-weight: var(--fw-medium); }
.fw-semibold   { font-weight: var(--fw-semibold); }
.fw-bold       { font-weight: var(--fw-bold); }

/* =========================
   LINE HEIGHT UTILITIES
   ========================= */
.lh-tight  { line-height: var(--lh-tight); }
.lh-snug   { line-height: var(--lh-snug); }
.lh-normal { line-height: var(--lh-normal); }
.lh-loose  { line-height: var(--lh-loose); }


/* =========================
   SPACING UTILITIES
   ========================= */
/* Margin */
.m-xxs { margin: var(--space-xxs); }
.m-xs  { margin: var(--space-xs); }
.m-s   { margin: var(--space-s); }
.m-m   { margin: var(--space-m); }
.m-l   { margin: var(--space-l); }
.m-xl  { margin: var(--space-xl); }
.m-xxl { margin: var(--space-xxl); }
.m-xxxl{ margin: var(--space-xxxl); }
.m-huge{ margin: var(--space-huge); }
.m-mega{ margin: var(--space-mega); }
.m-giga{ margin: var(--space-giga); }

/* Padding */
.p-xxs { padding: var(--space-xxs); }
.p-xs  { padding: var(--space-xs); }
.p-s   { padding: var(--space-s); }
.p-m   { padding: var(--space-m); }
.p-l   { padding: var(--space-l); }
.p-xl  { padding: var(--space-xl); }
.p-xxl { padding: var(--space-xxl); }
.p-xxxl{ padding: var(--space-xxxl); }
.p-huge{ padding: var(--space-huge); }
.p-mega{ padding: var(--space-mega); }
.p-giga{ padding: var(--space-giga); }

/* Gap (for flex/grid) */
.gap-xxs { gap: var(--space-xxs); }
.gap-xs  { gap: var(--space-xs); }
.gap-s   { gap: var(--space-s); }
.gap-m   { gap: var(--space-m); }
.gap-l   { gap: var(--space-l); }
.gap-xl  { gap: var(--space-xl); }
.gap-xxl { gap: var(--space-xxl); }
.gap-xxxl{ gap: var(--space-xxxl); }
.gap-huge{ gap: var(--space-huge); }
.gap-mega{ gap: var(--space-mega); }
.gap-giga{ gap: var(--space-giga); }


/* Main Typography stylings */
.is--body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.95rem + 0.25vw, var(--fs-body));
  line-height: var(--lh-normal);
  font-weight: var(--fw-regular);
  color: #111;
}

a{
    text-decoration: none;
}

/* =========================
   COLOUR UTILITIES
   ========================= */
/* Backgrounds */
.bg-council-white      { background-color: var(--council-white); }
.bg-council-full-white { background-color: var(--council-full-white); }
.bg-council-cream      { background-color: var(--council-cream); }
.bg-council-orange     { background-color: var(--council-orange); }
.bg-council-green      { background-color: var(--council-green); }

/* Text */
.text-council-white      { color: var(--council-white); }
.text-council-full-white { color: var(--council-full-white); }
.text-council-cream      { color: var(--council-cream); }
.text-council-orange     { color: var(--council-orange); }
.text-council-green      { color: var(--council-green); }

/* =========================
   Horizontal padding (left + right)
   ========================= */
.px-xxs { padding-left: var(--space-xxs); padding-right: var(--space-xxs); }
.px-xs  { padding-left: var(--space-xs);  padding-right: var(--space-xs); }
.px-s   { padding-left: var(--space-s);   padding-right: var(--space-s); }
.px-m   { padding-left: var(--space-m);   padding-right: var(--space-m); }
.px-l   { padding-left: var(--space-l);   padding-right: var(--space-l); }
.px-xl  { padding-left: var(--space-xl);  padding-right: var(--space-xl); }
.px-xxl { padding-left: var(--space-xxl); padding-right: var(--space-xxl); }
.px-xxxl{ padding-left: var(--space-xxxl);padding-right: var(--space-xxxl); }
.px-huge{ padding-left: var(--space-huge);padding-right: var(--space-huge); }
.px-mega{ padding-left: var(--space-mega);padding-right: var(--space-mega); }
.px-giga{ padding-left: var(--space-giga);padding-right: var(--space-giga); }


/* =========================
    Navbar CSS
   ========================= */

.announcement-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -ms-flex-line-pack: center;
        align-content: center;
    justify-content: space-between;
    min-height: 40px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.button-arrow-container{
    background-color: var(--council-cream);
    border-radius: 8px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: var(--space-l);
    height: var(--space-l);
    margin-left: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}


/* ========================
   DROPDOWNS
   ======================== */
.nav-dropdown {
  position: relative;
    padding: var(--space-xs) var(--space-s);
}

.dropdown-toggle button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25em;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--council-green);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: var(--space-s);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  min-width: 200px;
  z-index: 100;
}

.dropdown-content[hidden] {
  display: none;
}

/* CTA button */
.nav-button {
  padding: var(--space-xxs) var(--space-m);
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  margin-left: var(--space-m);
  transition: background 0.3s;
  display: -webkit-box;
display: -ms-flexbox;
display: flex;
    border-radius: 12px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;

}
.nav-button:hover,
.nav-button:focus {
  background: #cf5338; /* darken orange */
}

.brand-logo{
    width: 33px;
    height: auto;
}

.nav-dropdown .dropdown-toggle button {
  position: relative;
  padding-right: 1.5em; /* make space for arrow */
  font-weight: 500;
}

.nav-menu > .nav-dropdown .dropdown-toggle button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.5em;
  width: 0.3em;
  height: 0.3em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
  transition: transform 0.2s ease;
}

.is--body.fw-regular.space-between{
        display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-right: 0px;
}

.service-dropdown-button{
    border-radius: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 48px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
        background-color: var(--council-orange);
}
.service-dropdown-button::after {
    content: "";
  position: relative;
  width: 0.5em;
color: var(--council-white);
  height: 0.5em;
  top: 5%;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
  transition: transform 0.2s ease;  
}

.pre-footer-imgcontainer{
z-index: 1;
    width: 69%;
    height: auto;
    position: absolute;
    inset: 0% 0% 0% auto;
}
.footer-background{
        background-color: #0e0e0e;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    overflow: hidden;
    padding-top: var(--space-giga);
    padding-bottom: var(--space-giga);
}
.pre-footer-txtcontainer{
    z-index: 10;
    grid-column-gap: var(--space-s);
    grid-row-gap: var(--space-s);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 40ch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}
#footer-p{
    font-weight: 500;
}
.footer-main{
    background-color: #0e0e0e;
    padding-bottom: var(--space-xl);

    position: relative;
    margin-top: -4px;
}
.footer-cicrle{
z-index: 2;
    background-color: #0e0e0e;
    border-radius: 1000px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: var(--space-giga);
    height: var(--space-giga);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 102;
}
.brand-logo.footer{
    width: 70px;
}
.line.footer{
    margin-top: var(--space-l);
    margin-bottom: var(--space-l);
    background-color: #0e0e0e;
    width: 100%;
    height: 1px;
}
.footer-list{
    grid-column-gap: var(--space-xs);
    grid-row-gap: var(--space-xs);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 24%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.is--body.footer{
    font-weight: 500;
    color: #000000a1;
}
.footer-nav{
        margin-bottom: var(--space-xl);
        -webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.nav-button.bg-council-orange.no-mar{
    margin-left: 0px;
}
.footer-bottom{
    padding-top: var(--space-huge);
    padding-bottom: var(--space-l);
    z-index: 101;
    background-color: var(--council-white);
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: auto;
    height: auto;
    margin-top: -94px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}
.footerdivide{
    -webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer-image-overlay {
    z-index: 2;
    background-image: -o-linear-gradient(bottom, #0e0e0e 4%, #0e0e0e00 30%), -o-linear-gradient(351deg, #0e0e0e 3%, #1a1a1a00 60%);
    background-image: linear-gradient(0deg, #0e0e0e 4%, #0e0e0e00 30%), linear-gradient(99deg, #0e0e0e 3%, #1a1a1a00 60%);
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
}
.cover-img{
        -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
    width: 100%;
    max-width: none;
    height: 100%;
    position: absolute;
    inset: 0%;
    overflow: clip;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.125rem; /* instead of 18px */
  color: var(--council-white);
  font-weight: 500;
  line-height: var(--lh-tight);
  margin-left: var(--space-s);
}
.brand {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: start;
    -ms-flex-pack: start;
        justify-content: flex-start;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
    -ms-flex-direction: row;
        flex-direction: row;
            -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.navbar-main {
  position: absolute;   /* or fixed */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100000; /* higher than WP admin bar */
}

.main-navbar{
    padding-top: var(--space-m);
    padding-bottom: var(--space-m);
        border-bottom: 1px solid #f4f4f454;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.nav-menu {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
    -ms-flex-direction: row;
        flex-direction: row;
}

/* ========================
   HERO HOMEPAGE
   ======================== */

.hero-section{
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
    width: 100%;
    height: auto;
    min-height: 93vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    overflow: hidden;
}

.hero-cover {
    z-index: 5;
    padding-top: 305px;
    padding-bottom: var(--space-xxl);
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(6%, #000000a8), color-stop(38%, #0000)), -webkit-gradient(linear, left top, left bottom, color-stop(4%, #000000b8), color-stop(27%, #0000)), -webkit-gradient(linear, left top, left bottom, color-stop(6%, #000), color-stop(32%, #0000));
    background-image: -o-linear-gradient(bottom, #000000a8 6%, #0000 38%), -o-linear-gradient(#000000b8 4%, #0000 27%), -o-linear-gradient(#000 6%, #0000 32%);
    background-image: linear-gradient(0deg, #000000a8 6%, #0000 38%), linear-gradient(#000000b8 4%, #0000 27%), linear-gradient(#000 6%, #0000 32%);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.hero-cover-img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
    width: 100%;
    max-width: none;
    height: 100%;
    position: absolute;
    inset: 0%;
    overflow: clip;
}

#hero-title{
    margin-bottom: var(--space-s);
}

#hero-sub{
    margin-top: 0px;
    margin-bottom: var(--space-m);
}

.hero-cta-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: var(--space-s);
    margin-bottom: 0px;
    padding: 0px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    grid-column-gap: var(--space-l);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
            list-style: none;
            align-items: center;
}
.button-primary{
    display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
    -ms-flex-direction: row;
        flex-direction: row;
-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
            background-color: #f9f9f9;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    padding: 4px 4px 4px 18px;
    display: flex;
    color: black;
    font-weight: 500;
    font-size: 1rem;
}

.button-secondary {
    color: #e8e8e8;
    background-color: #3898ec00;
    border: 2px solid #f7f7f7;
    border-radius: 10px;
    font-size: 1rem;
    padding: 10px 1rem;
    font-weight: 500;
}


.button-arrow-img{
    width: 8px;
    height: auto;
}

.button-arrow{
border-radius: 10px;
    width: 33px;
    height: 33px;
        margin-left: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
                background-color: #1b1a19;
}

.hero-span{
    font-family: var(--font-serif-condensed);
}

.no-drop{
    padding: var(--space-xs) var(--space-s);
    font-weight: 500;
}

#services-title{
    width: 43%;
}

.col-50 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

#service-section{
    padding-top: var(--space-giga);
    padding-bottom: var(--space-giga);
}
.is--op{
    color: #000000a1;
}
.event-div.event-div--noimg.gap-m{
    row-gap: var(--space-l);
}

.service-dropdown-container{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-flex: 0;
        -ms-flex: 0 auto;
            flex: 0 auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    width: 48%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.service-dropdown.nav-dropdown{
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 21px;
    display: flex;
        border: 2px solid #000;
    border-radius: 10px;
}
.archive{
    background-color: var(--council-cream);
}
.dropdown-toggle{
width: 100%;
}

.archive-arrow{
    width: 38px;
    height: auto;
    margin-left: var(--space-m);
}

.nav-dropdown .dropdown-toggle button{
    width: 100%;
}

.char-20{
    max-width: 24ch;
}

.trail-step{
    margin-top: var(--space-m);
    margin-bottom: var(--space-xxl);
}

.single-img{
    position: relative;
    height: 400px;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: var(--space-xxl);
}

.single-hero {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    padding-top: 196px;
    padding-bottom: var(--space-xxxl);
    background-color: #eceae7;
    min-height: 72vh;
}

#single-hero-title{
    max-width: 15ch;
}

.breadcrumb-container{
    width: 100%;
    margin-top: var(--space-m);
    border-top: 1px solid black;
    padding-top: var(--space-s);
}

/* container */
.breadcrumb-container { color: var(--council-green); }

/* list reset + layout */
.breadcrumb-list{
  list-style: none;               /* removes 1., 2., 3. */
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;                /* wrap nicely on small screens */
  align-items: center;
  gap: var(--space-xs);           /* base gap between items */
}

/* items */
.breadcrumb-list > li{
  display: inline-flex;
  align-items: center;
  gap: var(--space-xxs);
  white-space: nowrap;            /* keep each crumb together */
}

/* separator before every item except the first */
.breadcrumb-list > li + li::before{
  content: "›";                   /* use ">" if you prefer */
  opacity: .6;
  margin: 0 var(--space-xxs);
}

/* links */
.breadcrumb-list a{
  color: var(--council-green);
  text-decoration: none;
}
.breadcrumb-list a:hover,
.breadcrumb-list a:focus{
  text-decoration: underline;
}

/* current page crumb */
.breadcrumb-list [aria-current="page"] > span{
  font-weight: var(--fw-medium);
}

/* optional: RTL support (swap the separator) */
:root:dir(rtl) .breadcrumb-list > li + li::before { content: "‹"; }

/* optional: truncate very long final titles */
.breadcrumb-list [aria-current="page"] {
  max-width: 50ch;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tab-divider{
    width: auto;
    height: 40px;
    margin-left: -2px;
}

.article-tab{
    padding-right: var(--space-s);
    padding-left: var(--space-huge);
    background-color: var(--council-white);
    border-top-left-radius: 30px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.article-tab-maincontainer{
        z-index: 1;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: -1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.single-content{
    height: 100vh;
}

.wp-singular{
    background-color: var(--council-cream);
}

.single-content{
        padding: var(--space-huge) var(--space-huge) var(--space-xxxl) var(--space-huge);
    background-color: #f9f9f9;
    border-top-right-radius: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: 0 -8px 20px #0000000f;
            box-shadow: 0 -8px 20px #0000000f;
}

.single-content-inner{
    padding-bottom: var(--space-m);
    grid-column-gap: var(--space-xl);
    grid-row-gap: var(--space-xl);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    display: flex;
    flex-flow: row;
}

.utility-img{
        position: relative;
    height: 400px;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: var(--space-xxl);
}
.trail-toc{
        display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.event-img{
    position: relative;
    border-radius: 10px;
    width: 100%;
    height: 200px;
    display: block;
    overflow: hidden;
}

.grid--3 {
    grid-auto-columns: 1fr;
    display: -ms-grid;
    display: grid;
-webkit-box-flex: 1;
    -ms-flex: 1;
        flex: 1;
    grid-column-gap: var(--space-xxl);
    margin-top: var(--space-xxl);
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -ms-grid-columns: 1fr var(--space-xxl) 1fr var(--space-xxl) 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
grid-row-gap: var(--space-mega);
}.grid--3 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}.grid--3 > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}.grid--3 > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
}

.event-div{
    border-top: 1.5px solid var(--council-green);
        padding-top: var(--space-m);
    grid-column-gap: var(--space-s);
    grid-row-gap: var(--space-s);
    -webkit-box-orient: vertical;
-webkit-box-direction: normal;
    -ms-flex-flow: column;
        flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}



.is--h5 > a {
    color: black;
}

article > .is--h5{
    font-weight: 500;
}

.no-margin{
    margin: 0px;
}

.trail-toc > a{
    color: black;
}

.utility-img img{
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    width: 100%;
    max-width: none;
    height: 100%;
    position: absolute;
    inset: 0%;
    overflow: clip;
}

.serif{
    font-family: var(--font-serif-condensed);
    font-style: italic;
}
.sticky-container {
padding: var(--space-m);
    border: 1px solid #0003;
    border-radius: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 410px;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: sticky;
    top: 16px;
    -webkit-box-shadow: 0 2px 11px #0000000f;
            box-shadow: 0 2px 11px #0000000f;
}
.all-container {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
    -ms-flex-flow: column;
        flex-flow: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-column-gap: var(--space-l);
    grid-row-gap: var(--space-l);
    width: 100%;
}

.single-content.councillors{
    padding: var(--space-huge);
}

.archive-block {
    background-color: #fff;
    border: 1px solid #00000024;
    border-radius: 30px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: auto;
    padding: var(--space-xl) var(--space-l);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    overflow: hidden;
    color: black;
}

.archive-top {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.tag {
    color: #000;
    border: 1px solid #000;
    border-radius: 100px;
    margin-right: 20px;
padding: var(--space-xs) var(--space-m);
font-size: 1rem;
line-height: 120%;
}
.archive-left {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
}
.archive-right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 105px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.single-text{
    flex: 1;
    padding-right: var(--space-xxxl);
}
.sticky-line{
        margin-top: var(--space-s);
    margin-bottom: var(--space-s);
    background-color: #00000026;
    width: 100%;
    height: 1px;
}

/* Base: hide the toggle on wide screens */
.nav-toggle { display: none; }

/* The 3 bars inside the hamburger */
.nav-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.5rem;
  inline-size: 44px; block-size: 44px; /* good tap target */
  display: grid; place-content: center;
}
.nav-toggle__bar {
  display: block;
  inline-size: 22px;
  block-size: 2px;
  background: currentColor;
  margin-block: 3px;
}

/* Overlay (hidden by default via [hidden]) */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
  z-index: 98;
}

.img-icon{
        width: var(--space-xxl);
    height: var(--space-xxl);
    border-radius: 100px;
    overflow: hidden;
position: relative
}

.favicon{
    width: 100%;

}

.author-image {
    margin-top: var(--space-s);
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.author-info{
    margin-left: var(--space-m);
}

.no-mar{
    margin: 0px;
}

.single-article-button{
     border-bottom: 2px solid #f9f9f9;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: var(--space-xs);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.button-article{
    width: 11px;
    height: auto;
    margin-left: var(--space-s);
}
.buttons-container {
margin-top: var(--space-xxxl);
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    background-color: #0000004f;
    border-radius: 16px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 16px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: 0 2px 11px 1px #00000029;
            box-shadow: 0 2px 11px 1px #00000029;
}
.home{
    background-color: var(--council-white);
}
.nav-button.bg-council-orange.no-left-mar{
    margin-left: 0px;
}

.m-top{
    margin-top: var(--space-l);
}

.wp-block-group.utility-item{
    margin-bottom: var(--space-huge);
}

/* Base grid container (shared) */
.grid {
  display: grid;
  gap: var(--space-s);
}

/* Two-column version */
.grid--2 {
  grid-template-columns: 1fr; /* mobile first */
}

.grid.grid--2{
        grid-column-gap: var(--space-huge);
    grid-row-gap: var(--space-huge);
}
.is--small.fw-medium.is--black.label{
    margin-top: 0px;
    margin-bottom: 0px;
}
.is--body.fw-medium.filter{
    margin-bottom: var(--space-l);
}
@media (min-width: 860px) {
  .grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.sticky-container.is--white{
    background-color: var(--council-white);
    padding: var(--space-l);
}

.is--black{
    color: black;
}
/* Ensure the cards look like councillors cards even on colored sections */
.event-div {
  background: var(--white);
  border-top: 1.5px solid var(--council-green);
  padding-top: var(--space-m);
  display: flex;
  flex-direction: column;
  row-gap: var(--space-s);
}



.is--white{
    color: var(--council-white);
}
/* If a card has no image block, keep spacing consistent */
.event-div--noimg .event-img { display: none; }

.is--h3.fw-medium.is--white.center{
    text-align: center;
}
.fw-medium.flex{
display: -webkit-box;
display: -ms-flexbox;
display: flex
}
.is--h5.fw-medium.is--white{
    max-width: 40ch;
    text-align: center;
}

.nav-drawer-header{
    display: none;
}
.article-tab.bg-council-green{
    background-color: var(--council-green);
}

.is--h5.no-margin.is--white{
    margin-bottom: var(--space-l);
}

.is--h5.fw-medium.is--white{
    color: var(--council-white);
}
.event-div.event-div--noimg.white{
        border-top: 1.5px solid var(--council-white);
}
.is--h5.no-margin.is--white > a{
    color: var(--council-white);
}
.grid--3.margin-top{
    margin-top: var(--space-xxxl);
}
.single-content.bg-council-green{
    background-color: var(--council-green);
}

.padding-all{
    padding-top: var(--space-mega);
    padding-bottom: var(--space-mega);
}
.span-serif{
    font-family: var(--font-serif-condensed);
}
.is--small.fw-medium.is--black{
    font-weight: 500;
    margin-top: var(--space-s);
    margin-bottom: var(--space-xl);
}

.page-id-416 .sticky-container {
  display: none !important;
}

/* Make hamburger black on light header variant */
.navbar--light .nav-toggle {
  color: var(--council-black, #000);
}

.navbar--light .nav-toggle__bar {
  background-color: var(--council-black, #000);
}

/* Optional: ensure transition stays smooth */
.nav-toggle__bar {
  transition: background-color 0.3s ease;
}
.single-content.bg-council-orange{
    background-color: var(--council-orange);
}

.article-tab.bg-council-orange{
    background-color: var(--council-orange);
}

.home > .site-footer{
    background-color: var(--council-orange);
}

/* Inline language links in the announcement bar */
.announcement-links .lang-inline{
  display:inline-flex;
  align-items:center;
  gap: var(--space-xxs);
}
.announcement-links .lang-inline .lang-link{
  color: var(--council-white);
  text-decoration: none;
}
.announcement-links .lang-inline .lang-link.is-active{
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.announcement-links .lang-inline .lang-sep{
  opacity:.8;
}

/* Announcement bar language links */
.lang-inline { display:flex; gap:.75rem; align-items:center; }
.lang-inline .lang-link {
  color: var(--council-full-white);
  text-decoration: none;
  font: inherit;
  line-height: 1;
}
.lang-inline .lang-link.is-active { text-decoration: underline; }
.navbar--light .lang-inline .lang-link { color:#111; }           /* if you want black on the light bar */
.navbar--light .lang-inline .lang-link.is-active { text-decoration: underline; }

.text-container-community > .is--body.text-council-white.is-center{
    max-width: 50ch;
    text-align: center
;
}

/* Default (homepage) stays as-is because your markup uses text-council-white */

/* Non-home pages: switch nav text to black, keep CTA white */
.navbar-main.navbar--light .brand-text { color: #111; }

.navbar-main.navbar--light .nav-menu > a.text-council-white,
.navbar-main.navbar--light .nav-dropdown .dropdown-toggle .text-council-white {
  color: #111;
}

/* Keep CTA text white on orange even in light variant */
.navbar-main.navbar--light .nav-button .text-council-white { color: var(--council-full-white); }

/* Dropdown caret uses currentColor, so it will follow black automatically */

/* If your dropdown panels need darker links on light header, uncomment:
.navbar-main.navbar--light .dropdown-content a { color: #111; }
*/

.nav-toggle{
    display: none;
}





@media (min-width: 1281px) {
  .nav-menu .dropdown-content {
    display: none;
  }
  .nav-menu .nav-dropdown:hover .dropdown-content,
  .nav-menu .nav-dropdown:focus-within .dropdown-content {
    display: flex;
  }

}

/* ===== Ultra-wide layout: 1920px+ ===== */
@media (min-width: 1920px) {
  /* Global tunables */
  :root {
    /* Wider but still readable */
    --container-max: 1440px; /* 1600px if your hero images are big enough */
    /* Gentle type bump at the top end of your existing fluid scale */
    --base-max: 20px; /* was ~18px; keeps body comfortable on UW screens */

    /* Optional: slightly roomier spacing scale at this tier */
    --space-xl: 2.5rem;
    --space-2xl: 3.5rem;
    --space-3xl: 5rem;
  }

  /* Utility: keep copy to a readable measure anywhere */
  .measure { max-width: 70ch; }

  /* Header / primary nav */
  .site-header .menu--primary {
    gap: clamp(1.25rem, 2vw, 3rem);
  }

  /* Hero */
  .hero-cover {
    /* More air without going comically tall */
    min-height: 82vh;
    padding-block: clamp(180px, 16vh, 280px) clamp(80px, 12vh, 160px);
    background-size: cover; /* safety on huge screens */
  }
  .hero-cover .hero__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* text + visual */
    align-items: center;
    gap: clamp(2rem, 4vw, 6rem);
  }
  .hero-cover .hero__title {
    /* Local bump—safer than global h1 blow-ups */
    font-size: clamp(3rem, 3.5vw, 4.5rem);
    line-height: 1.05;
  }
  .hero-cover .hero__body {
    font-size: clamp(1.125rem, 1.2vw, 1.375rem);
    max-width: 70ch;
  }
  .hero-cover .hero__img { max-width: 1100px; }

  /* Grids */
  .grid--3 { 
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(2rem, 2vw, 3rem);
  }
  /* Archives often benefit from a 4th column at UW */
  .archive-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

  /* Cards & content blocks */
  .card { padding: clamp(1.25rem, 1.2vw, 2rem); }

  /* Single layout with sidebar */
  .single-content, .single-content-inner {
    /* If you're using a 2-col content layout, give it more space */
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(2rem, 3vw, 4rem);
  }
  .sticky-container { top: 120px; } /* keeps the sidebar clear of the header */

  /* Tables remain readable */
  .table { font-size: 1rem; }
  .table th, .table td { padding: 1rem 1.25rem; }

  /* Footer: add a column / spacing if you have 3+ lists */
  .site-footer .footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr; /* brand + 3 lists */
    gap: clamp(2rem, 2.5vw, 4rem);
  }

    body{
    font-size: 1vw;
  }
  .single-hero{
    padding-top: 12.5em;
    padding-bottom: 4em;
  }

.is--small{
font-size: 1em;
}

  .single-content{
    padding: var(--space-giga);
  }
    .is--h1{
    font-size: 3.2em;
  }
  
  .is--h5{
    font-size: 1.4em;
  }
  
#single-hero-title{
    margin-bottom: 0.5em;
}

.breadcrumb-container{
    margin-top: 1em;
    padding-top: 0.8em;
}
.px-huge{
    padding-left: 5em;
    padding-right: 5em;
}

.brand-logo{
    width: 2em;
}
.brand-text{
    font-size: 1.2em;
    margin-left: 0.5em;
}

.main-navbar{
    padding-top: 1em;
    padding-bottom: 1em;
}

.dropdown-toggle button{
    font-size: 1em;
}
.navbar-main.navbar--light .nav-button .text-council-white{
    font-size: 1em;
}
.dropdown-content{
    padding: 1em;
    gap: 1.2em;
}
.is--caption{
    font-size: 0.8em;
}
.button-arrow-container{
    margin-left: 0.5em;
    width: 1.2em;
    height: 1.2em
}
.button-arrow-img{
    width: 0.35em;
}
.is--body{
    font-size: 1em;
}
.announcement-links{
    min-height: 2.2em;
}
.article-tab{
    height: 2.6em;
    padding-left: 5em;
        border-top-left-radius: 1.1em;
}
.tab-divider{
    height: 2.5em;
}
.single-content{
    padding: 5em;
}
.single-text{
    padding-right: 4em;
}

.sticky-container{
    width: 25em;
    padding: 1.2em;
}
.sticky-line{
    margin-top: 0.8em;
    margin-bottom: 0.8em;
}
.buttons-container{
    padding: 1em 2em;
    grid-column-gap: 2.2em;
}
.nav-button{
padding: 0.3em 0.5em;
border-radius: 0.5em;
}
.is--h2{
    font-size: 2.4em;
}
.footer-cicrle{
    width: 7em;
    height: 7em;
}
.brand-logo.footer{
    width: 3em;
}
.footer-background{
    padding-top: 5em;
    padding-bottom: 5em;
        border-top-left-radius: 2em;
    border-top-right-radius: 2em;
}
.is-body.fw-medium{
    font-size: 1.1em;
}
.footer-bottom{
    margin-top: -3.2em;
            border-top-left-radius: 2em;
    border-top-right-radius: 2em;
    padding-top: 5em;
    padding-bottom: 2.5em;
}
.footer-list{
    grid-row-gap: 0.85em;
}
.is--h4{
    font-size: 1.9em;
}
.is--h3{
    font-size: 1.9em;
}

.single-content.councillors{
    padding: 5em;
}
.grid--3{
    gap: 6em;
}
.single-text > .is-body.fw-medium{
margin-top: 2em;
}


.utility-img{
    height: 20em;
    border-radius: 1em;
}
.event-img{
    height: 14em;
    border-radius: 0.7em;
}
.event-div{
    padding-top: 0.8em;
        border-top: 0.06em solid var(--council-green);
    row-gap: 0.75em;
}
.single-img{
      height: 20em;
    border-radius: 1em;  
}
.wp-block-group.utility-item{
    margin-bottom: 5em;
}
.archive-block{
        padding: 2em 1.5em;
        border-radius: 1em;
}
.archive-left{
    grid-row-gap: 1.5em;
}
.tag{
    padding: 0.5em 1em;
    font-size: 1em;
}
.line.footer{
    height: 0.025em;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}
.is--h6{
    font-size: 1.25em;
}
.button-article{
    width: 0.5em;
    margin-left: 0.8em;
}
.author-image{
    margin-top: 1em;
}
.author-info{
    margin-left: 0.8em;
}

.img-icon{
    width: 3em;
    height: 3em;
}
}

/* Drawer styles (mobile) — 50% min width + centered text */
@media (max-width: 1280px) {
  .main-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Show the hamburger */
  .nav-toggle {
    display: inline-grid;
    color: var(--council-white, #fff);
  }

  /* Off-canvas drawer */
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    block-size: 100dvh;
    inline-size: 50vw;          /* at least half the screen */
    min-inline-size: 50vw;
    background: #000;           /* adjust to your token if needed */
    z-index: 99;
    transform: translateX(-100%);
    transition: transform 300ms ease;
    display: flex;
    flex-direction: column;
    align-items: center;        /* center children horizontally */
    text-align: center;         /* center text */
    padding: 1.25rem;
    overflow: auto;
  }

  /* Full-width, centered interactives inside the drawer */
  .nav-menu .dropdown-toggle > button,
  .nav-menu a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    inline-size: 100%;
  }

  /* Spacing for items */
  .nav-menu .nav-dropdown,
  .nav-menu > a.nav-button {
    margin-block: 0.5rem;
  }

  /* Submenus: stacked and centered */
  .nav-menu .dropdown-content[hidden] { display: none !important; }
  .nav-menu .dropdown-content {
    display: grid;
    gap: 0.25rem;
    padding-left: 0;            /* remove left indent for true centering */
    margin-top: 0.25rem;
    justify-items: center;
    text-align: center;
  }

  /* When open */
  .navbar-main.is-open .nav-menu {
    transform: translateX(0);
  }
  .navbar-main.is-open .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  /* Prevent body scroll when menu is open */
  body.nav-lock {
    overflow: hidden;
    touch-action: none;
  }

  
}



/* Big screens ≥ 1920px: make it punchier */
@media (min-width: 1920px){
  .is--h1xl{
    font-size: clamp(3.6rem, 4vw, 6rem);
    line-height: 1.05;
  }
    .is--lead{
    /* modest lift on big screens */
    font-size: clamp(1.2rem, 1.2vw, 1.6rem);
    line-height: 1.45;
  }
  .button-secondary{
      font-size: 1.4rem;
    padding: 0.8rem 1rem;
  }
  .button-primary{
      font-size: 1.4rem;
    padding: 0.4rem 0.4rem 0.4rem 1rem;
  }
  .hero-cta-list{
      padding-top: var(--space-m);
  }
  
  .sticky-container.is--white{
      padding: var(--space-xl);
  }
  .single-content.bg-council-orange > .buttons-container{
          margin-top: 0px;
  }
  
}

/* Ultra-wide ≥ 2560px: a touch more, still capped */
@media (min-width: 2560px){
.is--h1xl{
    font-size: clamp(5rem, 4vw, 7.2rem);
  }
  .button-secondary{
    font-size: clamp(1.4rem, 1vw, 1.9rem);
    padding: 0.8rem 1rem;
  }  
  .button-primary{
    font-size: clamp(1.4rem, 1vw, 1.9rem);
    padding: 0.4rem 0.4rem 0.4rem 1rem;
  }
    .hero-cta-list{
      padding-top: var(--space-l);
  }
  
  .hero-cover{
    padding-top: clamp(180px, 16vh, 280px);
    padding-bottom: clamp(48px, 8vh, 120px);   /* was clamp(80px, 12vh, 160px) */
  }
    .is--lead{
    /* a touch more, still capped */
    font-size: clamp(1.3rem, 1.1vw, 1.8rem);
    line-height: 1.45;
  }
  .button-arrow{
    aspect-ratio: 1 / 1;
width: clamp(30px, 1.6vw, 40px);
    height: auto;               /* stays square via aspect-ratio */
    border-radius: 20%;
    display: inline-grid;
    place-items: center;
  }
  .button-arrow-img{
    width: 72%;
    height: 72%;
    object-fit: contain;
    display: block;
  }
}






/* Optional: improved contrast for home variant on mobile */
@media (max-width: 1280px) {
  .navbar--home .nav-menu { background: rgba(0,0,0,0.9); }
  .nav-menu .nav-dropdown .dropdown-content { display: none !important; }
  .nav-menu .nav-dropdown.is-open .dropdown-content { display: grid !important; }
}

/* Tablet tuning — scale big spacers + a few layout nudges */
@media (min-width: 700px) and (max-width: 1279px) {
  /* 1) Re-dial the LARGE spacing tokens (small ones stay the same) */
  :root {
    --space-xxl: 2.25rem;   /* was 3rem */
    --space-xxxl: 3rem;     /* was 4rem */
    --space-huge: 3rem;   /* was 5rem (80px) → now 48px */
    --space-mega: 4rem;   /* was 6rem (96px) → now 64px */
    --space-giga: 6rem;     /* was 7.5rem */
  }

  /* 2) Layout tweaks that benefit from a tablet opinion */
  .hero-section { min-height: 78vh; }
  .hero-cover   { padding-top: 22rem; padding-bottom: 2.5rem; }
  .single-hero  { min-height: 50vh; padding-top: 15rem; padding-bottom: 2.5rem; }

  /* 3) Grids: 3-up → 2-up on tablet for legibility */
  .grid--3 { 
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-xl);
  }

  /* 4) Sidebar card: make sure it fits nicely next to copy */
  .sticky-container { width: min(38vw, 16rem); top: 5rem; }

  /* 5) Media with fixed heights → scale via rem so tokens cascade */
  .single-img,
  .utility-img { height: 18rem; }
  .event-img   { height: 12rem; }

  /* 6) Keep readable line lengths on content pages */
  .single-content-inner { 
    max-width: 1100px; 
    margin-inline: auto; 
    gap: var(--space-xl);
  }
  .single-text{
    padding-right: 0px;
  }
  .brand-logo.footer{
    width: 48px;
  }
.footer-bottom{
    margin-top: -60px;
  }
 body,
  .is--body {
    font-size: clamp(0.875rem, 0.85rem + 0.25vw, 1rem); 
    /* min ~14px, grows gently, caps at ~16px */
  }
}


/* For tablet sizes */
@media (max-width: 769px) {
.navbar-main.navbar--light .nav-menu > a.text-council-white, .navbar-main.navbar--light .nav-dropdown .dropdown-toggle .text-council-white{
    color: white;
}

}

/* ===== Mobile: up to 699px ===== */
@media (max-width: 699px) {
  /* 1) Token tweaks: shrink only the big spacers so sections don’t feel bloated */
  :root{
    --space-xxl: 1.5rem;   /* was 3rem */
    --space-xxxl: 2rem;    /* was 4rem */
    --space-huge: 2.5rem;  /* was 5rem */
    --space-mega: 3rem;    /* was 6rem */
    --space-giga: 4rem;    /* was 7.5rem */
  }

  /* 2) Base type: slightly smaller, still fluid; utilities stay in sync */
  body,
  .is--body { font-size: clamp(0.9rem, 0.85rem + 0.35vw, 1rem); } /* ~14.4→16px */
  h1 { font-size: clamp(1.75rem, 1.2rem + 4vw, 2.25rem); }
  h2 { font-size: clamp(1.5rem, 1.1rem + 3vw, 1.9rem); }
  h3 { font-size: clamp(1.25rem, 1rem + 2.5vw, 1.6rem); }

  .is--h1 { font-size: clamp(1.75rem, 1.2rem + 4vw, 2.25rem); }
  .is--h2 { font-size: clamp(1.5rem, 1.1rem + 3vw, 1.9rem); }
  .is--h3 { font-size: clamp(1.25rem, 1rem + 2.5vw, 1.6rem); }
  .is--h4 { font-size: clamp(1.1rem, 0.95rem + 2vw, 1.35rem); }
  .is--small { font-size: 0.95rem; }
  .is--caption { font-size: 0.8rem; }

  /* 3) Section/container padding: tighten horizontal rhythm */
  .px-huge { padding-left: var(--space-l); padding-right: var(--space-l); }
  .single-content { padding: var(--space-giga) var(--space-l) var(--space-xxxl); }

  /* 4) Hero/single headers: reduce vertical bulk */
  .hero-section { min-height: 74vh; }
  .hero-cover   { padding-top: 17rem; padding-bottom: 3rem; min-height: 82vh;}
  .single-hero  { min-height: 68vh; padding-top: 11rem; padding-bottom: 2.2rem; }

  /* 5) Grid/layout: everything stacks cleanly */
  .grid--3 { grid-template-columns: 1fr; gap: var(--space-xl); }
  .grid--2 { grid-template-columns: 1fr; }
  .single-content-inner { flex-direction: column; gap: var(--space-xl); }

  /* 6) Sidebar/sticky cards: make them full-width and non-sticky on mobile */
  .sticky-container {
    position: static;
    width: 100%;
    top: auto;
    padding: var(--space-m);
  }

  /* 7) Media blocks: shorter heights to avoid scroll fatigue */
  .single-img,
  .utility-img { height: 16rem; }
  .event-img { height: 14rem; }

  /* 8) Archive cards: breathe a bit less horizontally */
  .archive-block { padding: var(--space-l) var(--space-m); }
  .archive-right { margin-left: 0; }

  /* 9) Breadcrumb/tab UI: compact + safe truncation */
  .breadcrumb-container { margin-top: var(--space-m); padding-top: var(--space-s); }
  .breadcrumb-list [aria-current="page"] { max-width: 35ch; }
  .article-tab { height: 2.25em; padding-left: var(--space-m); }
  .tab-divider { height: 2.25em; }

  /* 10) Filters: stack label/select; keep good tap targets */
  .filter { flex-direction: column; align-items: flex-start !important; gap: var(--space-xs) !important; }
  .filter .label { margin-right: 0; }
  .filter select { min-height: 44px; padding: 0.25rem 0.5rem; }

  /* 11) Navbar drawer: narrower screen → slightly wider drawer, comfy padding */
  .nav-toggle { display: inline-grid; } /* ensure visible on small screens */
  .nav-menu {
    inline-size: 85vw; /* override earlier 50vw for phones */
    padding: 1rem;
  }
  .nav-menu .nav-dropdown,
  .nav-menu > a.nav-button { margin-block: 0.4rem; }
  .nav-menu .dropdown-content { gap: 0.35rem; }

  /* 12) Buttons: keep targets finger-friendly */
  .button-primary,
  .button-secondary { font-size: 1rem; }

  /* 13) Misc tweaks from your classes that benefit on mobile */
  #services-title { width: 100%; }
  .brand-logo { width: 1.6rem; }
  .brand-text { font-size: 1rem; margin-left: var(--space-xs); }
  .announcement-links { min-height: 2rem; }

  .archive-right{
  position: absolute;
  top: var(--space-l);
  right: var(--space-m);
  }
.archive-arrow{
    width: 16px;
}
.article-tab{
border-top-left-radius: 20px;
}
.article-tab{
    padding-left: var(--space-l);
}
.sticky-container > .is--h5.fw-medium{
    margin-bottom: 0px;
}
.single-text{
    padding-right: 0px;
}
.footer-background{
        min-height: 58vh;
}
.hero-cover{
    background-image:linear-gradient(0deg, #000000a8 26%, #0000 58%), linear-gradient(#000000b8 4%, #0000 27%), linear-gradient(#000 6%, #0000 32%);
}
.nav-button.bg-council-orange{
    margin-left: 0px;
}
.footer-image-overlay{
        background-image: linear-gradient(0deg, #0e0e0e 4%, #0e0e0e00 30%), linear-gradient(99deg, #0e0e0e 11%, #1a1a1a00 60%);
}
.pre-footer-imgcontainer{
    width: 75%;
}
.pre-footer-txtcontainer{
    width: 33ch;
}
.brand-logo.footer{
    width: 31px;
}
.footer-bottom{
        margin-top: -64px;
}
.single-text{
    width: 100%;
}
.wp-block-group.utility-item{
    margin-bottom: var(--space-giga);
}
.single-content.councillors{
    padding: var(--space-huge) var(--space-l);
}
#hero-title{
    text-align: center;
}
#hero-sub{
    text-align: center;
}
body.page-id-43 .tag { 
  display: none !important; 
}
.is--h3.fw-medium.is--white.center{
    max-width: 19ch;
}
.nav-button.bg-council-orange.no-left-mar.grants{
    margin-top: 0px;
}

.text-container-community{
    display: -webkit-box;
display: -ms-flexbox;
display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.lang{
    display: none;
}
.is--h3.fw-semibold.logosecondary{
    font-size: 1.2rem;
    margin-bottom: 0px;
    margin-top: 1rem;
}
.service-dropdown-container > .is--lead.fw-medium{
    color: #000;
    font-size: 0.8rem;
}
.footer-nav{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
gap: var(--space-huge);
}
.footer-list{
    width: 100%;
}

  .hero-cta-list{
    display: flex;                 /* you already have this */
    flex-wrap: wrap;               /* <-- key line */
    gap: var(--space-m);           /* row + column gap */
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin-top: var(--space-s);
  }
.col-50{
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}
  .service-dropdown-container{
    width: 100%;
    margin-top: var(--space-m);
  }
  .dropdown-content{
    width: 100%;
    gap: var(--space-m);
  }
  .dropdown-content > .is--caption{
    font-size: 1rem;
  }
  .buttons-container{
    display: flex;                 /* you already have this */
    flex-wrap: wrap;               /* <-- allow wrapping */
    gap: var(--space-m);           /* row + column gap */
    justify-content: center;
    align-items: stretch;
  }
  .sticky-container.is--white > .is--small.fw-medium.is--black{
        margin-bottom: var(--space-s);
  }
  .nav-button.bg-council-orange.no-mar{
    margin: 0px;
  }
  .text-container-community > .is--h3.fw-medium.is--white.center{
    max-width: 15ch;
  }
  .is-center{
    text-align: center;
  }
}

/* ========================
   Mobile drawer & subpanel (≤1280px)
   ======================== */
@media (max-width: 1280px) {
  /* Drawer: full width, aligned to top */
  .nav-menu {
    position: fixed;
    top: 0; left: 0;
    height: 100dvh;
    width: 100vw;                  /* full width */
    background: #000;
    z-index: 99;
    transform: translateX(-100%);
    transition: transform 300ms ease;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 0;                    /* header controls padding */
    overflow-y: auto;
    justify-content: flex-start;   /* keep content towards the top */
  }
  .navbar-main.is-open .nav-menu { transform: translateX(0); }

  /* Drawer header: logo left, close (×) right */
  .nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--space-m);
    border-bottom: 1px solid rgba(255,255,255,.18);
  }
  .brand--drawer { display: inline-flex; align-items: center; }
  .brand-logo--drawer { width: 1.75rem; height: auto; }

  .nav-close {
    background: none;
    border: 0;
    color: var(--council-white);
    font-size: 2rem;               /* clear, tappable × */
    line-height: 1;
    width: 44px; height: 44px;     /* good tap target */
    display: grid; place-items: center;
    cursor: pointer;
  }

  /* Gentle white lines between options + comfy spacing */
  .nav-menu .nav-dropdown,
  .nav-menu > a.nav-button {
    padding: 0 var(--space-m);
  }
  .nav-menu .nav-dropdown {
    border-bottom: 1px solid rgba(255,255,255,.18);
  }
  .nav-menu .nav-dropdown:first-of-type {
    border-top: 1px solid rgba(255,255,255,.18);
  }
  .nav-menu .dropdown-toggle > button {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 0;             /* a touch taller for ease of use */
    color: var(--council-white);
  }

  /* Hide hover dropdowns inside drawer: drill-down panel takes over */
  .nav-menu .dropdown-content { display: none !important; }

  /* CTA spacing near the bottom, but still scrolls with content */
  .nav-button.bg-council-orange {
    margin: var(--space-xl) var(--space-m) var(--space-l);
    width: auto;
  }

  /* Overlay */
  .nav-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0; pointer-events: none; transition: opacity 200ms ease;
    z-index: 98;
  }
  .navbar-main.is-open .nav-overlay { opacity: 1; pointer-events: auto; }

  /* Subpanel overlays drawer, full width, with separators */
  .nav-subpanel {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 100vw;
    background: #000;
    color: var(--council-white);
    z-index: 101;
    transform: translateX(100vw);
    transition: transform 300ms ease;
    display: flex; flex-direction: column;
    padding: 1rem var(--space-m);
    overflow-y: auto;
    visibility: hidden; pointer-events: none;
  }
  .navbar-main.is-open.sub-open .nav-subpanel {
    transform: translateX(0);
    visibility: visible; pointer-events: auto;
  }
  .nav-subpanel[hidden] { display: none !important; }

  .nav-subpanel__header {
    display: flex; align-items: center; gap: .5rem;
    min-height: 44px;
    border-bottom: 1px solid rgba(255,255,255,.18);
    padding-bottom: .5rem; margin-bottom: .75rem;
  }
  .nav-subpanel__back {
    background: none; border: 0; color: var(--council-white);
    display: inline-flex; align-items: center; gap: .4rem;
    cursor: pointer; padding: .25rem .5rem;
  }
  .nav-subpanel__list a {
    display: block; padding: .95rem 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    color: var(--council-white);
  }
  .brand.brand--drawer{
    justify-content: start;
    width: 2.1rem;
  }
  /* Base chevron in the mobile drawer */
  .nav-menu .nav-dropdown .dropdown-toggle > button {
    position: relative;
    padding-right: 1.75em; /* space for chevron */
  }
  .nav-menu .nav-dropdown .dropdown-toggle > button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0.5em;
    width: 0.5em;
    height: 0.5em;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-50%) rotate(-45deg); /* RIGHT chevron */
    pointer-events: none;
  }

  /* Belt & braces: if any state/class tries to rotate it, keep it right */
  .navbar-main.is-open .nav-menu .dropdown-toggle > button[aria-expanded="true"]::after,
  .navbar-main.is-open .nav-menu .nav-dropdown.is-open .dropdown-toggle > button::after {
    transform: translateY(-50%) rotate(-45deg) !important;
  }
}

/* ========================
   Mobile drawer & subpanel tweaks (≤1280px)
   ======================== */
@media (max-width: 1280px) {

  /* Drawer: full width, content aligned to top */
  .nav-menu {
    position: fixed; top: 0; left: 0;
    height: 100dvh; width: 100vw;
    background: #000; z-index: 99;
    transform: translateX(-100%);
    transition: transform 300ms ease;
    display: flex; flex-direction: column; align-items: stretch;
    text-align: left; padding: 0; overflow-y: auto; justify-content: flex-start;
  }
  .navbar-main.is-open .nav-menu { transform: translateX(0); }

  /* Drawer header (also reused in subpanel) */
  .nav-drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem var(--space-m);
    border-bottom: 1px solid rgba(255,255,255,.18);
  }
  .brand--drawer { display: inline-flex; align-items: center; }
  .brand-logo--drawer { width: 1.75rem; height: auto; }

  .nav-close {
    background: none; border: 0; color: var(--council-white);
    font-size: 2rem; line-height: 1;
    width: 44px; height: 44px; display: grid; place-items: center;
    cursor: pointer;
  }

  /* Gentle separators + comfy targets for top-level rows */
  .nav-menu .nav-dropdown,
  .nav-menu > a.nav-button { padding: 0 var(--space-m); }
  .nav-menu .nav-dropdown { border-bottom: 1px solid rgba(255,255,255,.18); }
  .nav-menu .nav-dropdown:first-of-type { border-top: 1px solid rgba(255,255,255,.18); }

  .nav-menu .dropdown-toggle > button {
    width: 100%; display: inline-flex; align-items: center; justify-content: space-between;
    padding: 1.1rem 0; color: var(--council-white);
    position: relative; padding-right: 1.75em;
  }
  /* RIGHT chevron for top-level in drawer */
  .nav-menu .dropdown-toggle > button::after {
    content: ""; position: absolute; top: 50%; right: 0.5em;
    width: 0.5em; height: 0.5em;
    border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
    transform: translateY(-50%) rotate(-45deg);
    pointer-events: none;
  }
  .nav-menu .dropdown-content { display: none !important; } /* drill-down replaces this */

  /* CTA spacing */
  .nav-button.bg-council-orange { margin: var(--space-xl) var(--space-m) var(--space-l); width: auto; }

  /* Overlay */
  .nav-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.45);
    opacity: 0; pointer-events: none; transition: opacity 200ms ease; z-index: 98;
  }
  .navbar-main.is-open .nav-overlay { opacity: 1; pointer-events: auto; }

  /* Subpanel overlays drawer, full width */
  .nav-subpanel {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: 100vw; background: #000; color: var(--council-white); z-index: 101;
    transform: translateX(100vw); transition: transform 300ms ease;
    display: flex; flex-direction: column; padding: 0; overflow-y: auto;
    visibility: hidden; pointer-events: none;
  }
  .navbar-main.is-open.sub-open .nav-subpanel {
    transform: translateX(0);
    visibility: visible; pointer-events: auto;
  }
  .nav-subpanel[hidden] { display: none !important; }

  /* Back row immediately below header */
  .nav-subpanel__backrow {
    width: 100%; background: none; border: 0; color: var(--council-white);
    display: flex; align-items: center; gap: .6rem;
    padding: 1rem var(--space-m);
    border-top: 1px solid rgba(255,255,255,.18);
    border-bottom: 1px solid rgba(255,255,255,.18);
    text-align: left; cursor: pointer;
  }
  .nav-subpanel__backicon { font-size: 1.25rem; line-height: 1; }

  /* Submenu items with separators + right arrow */
  .nav-subpanel__list { padding: 0 var(--space-m); }
  .nav-subpanel__list a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 0; color: var(--council-white);
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .nav-subpanel__list a::after {
    content: "→"; font-size: 1.1em; line-height: 1;
  }
  .button-arrow-container.margin{
        margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
    .navbar-main.navbar--light.is-open .nav-menu a,
  .navbar-main.navbar--light.is-open .nav-menu .dropdown-toggle > button,
  .navbar-main.navbar--light.is-open .nav-menu .is--body,
  .navbar-main.navbar--light.is-open .nav-menu .is--caption {
    color: var(--council-white) !important;
  }

  /* Keep the CTA white-on-orange inside the drawer */
  .navbar-main.navbar--light.is-open .nav-button .text-council-white {
    color: var(--council-full-white) !important;
  }

  /* Subpanel text + back row also white */
  .navbar-main.navbar--light.is-open .nav-subpanel,
  .navbar-main.navbar--light.is-open .nav-subpanel a,
  .navbar-main.navbar--light.is-open .nav-subpanel__backrow {
    color: var(--council-white) !important;
  }

  /* Close buttons in drawer & subpanel */
  .navbar-main.navbar--light.is-open .nav-close {
    color: var(--council-white) !important;
  }

  /* Chevron arrows track currentColor (force right + white) */
  .navbar-main.navbar--light.is-open .nav-menu .dropdown-toggle > button::after {
    border-right-color: currentColor !important;
    border-bottom-color: currentColor !important;
    transform: translateY(-50%) rotate(-45deg); /* right-facing */
  }
}

@media screen and (max-width: 1025px){

    .is--h1xl{
  /* was: clamp(2.5rem, 1.5rem + 4vw, var(--fs-h1xl)) */
  font-size: clamp(2rem, 1.1rem + 3.3vw, var(--fs-h1xl));
}
}
@media screen and (max-width: 780px){

  .hero-cover {
        padding-top: 14rem;
    }
    
    .is--h1xl{
  /* was: clamp(2.5rem, 1.5rem + 4vw, var(--fs-h1xl)) */
  font-size: clamp(2rem, 1.1rem + 3.3vw, var(--fs-h1xl));
}
.is--lead {
  font-size: clamp(1rem, 0.9rem + 0.35vw, var(--fs-lead));
}
.is--h5 {
  font-size: clamp(1.2rem, 1rem + 0.6vw, var(--fs-h5));
  line-height: 130%;
}
.is--h3 {
  font-size: clamp(1.75rem, 1.1rem + 2vw, var(--fs-h3));
}


.is--h5.fw-medium.char-20{
        max-width: 26ch;
}
}

/* Tablet sizing: Galaxy Tab A8 (1200×1920) + general tablets
   Portrait widths ~768–900, landscape ~1200. */
@media (min-width: 700px) and (max-width: 1280px){

  /* Nudge overall base down a touch */
  html, body { font-size: 0.95rem; }

  /* Headings & lead text – smaller caps than desktop */
  .is--h1xl{ font-size: clamp(2rem, 1.2rem + 2.5vw, 3rem); line-height: 1.08; }
  .is--h3  { font-size: clamp(1.25rem, 0.9rem + 1.2vw, 1.6rem); line-height: 1.25; }
  .is--h5  { font-size: clamp(1.15rem, 1rem + 0.9vw, 1.5rem); line-height: 1.3; }
  .is--lead{ font-size: clamp(0.95rem, 0.85rem + 0.4vw, 1.1rem); line-height: 1.45; }
 .single-hero.px-huge > .is--h5{
    font-size: clamp(0.94rem, 0.86rem + 0.45vw, 1.08rem);
    max-width: 40ch;
    line-height: 1.25;
  }

  /* H1: a tiny bit bigger */
  .is--h1{
    font-size: clamp(1.45rem, 1rem + 2.1vw, 2.05rem);
    line-height: 1.08;
  }

#archive-title{
 font-size: clamp(0.96rem, 0.86rem + 0.5vw, 1.15rem);   
}
  /* Body copy slight tighten for tablet */
  .is--body{ font-size: 0.95rem; line-height: 1.55; }

  /* Hero: reduce height/padding so content isn’t oversized on tablets */
  .hero-section { min-height: 82vh;  }
  .hero-cover   { padding-top: 16em; padding-bottom: 2rem; }

  /* Buttons: keep good tap targets but scale text down a notch */
  .button-primary,
  .button-secondary,
  .button-outline,
  .nav-button {
    font-size: 0.95rem;
  }

  /* Hero CTA list: tighten gaps */
  .hero-cta-list { gap: 0.5rem; }

  /* Sticky card: slightly narrower so it doesn’t dominate mid-widths */
  .sticky-container { width: min(100%, 26rem); }

  /* Section paddings: pull in a bit on tablet */
  .primary-section.padding-all,
  .px-huge {
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
  }

  /* Grid cards: reduce internal spacing */
  .event-div.event-div--noimg { padding: 1rem 1rem; }
}


/* iPad Pro 12.9" — PORTRAIT (≈1024 × 1366) */
@media (orientation: portrait) and (min-width: 1000px) and (max-width: 1080px){
  /* undo tablet root shrink */
  html, body { font-size: 1rem !important; }

  /* bigger hero type */
  .is--h1xl{ font-size: clamp(2.4rem, 1.2rem + 3vw, 4.0rem) !important; }
  .is--h3  { font-size: clamp(1.35rem, 0.9rem + 1.4vw, 1.9rem) !important; }
  .is--lead{ font-size: clamp(1.05rem, 0.95rem + 0.6vw, 1.3rem) !important; }

  /* optional: give the hero a touch more space */
  .hero-cover{ padding-top: clamp(9rem, 12vw, 13rem) !important; }
}

/* iPad Pro 12.9" — LANDSCAPE (≈1366 × 1024) */
@media (orientation: landscape) and (min-width: 1320px) and (max-width: 1400px){
  html, body { font-size: 1rem !important; }

  .is--h1xl{ font-size: clamp(2.6rem, 1.4rem + 2.8vw, 4.4rem) !important; }
  .is--h3  { font-size: clamp(1.5rem, 1rem + 1.4vw, 2.1rem) !important; }
  .is--lead{ font-size: clamp(1.1rem, 1rem + 0.6vw, 1.35rem) !important; }

  .hero-cover{ padding-top: clamp(9.5rem, 11vw, 14rem) !important; }
}

@media (max-width: 800px) {
    .single-content-inner {
        flex-direction: column;
    }
}

@media (max-width: 800px){
    .sticky-container{
        width: 100%;
    }
    
    .is--small.fw-medium.is--black{
        margin-top: 0px;
    }
    
    .single-text{
        width: 100%;
    }
    .nav-button.bg-council-orange{
        margin: var(--space-s) var(--space-s) var(--space-s);
    }
}

@media (orientation: landscape) and (max-height: 500px) and (max-width: 932px){
  /* ensure this wins */
  body .hero-section{
    min-height: 92svh;           /* tall enough across mobile browsers */
    height: auto;                 /* avoid any fixed heights fighting this */
  }
  body .hero-cover{
    /* bigger top padding in landscape + safe-area notch guard */
           padding-top: 14rem;
    padding-bottom: 2.5rem;
  }
  .single-text > .is-body.fw-medium{
    font-size: 12px;
    font-weight: 500;
}
  /* keep the image filling the taller box cleanly */
  .hero-cover-img{ width: 100%; height: 100%; object-fit: cover; }
  /* Make H5 clearly bigger than body */
  .is--h5{
    /* bigger than body cap on these devices */
    font-size: clamp(1.15rem, 1rem + 0.9vw, 1.5rem);
    line-height: 1.25;
    letter-spacing: 0;       /* neutralise any tight tracking that shrinks appearance */
    font-weight: 500;        
  }

  .is--h5.no-margin.is--white {
    margin-bottom: var(--space-s);
}
.is--small.fw-medium.is--black{
    margin-bottom: var(--space-s);
}
  .is--body.no-margin.is--white{
    font-size: 13px;
    line-height: 1.45;
  }

}

@media screen and (max-width: 480px){
    #services-title{
        font-size: 26px;
    }
    .hero-cover{
        min-height: 80vh;
        padding-top: 18rem;
    }


    
    .archive-top > .is--small.fw-medium{
        display: none !important;
    }

}