/* ====================================================
   SECTION 1: Design Tokens
   ==================================================== */

:root {
  /* Color Palette */
  --color-primary:          #2B4A35;
  --color-primary-dark:     #1C3224;
  --color-accent:           #B5893A;
  --color-accent-light:     #D4AA60;
  --color-base:             #F9F5EF;
  --color-surface:          #FFFFFF;
  --color-surface-alt:      #EEE8DD;
  --color-text:             #1E1E1E;
  --color-text-muted:       #5C5449;
  --color-text-light:       #F9F5EF;
  --color-border:           #D5CFC4;
  --color-cta-bg:           #2B4A35;
  --color-cta-text:         #F9F5EF;
  --color-cta-hover:        #B5893A;
  --color-seasonal-winter:  #7B9EB3;
  --color-seasonal-spring:  #7FA86A;
  --color-overlay:          rgba(28, 50, 36, 0.52);
  --color-focus-ring:       #B5893A;
  --color-error:            #8B2020;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', system-ui, sans-serif;

  /* Font Size Scale */
  --font-size-sm:   0.875rem;
  --font-size-base: 1rem;
  --font-size-lg:   1.125rem;
  --font-size-xl:   1.375rem;
  --font-size-2xl:  1.75rem;
  --font-size-3xl:  2.25rem;
  --font-size-4xl:  3rem;

  /* Line Heights */
  --line-height-body:    1.65;
  --line-height-display: 1.15;
  --line-height-tight:   1.25;

  /* Spacing Scale */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Container Widths */
  --container-max:  1180px;
  --container-wide: 1380px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-card:  0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 6px 24px rgba(0, 0, 0, 0.14);
  --shadow-nav:   0 2px 8px rgba(0, 0, 0, 0.10);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;

  /* Nav Height — referenced in JS for scroll offset */
  --nav-height: 68px;
}

/* ====================================================
   SECTION 2: Reset and Base
   ==================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-body);
  color: var(--color-text);
  background-color: var(--color-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

svg {
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

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

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

input,
textarea,
select {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
}

ul,
ol {
  list-style: none;
}

address {
  font-style: normal;
}

/* ====================================================
   SECTION 3: Typography Scale
   ==================================================== */

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: var(--line-height-display);
  color: var(--color-primary);
  font-weight: 700;
}

h1 {
  font-size: var(--font-size-3xl);
}

h2 {
  font-size: var(--font-size-2xl);
}

h3 {h
  font-size: var(--font-size-xl);
}

h4 {
  font-size: var(--font-size-lg);
  font-weight: 600;
}

@media (min-width: 640px) {
  h1 {
    font-size: var(--font-size-4xl);
  }

  h2 {s
    font-size: var(--font-size-3xl);
  }

  h3 {
    font-size: var(--font-size-2xl);
  }
}

p {
  font-size: var(--font-size-base);
  line-height: var(--line-height-body);
  color: var(--color-text);
  max-width: 68ch;
	  margin-inline: auto;
}

p + p {
  margin-top: var(--space-md);
}

li {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-body);
}

strong {
  font-weight: 600;
}

/* Dark-context heading and paragraph overrides */
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.cta-band h2,
.cta-band h3,
.site-footer h2,
.site-footer h3,
.site-footer h4 {
  color: var(--color-text-light);
}

.section--dark p,
.cta-band p,
.site-footer p {
  color: var(--color-text-light);
}

/* ====================================================
   SECTION 4: Layout Utilities
   ==================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.container--wide {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.section {
  padding-block: var(--space-2xl);
}

.section--light {
  background-color: var(--color-base);
}

.section--alt {
  background-color: var(--color-surface-alt);
}

.section--surface {
  background-color: var(--color-surface);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

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

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

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

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

/* ====================================================
   SECTION 5: Skip Link
   ==================================================== */

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-accent);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius-md) 0;
  transform: translateY(-100%);
  transition: transform var(--transition-fast);
}

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

/* ====================================================
   SECTION 6: Site Header and Navigation
   ==================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-primary);
  box-shadow: var(--shadow-nav);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img {
  height: 44px;
  width: auto;
}

.site-logo__text {
  font-family: var(--font-display);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text-light);
  line-height: var(--line-height-tight);
  max-width: 180px;
}

/* Nav toggle button (mobile) */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 2px solid var(--color-text-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition-fast);
  flex-shrink: 0;
}

.nav-toggle:hover {
  border-color: var(--color-accent-light);
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-text-light);
  border-radius: 2px;
  transition: background-color var(--transition-fast),
              transform var(--transition-base),
              opacity var(--transition-fast);
}

/* Nav drawer (mobile) */
.site-nav {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary-dark);
  padding: var(--space-xl) var(--space-lg);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-base);
  z-index: 99;
}

.site-nav[aria-hidden="false"],
.site-nav.nav--open {
  transform: translateX(0);
}

.site-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.site-nav__link {
  display: block;
  font-family: var(--font-body);
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--color-text-light);
  text-decoration: none;
  padding-block: var(--space-sm);
  border-bottom: 1px solid rgba(249, 245, 239, 0.15);
  transition: color var(--transition-fast);
}

.site-nav__link:hover,
.site-nav__link.nav__link--active {
  color: var(--color-accent-light);
}

/* Desktop nav */
@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    transform: none;
    background: none;
    padding: 0;
    overflow: visible;
    display: flex;
    align-items: center;
  }

  .site-nav[aria-hidden="true"] {
    display: flex;
  }

  .site-nav__list {
    flex-direction: row;
    gap: var(--space-lg);
    align-items: center;
  }

  .site-nav__link {
    font-size: var(--font-size-base);
    border-bottom: none;
    padding-block: 0;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: color var(--transition-fast), border-color var(--transition-fast);
  }

  .site-nav__link:hover,
  .site-nav__link.nav__link--active {
    color: var(--color-accent-light);
    border-bottom-color: var(--color-accent-light);
  }
}

/* Focus visible for all interactive nav elements */
.nav-toggle:focus-visible,
.site-nav__link:focus-visible,
.site-logo:focus-visible {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ====================================================
   SECTION 7: Hero Section
   ==================================================== */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-primary-dark);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--color-overlay);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  max-width: 780px;
  margin-inline: auto;
}

.hero__heading {
  font-family: var(--font-display);
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--color-text-light);
  line-height: var(--line-height-display);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: var(--font-size-xl);
  font-weight: 400;
  color: var(--color-accent-light);
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.hero__cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.hero__phone {
  margin-top: var(--space-lg);
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  opacity: 0.85;
  max-width: none;
  width: 100%;
  text-align: center;
}

.hero__phone a {
  color: var(--color-accent-light);
  text-decoration: none;
  font-weight: 600;
}

.hero__phone a:hover {
  text-decoration: underline;
}

@media (min-width: 640px) {
  .hero__heading {
    font-size: var(--font-size-4xl);
  }

  .hero__tagline {
    font-size: var(--font-size-2xl);
  }

  .hero__cta-row {
    flex-direction: row;
    justify-content: center;
  }
}

/* ====================================================
   SECTION 8: Section Bands
   ==================================================== */

/* Section classes are defined in Section 4 layout utilities.
   This block adds padding and separator helpers. */

.section + .section {
  border-top: 1px solid var(--color-border);
}

.section--no-border + .section,
.section + .section--no-border {
  border-top: none;
}

.section__header {
  margin-bottom: var(--space-xl);
}

.section__header h2 {
  margin-bottom: var(--space-md);
}

.section__intro {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  max-width: 64ch;
}

/* ====================================================
   SECTION 9: Event Cards
   ==================================================== */

.event-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.event-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.event-card__image-wrapper {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background-color: var(--color-surface-alt);
}

.event-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-base);
}

.event-card:hover .event-card__image {
  transform: scale(1.03);
}

.event-card__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.event-card__season {
  display: block;
  text-align: center;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-sm);
}

.event-card__title {
  font-family: var(--font-display);
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-tight);
}

.event-card__desc {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-body);
  margin-bottom: var(--space-lg);
  flex: 1;
}

.event-card__link {
  align-self: center;
  font-weight: 600;
  font-size: var(--font-size-base);
  color: var(--color-primary);
  text-decoration: none;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 1px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.event-card__link:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.event-card__link:focus-visible {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Event grid container */
.event-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .event-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Event detail hero (inside individual event sections) */
.event-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background-color: var(--color-surface-alt);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-xl);
}

.event-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-details-table {
  width: 100%;
  border-collapse: collapse;
  margin-block: var(--space-lg);
  font-size: var(--font-size-base);
}

.event-details-table th,
.event-details-table td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.event-details-table th {
  font-weight: 600;
  color: var(--color-primary);
  width: 130px;
  vertical-align: top;
}

.event-details-table td {
  color: var(--color-text);
}

/* ====================================================
   SECTION 10: Seasonal Section Overrides
   ==================================================== */

.section--winter {
  --color-accent: var(--color-seasonal-winter);
}

.section--spring {
  --color-accent: var(--color-seasonal-spring);
}

/* ====================================================
   SECTION 11: Visit Strip
   ==================================================== */

.visit-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.visit-strip__item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-lg);
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  text-decoration: none;
  transition: box-shadow var(--transition-base);
}

.visit-strip__item:hover {
  box-shadow: var(--shadow-card);
}

.visit-strip__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--color-accent);
}

.visit-strip__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
}

.visit-strip__body h3 {
  font-size: var(--font-size-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.visit-strip__body p {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  max-width: none;
}

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

/* ====================================================
   SECTION 12: CTA Band
   ==================================================== */

.cta-band {
  background-color: var(--color-primary);
  padding-block: var(--space-2xl);
  text-align: center;
}

.cta-band__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.cta-band h2 {
  color: var(--color-text-light);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-md);
}

@media (min-width: 640px) {
  .cta-band h2 {
    font-size: var(--font-size-3xl);
  }
}

.cta-band p {
  color: var(--color-text-light);
  opacity: 0.88;
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xl);
  max-width: 52ch;
  margin-inline: auto;
}

.cta-band__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .cta-band__buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* ====================================================
   SECTION 13: History Teaser
   ==================================================== */

.history-teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .history-teaser {
    grid-template-columns: 1fr 1fr;
  }
}

.history-teaser__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-color: var(--color-surface-alt);
}

.history-teaser__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history-teaser__pullquote {
  border-left: 4px solid var(--color-accent);
  padding-left: var(--space-lg);
}

.history-teaser__pullquote p {
  font-family: var(--font-display);
  font-size: var(--font-size-xl);
  font-style: italic;
  color: var(--color-primary);
  line-height: var(--line-height-display);
  max-width: none;
  margin-bottom: var(--space-lg);
}

.history-teaser__pullquote .history-teaser__body {
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--font-size-base);
  color: var(--color-text);
  max-width: 58ch;
  margin-bottom: var(--space-lg);
}

/* ====================================================
   SECTION 14: Volunteer and Donate Sections
   ==================================================== */

/* Role cards */
.role-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 640px) {
  .role-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.role-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.role-card h3 {
  font-size: var(--font-size-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.role-card p {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
}

/* Impact block (Donate) */
.impact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 640px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.impact-item {
  padding: var(--space-lg);
  border-left: 4px solid var(--color-accent);
  background-color: var(--color-surface);
}

.impact-item h3 {
  font-size: var(--font-size-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.impact-item p {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
}

/* ====================================================
   SECTION 15: Calendar Embed Wrapper
   ==================================================== */

.calendar-embed-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background-color: var(--color-surface-alt);
}

.calendar-embed-wrapper iframe {
  display: block;
  width: 100%;
  border: none;
}

/* ====================================================
   SECTION 16: Footer
   ==================================================== */

.site-footer {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding-block: var(--space-2xl) var(--space-lg);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.site-footer__brand {
  text-align: center;
}

.site-footer__brand h3 {
  font-family: var(--font-display);
  font-size: var(--font-size-xl);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.site-footer__tagline {
  font-size: var(--font-size-base);
  color: var(--color-text-light);
  opacity: 0.82;
  max-width: 36ch;
  margin-bottom: var(--space-lg);
  margin-inline: auto;
}

.site-footer__social {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  justify-content: center;
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(249, 245, 239, 0.3);
  border-radius: var(--radius-sm);
  color: var(--color-text-light);
  text-decoration: none;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.site-footer__social-link:hover {
  border-color: var(--color-accent-light);
  background-color: rgba(181, 137, 58, 0.15);
  color: var(--color-accent-light);
}

.site-footer__social-link:focus-visible {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 2px;
}

.site-footer__social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.site-footer__col h4 {
  font-family: var(--font-display);
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-accent-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-md);
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.site-footer__links a {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  text-decoration: none;
  opacity: 0.82;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

.site-footer__links a:hover {
  opacity: 1;
  color: var(--color-accent-light);
}

.site-footer__contact p,
.site-footer__contact address {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  opacity: 0.82;
  line-height: 1.7;
  max-width: none;
}

.site-footer__contact a {
  color: var(--color-accent-light);
  text-decoration: none;
}

.site-footer__contact a:hover {
  text-decoration: underline;
}

.site-footer__bottom {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(249, 245, 239, 0.15);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: flex-start;
}

@media (min-width: 640px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.site-footer__copyright {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  opacity: 0.6;
  max-width: none;
}

/* ====================================================
   SECTION 17: Form Styles
   ==================================================== */

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.form-label {
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text);
}

.form-label .required {
  color: var(--color-error);
  margin-left: 2px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
  appearance: none;
}

.form-input:hover,
.form-textarea:hover,
.form-select:hover {
  border-color: var(--color-text-muted);
}

.form-input:focus-visible,
.form-textarea:focus-visible,
.form-select:focus-visible {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(43, 74, 53, 0.15);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C5449' stroke-width='1.75' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-md) center;
  padding-right: var(--space-2xl);
  cursor: pointer;
}

/* Checkbox and radio groups */
.form-check-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-check {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}

.form-check span {
  font-size: var(--font-size-base);
  color: var(--color-text);
}

/* Form submit row */
.form-submit {
  margin-top: var(--space-lg);
}

/* Max width on contact/volunteer forms */
.form--contained {
  max-width: 640px;
}

/* ====================================================
   SECTION 18: Utility Classes
   ==================================================== */

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

.text-light {
  color: var(--color-text-light);
}

.text-muted {
  color: var(--color-text-muted);
}

.text-accent {
  color: var(--color-accent);
}

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

.text-center p {
  margin-inline: auto;
}

.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }
.mb-xl  { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

/* Button system */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem var(--space-xl);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition-base),
              color var(--transition-base),
              border-color var(--transition-base),
              box-shadow var(--transition-base);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 3px;
}

.btn--primary {
  background-color: var(--color-cta-bg);
  color: var(--color-cta-text);
  border-color: var(--color-cta-bg);
}

.btn--primary:hover {
  background-color: var(--color-cta-hover);
  border-color: var(--color-cta-hover);
  color: var(--color-text);
}

.btn--accent {
  background-color: var(--color-accent);
  color: var(--color-text);
  border-color: var(--color-accent);
}

.btn--accent:hover {
  background-color: var(--color-accent-light);
  border-color: var(--color-accent-light);
}

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

.btn--outline:hover {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.btn--outline-light {
  background-color: transparent;
  color: var(--color-text-light);
  border-color: var(--color-text-light);
}

.btn--outline-light:hover {
  background-color: var(--color-text-light);
  color: var(--color-primary);
}

/* FAQ accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--color-border);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  font-family: var(--font-body);
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-primary);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-question:focus-visible {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.faq-question__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--color-accent);
  transition: transform var(--transition-base);
}

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

.faq-answer {
  overflow: hidden;
  display: none;
}

.faq-answer.is-open {
  display: block;
}

.faq-answer__inner {
  padding-bottom: var(--space-lg);
  font-size: var(--font-size-base);
  color: var(--color-text);
  line-height: var(--line-height-body);
  max-width: 70ch;
}

/* Board roster */
.board-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .board-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.board-member {
  padding: var(--space-lg);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.board-member__name {
  font-family: var(--font-display);
  font-size: var(--font-size-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.board-member__title {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

/* Contact info block */
.contact-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 1024px) {
  .contact-block {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-details dt {
  font-weight: 600;
  color: var(--color-primary);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

.contact-details dt:first-child {
  margin-top: 0;
}

.contact-details dd {
  font-size: var(--font-size-base);
  color: var(--color-text);
  line-height: var(--line-height-body);
}

.contact-details dd a {
  color: var(--color-primary);
  font-weight: 600;
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: none;
}

/* Map embed (generic) */
.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: none;
}

/* Organizations link list */
.org-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.org-list__item {
  padding: var(--space-lg);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.org-list__item h3 {
  font-size: var(--font-size-lg);
  color: var(--color-primary);
}

.org-list__item p {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
}

.org-list__item a {
  display: inline-block;
  margin-top: var(--space-xs);
  font-size: var(--font-size-sm);
  font-weight: 600;
}

/* ====================================================
   SECTION 19: 404 Page Styles
   ==================================================== */

.error-page {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  background-color: var(--color-base);
}

.error-page__inner {
  max-width: 520px;
  margin-inline: auto;
}

.error-page__code {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-md);
  display: block;
}

.error-page h1 {
  font-size: var(--font-size-2xl);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.error-page p {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  margin-inline: auto;
}

.error-page__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

@media (min-width: 480px) {
  .error-page__buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.error-page__waterfall {
  margin-inline: auto;
  margin-bottom: var(--space-xl);
  color: var(--color-primary);
  opacity: 0.12;
}
/* Shop Directory */
.shop-directory { margin-top: var(--space-2xl); }
.shop-directory__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--space-xl) var(--space-2xl); }
.shop-directory__category h3 { font-family: var(--font-display); font-size: var(--font-size-lg); font-weight: 600; color: var(--color-primary); border-bottom: 2px solid var(--color-accent); padding-bottom: var(--space-xs); margin-bottom: var(--space-sm); }
.shop-directory__category ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-2xs); }
.shop-directory__category li { font-size: var(--font-size-sm); color: var(--color-text); padding-left: 0; }


/* =============================================================
   GLOBAL STYLING IMPROVEMENTS — v2 2026-06-07
   Spacing, heading rhythm, content blocks, page hero, centering
   ============================================================= */

/* -----------------------------------------------------------
   HEADING RHYTHM — breathing room between titles and content
   ----------------------------------------------------------- */

h1, h2, h3, h4 {
  margin-top: 0;
  margin-bottom: var(--space-md);
}

/* Clear separation above h2 when it follows a paragraph or other element */
.history-content h2,
.section h2,
main h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

/* First h2 directly after h1 should have less top margin */
h1 + h2 {
  margin-top: var(--space-xl);
}

/* h1 needs comfortable bottom breathing room */
h1 {
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-display);
}

/* Paragraph spacing inside content areas */
.history-content p,
.section .container > p,
main > .container > p {
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-body);
}

/* Paragraphs that directly follow headings should be closer */
h2 + p, h3 + p {
  margin-top: 0;
}

/* -----------------------------------------------------------
   PAGE HERO — inner-page banner consistent with home hero
   ----------------------------------------------------------- */

.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-dark);
  overflow: hidden;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(28, 50, 36, 0.88) 0%,
    rgba(43, 74, 53, 0.72) 100%
  );
  z-index: 1;
}

.page-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: var(--space-3xl) var(--space-xl) var(--space-2xl);
  max-width: none;
  margin-inline: auto;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-text-light);
  line-height: var(--line-height-display);
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.40);
}

.page-hero__subtitle {
  font-family: var(--font-display);
  font-size: var(--font-size-xl);
  font-weight: 400;
  color: var(--color-accent-light);
  font-style: italic;
  margin-bottom: 0;
}

/* Decorative rule under hero title */
.page-hero__title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background-color: var(--color-accent);
  margin: var(--space-md) auto 0;
  border-radius: 2px;
}

/* -----------------------------------------------------------
   CONTENT BLOCK — centered readable prose column
   ----------------------------------------------------------- */

.content-block {
  max-width: 780px;
  margin-inline: auto;
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-2xl) var(--space-xl);
}

/* Wider content block for two-column layouts */
.content-block--wide {
  max-width: 1060px;
}

/* Flush block — no card look, just centering */
.content-block--flush {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

/* When a section already has a background, the block inside should be transparent */
.section--light .content-block,
.section--alt .content-block {
  background-color: var(--color-surface);
}

/* -----------------------------------------------------------
   SECTION INTRO TEXT — centered lead paragraph under heading
   ----------------------------------------------------------- */

.section-intro {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
  text-align: center;
  line-height: var(--line-height-body);
}

/* -----------------------------------------------------------
   SECTION HEADING — centered h2 with optional accent rule
   ----------------------------------------------------------- */

.section__heading {
  text-align: center;
  margin-bottom: var(--space-sm);
}

.section__heading + .section-intro {
  margin-top: 0;
}

/* -----------------------------------------------------------
   HISTORY PAGE — improved layout
   ----------------------------------------------------------- */

.history-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 1024px) {
  .history-content {
    grid-template-columns: 1fr 532px;
    gap: var(--space-3xl);
    align-items: start;
  }
}

.history-content h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 3px solid var(--color-accent);
}

.history-content h2 {
  font-size: var(--font-size-2xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.history-content p {
  margin-bottom: var(--space-lg);
  line-height: 1.75;
  color: var(--color-text);
}

.history-image img,
.history-image picture {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

/* Sticky sidebar for history image on wide screens */
@media (min-width: 1024px) {
  .history-image {
    position: sticky;
    top: calc(68px + var(--space-xl));
  }
}

/* -----------------------------------------------------------
   GENERAL PAGE SECTION — better vertical spacing between stacked sections
   ----------------------------------------------------------- */

.section + .section {
  border-top: 1px solid var(--color-border);
}

/* Sections that follow each other should feel distinct */
.section--light + .section--light {
  border-top: 1px solid var(--color-border);
}

/* -----------------------------------------------------------
   TABLE IMPROVEMENTS — for shops, restaurants, parking pages
   ----------------------------------------------------------- */

.data-table-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-top: var(--space-xl);
}

/* -----------------------------------------------------------
   CONTACT PAGE — info column spacing
   ----------------------------------------------------------- */

.contact-info-group {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border);
}

.contact-info-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* -----------------------------------------------------------
   RESPONSIVE — stack and center on mobile
   ----------------------------------------------------------- */

@media (max-width: 767px) {
  .page-hero {
    min-height: 220px;
  }
  .page-hero__title {
    font-size: var(--font-size-2xl);
  }
  .content-block {
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-md);
  }
}

@media (min-width: 768px) {
  .page-hero {
    min-height: 320px;
  }
  .hero__cta-row {
    flex-direction: row;
    justify-content: center;
  }
}


/* =============================================================
   CENTERING PASS — v3 2026-06-07
   Center section-level headings and intro text that sits outside
   text/content blocks. Does NOT touch body copy inside prose blocks.
   ============================================================= */

/* -----------------------------------------------------------
   SECTION CONTAINER — center direct-child headings & intro text
   These are page-level organizer elements, not body copy.
   Exception: .history-content children are excluded (prose block).
   ----------------------------------------------------------- */

/* Center h1 elements that sit directly inside a section container
   (section-level page titles, not inside prose/text blocks) */
.section .container > h1,
.section .container > h2 {
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}

/* Center intro paragraphs that sit directly inside a section container
   (opener text, not body copy paragraphs within text blocks) */
.section .container > p {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

/* -----------------------------------------------------------
   .page-intro — used on shops, restaurants, parking, visit
   Center the wrapper and its text
   ----------------------------------------------------------- */
.page-intro {
  margin-inline: auto;
  text-align: center;
}

.page-intro p {
  text-align: center;
}

/* -----------------------------------------------------------
   .services-intro — used on services page
   ----------------------------------------------------------- */
.services-intro {
  margin-inline: auto;
  text-align: center;
}

.services-intro p {
  text-align: center;
}

/* -----------------------------------------------------------
   ABOUT PAGE — sub-section headings and intro paragraphs
   (Organizations, Board, etc.) 
   ----------------------------------------------------------- */
#about .container > p,
#organizations .container > p,
#board .container > p {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

/* -----------------------------------------------------------
   PARKING — sub-heading "Downtown Parking Options" etc.
   ----------------------------------------------------------- */
.section .container > h2 {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

/* -----------------------------------------------------------
   RESTORE: do NOT center headings or paragraphs inside prose
   text blocks (.history-content, .contact-form-grid, etc.)
   ----------------------------------------------------------- */
.history-content h1,
.history-content h2,
.history-content p {
  text-align: left;
  margin-inline: unset;
  max-width: unset;
}

/* Contact form layout — left-align contact info labels */
.contact-info dt,
.contact-info dd,
.contact-info p {
  text-align: left;
}

/* Form fields should never be centered */
.contact-form p,
form p,
form label {
  text-align: left;
}

/* Board grid and org-list text left-aligned (inside card blocks) */
.board-grid p,
.board-grid h3,
.board-grid h4 {
  text-align: left;
}
.org-list p,
.org-list h3,
.org-list a {
  text-align: center;
}

/* Event card content — centered */
.event-card p,
.event-card h3,
.category-grid p,
.category-grid h3 {
  text-align: center;
}

/* Volunteer and donate section — center the direct intro paragraph only */
.section .container > .volunteer-intro,
.section .container > .donate-intro {
  text-align: center;
  margin-inline: auto;
}

/* -----------------------------------------------------------
   SECTION content — centered
   ----------------------------------------------------------- */
.pillar-grid h3,
.pillar-grid p,
.card h3,
.card p,
.event-card__body h3,
.event-card__body p {
  text-align: center;
}

/* Center section headings and content */
.pillar-grid h3,
.pillar-grid p,
.vc-block h3,
.vc-block p,
.card h3,
.event-card__body h3,
.section h2,
main h2 {
  text-align: center;
}


/* =============================================================
   HERO & INTRO P OVERRIDES — v4 2026-06-07
   Override global p { max-width: 68ch } for elements that need
   full-width centering (hero subtitle, section intro text, etc.)
   ============================================================= */

.page-hero__subtitle {
  max-width: none;
  width: 100%;
}

.page-hero__title {
  max-width: none;
  width: 100%;
}

.page-hero__content p {
  max-width: none;
  width: 100%;
  text-align: center;
}

/* Section intro paragraphs — centered, unconstrained by 68ch */
.section-intro {
  max-width: 680px;
}

/* Page-intro wrapper paragraphs */
.page-intro p {
  max-width: none;
}

/* Direct section container intro p — override 68ch */
.section .container > p {
  max-width: 680px;
  width: auto;
}

/* Services-intro paragraphs */
.services-intro p {
  max-width: none;
}


/* Override: tighten season-to-title gap in event cards */
.event-card__body .event-card__title {
  margin-top: var(--space-xs);
}

/* Contact CTA box — white text override */
.contact-cta p {
	  color: #ffffff;
}


/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border: 2px solid rgba(249, 245, 239, 0.25);
  border-radius: var(--radius-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.2s ease, border-color 0.2s ease;
  box-shadow: var(--shadow-card);
}

.back-to-top:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 3px;
}

.back-to-top.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}
