*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root{
  --ehca-plum:#412231;
  --ehca-plum-dk:#2b1420;
  --ehca-gold:#F7B53A;
  --ehca-gold-deep:#d79a2f;
  --ehca-ivory:#FDF7EC;
  --ehca-ink:#231418;
}


	
body{
  font-family: Garamond, "Times New Roman", Times, serif;
  background-color: #412231;
  color: #FFF;
  font-size: 1rem;
}

.light-gold-text_8{  color: #fdedce;  font-size: 1rem !important;  line-height: 1.6;}
.light-gold-text_12{  color: #fdedce;  font-size: 1.4rem !important;  line-height: 1.8;}
.light-gold-text_16{  color: #fdedce;  font-size: 1.8rem !important;  line-height: 2.2;}
.light-gold-text_24{  color: #fdedce;  font-size: 2.0rem !important;  line-height: 2.6;}

.dark-gold-text_8{  color: #f7b53a;  font-size: 1rem !important;  line-height: 1.6;}
.dark-gold-text_12{  color: #f7b53a;  font-size: 1.4rem !important;  line-height: 1.8;}
.dark-gold-text_16{  color: #f7b53a;  font-size: 1.8rem !important;  line-height: 2.2;}
.dark-gold-text_24{  color: #f7b53a;  font-size: 2.0rem !important;  line-height: 2.6;}

.deep-purple-text_8{  color: #2b1420;  font-size: 1rem !important;  line-height: 1.6;}
.deep-purple-text_12{  color: #2b1420;  font-size: 1.4rem !important;  line-height: 1.8;}
.deep-purple-text_16{  color: #2b1420;  font-size: 1.8rem !important;  line-height: 2.2;}
.deep-purple-text_24{  color: #2b1420;  font-size: 2.0rem !important;  line-height: 2.6;}

.text-accent{
  color: #804560;
  font-weight: bold;
  font-size: 1rem;
}

.action-button {
  display: inline-block;
  padding: 10px 20px; /* Set explicit padding */
  border: none; /* Remove button borders */
  text-decoration: none; /* Remove link underline */
  background: #F7B53A;
  color: #412231;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.2s ease;
}

a.action-button {
    text-decoration: none;
    font-family: system-ui, -apple-system, sans-serif; /* or whatever font your button was using */
    font-size: inherit;
    line-height: 1.2; /* Adjust to match button's line-height */
    box-sizing: content-box; /* Buttons often use content-box by default */
    -webkit-font-smoothing: auto;
    text-rendering: auto;
}

/* Ensure visited links don't change color */
a.action-button:visited {
    color: #412231;
}

.action-button:hover{
  background-color: #ffcd6a;
}

.page-header{
  padding: 1rem 2rem;
  background-color: #412231;
}

.page-header-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.page-logo{
  color: #F7B53A;
  font-weight: bold;
  font-size: 1.5rem;
  text-decoration: none;
}

.page-logo img{
  width: 100px;
  height: auto;
  display: block;
}

.page-nav{
  display: flex;
  gap: 1.5rem;
}

.page-nav a{
  color: #FFF;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.page-nav a:hover{
  color: #F7B53A;
}
				
.page-nav a[aria-current="page"]{
  color: #F7B53A;
  font-size: 1.2rem;				  
  font-weight: 900;
  pointer-events: none;           /* avoid reloading current page */
  cursor: default;
}
/* Mobile: highlight only the current page item */
.mobile-menu-overlay li:has(> a[aria-current="page"]) {
  background-color: #e8dcff;   /* light purple for active item only */
  font-weight: 700;
}
				

.login-button{
  display: block;
}

.menu-open .hamburger-button{visibility:hidden;}

.hamburger-button{
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
}

.hamburger-button span{
  display: block;
  width: 25px;
  height: 3px;
  background-color: #412231;
  margin: 5px 0;
  transition: background-color 0.3s ease;
}

.mobile-menu-overlay{
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #EEEEEE;
  z-index: 1000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  overflow-y: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out, visibility 0s linear 0.3s;
}

.mobile-menu-overlay.is-open{
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.mobile-menu-top{
  display: flex;
  align-items: center;
  padding: 0.75rem;
  background-color: #FAFAFA;
  border-bottom: 1px solid #DDDDDD;
  flex-shrink: 0;
}

.mobile-menu-logo{
  height: 40px;
  width: auto;
  margin-right: 0.75rem;
  transform: scale(0.75);
  transform-origin: top left;
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s ease-out;
}

.mobile-menu-overlay.is-open .mobile-menu-logo{
  transform: scale(1);
  opacity: 1;
}

.mobile-menu-title{
  flex-grow: 1;
  color: #412231;
  font-size: clamp(1rem, 4vw, 1.2rem);
  font-weight: bold;
  text-align: left;
  margin: 0 0.5rem;
}

.close-button{
  background: none;
  border: none;
  color: #412231;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  flex-shrink: 0;
}

.mobile-menu-items{
  background-color: #EEEEEE;
  padding: 0.25rem 1rem 2rem;
  overflow-y: auto;
  box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.9);
  z-index: 1;
}

.mobile-menu-items li {
  list-style: none;
  margin: 0;
}

.mobile-menu-items li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1px 15px; /* Adjust padding as needed */
  text-decoration: none;
  color: var(--ehca-plum-dk);
  box-sizing: border-box;	
  font-size: 1.25rem;
  cursor: pointer;
}

.mobile-menu-items li img {
  max-width: 68px;
  max-height: 68px;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
/* Dramatic expansion effect */
.mobile-menu-items li img.expanding {
  transform: scale(6) translateX(-38%);
  opacity: 0.3;.
 }

.mobile-menu-overlay ul{
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mobile-menu-overlay li{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FFF;
  padding: 1rem;
  border-radius: 0.625rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

.mobile-menu-overlay a{
  color: #412231;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
}

.mobile-menu-overlay img{
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-left: 1rem;
  flex-shrink: 0;
}

.mobile-menu-footer-container{
  background-color: #FFF;
  padding: 1rem;
  flex-shrink: 0;
  z-index: 0;
  flex-grow: 1;
}

.mobile-menu-footer{
  color: #412231;
  font-size: 0.8rem;
  text-align: center;
}

.hero-section{
  padding: 4rem 2rem 3rem;
  background-color: #412231;
}

.hero-container{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content{
  flex: 1;
  min-width: 300px;
}

.hero-content h1{
  font-size: 3.5rem;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.hero-content h2{
  font-size: 2rem;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.hero-content p{
  font-size: 1rem;
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero-image-container{
  flex-shrink: 0;
  width: 650px;
  max-width: 100%;
}

.hero-image{
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.hero-caption{
  text-align: center;
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
  padding-left: 0px;
}

.hero-caption .line-2 a{
  color: #fdedce;
  font-size: 1rem;
  line-height: 1.6;
  text-decoration: none;
}

.meetings-section{
  position: relative;
  background-color: #FFF;
  color: #000;
  padding: 4rem 2rem;
  min-height: 150vh;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.meetings-section::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("img/group_v2.png") no-repeat top center;
  background-size: 75% auto;
  opacity: 0.07;
  z-index: -1;
}

.meetings-section h2{
  text-align: center;
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.meetings-section p{
  text-align: center;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.meetings-details{
  margin: 1.2rem;
  text-align: center;
  width: 40vw;
}

.meetings-details ul{
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: inline-block;
  text-align: left;
}

.meetings-details li{
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.meetings-map-box{
  background-color: #412231;
  color: #FFF;
  border-radius: 12px;
  padding: 3rem 2rem;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.meetings-map-image{
  max-width: 850px;
  margin: 0 auto;
  display: block;
}

.meetings-map-image img{
  width: 100%;
  height: auto;
  border: 2px solid #F7B53A;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.bottom-footer{
  background-color: #FFF;
  text-align: center;
}

@media (max-width: 768px){
  .page-header{
    padding: 0.75rem 1rem;
    background-color: #FFF;
  }

  .page-logo img, .mobile-menu-logo{
    height: 40px;
    width: auto;
    display: block;
  }

  .mobile-menu-logo{
    margin-right: 0.75rem;
  }

  .page-nav{
    display: none;
  }

  .login-button{
    display: none;
  }

  .hamburger-button{
    display: block;
  }

  .hero-section{
    padding: 3rem 1rem 2rem;
  }

  .hero-container{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-content h1{
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .hero-content h2{
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .hero-content p{
    font-size: 0.9rem;
    max-width: 90%;
  }

  .hero-image-container{
    width: 90%;
  }

  .hero-caption{
    padding-left: 0;
    text-align: center;
  }

  .meetings-section{
    padding: 2rem 1rem;
    min-height: auto;
    justify-content: flex-start;
  }

  .meetings-details{
    width: 90%;
  }

  .meetings-details li{
    font-size: 1.2rem;
  }

  .meetings-map-box{
    padding: 2rem 1rem;
  }

  .meetings-section h2{
    font-size: 1.75rem;
  }

  .meetings-section p{
    font-size: 0.9rem;
    max-width: 90%;
  }

  .page-footer{
    padding: 1.5rem;
    font-size: 0.9rem;
  }  
}

@media (max-width: 480px){
  .page-header{
    padding: 0.5rem 0.5rem;
  }

  .page-logo img, .mobile-menu-logo{
    height: 35px;
    width: auto;
    display: block;
  }

  .hero-content h1{
    font-size: 2rem;
  }

  .hero-content h2{
    font-size: 1.5rem;
  }

  .hero-content p{
    font-size: 0.85rem;
    padding-left: 2rem;
    padding-right: 1.5rem;
    max-width: none;
  }

  .meetings-details li{
    font-size: 1rem;
  }

  .meetings-section h2{
    font-size: 1.6rem;
  }

  .meetings-section p{
    font-size: 0.85rem;
  }

  .page-footer{
    padding: 1rem;
  }

  .mobile-menu-title{
    margin: 0.25rem 0.25rem;
  }

  .mobile-menu-overlay a{
    font-size: 1.1rem;
  }

  .mobile-menu-overlay img{
    width: 60px;
    height: 60px;
  }

  .mobile-menu-footer-container{
    padding: 0.75rem;
  }

  .mobile-menu-footer{
    font-size: 0.9rem;
  }
}

.calendar_section{
  position: relative;
  margin: var(--calendar-row-h) auto;
  --calendar-surface: #4b2c3d;
  --calendar-card: #f3ecf2;
  --calendar-ink: #23131b;
  --calendar-muted: #6f5b68;
  --calendar-accent: #f6b73c;
  --calendar-border: rgba(0,0,0,.08);
  --calendar-row-h: 132px;
  background: var(--calendar-surface);
  color: var(--calendar-ink);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
  max-width: 1100px;
  margin-inline: auto;
  padding: 1rem 1rem 1.25rem;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: .75rem;
  min-height: clamp(680px, 70vh, 1200px);
}

.calendar_header{
  text-align: center;
  padding-inline: 1rem;
}

.calendar_heading{
  color: #fff;
  font-size: clamp(1.25rem,1rem + 1.2vw,1.75rem);
  margin: .25rem 0 0;
  font-weight: 700;
  letter-spacing: .2px;
}

.calendar_subtitle{
  margin: .25rem 0 0;
  color: var(--calendar-muted);
  font-size: .95rem;
}

.calendar_scroller{
  overflow: auto;
  padding: 0 .5rem .75rem;
  scroll-behavior: smooth;
  max-height: calc(var(--calendar-row-h) * 6 + 2rem);
  overscroll-behavior: contain;
  scrollbar-width: auto;
  scrollbar-color: #ff2fa4 rgba(255,255,255,.12);
}

.calendar_scroller::-webkit-scrollbar{
  width: 14px;
}

.calendar_scroller::-webkit-scrollbar-thumb{
  background: linear-gradient(#ff68c8, #ff2fa4);
  border-radius: 12px;
}

.calendar_scroller::-webkit-scrollbar-track{
  background: rgba(255,255,255,.12);
  border-radius: 12px;
}

.calendar_event{
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 1rem;
  background: var(--calendar-card);
  border: 1px solid var(--calendar-border);
  border-radius: 16px;
  padding: 1rem;
  margin: .5rem auto;
  min-height: var(--calendar-row-h);
  max-width: 720px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

@media (min-width:1400px){
  .calendar_event{
    max-width: 680px;
  }
}

@media (hover:hover) and (pointer:fine){
  .calendar_event:hover{
    transform: translateY(-5px) scale(1.012);
    box-shadow: 0 18px 40px rgba(246,183,60,.33),       
      0 8px 22px rgba(0,0,0,.16);
    border-color: rgba(246,183,60,.55);
  }
}

.calendar_date{
  background: #fff;
  border: 1px solid var(--calendar-border);
  border-radius: 14px;
  padding: .55rem .4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .18rem;
  text-align: center;
  min-width: 132px;
}

.calendar_dow{
  font-size: .72rem;
  font-weight: 800;
  color: var(--calendar-muted);
  text-transform: uppercase;
  letter-spacing: .6px;
}

.calendar_day{
  font-size: 2.05rem;
  font-weight: 800;
  line-height: 1;
  color: var(--calendar-ink);
}

.calendar_month{
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--calendar-muted);
  padding: .05rem .35rem;
  border: 1px solid var(--calendar-border);
  border-radius: 999px;
  background: #fff;
  white-space: nowrap;
}

.calendar_body{
  min-width: 0;
}

.calendar_title{
  font-size: 1.18rem;
  margin: 0 0 .25rem;
  line-height: 1.25;
  font-weight: 700;
}

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

.calendar_title a:focus-visible{
  outline: 3px solid rgba(246,183,60,.35);
  border-radius: 6px;
}

.calendar_meta{
  margin: .1rem 0 .35rem;
  color: var(--calendar-muted);
  font-size: 1.05rem;
}

.calendar_desc{
  margin: .25rem 0 .6rem;
  font-size: 1.02rem;
}

.calendar_actions{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.calendar_btn{
  display: inline-block;
  padding: .45rem .75rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  background: var(--calendar-accent);
  color: #1c120c;
  box-shadow: 0 2px 0 rgba(0,0,0,.08) inset;
  font-size: .9rem;
}

.calendar_btn:hover{
  filter: brightness(.97);
}

@media (max-width:640px){
  .calendar_section{
    margin-block: 96px;
    border-radius: 18px;
  }

  .calendar_event{
    grid-template-columns: 86px 1fr;
    min-height: 120px;
    max-width: none;
  }

  .calendar_date{
    min-width: 86px;
  }

  .calendar_month{
    white-space: normal;
    font-size: .7rem;
  }

  .calendar_btn{
    font-size: .9rem;
    padding: .45rem .7rem;
  }
}

@media (prefers-reduced-motion:reduce){
  .calendar_event{
    transition: none;
  }

  .calendar_scroller{
    scroll-behavior: auto;
  }
}

.calendar_corner_art{
  position: absolute;
  top: .05rem;
  right: .75rem;
  width: 25%;
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

@media (max-width: 640px){
  .calendar_corner_art{
    position: static;
    display: block;
    width: 80%;
    height: auto;
    margin: 0;
  }

  

  .calendar_header{
    padding-top: 0;
  }
}

.ehca_logo{
  width: 40vw;
  max-width: 200px;
  margin: 3rem auto;
  border-radius: 14px;
}

@media (max-width: 768px){
  .ehca_logo{
    width: 50vw;
    max-width: 250px;
    margin: 2rem auto;
  }
}

@media (max-width: 480px){
  .ehca_logo{
    width: 60vw;
    max-width: 200px;
    margin: 1.5rem auto;
  }
}

@media (min-width:1400px){
  .calendar_event{
    max-width: 680px;
  }
}

@media (max-width:640px){
  .calendar_section{
    margin-block: 96px;
    border-radius: 18px;
  }

  .calendar_scroller{
    max-height: 70vh;
  }
}

@media (max-width: 640px){
  .calendar_corner_art{
    position: static;
    display: block;
    width: 80%;
    height: auto;
    margin: 0;
  }
}

.merch-wrap{
  background: #fff;
  padding: 4rem 1.5rem;
}

@media (min-width:1200px){
  .merch-wrap{
    padding: 9rem 2.5rem;
  }
}

.merch-inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.merch-hero{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: clamp(360px, 28vw, 520px);
  display: grid;
  align-items: center;
  padding: clamp(1.25rem, 2vw, 2rem);
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  isolation: isolate;
}

.merch-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(100% 120% at 20% 0%, rgba(249,236,206,.95) 0%, rgba(255,255,255,.85) 50%, rgba(255,255,255,.6) 100%),
              linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.15));
  z-index: 1;
}

.merch-hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.05) contrast(1.05) brightness(.9) blur(0.5px);
}

.merch-hero-content{
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.merch-eyebrow{
  display: inline-block;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #fde7b8;
  color: #6a3b4e;
  padding: .25rem .55rem;
  border-radius: 999px;
}

.merch-title{
  font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3rem);
  line-height: 1.1;
  margin: .6rem 0;
  font-weight: 900;
  color: #2a1720;
}

.merch-sub{
  font-size: clamp(1.05rem, .9rem + .5vw, 1.25rem);
  margin: .25rem 0 1rem;
  color: #3c2832;
}

.merch-cta{
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  align-items: center;
}

.merch-cta .action-button{
  font-size: 1.05rem;
  padding: .85rem 1.15rem;
}

.merch-products{
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width:720px){
  .merch-products{
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
}

.product-card{
  background: #fff;
  border: 1px solid #eee3cc;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  overflow: hidden;
  display: grid;
  gap: 0;
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(0,0,0,.12);
}

.product-media{
  aspect-ratio: 4/3;
  background: #f6f3ea;
  position: relative;
  display: block;
}

.product-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sunrise-btn{
  --bg: linear-gradient(135deg,#ffb56b 0%,#f76b8a 100%);
  --shadow: rgba(247,107,138,.35);
  background: var(--bg);
  color: #fff;
  border: none;
  padding: .95rem 1.35rem;
  border-radius: 12px;
  font-weight: 900;
  letter-spacing: .01em;
  cursor: pointer;
  text-shadow: 0 1px 0 rgba(0,0,0,.2);
  box-shadow: 0 12px 26px var(--shadow);
  transition: filter .15s ease, transform .15s ease;
}

.sunrise-btn:hover{
  filter: saturate(1.05) brightness(1.02);
  transform: translateY(-2px);
}

.sunrise-btn:active{
  transform: translateY(0);
  box-shadow: 0 8px 18px var(--shadow);
}

.sunrise-btn:focus-visible{
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.sunrise-kona{
  --bg: linear-gradient(135deg,#FFD56B 0%,#7A3E2E 100%);
  --shadow: rgba(122,62,46,.38);
}

@media (prefers-reduced-motion: reduce){
  .sunrise-btn{
    transition: none;
  }
}

:root{
  --footer-bg: #412231;
  --footer-text: #FFFFFF;
  --footer-accent: #F7B53A;
}

.page-footer{
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 2rem 1rem;
  text-align: center;
  min-height: 60vh;
}

.footer-inner{
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: inherit;
}

.footer-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem .6rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li{
  display: flex;
  align-items: center;
}

.footer-links li:not(:first-child)::before{
  content: "|";
  margin: 0 .6rem;
  opacity: .65;
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.4rem;
}

.footer-links a{
  color: var(--footer-text);
  text-decoration: none;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.25;
  white-space: nowrap;
  transition: color .2s ease;
}

.footer-links a:hover{
  color: var(--footer-accent);
}

.footer-links a:focus-visible{
  outline: 3px solid var(--footer-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

.footer-legal{
  margin-top: auto;
  font-size: 0.9375rem;
  opacity: 0.85;
  padding-top: 1rem;
}

@media (min-width:640px){
  .footer-links a{
    padding: 0.15rem 0;
  }

  .page-footer{
    min-height: 40vh;
  }
}

/* Accessibility focus styles */
:where(a, button, .action-button, .hamburger-button, .page-nav a):focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 2px;
}

/* Hide skip link until focus */
/* Prevent background scroll when menu is open */
body.menu-open { overflow: hidden; }

.menu-open .hamburger-button { visibility: hidden; }

.footer-divider-holder{
  background:#412231;            /* EHCA maroon */
  color:#fff;
  padding:2rem 1rem;
  text-align:center;
  /* keep your existing footer styles here */
}

/* divider image above the menu */
.footer-divider{
  display:flex;
  justify-content:center;
}

.footer-divider img{
  width:400px;
  height:auto;
  opacity:0.98;
  filter:drop-shadow(0 1px 2px rgba(0,0,0,.25));
  image-rendering:auto;           /* keep curves smooth on HiDPI */
}
@media (max-width: 480px){
  .footer-divider img{
	width:80vw;
  }
}
