/* ═══════════════════════════════════════════════════════════════════
   This stylesheet has been reorganized for maintainability:
   all base/desktop rules keep their original order above, and every
   @media block has been consolidated below, one block per exact
   breakpoint (largest to smallest), instead of being repeated dozens
   of times throughout the file. No rules were added, removed, or
   edited — only reordered and merged by identical media condition.
═══════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════
   ALTADENA MUSICIANS — assets/css/style.css
   -----------------------------------------------------------------------
   Color Palette:
     #FFFFFF · #C1252D · #000000 · #706F70 · #707070
     #C3262E · #3D1279 · #CA0A1B · #006BB1 · #1C1E1F · #060606
   Fonts:
     Montserrat — titles, subtitles, headings, nav, buttons
     Georgia     — body content, paragraphs
═══════════════════════════════════════════════════════════════════════ */
/* ─────────────────────────────────────────────────────────────────────
   1.  CSS CUSTOM PROPERTIES
───────────────────────────────────────────────────────────────────── */
:root {
  /* Brand colours */
  --am-white      : #FFFFFF;
  --am-black      : #000000;
  --am-off-black  : #060606;
  --am-dark       : #1C1E1F;
  --am-red        : #C1252D;
  --am-red-mid    : #C3262E;
  --am-red-dark   : #CA0A1B;
  --am-purple     : #3D1279;
  --am-blue       : #006BB1;
  --am-gray       : #706F70;
  --am-gray-light : #707070;
  --am-shadow-sm  : rgba(0,0,0,0.16);
  --am-shadow-md  : rgba(0,0,0,0.22);
  --am-red-glow   : rgba(202,10,27,0.30);

  /* Layout */
  --header-height : 80px;
  --container-max : 1380px;

  /* Transitions */
  --ease-out      : cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast        : 0.18s;
  --t-mid         : 0.28s;
  --t-slow        : 0.42s;

  /* Typography */
  --font-title    : 'Montserrat', sans-serif;
  --font-body     : Georgia, 'Times New Roman', serif;
}
/* ─────────────────────────────────────────────────────────────────────
   2.  GLOBAL RESET & BASE
───────────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--am-dark);
  background: var(--am-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--am-dark);
  line-height: 1.2;
}
p, li, td, th, blockquote, label {
  font-family: var(--font-body);
  line-height: 1.75;
}
img { display: block; max-width: 100%; }
/* ─────────────────────────────────────────────────────────────────────
   3.  HEADER SHELL
───────────────────────────────────────────────────────────────────── */
.am-header {
  position: sticky;
  top: 0;
  z-index: 100;
  isolation: auto;
  transform: none;
  width: 100%;
  background: var(--am-white);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07), 0 2px 12px rgba(0,0,0,0.04);
  transition:
    box-shadow  var(--t-mid) var(--ease-out),
    background  var(--t-mid) var(--ease-out),
    padding     var(--t-mid) var(--ease-out);
  will-change: box-shadow;
}
/* Elevated state — triggered by JS on scroll */
.am-header.am-scrolled {
  box-shadow:
    0 1px 0 rgba(193,37,45,0.12),
    0 6px 32px rgba(0,0,0,0.11);
}
/* Progress bar underneath header */
.am-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: var(--scroll-pct, 0%);
  height: 2px;
  background: linear-gradient(90deg, var(--am-red) 0%, var(--am-red-dark) 100%);
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}
/* ===== Header nav item layout (link + arrow) ===== */
.am-header .am-dropdown {
  display    : flex;
  align-items: center;
  position   : relative; /* anchors .am-dropdown-menu */
}

.am-header .am-nav-link {
  flex: 0 0 auto;
}

/* ===== Dropdown arrow — standalone toggle button ===== */
.am-dropdown-arrow {
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  width          : 22px;
  height         : 34px;
  margin-left    : -12px;
  padding        : 0;
  background     : transparent;
  border         : none;
  cursor         : pointer;
  border-radius  : 50%;
  transition     : background 0.3s ease;
  line-height    : 1;
}
.am-dropdown-arrow:hover,
.am-dropdown-arrow:focus-visible {
  background   : rgba(193, 37, 45, 0.08);
  border-radius: 8px;
  outline      : none;
}

.am-dropdown-arrow-icon {
  display         : inline-block;
  width           : 8px;
  height          : 8px;
  border          : none;
  border-right    : 2px solid var(--am-red);
  border-bottom   : 2px solid var(--am-red);
  border-radius   : 0 0 1px 0;
  transform       : rotate(45deg);
  transform-origin: center center;
  transition      : transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Rotated "up" state when submenu is open */
.am-dropdown-arrow.am-arrow-open .am-dropdown-arrow-icon {
  transform : rotate(-135deg);
  margin-top: 4px;
}

.am-header .am-nav-link {
  flex: 0 0 auto;
}
/* ─────────────────────────────────────────────────────────────────────
   4.  NAVBAR INNER WRAPPER
───────────────────────────────────────────────────────────────────── */
.am-navbar {
  padding: 0;
  min-height: var(--header-height);
}
.am-navbar-inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
  gap: 0;
}
/* ─────────────────────────────────────────────────────────────────────
   5.  LOGO
───────────────────────────────────────────────────────────────────── */
.am-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 32px;
  padding: 10px 0;
  outline: none;
  /* subtle transform on hover */
  transition: transform var(--t-mid) var(--ease-out), opacity var(--t-fast);
}
.am-logo:hover  { transform: translateY(-1px); opacity: 0.92; }
.am-logo:active { transform: translateY(0);    opacity: 1;    }
.am-logo-img {
  height: 54px;       /* pixel-perfect — matches reference screenshot ratio */
  width: auto;
  object-fit: contain;
  /* sharpen the webp at all resolutions */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
/* ─────────────────────────────────────────────────────────────────────
   6.  NAV LIST
───────────────────────────────────────────────────────────────────── */
.am-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
/* ─────────────────────────────────────────────────────────────────────
   7.  NAV LINKS
───────────────────────────────────────────────────────────────────── */
.am-nav-link {
  /* typography */
  font-family: var(--font-title) !important;
  font-size   : 0.875rem        !important;
  font-weight : 500             !important;
  letter-spacing: 0.01em;
  color: var(--am-dark)         !important;
  white-space: nowrap;

  /* layout — full header height tap target */
  display    : flex !important;
  align-items: center;
  height     : var(--header-height);
  padding    : 0 15px !important;
  position   : relative;

  /* transitions */
  transition:
    color var(--t-fast) var(--ease-out) !important;
}
/* ── Animated bottom underline ── */
.am-nav-link::before {
  content: '';
  position: absolute;
  bottom: 16px;
  left : 15px;
  right: 15px;
  height: 2px;
  background: var(--am-red);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--t-mid) var(--ease-out);
}
.am-nav-link:hover,
.am-nav-link.show,
.am-nav-link.am-hovered,
.am-nav-link[aria-expanded="true"] {
  color: var(--am-red) !important;
}
/* .am-nav-link:hover::before,
.am-nav-link.show::before,
.am-nav-link.am-hovered::before,
.am-nav-link[aria-expanded="true"]::before {
  transform: scaleX(1);
} */
/* ── Premium red arrow — always red, springy arc rotation ── */
.am-nav-link.dropdown-toggle::after {
  content      : '';
  display      : inline-block;
  flex-shrink  : 0;
  width        : 7px;
  height       : 7px;
  border       : none !important;
  border-right : 2px solid var(--am-red) !important;
  border-bottom: 2px solid var(--am-red) !important;
  border-radius: 0 0 1px 0;
  margin-left  : 7px;
  margin-bottom: 1px;
  vertical-align: middle;
  transform    : rotate(45deg) scale(1);
  transform-origin: center center;
  transition   :
    transform   0.42s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.2s ease;
  opacity: 0.85;
}
/* Hover / open — springy bounce flip */
.am-dropdown:hover     > .am-nav-link.dropdown-toggle::after,
.am-nav-link.dropdown-toggle.am-hovered::after {
  transform : rotate(225deg) scale(1.2);
  opacity   : 1;
  border-right-color : var(--am-red-dark) !important;
  border-bottom-color: var(--am-red-dark) !important;
}
/* ─────────────────────────────────────────────────────────────────────
   8.  DROPDOWN MENU
───────────────────────────────────────────────────────────────────── */
.am-dropdown-menu {
  /* desktop positioning — anchored under its .am-dropdown parent */
  position      : absolute      !important;
  top           : 100%          !important;
  left          : 0             !important;
  right         : auto          !important;
  z-index       : 1050;

  /* reset bootstrap */
  border        : none          !important;
  margin-top    : 0             !important;
  padding       : 10px 0 14px  !important;
  border-radius : 0 0 14px 14px !important;
  background    : var(--am-white) !important;
  min-width     : 210px;

  /* red top accent line */
  border-top: 3px solid var(--am-red) !important;

  /* layered shadow */
  box-shadow:
    0 16px 48px rgba(0,0,0,0.11),
    0  4px 12px rgba(0,0,0,0.07),
    0  0   0 1px rgba(0,0,0,0.04) !important;

  /* ── Slide + fade animation ── */
  display   : block    !important;
  visibility: hidden;
  opacity   : 0;
  transform : translateY(10px);
  pointer-events: none;
  transition:
    opacity   var(--t-mid) var(--ease-out),
    transform var(--t-mid) var(--ease-out),
    visibility 0s linear var(--t-mid) !important;
}
.am-dropdown-menu.show {
  visibility    : visible;
  opacity       : 1;
  transform     : translateY(0);
  pointer-events: auto;
  transition:
    opacity   var(--t-mid) var(--ease-out),
    transform var(--t-mid) var(--ease-out),
    visibility 0s linear 0s !important;
}
/* Staggered item reveal */
.am-dropdown-menu.show .am-dropdown-item {
  animation: itemSlideIn var(--t-mid) var(--ease-out) both;
}
.am-dropdown-menu.show .am-dropdown-item:nth-child(1) { animation-delay: 0.03s; }
.am-dropdown-menu.show .am-dropdown-item:nth-child(2) { animation-delay: 0.07s; }
.am-dropdown-menu.show .am-dropdown-item:nth-child(3) { animation-delay: 0.11s; }
.am-dropdown-menu.show .am-dropdown-item:nth-child(4) { animation-delay: 0.15s; }
@keyframes itemSlideIn {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}
/* ─────────────────────────────────────────────────────────────────────
   9.  DROPDOWN ITEMS
───────────────────────────────────────────────────────────────────── */
.am-dropdown-item {
  font-family   : var(--font-title) !important;
  font-size     : 0.82rem           !important;
  font-weight   : 400               !important;
  color         : var(--am-dark)    !important;
  letter-spacing: 0.01em;
  padding       : 10px 24px        !important;
  position      : relative;
  display       : flex !important;
  align-items   : center;
  gap           : 10px;
  transition    : color var(--t-fast), padding-left var(--t-fast), background var(--t-fast) !important;
}
/* left-edge accent bar */
.am-dropdown-item::before {
  content   : '';
  position  : absolute;
  left      : 0;
  top       : 0;
  bottom    : 0;
  width     : 3px;
  background: var(--am-red);
  border-radius: 0 2px 2px 0;
  transform : scaleY(0);
  transform-origin: top center;
  transition: transform var(--t-fast) var(--ease-out);
}
.am-dropdown-item:hover {
  background  : rgba(193,37,45,0.045) !important;
  color       : var(--am-red)         !important;
  padding-left: 32px                  !important;
}
.am-dropdown-item:hover::before {
  transform: scaleY(1);
}
.am-dropdown-item:active {
  background: rgba(193,37,45,0.09) !important;
  color     : var(--am-red-dark)   !important;
}
/* ─────────────────────────────────────────────────────────────────────
   10.  DONATE NOW CTA BUTTON
───────────────────────────────────────────────────────────────────── */
.am-cta-item {
  margin-left: 24px;
  margin-right: 4px; /* small buffer so the pill's right curve + glow never clip against the header edge */
  flex-shrink: 0;
}
.am-btn-donate {
  display         : inline-flex;
  align-items     : center;
  justify-content : center;
  font-family     : var(--font-title) !important;
  font-size       : 0.78rem           !important;
  font-weight     : 800               !important;
  letter-spacing  : 1.6px;
  text-transform  : uppercase;
  color           : var(--am-white)   !important;
  background      : var(--am-red);
  border          : 2px solid var(--am-red);
  border-radius   : 50px;
  padding         : 13px 30px;
  white-space     : nowrap;
  position        : relative;
  overflow        : hidden;
  cursor          : pointer;
  transition:
    background    var(--t-mid) var(--ease-out),
    border-color  var(--t-mid) var(--ease-out),
    box-shadow    var(--t-mid) var(--ease-out),
    transform     var(--t-fast) var(--ease-out),
    letter-spacing var(--t-mid) var(--ease-out);
}
/* Shine sweep */
.am-btn-donate::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: linear-gradient(
    108deg,
    transparent 30%,
    rgba(255,255,255,0.22) 50%,
    transparent 70%
  );
  transform : translateX(-100%) skewX(-18deg);
  transition: transform 0.55s var(--ease-out);
}
.am-btn-donate:hover {
  background    : var(--am-red-dark);
  border-color  : var(--am-red-dark);
  box-shadow    : 0 8px 30px var(--am-red-glow);
  transform     : translateY(-2px);
  letter-spacing: 2px;
  color         : var(--am-white) !important;
}
.am-btn-donate:hover::before  { transform: translateX(160%) skewX(-18deg); }
.am-btn-donate:active         { transform: translateY(0) scale(0.97); box-shadow: none; }
/* Subtle pulse on load */
@keyframes donatePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(193,37,45,0); }
  50%       { box-shadow: 0 0 0 6px rgba(193,37,45,0.18); }
}
.am-btn-donate {
  animation: donatePulse 3s ease-in-out 1.5s 3;
}
/* ─────────────────────────────────────────────────────────────────────
   11.  MOBILE HAMBURGER
───────────────────────────────────────────────────────────────────── */
.am-toggler {
  display        : flex;
  flex-direction : column;
  justify-content: center;
  gap            : 5px;
  background     : none !important;
  border         : none !important;
  box-shadow     : none !important;
  padding        : 10px 8px !important;
  cursor         : pointer;
  outline        : none !important;
  border-radius  : 8px;
  transition     : background var(--t-fast);
}
.am-toggler:hover { background: rgba(193,37,45,0.06) !important; }
.am-toggler-bar {
  display      : block;
  width        : 26px;
  height       : 2.5px;
  background   : var(--am-dark);
  border-radius: 3px;
  transition   :
    transform  var(--t-mid) var(--ease-out),
    opacity    var(--t-mid) var(--ease-out),
    background var(--t-fast);
}
.am-toggler[aria-expanded="true"] .am-toggler-bar:nth-child(1) {
  transform : translateY(7.5px) rotate(45deg);
  background: var(--am-red);
}
.am-toggler[aria-expanded="true"] .am-toggler-bar:nth-child(2) {
  opacity  : 0;
  transform: scaleX(0.3);
}
.am-toggler[aria-expanded="true"] .am-toggler-bar:nth-child(3) {
  transform : translateY(-7.5px) rotate(-45deg);
  background: var(--am-red);
}
.yt-svg polygon { fill: var(--am-dark); }
.am-footer-social-link:hover .yt-svg polygon { fill: var(--am-white); }
.am-ig-guide-steps li::marker{ content: ""; }
/* ═══════════════════════════════════════════════════════════════
   SINGLE EVENT PAGE (am-se-*)
   Append to your main stylesheet. Reuses .am-pe-card styling from
   the Events Archive page for the "More Events" strip — no
   duplicate card CSS needed there.
═══════════════════════════════════════════════════════════════ */
/* ── HERO ── */
.am-se-hero {
  position   : relative;
  min-height : 420px;
  display    : flex;
  align-items: flex-end;
  overflow   : hidden;
  background : var(--am-purple);
}
.am-se-hero--noimg {
  min-height: 320px;
}
.am-se-hero-img-wrap {
  position: absolute;
  inset   : 0;
}
.am-se-hero-img {
  width      : 100%;
  height     : 100%;
  object-fit : cover;
}
.am-se-hero-gradient {
  position  : absolute;
  inset     : 0;
  background: linear-gradient(180deg, rgba(6,6,6,0.05) 0%, rgba(6,6,6,0.75) 100%);
}
.am-se-hero-inner {
  position      : relative;
  z-index       : 2;
  width         : 100%;
  max-width     : 1100px;
  margin        : 0 auto;
  padding       : 56px 40px 48px;
  display       : flex;
  flex-direction: column;
  gap           : 14px;
}
.am-se-back-link {
  display        : inline-flex;
  align-items    : center;
  gap            : 6px;
  align-self     : flex-start;
  font-family    : var(--font-title);
  font-size      : 0.8rem;
  font-weight    : 700;
  letter-spacing : 0.04em;
  text-transform : uppercase;
  color          : rgba(255,255,255,0.85);
  text-decoration: none;
  margin-bottom  : 8px;
  transition     : color 0.2s ease, transform 0.2s ease;
}
.am-se-back-link:hover {
  color    : var(--am-white);
  transform: translateX(-3px);
}
.am-se-back-icon {
  width : 16px;
  height: 16px;
}
.am-se-date-badge {
  display        : inline-flex;
  flex-direction : column;
  align-items    : center;
  justify-content: center;
  width          : 64px;
  height         : 64px;
  background     : var(--am-white);
  border-radius  : 12px;
  box-shadow     : 0 6px 20px rgba(0,0,0,0.25);
  margin-bottom  : 4px;
}
.am-se-date-month {
  font-family   : var(--font-title);
  font-size     : 0.72rem;
  font-weight   : 800;
  letter-spacing: 0.06em;
  color         : var(--am-red);
}
.am-se-date-day {
  font-family: var(--font-title);
  font-size  : 1.5rem;
  font-weight: 800;
  line-height: 1;
  color      : var(--am-off-black);
}
.am-se-hero-title {
  font-family: var(--font-title);
  font-size  : clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color      : var(--am-white);
  line-height: 1.15;
  margin     : 0;
  max-width  : 820px;
}
.am-se-hero-meta {
  display  : flex;
  flex-wrap: wrap;
  gap      : 24px;
  margin-top: 6px;
}
.am-se-meta-item {
  display    : inline-flex;
  align-items: center;
  gap        : 8px;
  font-family: var(--font-body);
  font-size  : 0.95rem;
  color      : rgba(255,255,255,0.92);
}
.am-se-meta-icon {
  width      : 18px;
  height     : 18px;
  flex-shrink: 0;
}
/* ── MAIN: content + sidebar ── */
.am-se-main {
  padding: 64px 40px 80px;
  background: var(--am-white);
}
.am-se-main-inner {
  max-width: 1100px;
  margin   : 0 auto;
  display  : grid;
  grid-template-columns: 1fr 320px;
  gap      : 56px;
  align-items: start;
}
.am-se-article {
  min-width: 0;
}
.am-se-content {
  font-family: var(--font-body);
  font-size  : 1rem;
  line-height: 1.8;
  color      : var(--am-dark);
}
.am-se-content p { margin: 0 0 20px; }
.am-se-content h2,
.am-se-content h3 {
  font-family: var(--font-title);
  color      : var(--am-off-black);
  font-weight: 800;
  margin     : 32px 0 14px;
}
.am-se-content ul,
.am-se-content ol {
  margin: 0 0 20px;
  padding-left: 22px;
}
.am-se-content a {
  color: var(--am-red);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.am-se-content img {
  max-width    : 100%;
  height       : auto;
  border-radius: 12px;
  margin       : 12px 0 24px;
}
/* ── SIDEBAR ── */
.am-se-sidebar {
  min-width: 0;
}
.am-se-sidebar-sticky {
  position: sticky;
  top     : calc(var(--header-height, 80px) + 24px);
  display : flex;
  flex-direction: column;
  gap     : 20px;
}
.am-se-sidebar-card {
  background   : #f8f8f8;
  border-radius: 16px;
  padding      : 28px;
  border       : 1px solid rgba(0,0,0,0.06);
}
.am-se-sidebar-card--red {
  background: var(--am-red);
  border    : none;
}
.am-se-sidebar-title {
  font-family: var(--font-title);
  font-size  : 1.05rem;
  font-weight: 800;
  color      : var(--am-off-black);
  margin     : 0 0 18px;
}
.am-se-sidebar-title--white {
  color: var(--am-white);
}
.am-se-detail-row {
  display      : flex;
  align-items  : flex-start;
  gap          : 12px;
  font-family  : var(--font-body);
  font-size    : 0.92rem;
  color        : var(--am-dark);
  margin-bottom: 18px;
}
.am-se-detail-row:last-child { margin-bottom: 0; }
.am-se-detail-icon {
  width      : 20px;
  height     : 20px;
  flex-shrink: 0;
  color      : var(--am-red);
  margin-top : 2px;
}
.am-se-detail-sub {
  color    : var(--am-gray);
  font-size: 0.85rem;
}
.am-se-detail-link {
  color          : var(--am-red);
  font-size      : 0.85rem;
  font-weight    : 700;
  text-decoration: none;
}
.am-se-detail-link:hover { text-decoration: underline; }
.am-se-sidebar-text {
  font-family: var(--font-body);
  font-size  : 0.9rem;
  color      : rgba(255,255,255,0.9);
  line-height: 1.6;
  margin     : 0 0 18px;
}
.am-se-sidebar-btn {
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  width          : 100%;
  font-family    : var(--font-title);
  font-size      : 0.82rem;
  font-weight    : 800;
  letter-spacing : 1.5px;
  text-transform : uppercase;
  color          : var(--am-red);
  background     : var(--am-white);
  border         : 2px solid var(--am-white);
  border-radius  : 50px;
  padding        : 14px 24px;
  text-decoration: none;
  transition     : background 0.25s ease, color 0.25s ease, transform 0.18s ease;
}
.am-se-sidebar-btn:hover {
  background: transparent;
  color     : var(--am-white);
  transform : translateY(-2px);
}
.am-se-sidebar-share {
  padding-top: 4px;
}
.am-se-share-label {
  font-family   : var(--font-title);
  font-size     : 0.78rem;
  font-weight   : 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color         : var(--am-gray);
  margin        : 0 0 12px;
}
.am-se-share-icons {
  display: flex;
  gap    : 12px;
}
.am-se-share-link {
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  width          : 40px;
  height         : 40px;
  border-radius  : 50%;
  background     : #f0f0f0;
  color          : var(--am-off-black);
  transition     : background 0.2s ease, color 0.2s ease, transform 0.18s ease;
}
.am-se-share-link svg { width: 18px; height: 18px; }
.am-se-share-link:hover {
  background: var(--am-red);
  color     : var(--am-white);
  transform : translateY(-2px);
}
/* ── MORE EVENTS STRIP ── */
.am-se-more {
  background: #f8f8f8;
  padding   : 64px 40px;
}
.am-se-more-inner {
  max-width: 1100px;
  margin   : 0 auto;
}
.am-se-more-eyebrow {
  font-family   : var(--font-title);
  font-size     : 0.8rem;
  font-weight   : 700;
  letter-spacing: 0.08em;
  color         : var(--am-red);
  text-align    : center;
  margin        : 0 0 8px;
}
.am-se-more-heading {
  font-family: var(--font-title);
  font-size  : clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color      : var(--am-off-black);
  text-align : center;
  margin     : 0 0 36px;
}
.am-se-more-grid {
  display              : grid;
  grid-template-columns: repeat(3, 1fr);
  gap                  : 24px;
}
/* ── RESPONSIVE ── */
/* ═══════════════════════════════════════════════════════════════
   NEWS / PRESS ARCHIVES + SINGLES
   Covers: archive-news.php, archive-press.php,
           single-news.php, single-press.php
   Shared classes: am-arc-* (archive hero/sidebar, used by all 4)
   Distinct classes: am-na-* (news cards), am-pr-* (press cards),
                     am-sn-* (single hero/content, shared by both singles)
═══════════════════════════════════════════════════════════════ */
/* ── SHARED ARCHIVE HERO ── */
.am-arc-hero {
  background: var(--am-purple);
  padding   : 72px 40px;
  text-align: center;
}
.am-arc-hero-inner {
  max-width: 700px;
  margin   : 0 auto;
}
.am-arc-hero-eyebrow {
  font-family   : var(--font-title);
  font-size     : 0.8rem;
  font-weight   : 700;
  letter-spacing: 0.1em;
  color         : rgba(255,255,255,0.85);
  margin        : 0 0 10px;
}
.am-arc-hero-heading {
  font-family: var(--font-title);
  font-size  : clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color      : var(--am-white);
  margin     : 0;
}
/* ── SHARED ARCHIVE MAIN LAYOUT ── */
.am-arc-main {
  padding: 64px 40px 80px;
  background: var(--am-white);
}
.am-arc-main-inner {
  max-width : 1100px;
  margin    : 0 auto;
  display   : grid;
  grid-template-columns: 1fr 320px;
  gap       : 56px;
  align-items: start;
}
.am-arc-listing { min-width: 0; }
.am-arc-empty {
  font-family: var(--font-body);
  color      : var(--am-gray);
  font-size  : 1rem;
}
/* ── SHARED SIDEBAR (used by both archives + both singles) ── */
.am-arc-sidebar { min-width: 0; }
.am-arc-sidebar-sticky,
.am-sn-sidebar-sticky {
  position: sticky;
  top     : calc(var(--header-height, 80px) + 24px);
  display : flex;
  flex-direction: column;
  gap     : 20px;
}
.am-arc-sidebar-card {
  background   : #f8f8f8;
  border-radius: 16px;
  padding      : 28px;
  border       : 1px solid rgba(0,0,0,0.06);
}
.am-arc-sidebar-card--red {
  background: var(--am-red);
  border    : none;
}
/* ===== Press Contact Card — Premium ===== */
.am-arc-sidebar-card--purple {
  position  : relative;
  background: var(--am-purple);
  border    : none;
  overflow  : hidden;
  box-shadow: 0 18px 45px rgba(61, 18, 121, 0.28);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Decorative floating orbs */
.am-arc-press-orb {
  position      : absolute;
  border-radius : 50%;
  pointer-events: none;
  z-index       : 0;
}
.am-arc-press-orb--1 {
  width     : 170px;
  height    : 170px;
  top       : -60px;
  right     : -55px;
  background: radial-gradient(circle, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0) 70%);
  animation : amArcPressFloat 7s ease-in-out infinite;
}
.am-arc-press-orb--2 {
  width     : 130px;
  height    : 130px;
  bottom    : -50px;
  left      : -40px;
  background: radial-gradient(circle, rgba(202,10,27,0.28) 0%, rgba(202,10,27,0) 70%);
  animation : amArcPressFloat 9s ease-in-out infinite reverse;
}
@keyframes amArcPressFloat {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-10px, 12px); }
}

.am-arc-press-inner {
  position: relative;
  z-index : 1;
}

/* Contact rows */
.am-arc-press-row {
  display    : flex;
  align-items: center;
  gap        : 14px;
  margin     : 0 0 16px;
}
.am-arc-press-row:last-child {
  margin-bottom: 0;
}
.am-arc-press-icon {
  flex         : 0 0 auto;
  width        : 40px;
  height       : 40px;
  display      : flex;
  align-items  : center;
  justify-content: center;
  border-radius: 12px;
  background   : rgba(255, 255, 255, 0.1);
  border       : 1px solid rgba(255, 255, 255, 0.14);
  color        : #FFFFFF;
  transition   : background 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.35s ease;
}
.am-arc-press-icon svg {
  width : 18px;
  height: 18px;
}
.am-arc-press-row:hover .am-arc-press-icon {
  background  : var(--am-red);
  border-color: var(--am-red);
  transform   : scale(1.08) rotate(-4deg);
}

.am-arc-press-text {
  font-family: Georgia, serif;
  font-size  : 16px;
  color      : rgba(255, 255, 255, 0.92);
  margin     : 0;
  word-break : break-word;
}

/* Link underline sweep */
.am-arc-press-link {
  color          : rgba(255, 255, 255, 0.92);
  text-decoration: none;
  background-image   : linear-gradient(90deg, var(--am-red), #CA0A1B);
  background-repeat  : no-repeat;
  background-size    : 0% 2px;
  background-position: 0 100%;
  padding-bottom : 2px;
  transition     : background-size 0.4s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s ease;
}
.am-arc-press-link:hover {
  color          : #FFFFFF;
  background-size: 100% 2px;
}
.am-arc-sidebar-title {
  font-family: var(--font-title);
  font-size  : 1.05rem;
  font-weight: 800;
  color      : var(--am-off-black);
  margin     : 0 0 16px;
}
.am-arc-sidebar-title--white { color: var(--am-white); }
.am-arc-cat-nav {
  display       : flex;
  flex-direction: column;
  gap           : 4px;
}
.am-arc-cat-link {
  display        : flex;
  align-items    : center;
  gap            : 10px;
  font-family    : var(--font-title);
  font-size      : 0.9rem;
  font-weight    : 600;
  color          : var(--am-dark);
  text-decoration: none;
  padding        : 10px 12px;
  border-radius  : 8px;
  transition     : background 0.2s ease, color 0.2s ease;
}
.am-arc-cat-link:hover {
  background: rgba(193,37,45,0.06);
}
.am-arc-cat-link--active {
  color     : var(--am-red);
  background: rgba(193,37,45,0.08);
}
.am-arc-cat-dot {
  width        : 8px;
  height       : 8px;
  border-radius: 50%;
  background   : rgba(0,0,0,0.2);
  flex-shrink  : 0;
}
.am-arc-cat-link--active .am-arc-cat-dot,
.am-arc-cat-link:hover .am-arc-cat-dot {
  background: var(--am-red);
}
.am-arc-sidebar-text {
  font-family: var(--font-body);
  font-size  : 0.9rem;
  color      : rgba(255,255,255,0.9);
  line-height: 1.6;
  margin     : 0 0 18px;
}
.am-arc-sidebar-card--purple .am-arc-sidebar-text{
  margin     : 0;
}
.am-arc-sidebar-btn {
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  width          : 100%;
  font-family    : var(--font-title);
  font-size      : 0.82rem;
  font-weight    : 800;
  letter-spacing : 1.5px;
  text-transform : uppercase;
  color          : var(--am-red);
  background     : var(--am-white);
  border         : 2px solid var(--am-white);
  border-radius  : 50px;
  padding        : 14px 24px;
  text-decoration: none;
  transition     : background 0.25s ease, color 0.25s ease, transform 0.18s ease;
}
.am-arc-sidebar-btn:hover {
  background: transparent;
  color     : var(--am-white);
  transform : translateY(-2px);
}
/* Recent posts shortcode — generic best-effort styling.
   [combined_recent_posts] markup is unknown; these are safe resets.
   If it still looks off once live, send the rendered HTML and this
   can be targeted precisely. */
.am-arc-related ul {
  list-style: none;
  margin    : 0;
  padding   : 0;
}
.am-arc-related li {
  padding      : 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.am-arc-related li:last-child { border-bottom: none; }
.am-arc-related a {
  font-family    : var(--font-body);
  font-size      : 0.88rem;
  color          : var(--am-dark);
  text-decoration: none;
  line-height    : 1.5;
}
.am-arc-related a:hover {
  color: var(--am-red);
}
.am-arc-related img {
  max-width    : 100%;
  height       : auto;
  border-radius: 8px;
}
/* Pagination */
.am-arc-pagination {
  margin-top: 40px;
}
.am-arc-pagination .nav-links {
  display : flex;
  gap     : 12px;
  justify-content: center;
}
.am-arc-pagination a,
.am-arc-pagination span {
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  min-width      : 42px;
  height         : 42px;
  padding        : 0 14px;
  border-radius  : 50px;
  font-family    : var(--font-title);
  font-size      : 0.85rem;
  font-weight    : 700;
  text-decoration: none;
  color          : var(--am-dark);
  background     : #f5f5f5;
  transition     : background 0.2s ease, color 0.2s ease;
}
.am-arc-pagination a:hover {
  background: var(--am-red);
  color     : var(--am-white);
}
.am-arc-pagination .current {
  background: var(--am-red);
  color     : var(--am-white);
}
/* ═══════════════════════════════════════════════════════════════
   NEWS ARCHIVE CARDS (am-na-*)
═══════════════════════════════════════════════════════════════ */
.am-na-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.am-na-card {
  display        : flex;
  gap            : 24px;
  text-decoration: none;
  padding        : 20px;
  border-radius  : 16px;
  transition     : background 0.25s ease, transform 0.2s ease;
}
.am-na-card:hover {
  background: #f8f8f8;
  transform : translateY(-2px);
}
.am-na-card-img-wrap {
  flex-shrink  : 0;
  width        : 200px;
  height       : 140px;
  border-radius: 12px;
  overflow     : hidden;
}
.am-na-card-img {
  width     : 100%;
  height    : 100%;
  object-fit: cover;
  display   : block;
}
.am-na-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.am-na-card-date {
  font-family   : var(--font-title);
  font-size     : 0.76rem;
  font-weight   : 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color         : var(--am-red);
  margin        : 0 0 8px;
}
.am-na-card-title {
  font-family: var(--font-title);
  font-size  : 1.15rem;
  font-weight: 800;
  color      : var(--am-off-black);
  line-height: 1.35;
  margin     : 0;
}
.am-na-card:hover .am-na-card-title {
  color: var(--am-red);
}
/* ═══════════════════════════════════════════════════════════════
   PRESS ARCHIVE CARDS (am-pr-*)
═══════════════════════════════════════════════════════════════ */
.am-pr-card {
  padding      : 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.am-pr-card:first-child { padding-top: 0; }
.am-pr-card-title {
  font-family: var(--font-title);
  font-size  : 1.25rem;
  font-weight: 800;
  margin     : 0 0 12px;
}
.am-pr-card-title a {
  color          : var(--am-off-black);
  text-decoration: none;
}
.am-pr-card-title a:hover { color: var(--am-red); }
.am-pr-card-excerpt {
  font-family: var(--font-body);
  font-size  : 0.95rem;
  color      : var(--am-gray);
  line-height: 1.7;
  margin     : 0 0 14px;
}
.am-pr-card-link {
  display        : inline-flex;
  align-items    : center;
  gap            : 6px;
  font-family    : var(--font-title);
  font-size      : 0.8rem;
  font-weight    : 800;
  letter-spacing : 0.05em;
  text-transform : uppercase;
  color          : var(--am-red);
  text-decoration: none;
}
.am-pr-arrow {
  width     : 16px;
  height    : 16px;
  transition: transform 0.2s ease;
}
.am-pr-card-link:hover .am-pr-arrow {
  transform: translateX(3px);
}
/* ═══════════════════════════════════════════════════════════════
   SINGLE NEWS / SINGLE PRESS (am-sn-*, shared by both templates)
═══════════════════════════════════════════════════════════════ */
.am-sn-hero {
  position   : relative;
  min-height : 320px;
  display    : flex;
  align-items: flex-end;
  overflow   : hidden;
  background : var(--am-red);
}
.am-sn-hero--noimg { min-height: 260px; }
.am-sn-hero-img-wrap { position: absolute; inset: 0; }
.am-sn-hero-img {
  width     : 100%;
  height    : 100%;
  object-fit: cover;
}
.am-sn-hero-gradient {
  position  : absolute;
  inset     : 0;
  background: linear-gradient(180deg, rgba(6,6,6,0.05) 0%, rgba(6,6,6,0.75) 100%);
}
.am-sn-hero-inner {
  position      : relative;
  z-index       : 2;
  width         : 100%;
  max-width     : 900px;
  margin        : 0 auto;
  padding       : 48px 40px 44px;
  display       : flex;
  flex-direction: column;
  gap           : 10px;
}
.am-sn-back-link {
  display        : inline-flex;
  align-items    : center;
  gap            : 6px;
  align-self     : flex-start;
  font-family    : var(--font-title);
  font-size      : 0.8rem;
  font-weight    : 700;
  letter-spacing : 0.04em;
  text-transform : uppercase;
  color          : rgba(255,255,255,0.85);
  text-decoration: none;
  margin-bottom  : 6px;
  transition     : color 0.2s ease, transform 0.2s ease;
}
.am-sn-back-link:hover {
  color    : var(--am-white);
  transform: translateX(-3px);
}
.am-sn-back-icon { width: 16px; height: 16px; }
.am-sn-hero-meta {
  font-family: var(--font-title);
  font-size  : 0.85rem;
  font-weight: 600;
  color      : rgba(255,255,255,0.75);
  margin     : 0;
}
.am-sn-hero-title {
  font-family: var(--font-title);
  font-size  : clamp(1.6rem, 3.6vw, 2.4rem);
  font-weight: 800;
  color      : var(--am-white);
  line-height: 1.2;
  margin     : 0;
  max-width  : 780px;
}
.am-sn-main {
  padding   : 64px 40px 80px;
  background: var(--am-white);
}
.am-sn-main-inner {
  max-width : 1100px;
  margin    : 0 auto;
  display   : grid;
  grid-template-columns: 1fr 320px;
  gap       : 56px;
  align-items: start;
}
.am-sn-article { min-width: 0; }
.am-sn-content {
  font-family: var(--font-body);
  font-size  : 1rem;
  line-height: 1.8;
  color      : var(--am-dark);
}
.am-sn-content p { margin: 0 0 20px; }
.am-sn-content h2,
.am-sn-content h3 {
  font-family: var(--font-title);
  color      : var(--am-off-black);
  font-weight: 800;
  margin     : 32px 0 14px;
}
.am-sn-content a {
  color: var(--am-red);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.am-sn-content img {
  max-width    : 100%;
  height       : auto;
  border-radius: 12px;
  margin       : 12px 0 24px;
}
.am-sn-share {
  margin-top   : 40px;
  padding-top  : 28px;
  border-top   : 1px solid rgba(0,0,0,0.08);
}
.am-sn-share-label {
  font-family   : var(--font-title);
  font-size     : 0.78rem;
  font-weight   : 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color         : var(--am-gray);
  margin        : 0 0 12px;
}
.am-sn-share-icons { display: flex; gap: 12px; }
.am-sn-share-link {
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  width          : 40px;
  height         : 40px;
  border-radius  : 50%;
  background     : #f0f0f0;
  color          : var(--am-off-black);
  transition     : background 0.2s ease, color 0.2s ease, transform 0.18s ease;
}
.am-sn-share-link svg { width: 18px; height: 18px; }
.am-sn-share-link:hover {
  background: var(--am-red);
  color     : var(--am-white);
  transform : translateY(-2px);
}
.am-sn-sidebar { min-width: 0; }
/* ── RESPONSIVE ── */
/* ─────────────────────────────────────────────────────────────────────
   12.  RESPONSIVE — TABLET & MOBILE  (< 1200px)
───────────────────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────────────
   13.  RESPONSIVE — SMALL TABLET  (< 768px)
───────────────────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────────────
   14.  RESPONSIVE — MOBILE  (< 480px)
───────────────────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────────────
   15.  LARGE DESKTOP  (> 1400px)
───────────────────────────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════════════
   COUNTER SECTION — MAKING A DIFFERENCE
═══════════════════════════════════════════════════════════════════ */
.am-counter-section {
  background : var(--am-purple);
  padding    : 0;
  position   : relative;
  overflow   : hidden;
}
/* Subtle animated grain texture overlay */
.am-counter-section::before {
  content  : '';
  position : absolute;
  inset    : 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 50%,
      rgba(255,255,255,0.04) 0%,
      transparent 70%);
  pointer-events: none;
  z-index  : 0;
}
/* Shimmering left/right light streaks */
.am-counter-section::after {
  content   : '';
  position  : absolute;
  top       : 0;
  left      : -100%;
  width     : 60%;
  height    : 100%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,0.035) 50%,
    transparent 60%
  );
  animation : counterShimmer 6s ease-in-out infinite;
  pointer-events: none;
  z-index   : 0;
}
@keyframes counterShimmer {
  0%   { left: -60%; }
  100% { left: 160%;  }
}
/* ── Inner wrapper ── */
.am-counter-inner {
  position       : relative;
  z-index        : 1;
  max-width      : var(--container-max);
  margin         : 0 auto;
  padding        : 38px 40px 42px;
  display        : flex;
  flex-direction : column;
  align-items    : center;
  gap            : 10px;
}
/* ── Eyebrow label ── */
.am-counter-eyebrow {
  font-family   : var(--font-title);
  font-size     : 1.875rem;
  font-weight   : 700;
  letter-spacing: 4px;
  color         : rgba(255,255,255,0.82);
  text-transform: uppercase;
  margin        : 0 0 4px;
  position      : relative;

  /* Fade-in on load */
  opacity       : 0;
  transform     : translateY(8px);
  transition    : opacity 0.6s ease, transform 0.6s ease;
}
.am-counter-eyebrow.am-visible {
  opacity  : 1;
  transform: translateY(0);
}
/* ── Stats grid — 3 columns desktop ── */
.am-counter-grid {
  display              : grid;
  grid-template-columns: 1fr 1fr 1fr;
  width                : 100%;
  align-items          : center;
}
/* ── Each stat item ── */
.am-counter-item {
  display       : flex;
  flex-direction: column;
  align-items   : center;
  gap           : 4px;
  padding       : 8px 32px;

  /* Entrance animation */
  opacity       : 0;
  transform     : translateY(20px);
  transition    : opacity 0.55s ease, transform 0.55s ease;
}
.am-counter-item.am-visible {
  opacity  : 1;
  transform: translateY(0);
}
/* Stagger delays */
.am-counter-item:nth-child(1) { transition-delay: 0.1s; }
.am-counter-item:nth-child(2) { transition-delay: 0.22s; }
.am-counter-item:nth-child(3) { transition-delay: 0.34s; }
/* Center item — vertical separators */
.am-counter-item--center {
  align-items : center;
  border-left : 1px solid rgba(255,255,255,0.15);
  border-right: 1px solid rgba(255,255,255,0.15);
  padding     : 8px 48px;
}
/* ── Big counter number ── */
.am-counter-number {
  font-family  : var(--font-title);
  font-size    : clamp(2.8rem, 5.5vw, 6.25rem);
  font-weight  : 800;
  color        : var(--am-white);
  line-height  : 1;
  letter-spacing: -1px;

  /* Number pop on count-up finish */
  transition   : transform 0.15s ease;
}
.am-counter-number.am-pop {
  transform: scale(1.08);
}
/* ── Stat label ── */
.am-counter-label {
  font-family   : var(--font-title);
  font-size     : 1.875rem;
  font-weight   : 600;
  color         : rgba(255,255,255,0.78);
  letter-spacing: 0.02em;
  white-space   : nowrap;
}
/* ══════════════════════════════════════════════
   COUNTER — TABLET  (< 900px)
══════════════════════════════════════════════ */
/* ══════════════════════════════════════════════
   COUNTER — MOBILE  (< 640px)
   Stack vertically, left-aligned, no separators
══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════════
   HERO BANNER SECTION
═══════════════════════════════════════════════════════════════════ */
.am-hero-section {
  background: var(--am-white);
  overflow  : hidden;
  position  : relative;
}
/* Mobile-only top block — hidden on desktop */
.am-hero-mobile-top {
  display: none;
}
/* Two-column grid */
.am-hero-inner {
  display              : grid;
  grid-template-columns: 1fr 1.08fr;
  min-height           : 480px;
  /* max-width            : var(--container-max); */
  margin               : 0 auto;
}
/* ── LEFT: Content ── */
.am-hero-content {
  padding        : 56px 52px 56px 48px;
  display        : flex;
  flex-direction : column;
  justify-content: center;
  gap            : 20px;
  opacity        : 0;
  transform      : translateX(-32px);
  transition     : opacity 0.7s ease, transform 0.7s ease;
}
.am-hero-content.am-visible {
  opacity  : 1;
  transform: translateX(0);
}
.am-hero-heading {
  font-family   : var(--font-title);
  font-size     : clamp(1.45rem, 2.4vw, 2.5rem);
  font-weight   : 800;
  color         : var(--am-off-black);
  line-height   : 1.22;
  letter-spacing: -0.3px;
  margin        : 0;
}
.am-hero-tagline {
  font-family: var(--font-title);
  font-size  : clamp(1rem, 1.5vw, 2rem);
  font-weight: 700;
  color      : var(--am-red);
  margin     : -8px 0 0;
  line-height: 1.3;
}
.am-hero-body {
  font-family: var(--font-body);
  font-size  : clamp(1.125rem, 1.1vw, 1.5rem);
  color      : var(--am-dark);
  line-height: 1.75;
  margin     : 0;
}
.am-hero-body strong { font-weight: 700; color: var(--am-off-black); }
.am-hero-body em     { font-style: italic; }
/* App row */
.am-hero-apps {
  display   : flex;
  gap       : 28px;
  margin-top: 6px;
  flex-wrap : wrap;
  justify-content: center;
}
.am-hero-app-pair {
  display       : flex;
  flex-direction: column;
  align-items   : center;
  gap           : 10px;
  opacity       : 0;
  transform     : translateY(16px);
  transition    : opacity 0.5s ease, transform 0.5s ease;
}
.am-hero-app-pair:nth-child(1) { transition-delay: 0.35s; }
.am-hero-app-pair:nth-child(2) { transition-delay: 0.50s; }
.am-hero-content.am-visible .am-hero-app-pair {
  opacity  : 1;
  transform: translateY(0);
}
/* QR box */
.am-qr-wrap {
  position     : relative;
  width        : auto;
  height       : 186px;
  /* border       : 1.5px solid rgba(0,0,0,0.12); */
  border-radius: 10px;
  overflow     : hidden;
  /* box-shadow   : 0 2px 12px rgba(0,0,0,0.08); */
  transition   : transform 0.25s ease, box-shadow 0.25s ease;
}
.am-qr-wrap:hover {
  transform : translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}
.am-qr-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.am-qr-heart {
  position       : absolute;
  bottom         : 5px;
  right          : 5px;
  width          : 22px;
  height         : 22px;
  background     : var(--am-red);
  border-radius  : 50%;
  display        : flex;
  align-items    : center;
  justify-content: center;
  font-size      : 0.6rem;
  color          : white;
  box-shadow     : 0 2px 6px rgba(193,37,45,0.4);
}
.am-store-badge  { display: block; }
.am-badge-img {
  height    : 36px;
  width     : auto;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.am-store-badge:hover .am-badge-img { transform: translateY(-2px); opacity: 0.85; }
/* ── RIGHT: Image ── */
.am-hero-image-wrap {
  position  : relative;
  overflow  : hidden;
  opacity   : 0;
  transform : translateX(32px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}
.am-hero-image-wrap.am-visible {
  opacity  : 1;
  transform: translateX(0);
}
.am-hero-img {
  width          : 100%;
  height         : 100%;
  object-fit     : cover;
  object-position: center;
  display        : block;
  transition     : transform 0.6s ease;
}
.am-hero-image-wrap:hover .am-hero-img { transform: scale(1.03); }
.am-hero-caption {
  position   : absolute;
  bottom     : 0;
  left       : 0;
  right      : 0;
  background : linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 60%, transparent 100%);
  color      : rgba(255,255,255,0.88);
  font-family: var(--font-title);
  font-size  : 1rem;
  line-height: 1.5;
  padding    : 28px 16px 12px;
  z-index    : 2;
  font-weight: 700;
}
/* ── Tablet (< 960px) ── */
/* ════════════════════════════════════════════════════════════
   HERO — MOBILE (< 640px)
   Order: title → subtitle → image → body content → QR codes
════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════════
   OUR MISSION SECTION
═══════════════════════════════════════════════════════════════════ */
.am-mission-section {
  background : var(--am-red);
  position   : relative;
  overflow   : hidden;
  padding    : 72px 40px;
  text-align : center;
}
/* Subtle radial glow from center */
.am-mission-section::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,255,255,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index   : 0;
}
/* Decorative rings */
.am-mission-ring {
  position     : absolute;
  border-radius: 50%;
  border       : 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
  z-index      : 0;
  animation    : missionRingPulse 5s ease-in-out infinite;
}
.am-mission-ring--1 {
  width : 520px;
  height: 520px;
  top   : 50%;
  left  : 50%;
  transform: translate(-50%, -50%) scale(1);
  animation-delay: 0s;
}
.am-mission-ring--2 {
  width : 820px;
  height: 820px;
  top   : 50%;
  left  : 50%;
  transform: translate(-50%, -50%) scale(1);
  animation-delay: 1.8s;
}
@keyframes missionRingPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1);    }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.04); }
}
/* Inner content wrapper */
.am-mission-inner {
  position      : relative;
  z-index       : 1;
  max-width     : 1200px;
  margin        : 0 auto;
  display       : flex;
  flex-direction: column;
  align-items   : center;
  gap           : 24px;
}
/* Eyebrow — "OUR MISSION" */
.am-mission-eyebrow {
  font-family   : var(--font-title);
  font-size     : 30px;
  font-weight   : 700;
  letter-spacing: 12px;
  color         : rgba(255,255,255,0.90);
  text-transform: uppercase;
  margin        : 0;

  /* Entrance */
  opacity       : 0;
  transform     : translateY(12px);
  transition    : opacity 0.6s ease, transform 0.6s ease;
}
.am-mission-eyebrow.am-visible { opacity: 1; transform: translateY(0); }
/* Main heading */
.am-mission-heading {
  font-family   : var(--font-title);
  font-size     : 30px;
  font-weight   : 800;
  color         : var(--am-white);
  line-height   : 1.35;
  letter-spacing: -0.2px;
  margin        : 0;
  max-width     : 1200px;

  opacity       : 0;
  transform     : translateY(16px);
  transition    : opacity 0.65s ease 0.12s, transform 0.65s ease 0.12s;
}
.am-mission-heading.am-visible { opacity: 1; transform: translateY(0); }
/* Body paragraph */
.am-mission-body {
  font-family: var(--font-body);
  font-size  : 24px;
  color      : rgba(255,255,255,0.82);
  line-height: 1.65;
  max-width  : 1200px;
  margin     : 0;

  opacity    : 0;
  transform  : translateY(16px);
  transition : opacity 0.65s ease 0.24s, transform 0.65s ease 0.24s;
}
.am-mission-body.am-visible { opacity: 1; transform: translateY(0); }
/* CTA Button */
.am-mission-btn {
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  font-family    : var(--font-title);
  font-size      : 1.25rem;
  font-weight    : 800;
  letter-spacing : 2px;
  text-transform : uppercase;
  color          : var(--am-off-black);
  background     : var(--am-white);
  border         : 2px solid var(--am-white);
  border-radius  : 50px;
  padding        : 16px 40px;
  margin-top     : 8px;
  position       : relative;
  overflow       : hidden;
  transition     :
    background   0.3s ease,
    color        0.3s ease,
    border-color 0.3s ease,
    transform    0.18s ease,
    box-shadow   0.3s ease;

  opacity        : 0;
  transform      : translateY(16px);
  /* Note: we handle the entrance separately via JS,
     but default the transition to avoid conflict */
}
.am-mission-btn.am-visible {
  opacity  : 1;
  transform: translateY(0);
  transition:
    opacity      0.65s ease 0.36s,
    transform    0.65s ease 0.36s;
}
/* Shine sweep on hover */
.am-mission-btn::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: linear-gradient(108deg, transparent 30%, rgba(193,37,45,0.12) 50%, transparent 70%);
  transform : translateX(-100%) skewX(-18deg);
  transition: transform 0.55s ease;
}
.am-mission-btn:hover {
  background  : transparent;
  color       : var(--am-white);
  border-color: var(--am-white);
  transform   : translateY(-2px);
  box-shadow  : 0 8px 28px rgba(0,0,0,0.18);
}
.am-mission-btn:hover::before { transform: translateX(160%) skewX(-18deg); }
.am-mission-btn:active        { transform: translateY(0) scale(0.97); }
/* ── Tablet (< 900px) ── */
/* ── Mobile (< 640px) ── */
/* ═══════════════════════════════════════════════════════════════════
   OUR VENUE SECTION
═══════════════════════════════════════════════════════════════════ */
.am-venue-section {
  display              : grid;
  grid-template-columns: 1.5fr 1fr;
  min-height           : 520px;
  background           : var(--am-white);
  position             : relative;
  overflow             : hidden;
}
/* ══════════════════════════════════════
   LEFT — Image
══════════════════════════════════════ */
.am-venue-image-wrap {
  position  : relative;
  overflow  : hidden;

  opacity   : 0;
  transform : translateX(-28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.am-venue-image-wrap.am-visible {
  opacity  : 1;
  transform: translateX(0);
}
.am-venue-img {
  width          : 100%;
  height         : 100%;
  object-fit     : cover;
  object-position: center top;
  display        : block;
  transition     : transform 0.7s ease;
}
.am-venue-image-wrap:hover .am-venue-img {
  transform: scale(1.04);
}
/* Photo credit */
.am-venue-photo-credit {
  position   : absolute;
  bottom     : 12px;
  left       : 14px;
  font-family: var(--font-title);
  font-size  : 1rem;
  color      : rgba(255,255,255,0.80);
  z-index    : 3;
  font-weight: 700;
}
/* ── Music Center logo overlay (bottom-center of image) ── */
.am-venue-logo-overlay {
  position       : absolute;
  bottom         : 0;
  left           : 0;
  right          : 1.5rem;
  display        : flex;
  justify-content: flex-end;
  align-items    : flex-end;
  padding-bottom : 20px;
  background     : linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
  z-index        : 3;
}
.am-venue-logo-badge {
  display       : flex;
  flex-direction: column;
  align-items   : center;
  gap           : 2px;
}
.am-venue-eagle {
  width : 90px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.am-venue-logo-name {
  font-family   : var(--font-title);
  font-size     : 1.3rem;
  font-weight   : 700;
  font-style    : italic;
  color         : var(--am-white);
  letter-spacing: -0.3px;
  text-shadow   : 0 1px 6px rgba(0,0,0,0.5);
  line-height   : 1;
}
.am-venue-logo-sub {
  font-family   : var(--font-title);
  font-size     : 0.55rem;
  font-weight   : 700;
  letter-spacing: 2.5px;
  color         : rgba(255,255,255,0.85);
  text-transform: uppercase;
  text-shadow   : 0 1px 4px rgba(0,0,0,0.4);
}
/* ══════════════════════════════════════
   RIGHT — Content
══════════════════════════════════════ */
.am-venue-content {
  padding        : 60px 56px 60px 52px;
  display        : flex;
  flex-direction : column;
  justify-content: center;
  gap            : 20px;

  opacity        : 0;
  transform      : translateX(28px);
  transition     : opacity 0.75s ease 0.18s, transform 0.75s ease 0.18s;
}
.am-venue-content.am-visible {
  opacity  : 1;
  transform: translateX(0);
}
/* Eyebrow — "OUR VENUE" */
.am-venue-eyebrow {
  font-family   : var(--font-title);
  font-size     : 1.875rem;
  font-weight   : 700;
  letter-spacing: 12px;          /* ← exactly 12px as specified */
  color         : var(--am-dark);
  text-transform: uppercase;
  margin        : 0;
  text-align    : center;
  opacity       : 0;
  transform     : translateY(10px);
  transition    : opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}
.am-venue-address {
    font-size: 1.5rem;
    text-align: center;
}
.am-venue-eyebrow.am-visible { opacity: 1; transform: translateY(0); }
/* Red heading */
.am-venue-heading {
  font-family   : var(--font-title);
  font-size     : clamp(1.4rem, 2vw, 2rem);
  font-weight   : 700;
  color         : var(--am-red);
  line-height   : 1.28;
  letter-spacing: -0.2px;
  margin        : 0;

  opacity       : 0;
  transform     : translateY(14px);
  transition    : opacity 0.6s ease 0.38s, transform 0.6s ease 0.38s;
}
.am-venue-heading.am-visible { opacity: 1; transform: translateY(0); }
/* Body paragraphs */
.am-venue-body {
  font-family: var(--font-body);
  font-size  : 1.5rem;
  color      : var(--am-dark);
  line-height: 1.5;
  margin     : 0;
  opacity    : 0;
  transform  : translateY(14px);
  transition : opacity 0.6s ease, transform 0.6s ease;
}
.am-venue-body:nth-of-type(1) { transition-delay: 0.46s; }
.am-venue-body:nth-of-type(2) { transition-delay: 0.54s; }
.am-venue-body.am-visible { opacity: 1; transform: translateY(0); }
/* CTA Button */
.am-venue-btn {
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  align-self     : flex-start;
  font-family    : var(--font-title);
  font-size      : 1.25rem;
  font-weight    : 800;
  letter-spacing : 1.8px;
  text-transform : uppercase;
  color          : var(--am-white);
  background     : var(--am-red);
  border         : 2px solid var(--am-red);
  border-radius  : 50px;
  padding        : 15px 36px;
  margin-top     : 4px;
  position       : relative;
  overflow       : hidden;
  transition     :
    background   0.3s ease,
    border-color 0.3s ease,
    box-shadow   0.3s ease,
    transform    0.18s ease;

  opacity        : 0;
  transform      : translateY(14px);
  transition     :
    opacity      0.6s ease 0.62s,
    transform    0.6s ease 0.62s;
}
.am-venue-btn.am-visible {
  opacity  : 1;
  transform: translateY(0);
  /* Re-declare hover transitions after entrance completes */
  transition:
    opacity      0.6s ease 0.62s,
    transform    0.18s ease,
    background   0.3s ease,
    border-color 0.3s ease,
    box-shadow   0.3s ease;
}
/* Shine sweep */
.am-venue-btn::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: linear-gradient(108deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform : translateX(-100%) skewX(-18deg);
  transition: transform 0.55s ease;
}
.am-venue-btn:hover {
  background  : var(--am-red-dark);
  border-color: var(--am-red-dark);
  box-shadow  : 0 8px 28px rgba(202,10,27,0.35);
  transform   : translateY(-2px);
  color       : var(--am-white);
}
.am-venue-btn:hover::before { transform: translateX(160%) skewX(-18deg); }
.am-venue-btn:active        { transform: translateY(0) scale(0.97); }
/* ── Tablet (< 960px) ── */
/* ── Mobile (< 640px) — stack vertically ── */
/* ═══════════════════════════════════════════════════════════════════
   UPCOMING SHOWS SECTION
═══════════════════════════════════════════════════════════════════ */
.am-shows-section {
  background    : var(--am-white);
  padding       : 64px 40px 72px;
  display       : flex;
  flex-direction: column;
  align-items   : center;
  gap           : 0;
  position      : relative;
  overflow      : hidden;
}
/* Subtle radial glow */
.am-shows-section::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: radial-gradient(ellipse 75% 50% at 50% 0%, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index   : 0;
}
/* ── Title eyebrow ── */
.am-shows-eyebrow {
  position      : relative;
  z-index       : 1;
  font-family   : var(--font-title);
  font-size     : 1.875rem;
  font-weight   : 700;
  letter-spacing: 12px;
  color         : var(--am-purple);
  text-transform: uppercase;
  text-align    : center;
  margin        : 0 0 40px;

  opacity       : 0;
  transform     : translateY(12px);
  transition    : opacity 0.6s ease, transform 0.6s ease;
}
.am-shows-eyebrow.am-visible { opacity: 1; transform: translateY(0); }
/* ── Embed wrapper ── */
.am-shows-embed-wrap {
  position: relative;
  z-index : 1;
  width   : 100%;
  max-width: var(--container-max);
  margin  : 0 auto;

  opacity   : 1;
  transform : translateY(20px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}
.am-shows-embed-wrap.am-visible { opacity: 1; transform: translateY(0); }
/* ── View All button ── */
.am-shows-btn {
  position       : relative;
  z-index        : 1;
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  font-family    : var(--font-title);
  font-size      : 1.25rem;
  font-weight    : 800;
  letter-spacing : 2px;
  text-transform : uppercase;
  color          : var(--am-white);
  background     : transparent;
  border         : 2px solid var(--am-white);
  border-radius  : 50px;
  padding        : 16px 40px;
  margin-top     : 48px;
  overflow       : hidden;
  transition     :
    background  0.3s ease,
    color       0.3s ease,
    box-shadow  0.3s ease,
    transform   0.18s ease;

  opacity        : 0;
  transform      : translateY(16px);
}
.am-shows-btn.am-visible {
  opacity  : 1;
  transform: translateY(0);
  transition:
    opacity     0.6s ease 0.35s,
    transform   0.6s ease 0.35s,
    background  0.3s ease,
    color       0.3s ease,
    box-shadow  0.3s ease;
}
/* Shine sweep */
.am-shows-btn::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: linear-gradient(108deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform : translateX(-100%) skewX(-18deg);
  transition: transform 0.55s ease;
}
.am-shows-btn:hover {
  background: var(--am-white);
  color     : var(--am-purple);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transform : translateY(-2px);
}
.am-shows-btn:hover::before { transform: translateX(160%) skewX(-18deg); }
.am-shows-btn:active        { transform: translateY(0) scale(0.97); }
/* ── Tablet (< 900px) ── */
/* ── Mobile (< 640px) ── */
/* ═══════════════════════════════════════════════════════════════════
   AS SEEN ON — PRESS LOGOS
═══════════════════════════════════════════════════════════════════ */
.am-press-section {
  background    : var(--am-white);
  padding       : 64px 40px 72px;
  display       : flex;
  flex-direction: column;
  align-items   : center;
  gap           : 0;
}
/* ── Eyebrow ── */
.am-press-eyebrow {
  font-family   : var(--font-title);
  font-size     : 1.875rem;
  font-weight   : 700;
  letter-spacing: 12px;
  color         : var(--am-black);
  text-transform: uppercase;
  text-align    : center;
  margin        : 0 0 52px;

  opacity   : 0;
  transform : translateY(10px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.am-press-eyebrow.am-visible { opacity: 1; transform: translateY(0); }
/* ── Rows ── */
.am-press-row {
  display        : flex;
  align-items    : center;
  justify-content: center;
  flex-wrap      : wrap;
  width          : 100%;
  max-width      : 1200px;
  margin-bottom  : 8px;
}
.am-press-row:last-child { margin-bottom: 0; }
/* ── Each logo cell ── */
.am-press-item {
  display        : flex;
  align-items    : center;
  justify-content: center;
  padding        : 16px 40px;
  /* border-right   : 1.5px solid rgba(0,0,0,0.10); */
  text-decoration: none;
  cursor         : pointer;

  opacity   : 0;
  transform : translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.am-press-item:last-child { border-right: none; }
.am-press-item.am-visible { opacity: 1; transform: translateY(0); }
/* Stagger — row 1 */
.am-press-row:nth-child(2) .am-press-item:nth-child(1) { transition-delay: 0.06s; }
.am-press-row:nth-child(2) .am-press-item:nth-child(2) { transition-delay: 0.12s; }
.am-press-row:nth-child(2) .am-press-item:nth-child(3) { transition-delay: 0.18s; }
.am-press-row:nth-child(2) .am-press-item:nth-child(4) { transition-delay: 0.24s; }
.am-press-row:nth-child(2) .am-press-item:nth-child(5) { transition-delay: 0.30s; }
/* Stagger — row 2 */
.am-press-row:nth-child(3) .am-press-item:nth-child(1) { transition-delay: 0.18s; }
.am-press-row:nth-child(3) .am-press-item:nth-child(2) { transition-delay: 0.24s; }
.am-press-row:nth-child(3) .am-press-item:nth-child(3) { transition-delay: 0.30s; }
.am-press-row:nth-child(3) .am-press-item:nth-child(4) { transition-delay: 0.36s; }
/* ── Logo image ── */
.am-press-img {
  height    : 44px;
  width     : auto;
  max-width : 160px;
  object-fit: contain;
  display   : block;

  /* Desaturate by default — color on hover */
  /* filter    : grayscale(100%) opacity(0.65); */
  transition: filter 0.3s ease, transform 0.3s ease;
}
.am-press-item:hover .am-press-img {
  filter   : grayscale(0%) opacity(1);
  transform: translateY(-3px) scale(1.05);
}
/* ── Tablet (< 900px) ── */
/* ── Mobile (< 640px) ── */
/* ═══════════════════════════════════════════════════════════════════
   ALTADENA MUSIC CENTER SECTION
═══════════════════════════════════════════════════════════════════ */
.am-amc-section {
  background: var(--am-red);
  padding   : 72px 40px 80px;
  position  : relative;
  overflow  : hidden;
}
/* Subtle radial glow */
.am-amc-section::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(255,255,255,0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index   : 0;
}
/* ── Inner wrapper ── */
.am-amc-inner {
  position      : relative;
  z-index       : 1;
  max-width     : var(--container-max);
  margin        : 0 auto;
  display       : flex;
  flex-direction: column;
  align-items   : center;
  gap           : 40px;
}
/* ── Header block ── */
.am-amc-header {
  text-align: center;
  max-width : 1100px;

  opacity   : 0;
  transform : translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.am-amc-header.am-visible { opacity: 1; transform: translateY(0); }
.am-amc-title {
  font-family   : var(--font-title);
  font-size     : clamp(1.6rem, 2.8vw, 2rem);
  font-weight   : 700;
  color         : var(--am-white);
  margin        : 0 0 16px;
  letter-spacing: -0.3px;
  line-height   : 1.2;
}
.am-amc-subtitle {
  font-family: var(--font-body);
  font-size  : clamp(0.92rem, 1.2vw, 1.5rem);
  color      : rgba(255,255,255,0.85);
  line-height: 1.7;
  margin     : 0;
}
/* ── Cards grid — 3 columns ── */
.am-amc-grid {
  display              : grid;
  grid-template-columns: repeat(3, 1fr);
  gap                  : 24px;
  width                : 100%;
}
/* ── Individual card ── */
.am-amc-card {
  display       : flex;
  flex-direction: column;
  gap           : 16px;

  opacity   : 0;
  transform : translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.am-amc-card.am-visible { opacity: 1; transform: translateY(0); }
.am-amc-card:nth-child(1) { transition-delay: 0.10s; }
.am-amc-card:nth-child(2) { transition-delay: 0.22s; }
.am-amc-card:nth-child(3) { transition-delay: 0.34s; }
/* ── Card image wrapper ── */
.am-amc-card-img-wrap {
  position     : relative;
  width        : 100%;
  aspect-ratio : 16 / 10;
  overflow     : hidden;
  border-radius: 4px;
  background   : rgba(0,0,0,0.35);
}
.am-amc-card-img {
  width          : 100%;
  height         : 100%;
  object-fit     : cover;
  object-position: center;
  display        : block;
  transition     : transform 0.55s ease;
}
.am-amc-card:hover .am-amc-card-img {
  transform: scale(1.05);
}
/* Subtle dark overlay on image */
.am-amc-card-img-wrap::after {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: rgba(0,0,0,0.18);
  transition: background 0.3s ease;
  z-index   : 1;
}
.am-amc-card:hover .am-amc-card-img-wrap::after {
  background: rgba(0,0,0,0.06);
}
/* ── Card body ── */
.am-amc-card-body {
  display       : flex;
  flex-direction: column;
  gap           : 8px;
}
.am-amc-card-title {
  font-family   : var(--font-title);
  font-size     : 1.5rem;
  font-weight   : 700;
  color         : var(--am-white);
  margin        : 0;
  letter-spacing: 0.01em;
  line-height   : 1.3;
}
.am-amc-card-text {
  font-family: var(--font-body);
  font-size  : 1.5rem;
  color      : rgba(255,255,255,0.82);
  line-height: 1.5;
  margin     : 0;
}
/* ── CTA Button ── */
.am-amc-btn {
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  font-family    : var(--font-title);
  font-size      : 1.25rem;
  font-weight    : 700;
  letter-spacing : 2px;
  text-transform : uppercase;
  color          : var(--am-off-black);
  background     : var(--am-white);
  border         : 2px solid var(--am-white);
  border-radius  : 50px;
  padding        : 16px 48px;
  position       : relative;
  overflow       : hidden;
  margin-top     : 8px;

  opacity   : 0;
  transform : translateY(16px);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}
.am-amc-btn.am-visible {
  opacity  : 1;
  transform: translateY(0);
  transition:
    opacity      0.6s ease 0.4s,
    transform    0.18s ease,
    background   0.3s ease,
    color        0.3s ease,
    box-shadow   0.3s ease;
}
/* Shine sweep */
.am-amc-btn::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: linear-gradient(108deg, transparent 30%, rgba(193,37,45,0.1) 50%, transparent 70%);
  transform : translateX(-100%) skewX(-18deg);
  transition: transform 0.55s ease;
}
.am-amc-btn:hover {
  background: transparent;
  color     : var(--am-white);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  transform : translateY(-2px);
}
.am-amc-btn:hover::before { transform: translateX(160%) skewX(-18deg); }
.am-amc-btn:active        { transform: translateY(0) scale(0.97); }
/* ── Tablet (< 900px) ── */
/* ── Mobile (< 640px) — single column ── */
/* ═══════════════════════════════════════════════════════════════════
   OUR STORIES SECTION
═══════════════════════════════════════════════════════════════════ */
.am-stories-section {
  background    : var(--am-white);
  padding       : 72px 0 80px;
  display       : flex;
  flex-direction: column;
  align-items   : center;
  gap           : 40px;
  position      : relative;
  overflow      : hidden;
}
/* ── Eyebrow title ── */
.am-stories-eyebrow {
  font-family   : var(--font-title);
  font-size     : 1.875rem;
  font-weight   : 700;
  letter-spacing: 12px;
  color         : var(--am-off-black);
  text-transform: uppercase;
  text-align    : center;
  margin        : 0;
  line-height   : 1.2;

  opacity   : 0;
  transform : translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.am-stories-eyebrow.am-visible { opacity: 1; transform: translateY(0); }
/* ── Slider outer wrap (arrows + track) ── */
.am-stories-slider-wrap {
  display    : flex;
  align-items: center;
  width      : 100%;
  max-width  : 1300px;
  padding    : 0 24px;
  gap        : 16px;
  position   : relative;

  opacity   : 0;
  transform : translateY(20px);
  transition: opacity 0.65s ease 0.15s, transform 0.65s ease 0.15s;
}
.am-stories-slider-wrap.am-visible { opacity: 1; transform: translateY(0); }
/* ── Arrow buttons ── */
.am-stories-arrow {
  flex-shrink   : 0;
  width         : 44px;
  height        : 44px;
  background    : none;
  border        : none;
  padding       : 0;
  cursor        : pointer;
  display       : flex;
  align-items   : center;
  justify-content: center;
  transition    : transform 0.22s ease, opacity 0.22s ease;
  opacity       : 0.7;
}
.am-stories-arrow:hover { opacity: 1; transform: scale(1.1); }
.am-stories-arrow:active { transform: scale(0.95); }
.am-stories-arrow svg { width: 44px; height: 44px; }
/* Arrow circle + chevron color on hover */
.am-stories-arrow:hover circle { stroke: var(--am-red); }
.am-stories-arrow:hover path   { stroke: var(--am-red); }
/* ── Track wrapper — clips overflow ── */
.am-stories-track-wrap {
  flex    : 1;
  overflow: hidden;
}
/* ── Sliding track ── */
.am-stories-track {
  display   : flex;
  transition: transform 0.52s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
/* ── Individual slide ── */
.am-stories-slide {
  display    : flex;
  align-items: stretch;
  gap        : 40px;
  min-width  : 100%;
  padding    : 8px 16px;
}
/* ── Story image ── */
.am-stories-img-wrap {
  flex-shrink  : 0;
  width        : 220px;
  aspect-ratio : 4 / 5;
  overflow     : hidden;
  border-radius: 4px;
  background   : #888;
}
.am-stories-img {
  width     : 100%;
  height    : 100%;
  object-fit: cover;
  display   : block;
  transition: transform 0.5s ease;
}
.am-stories-img-wrap:hover .am-stories-img { transform: scale(1.04); }
/* ── Story content ── */
.am-stories-content {
  display       : flex;
  flex-direction: column;
  gap           : 16px;
  padding-top   : 4px;
}
/* Name + location row */
.am-stories-meta {
  display    : flex;
  align-items: baseline;
  gap        : 10px;
  flex-wrap  : wrap;
}
.am-stories-name {
  font-family: var(--font-title);
  font-size  : 0.95rem;
  font-weight: 700;
  color      : var(--am-off-black);
}
.am-stories-location {
  font-family: var(--font-title);
  font-size  : 0.82rem;
  font-weight: 400;
  color      : var(--am-gray);
}
/* Quote paragraphs */
.am-stories-quote {
  font-family: var(--font-body);
  font-size  : 1.2rem;
  color      : var(--am-dark);
  line-height: 1.78;
  margin     : 0;
  font-style : italic;
}
.am-stories-quote--closing {
  margin-top: -6px;
}
/* ── Dots ── */
.am-stories-dots {
  display: flex;
  gap    : 8px;
  align-items: center;

  opacity   : 0;
  transform : translateY(10px);
  transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}
.am-stories-dots.am-visible { opacity: 1; transform: translateY(0); }
.am-stories-dot {
  width        : 8px;
  height       : 8px;
  border-radius: 50%;
  background   : rgba(0,0,0,0.18);
  border       : none;
  padding      : 0;
  cursor       : pointer;
  transition   : background 0.25s ease, transform 0.25s ease, width 0.25s ease;
}
.am-stories-dot--active {
  background   : var(--am-red);
  width        : 24px;
  border-radius: 4px;
  transform    : none;
}
.am-stories-dot:hover:not(.am-stories-dot--active) {
  background: rgba(0,0,0,0.35);
  transform : scale(1.2);
}
/* ── CTA Button ── */
.am-stories-btn {
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  font-family    : var(--font-title);
  font-size      : 0.8rem;
  font-weight    : 800;
  letter-spacing : 2px;
  text-transform : uppercase;
  color          : var(--am-white);
  background     : var(--am-red);
  border         : 2px solid var(--am-red);
  border-radius  : 50px;
  padding        : 16px 48px;
  position       : relative;
  overflow       : hidden;
  transition     :
    background   0.3s ease,
    border-color 0.3s ease,
    box-shadow   0.3s ease,
    transform    0.18s ease;

  opacity   : 0;
  transform : translateY(14px);
  transition: opacity 0.55s ease 0.35s, transform 0.55s ease 0.35s;
}
.am-stories-btn.am-visible {
  opacity  : 1;
  transform: translateY(0);
  transition:
    opacity      0.55s ease 0.35s,
    transform    0.18s ease,
    background   0.3s ease,
    border-color 0.3s ease,
    box-shadow   0.3s ease;
}
/* Shine sweep */
.am-stories-btn::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: linear-gradient(108deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform : translateX(-100%) skewX(-18deg);
  transition: transform 0.55s ease;
}
.am-stories-btn:hover {
  background  : var(--am-red-dark);
  border-color: var(--am-red-dark);
  box-shadow  : 0 8px 28px rgba(202,10,27,0.32);
  transform   : translateY(-2px);
  color       : var(--am-white);
}
.am-stories-btn:hover::before { transform: translateX(160%) skewX(-18deg); }
.am-stories-btn:active        { transform: translateY(0) scale(0.97); }
/* ── Tablet (< 960px) ── */
/* ── Mobile (< 640px) ── */
/* ═══════════════════════════════════════════════════════════════════
   GET INVOLVED SECTION
═══════════════════════════════════════════════════════════════════ */
.am-involved-section {
  background: var(--am-red);
  position  : relative;
  overflow  : hidden;
}
/* Subtle glow top-left */
.am-involved-section::before {
  content   : '';
  position  : absolute;
  top       : -120px;
  left      : -120px;
  width     : 500px;
  height    : 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index   : 0;
}
/* ── Two-column grid ── */
.am-involved-inner {
  display              : grid;
  grid-template-columns: 1fr 1.35fr;
  min-height           : 520px;
  /*max-width            : var(--container-max);*/
  margin               : 0 auto;
  position             : relative;
  z-index              : 1;
}
/* ══════════════════════════════════════
   LEFT — Content
══════════════════════════════════════ */
.am-involved-content {
  padding        : 64px 52px 64px 56px;
  display        : flex;
  flex-direction : column;
  justify-content: center;
  gap            : 18px;

  opacity   : 0;
  transform : translateX(-28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.am-involved-content.am-visible {
  opacity  : 1;
  transform: translateX(0);
}
/* Eyebrow — GET INVOLVED */
.am-involved-eyebrow {
  font-family   : var(--font-title);
  font-size     : 1.875rem;
  font-weight   : 700;
  letter-spacing: 12px;
  color         : rgba(255,255,255,0.90);
  text-transform: uppercase;
  margin        : 0;
  line-height   : 1.2;
  text-align: center;
  opacity   : 0;
  transform : translateY(10px);
  transition: opacity 0.55s ease 0.1s, transform 0.55s ease 0.1s;
}
.am-involved-eyebrow.am-visible { opacity: 1; transform: translateY(0); }
/* Why heading */
.am-involved-heading {
  font-family   : var(--font-title);
  font-size     : clamp(1.2rem, 1.8vw, 2rem);
  font-weight   : 700;
  color         : var(--am-white);
  margin        : 0;
  line-height   : 1.25;
  letter-spacing: -0.2px;
}
/* Bold subheading */
.am-involved-subheading {
  font-family: var(--font-title);
  font-size  : clamp(1.1rem, 1.7vw, 1.875rem);
  font-weight: 700;
  color      : var(--am-white);
  margin     : 0;
  line-height: 1.3;
}
/* Body paragraph */
.am-involved-body {
  font-family: var(--font-body);
  font-size  : 1.5rem;
  color      : rgba(255,255,255,0.88);
  line-height: 1.5;
  margin     : 0;
}
/* Bullet list */
.am-involved-list {
  /*list-style: none;*/
  padding   : 0 0 0 20px;
  margin    : 0;
  display   : flex;
  flex-direction: column;
  gap       : 8px;
}
.am-involved-list li {
  font-family: var(--font-body);
  font-size  : 1.5rem;
  color      : rgba(255,255,255,0.88);
  line-height: 1.25;
  position   : relative;
}
/* Bullet dot */
/*.am-involved-list li::before {
  content : '•';
  position: absolute;
  left    : 0;
  top     : 0;
  color   : rgba(255,255,255,0.7);
  font-size: 0.9rem;
}*/
.am-involved-list li strong {
  font-weight: 700;
  color      : var(--am-white);
  font-family: var(--font-body);
}
/* ── Button row ── */
.am-involved-btns {
  display  : flex;
  gap      : 16px;
  flex-wrap: wrap;
  margin-top: 6px;
}
/* Outline pill buttons */
.am-involved-btn {
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  font-family    : var(--font-title);
  font-size      : 1.25rem;
  font-weight    : 800;
  letter-spacing : 1.8px;
  text-transform : uppercase;
  border-radius  : 50px;
  padding        : 14px 36px;
  position       : relative;
  overflow       : hidden;
  text-decoration: none;
  white-space    : nowrap;
  transition     :
    background   0.3s ease,
    color        0.3s ease,
    box-shadow   0.3s ease,
    transform    0.18s ease;
}
.am-involved-btn--outline {
  background  : transparent;
  color       : var(--am-white);
  border      : 2px solid var(--am-white);
}
/* Shine sweep */
.am-involved-btn::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: linear-gradient(108deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform : translateX(-100%) skewX(-18deg);
  transition: transform 0.55s ease;
}
.am-involved-btn--outline:hover {
  background: var(--am-white);
  color     : var(--am-red);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  transform : translateY(-2px);
}
.am-involved-btn:hover::before { transform: translateX(160%) skewX(-18deg); }
.am-involved-btn:active        { transform: translateY(0) scale(0.97); }
/* ══════════════════════════════════════
   RIGHT — Image
══════════════════════════════════════ */
.am-involved-image-wrap {
  position  : relative;
  overflow  : hidden;

  opacity   : 0;
  transform : translateX(28px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}
.am-involved-image-wrap.am-visible {
  opacity  : 1;
  transform: translateX(0);
}
.am-involved-img {
  width          : 100%;
  height         : 100%;
  object-fit     : cover;
  object-position: center;
  display        : block;
  transition     : transform 0.6s ease;
}
.am-involved-image-wrap:hover .am-involved-img { transform: scale(1.03); }
/* Photo credit */
.am-involved-photo-credit {
  position   : absolute;
  bottom     : 12px;
  left       : 14px;
  font-family: var(--font-title);
  font-size  : 1rem;
  font-weight : 700;
  color      : rgba(255,255,255,0.78);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  z-index    : 2;
}
/* ── Tablet (< 960px) ── */
/* ── Mobile (< 640px) ── */
/* ═══════════════════════════════════════════════════════════════════
   ARTIST DIRECTORY SECTION
═══════════════════════════════════════════════════════════════════ */
.am-directory-section {
  background: var(--am-white);
  position  : relative;
  overflow  : hidden;
}
/* ── Two-column grid — image left, content right ── */
.am-directory-inner {
  display              : grid;
  grid-template-columns: 1.2fr 1fr;
  min-height           : 520px;
  /*max-width            : var(--container-max);*/
  margin               : 0 auto;
}
/* ══════════════════════════════════════
   LEFT — Image
══════════════════════════════════════ */
.am-directory-image-wrap {
  position  : relative;
  overflow  : hidden;

  opacity   : 0;
  transform : translateX(-28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.am-directory-image-wrap.am-visible {
  opacity  : 1;
  transform: translateX(0);
}
.am-directory-img {
  width          : 100%;
  height         : 100%;
  object-fit     : cover;
  object-position: center top;
  display        : block;
  transition     : transform 0.65s ease;
}
.am-directory-image-wrap:hover .am-directory-img {
  transform: scale(1.04);
}
/* ══════════════════════════════════════
   RIGHT — Content
══════════════════════════════════════ */
.am-directory-content {
  padding        : 64px 64px 64px 56px;
  display        : flex;
  flex-direction : column;
  justify-content: center;
  gap            : 22px;

  opacity   : 0;
  transform : translateX(28px);
  transition: opacity 0.75s ease 0.18s, transform 0.75s ease 0.18s;
}
.am-directory-content.am-visible {
  opacity  : 1;
  transform: translateX(0);
}
/* Title */
.am-directory-title {
  font-family   : var(--font-title);
  font-size     : 1.875rem;
  font-weight   : 700;
  letter-spacing: 12px;
  color         : var(--am-off-black);
  text-transform: uppercase;
  margin        : 0;
  line-height   : 1.2;
  text-align    : center;
  opacity   : 0;
  transform : translateY(12px);
  transition: opacity 0.55s ease 0.28s, transform 0.55s ease 0.28s;
}
.am-directory-title.am-visible { opacity: 1; transform: translateY(0); }
/* Body paragraphs */
.am-directory-body {
  font-family: var(--font-body);
  font-size  : clamp(1.125rem, 1rem + 1vw, 1.5rem);
  color      : var(--am-dark);
  line-height: 1.5;
  margin     : 0;

  opacity   : 0;
  transform : translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.am-directory-body:nth-of-type(1) { transition-delay: 0.34s; }
.am-directory-body:nth-of-type(2) { transition-delay: 0.42s; }
.am-directory-body:nth-of-type(3) { transition-delay: 0.50s; }
.am-directory-body.am-visible { opacity: 1; transform: translateY(0); }
.am-directory-body strong {
  font-weight: 700;
  color      : var(--am-off-black);
  font-family: var(--font-title);
}
/* CTA Button */
.am-directory-btn {
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  align-self     : center;
  font-family    : var(--font-title);
  font-size      : 1.25rem;
  font-weight    : 700;
  letter-spacing : 1.8px;
  text-transform : uppercase;
  color          : var(--am-white);
  background     : var(--am-red);
  border         : 2px solid var(--am-red);
  border-radius  : 50px;
  padding        : 16px 40px;
  margin-top     : 8px;
  position       : relative;
  overflow       : hidden;
  text-decoration: none;

  opacity   : 0;
  transform : translateY(14px);
  transition: opacity 0.55s ease 0.58s, transform 0.55s ease 0.58s;
}
.am-directory-btn.am-visible {
  opacity  : 1;
  transform: translateY(0);
  transition:
    opacity      0.55s ease 0.58s,
    transform    0.18s ease,
    background   0.3s ease,
    border-color 0.3s ease,
    box-shadow   0.3s ease;
}
/* Shine sweep */
.am-directory-btn::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: linear-gradient(108deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform : translateX(-100%) skewX(-18deg);
  transition: transform 0.55s ease;
}
.am-directory-btn:hover {
  background  : var(--am-red-dark);
  border-color: var(--am-red-dark);
  box-shadow  : 0 8px 28px rgba(202,10,27,0.32);
  transform   : translateY(-2px);
  color       : var(--am-white);
}
.am-directory-btn:hover::before { transform: translateX(160%) skewX(-18deg); }
.am-directory-btn:active        { transform: translateY(0) scale(0.97); }
/* ── Tablet (< 960px) ── */
/* ── Mobile (< 640px) — stack vertically ── */
/* ═══════════════════════════════════════════════════════════════════
   PIANO REGISTRY SECTION
═══════════════════════════════════════════════════════════════════ */
.am-piano-section {
  background : var(--am-red-mid);
  padding    : 72px 40px 80px;
  position   : relative;
  overflow   : hidden;
  text-align : center;
}
/* Radial glow centre */
.am-piano-section::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index   : 0;
}
/* Decorative pulsing rings */
.am-piano-ring {
  position      : absolute;
  border-radius : 50%;
  border        : 1px solid rgba(255,255,255,0.07);
  pointer-events: none;
  z-index       : 0;
  top           : 50%;
  left          : 50%;
  animation     : pianoRingPulse 6s ease-in-out infinite;
}
.am-piano-ring--1 {
  width    : 400px;
  height   : 400px;
  transform: translate(-50%, -50%) scale(1);
  animation-delay: 0s;
}
.am-piano-ring--2 {
  width    : 700px;
  height   : 700px;
  transform: translate(-50%, -50%) scale(1);
  animation-delay: 1.5s;
}
.am-piano-ring--3 {
  width    : 1000px;
  height   : 1000px;
  transform: translate(-50%, -50%) scale(1);
  animation-delay: 3s;
}
@keyframes pianoRingPulse {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1);    }
  50%       { opacity: 0.9; transform: translate(-50%, -50%) scale(1.03); }
}
/* ── Inner wrapper ── */
.am-piano-inner {
  position      : relative;
  z-index       : 1;
  max-width     : 1000px;
  margin        : 0 auto;
  display       : flex;
  flex-direction: column;
  align-items   : center;
  gap           : 24px;
}
/* ── Eyebrow title ── */
.am-piano-eyebrow {
  font-family   : var(--font-title);
  font-size     : 1.875rem;
  font-weight   : 700;
  letter-spacing: 12px;
  color         : rgba(255,255,255,0.92);
  text-transform: uppercase;
  margin        : 0;
  line-height   : 1.2;

  opacity   : 0;
  transform : translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.am-piano-eyebrow.am-visible { opacity: 1; transform: translateY(0); }
/* ── Main heading ── */
.am-piano-heading {
  font-family   : var(--font-title);
  font-size     : clamp(1.15rem, 2vw, 1.875rem);
  font-weight   : 700;
  color         : var(--am-white);
  line-height   : 1.4;
  margin        : 0;
  letter-spacing: -0.2px;
  /*max-width     : 820px;*/

  opacity   : 0;
  transform : translateY(16px);
  transition: opacity 0.65s ease 0.12s, transform 0.65s ease 0.12s;
}
.am-piano-heading.am-visible { opacity: 1; transform: translateY(0); }
/* ── Body paragraphs ── */
.am-piano-body {
  font-family: var(--font-body);
  font-size  : clamp(0.9rem, 2vw, 1.5rem);
  color      : rgba(255,255,255,0.85);
  line-height: 1.5;
  margin     : 0;
  /*max-width  : 800px;*/

  opacity   : 0;
  transform : translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.am-piano-body:nth-of-type(1) { transition-delay: 0.24s; }
.am-piano-body:nth-of-type(2) { transition-delay: 0.34s; }
.am-piano-body.am-visible { opacity: 1; transform: translateY(0); }
/* ── Button row ── */
.am-piano-btns {
  display    : flex;
  gap        : 20px;
  flex-wrap  : wrap;
  justify-content: center;
  margin-top : 8px;

  opacity   : 0;
  transform : translateY(16px);
  transition: opacity 0.6s ease 0.44s, transform 0.6s ease 0.44s;
}
.am-piano-btns.am-visible { opacity: 1; transform: translateY(0); }
/* White outline pill buttons */
.am-piano-btn {
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  font-family    : var(--font-title);
  font-size      : 1.25rem;
  font-weight    : 700;
  letter-spacing : 2px;
  text-transform : uppercase;
  color          : var(--am-white);
  background     : transparent;
  border         : 2px solid var(--am-white);
  border-radius  : 50px;
  padding        : 16px 44px;
  text-decoration: none;
  position       : relative;
  overflow       : hidden;
  white-space    : nowrap;
  transition     :
    background   0.3s ease,
    color        0.3s ease,
    box-shadow   0.3s ease,
    transform    0.18s ease;
}
/* Shine sweep */
.am-piano-btn::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: linear-gradient(108deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform : translateX(-100%) skewX(-18deg);
  transition: transform 0.55s ease;
}
.am-piano-btn:hover {
  background: var(--am-white);
  color     : var(--am-red-mid);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  transform : translateY(-2px);
}
.am-piano-btn:hover::before { transform: translateX(160%) skewX(-18deg); }
.am-piano-btn:active        { transform: translateY(0) scale(0.97); }
/* ── Tablet (< 900px) ── */
/* ── Mobile (< 640px) ── */
/* ═══════════════════════════════════════════════════════════════════
   SUPPORT THE ARTISTS SECTION
═══════════════════════════════════════════════════════════════════ */
.am-support-section {
  background: var(--am-purple);
  padding   : 72px 40px 80px;
  position  : relative;
  overflow  : hidden;
}
/* Radial glow */
.am-support-section::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: radial-gradient(ellipse 65% 70% at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index   : 0;
}
/* Decorative rings */
.am-support-ring {
  position      : absolute;
  border-radius : 50%;
  border        : 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
  z-index       : 0;
  animation     : supportRingPulse 7s ease-in-out infinite;
}
.am-support-ring--1 {
  width           : 500px;
  height          : 500px;
  top             : 50%;
  right           : -100px;
  transform       : translateY(-50%) scale(1);
  animation-delay : 0s;
}
.am-support-ring--2 {
  width           : 780px;
  height          : 780px;
  top             : 50%;
  right           : -260px;
  transform       : translateY(-50%) scale(1);
  animation-delay : 2s;
}
@keyframes supportRingPulse {
  0%, 100% { opacity: 0.4; transform: translateY(-50%) scale(1);    }
  50%       { opacity: 0.9; transform: translateY(-50%) scale(1.03); }
}
/* ── Two-column inner ── */
.am-support-inner {
  display              : grid;
  grid-template-columns: 1.8fr 1fr;
  gap                  : 64px;
  max-width            : var(--container-max);
  margin               : 0 auto;
  align-items          : center;
  position             : relative;
  z-index              : 1;
}
/* ══════════════════════════════════════
   LEFT — Content
══════════════════════════════════════ */
.am-support-content {
  display       : flex;
  flex-direction: column;
  gap           : 20px;

  opacity   : 0;
  transform : translateX(-28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.am-support-content.am-visible {
  opacity  : 1;
  transform: translateX(0);
}
/* Eyebrow */
.am-support-eyebrow {
  font-family   : var(--font-title);
  font-size     : 1.875rem;
  font-weight   : 700;
  letter-spacing: 12px;
  color         : rgba(255,255,255,0.90);
  text-transform: uppercase;
  margin        : 0;
  line-height   : 1.2;
  text-align     : center;
  opacity   : 0;
  transform : translateY(12px);
  transition: opacity 0.55s ease 0.1s, transform 0.55s ease 0.1s;
}
.am-support-eyebrow.am-visible { opacity: 1; transform: translateY(0); }
/* Main heading */
.am-support-heading {
  font-family   : var(--font-title);
  font-size     : clamp(1.2rem, 2vw, 1.6rem);
  font-weight   : 800;
  color         : var(--am-white);
  line-height   : 1.3;
  margin        : 0;
  letter-spacing: -0.2px;

  opacity   : 0;
  transform : translateY(14px);
  transition: opacity 0.6s ease 0.18s, transform 0.6s ease 0.18s;
}
.am-support-heading.am-visible { opacity: 1; transform: translateY(0); }
/* Italic tagline */
.am-support-tagline {
  font-family: var(--font-body);
  font-size  : clamp(0.9rem, 2vw, 1.5rem);
  color      : rgba(255,255,255,0.72);
  line-height: 1.65;
  margin     : 0;
  font-style : italic;

  opacity   : 0;
  transform : translateY(12px);
  transition: opacity 0.6s ease 0.26s, transform 0.6s ease 0.26s;
}
.am-support-tagline.am-visible { opacity: 1; transform: translateY(0); }
/* Body paragraphs */
.am-support-body {
  font-family: var(--font-body);
  font-size  : clamp(0.9rem, 2vw, 1.5rem);
  color      : rgba(255,255,255,0.82);
  line-height: 1.78;
  margin     : 0;

  opacity   : 0;
  transform : translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.am-support-body:nth-of-type(1) { transition-delay: 0.34s; }
.am-support-body:nth-of-type(2) { transition-delay: 0.44s; }
.am-support-body.am-visible { opacity: 1; transform: translateY(0); }
/* ══════════════════════════════════════
   RIGHT — Album cover + button
══════════════════════════════════════ */
.am-support-right {
  display       : flex;
  flex-direction: column;
  align-items   : center;
  gap           : 28px;
  flex-shrink   : 0;

  opacity   : 0;
  transform : translateX(28px);
  transition: opacity 0.75s ease 0.2s, transform 0.75s ease 0.2s;
}
.am-support-right.am-visible {
  opacity  : 1;
  transform: translateX(0);
}
/* Album image wrapper */
.am-support-album-wrap {
  position     : relative;
  width        : 90%;
  aspect-ratio : 1 / 1;
  border-radius: 8px;
  overflow     : hidden;
  box-shadow   :
    0 20px 60px rgba(0,0,0,0.45),
    0  4px 16px rgba(0,0,0,0.25);
  transition   : transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
                 box-shadow 0.45s ease;
}
.am-support-album-wrap:hover {
  transform : translateY(-8px) scale(1.02);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.55),
    0  8px 24px rgba(0,0,0,0.3);
}
.am-support-album-img {
  width     : 100%;
  height    : 100%;
  object-fit: cover;
  display   : block;
  transition: transform 0.55s ease;
}
.am-support-album-wrap:hover .am-support-album-img {
  transform: scale(1.04);
}
/* Shine sweep on hover */
.am-support-album-shine {
  position  : absolute;
  inset     : 0;
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(255,255,255,0.12) 50%,
    transparent 70%
  );
  transform : translateX(-100%) skewX(-10deg);
  transition: transform 0.65s ease;
  z-index   : 2;
}
.am-support-album-wrap:hover .am-support-album-shine {
  transform: translateX(160%) skewX(-10deg);
}
/* CTA Button */
.am-support-btn {
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  font-family    : var(--font-title);
  font-size      : 0.82rem;
  font-weight    : 800;
  letter-spacing : 1.8px;
  text-transform : uppercase;
  color          : var(--am-purple);
  background     : var(--am-white);
  border         : 2px solid var(--am-white);
  border-radius  : 50px;
  padding        : 16px 36px;
  text-decoration: none;
  white-space    : nowrap;
  position       : relative;
  overflow       : hidden;
  transition     :
    background   0.3s ease,
    color        0.3s ease,
    border-color 0.3s ease,
    box-shadow   0.3s ease,
    transform    0.18s ease;
}
/* Shine sweep */
.am-support-btn::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: linear-gradient(108deg, transparent 30%, rgba(61,18,121,0.12) 50%, transparent 70%);
  transform : translateX(-100%) skewX(-18deg);
  transition: transform 0.55s ease;
}
.am-support-btn:hover {
  background  : transparent;
  color       : var(--am-white);
  border-color: var(--am-white);
  box-shadow  : 0 8px 28px rgba(0,0,0,0.25);
  transform   : translateY(-2px);
}
.am-support-btn:hover::before { transform: translateX(160%) skewX(-18deg); }
.am-support-btn:active        { transform: translateY(0) scale(0.97); }
/* ── Tablet (< 1024px) ── */
/* ── Tablet small (< 768px) ── */
/* ── Mobile (< 640px) ── */
/* ═══════════════════════════════════════════════════════════════════
   OUR PARTNERS & SUPPORTERS — MARQUEE SECTION
═══════════════════════════════════════════════════════════════════ */
.am-partners-section {
  background    : var(--am-white);
  padding       : 72px 0 80px;
  display       : flex;
  flex-direction: column;
  align-items   : center;
  gap           : 0;
  overflow      : hidden;
  position      : relative;
}
/* ── Each block (Partners / Supporters) ── */
.am-partners-block {
  width : 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding-bottom: 56px;
}
/* Divider between the two blocks */
.am-partners-divider {
  width        : 80px;
  height       : 2px;
  background   : rgba(0,0,0,0.08);
  border-radius: 2px;
  margin-bottom: 56px;
}
/* ── Section eyebrow ── */
.am-partners-eyebrow {
  font-family   : var(--font-title);
  font-size     : 1.875rem;
  font-weight   : 700;
  letter-spacing: 12px;
  color         : var(--am-off-black);
  text-transform: uppercase;
  text-align    : center;
  margin        : 0;
  line-height   : 1.2;

  opacity   : 0;
  transform : translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.am-partners-eyebrow.am-visible { opacity: 1; transform: translateY(0); }
/* ── Marquee outer wrapper — clips overflow + fade edges ── */
.am-marquee-wrap {
  width    : 70%;
  overflow : hidden;
  position : relative;

  /* Fade edges left and right */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}
/* ── Marquee container ── */
.am-marquee {
  display: flex;
  width  : 100%;
}
/* ── Scrolling track ── */
.am-marquee-track {
  display        : flex;
  align-items    : center;
  gap            : 0;
  /* Width: enough for all items × 2 (original + duplicate) */
  width          : max-content;
  will-change    : transform;
}
/* Left to right */
.am-marquee--ltr .am-marquee-track {
  animation: marqueeScrollLTR 50s linear infinite;
}
/* Right to left */
.am-marquee--rtl .am-marquee-track {
  animation: marqueeScrollRTL 50s linear infinite;
}
/* Pause on hover */
.am-marquee-wrap:hover .am-marquee-track {
  animation-play-state: paused;
}
@keyframes marqueeScrollLTR {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marqueeScrollRTL {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
/* ── Each logo item ── */
.am-marquee-item {
  display        : flex;
  align-items    : center;
  justify-content: center;
  padding        : 12px 48px;
  flex-shrink    : 0;
  /*border-right   : 1.5px solid rgba(0,0,0,0.07);*/
  position       : relative;
  transition     : transform 0.3s ease;
}
.am-marquee-item:last-child { border-right: none; }
.am-marquee-item:hover { transform: scale(1.08); }
/* ── Logo image — full colour, no greyscale ── */
.am-marquee-img {
  /*height    : 52px;*/
  width     : auto;
  max-width : 160px;
  object-fit: contain;
  display   : block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  filter    : none; /* full colour always */
}
.am-marquee-item:hover .am-marquee-img {
  opacity  : 0.82;
  transform: scale(1.05);
}
/* ── CTA Button ── */
.am-partners-btn {
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  font-family    : var(--font-title);
  font-size      : 1.25rem;
  font-weight    : 700;
  letter-spacing : 2px;
  text-transform : uppercase;
  color          : var(--am-white);
  background     : var(--am-red);
  border         : 2px solid var(--am-red);
  border-radius  : 50px;
  padding        : 16px 48px;
  margin-top     : 8px;
  text-decoration: none;
  position       : relative;
  overflow       : hidden;
  transition     :
    background   0.3s ease,
    border-color 0.3s ease,
    box-shadow   0.3s ease,
    transform    0.18s ease;

  opacity   : 0;
  transform : translateY(16px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.am-partners-btn.am-visible {
  opacity  : 1;
  transform: translateY(0);
  transition:
    opacity      0.6s ease 0.2s,
    transform    0.18s ease,
    background   0.3s ease,
    border-color 0.3s ease,
    box-shadow   0.3s ease;
}
/* Shine sweep */
.am-partners-btn::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: linear-gradient(108deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform : translateX(-100%) skewX(-18deg);
  transition: transform 0.55s ease;
}
.am-partners-btn:hover {
  background  : var(--am-red-dark);
  border-color: var(--am-red-dark);
  box-shadow  : 0 8px 28px rgba(202,10,27,0.32);
  transform   : translateY(-2px);
  color       : var(--am-white);
}
.am-partners-btn:hover::before { transform: translateX(160%) skewX(-18deg); }
.am-partners-btn:active        { transform: translateY(0) scale(0.97); }
/* ── Tablet (< 900px) ── */
/* ── Mobile (< 640px) ── */
/* ═══════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════
   TOP — Purple band
══════════════════════════════════════ */
.am-footer-top {
  background: var(--am-purple);
  padding   : 56px 40px 64px;
  position  : relative;
  overflow  : hidden;
}
/* Radial glow */
.am-footer-top::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(255,255,255,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.am-footer-top-inner {
  max-width     : var(--container-max);
  margin        : 0 auto;
  display       : flex;
  flex-direction: column;
  align-items   : center;
  gap           : 48px;
  position      : relative;
  z-index       : 1;
}
/* STAY IN TUNE eyebrow */
.am-footer-stay {
  font-family   : var(--font-title);
  font-size     : 1.875rem;
  font-weight   : 700;
  letter-spacing: 12px;
  color         : var(--am-white);
  text-transform: uppercase;
  text-align    : center;
  margin        : 0;
  line-height   : 1.2;

  opacity   : 0;
  transform : translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.am-footer-stay.am-visible { opacity: 1; transform: translateY(0); }
/* Three-column layout */
.am-footer-cols {
  display              : grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap                  : 40px;
  width                : 100%;
}
/* Each column */
.am-footer-col {
  display       : flex;
  flex-direction: column;
  gap           : 16px;

  opacity   : 0;
  transform : translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.am-footer-col.am-visible { opacity: 1; transform: translateY(0); }
.am-footer-col--address  { transition-delay: 0.12s; }
.am-footer-col--social   { transition-delay: 0.22s; align-items: center; text-align: center; }
.am-footer-col--newsletter { transition-delay: 0.32s; }
/* Column titles */
.am-footer-col-title {
  font-family   : var(--font-title);
  font-size     : 1.875rem;
  font-weight   : 600;
  color         : var(--am-white);
  margin        : 0;
  letter-spacing: 0.01em;
  line-height   : 1.3;
}
/* Address text */
.am-footer-address {
  font-family: var(--font-body);
  font-size  : 1.5rem;
  color      : rgba(255,255,255,0.80);
  line-height: 1.5;
  margin     : 0;
}
/* Contact Us button */
.am-footer-contact-btn, .am-footer-signup-btn {
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  align-self     : flex-start;
  font-family    : var(--font-title);
  font-size      : 1.25rem;
  font-weight    : 700;
  letter-spacing : 2px;
  text-transform : uppercase;
  color          : var(--am-black);
  background     : #fff;
  border         : 2px solid var(--am-white);
  border-radius  : 50px;
  padding        : 12px 28px;
  text-decoration: none;
  position       : relative;
  overflow       : hidden;
  transition     :
    background 0.3s ease,
    color      0.3s ease,
    transform  0.18s ease,
    box-shadow 0.3s ease;
}
.am-footer-contact-btn::before, .am-footer-signup-btn::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: linear-gradient(108deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform : translateX(-100%) skewX(-18deg);
  transition: transform 0.55s ease;
}
.am-footer-contact-btn:hover, .am-footer-signup-btn:hover {
  background: var(--am-red);
  color     : var(--am-white);
  /*transform : translateY(-2px);*/
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.am-footer-contact-btn:hover::before, .am-footer-signup-btn:hover::before { transform: translateX(160%) skewX(-18deg); }
/*.am-footer-contact-btn:active, .am-footer-signup-btn:active        { transform: translateY(0) scale(0.97); }*/
/* ── Social icons ── */
.am-footer-socials {
  display: flex;
  gap    : 16px;
  align-items: center;
}
.am-footer-social-link {
  display        : flex;
  align-items    : center;
  justify-content: center;
  width          : 48px;
  height         : 48px;
  border         : 2px solid rgba(255,255,255,0.55);
  border-radius  : 10px;
  color          : var(--am-white);
  text-decoration: none;
  transition     :
    background    0.28s ease,
    border-color  0.28s ease,
    transform     0.22s ease,
    box-shadow    0.28s ease;
}
.am-footer-social-link svg {
  width : 22px;
  height: 22px;
}
.am-footer-social-link:hover {
  background  : var(--am-white);
  border-color: var(--am-white);
  color       : var(--am-purple);
  transform   : translateY(-4px) scale(1.08);
  box-shadow  : 0 8px 20px rgba(0,0,0,0.22);
}
.am-footer-social-link:active { transform: translateY(0) scale(0.97); }
/* ── Newsletter form ── */
.am-footer-newsletter {
  display       : flex;
  flex-direction: column;
  gap           : 10px;
}
.am-footer-label {
  font-family: var(--font-body);
  font-size  : 1.25rem;
  font-weight: 500;
  color      : rgba(255,255,255,0.80);
  letter-spacing: 0.02em;
}
.am-footer-form-row {
  display: flex;
  gap    : 10px;
  /*align-items: center;*/
  flex-direction: column;
}
.am-footer-input {
  /*flex         : 1;*/
  height       : 44px;
  background   : var(--am-white);
  border       : 2px solid transparent;
  /*border-radius: 8px;*/
  padding      : 0 14px;
  font-family  : var(--font-body);
  font-size    : 0.88rem;
  color        : var(--am-dark);
  outline      : none;
  transition   : border-color 0.25s ease, box-shadow 0.25s ease;
}
.am-footer-input::placeholder { color: rgba(0,0,0,0.35); }
.am-footer-input:focus {
  border-color: rgba(255,255,255,0.6);
  box-shadow  : 0 0 0 3px rgba(255,255,255,0.15);
}
/* Feedback message */
.am-footer-form-msg {
  font-family: var(--font-title);
  font-size  : 0.78rem;
  min-height : 18px;
  margin     : 0;
  transition : opacity 0.3s ease;
}
.am-footer-form-msg--success { color: #a8f0c6; }
.am-footer-form-msg--error   { color: #ffa8a8; }
/* ══════════════════════════════════════
   MIDDLE — Creative Visions
══════════════════════════════════════ */
.am-footer-mid {
  background: var(--am-white);
  padding   : 40px 40px 32px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.am-footer-mid-inner {
  max-width     : 800px;
  margin        : 0 auto;
  display       : flex;
  flex-direction: column;
  align-items   : center;
  gap           : 16px;
  text-align    : center;
}
/* Creative Visions logo mockup */
.am-footer-cv-logo {
  display    : flex;
  align-items: center;
  gap        : 10px;
}
.am-cv-icon {
  display    : flex;
  align-items: center;
}
.am-cv-lines {
  display       : flex;
  flex-direction: column;
  gap           : 3px;
}
.am-cv-lines span {
  display      : block;
  height       : 3px;
  border-radius: 2px;
  background   : var(--am-red);
}
.am-cv-lines span:nth-child(1) { width: 28px; }
.am-cv-lines span:nth-child(2) { width: 22px; }
.am-cv-lines span:nth-child(3) { width: 16px; }
.am-cv-lines span:nth-child(4) { width: 10px; }
.am-cv-text {
  display       : flex;
  flex-direction: column;
  line-height   : 1;
  gap           : 1px;
}
.am-cv-creative {
  font-family   : var(--font-title);
  font-size     : 0.72rem;
  font-weight   : 700;
  letter-spacing: 3px;
  color         : var(--am-dark);
}
.am-cv-visions {
  font-family   : var(--font-title);
  font-size     : 0.72rem;
  font-weight   : 400;
  letter-spacing: 3px;
  color         : var(--am-dark);
}
.am-footer-cv-copy {
  font-family: var(--font-body);
  font-size  : 1rem;
  color      : var(--am-gray);
  line-height: 1.7;
  margin     : 0;
  /*max-width  : 600px;*/
  font-weight: 600;
}
/* ══════════════════════════════════════
   BOTTOM — Legal bar
══════════════════════════════════════ */
.am-footer-bottom {
  background : var(--am-white);
  border-top : 1px solid rgba(0,0,0,0.08);
  padding    : 20px 40px;
}
.am-footer-bottom-inner {
  max-width      : var(--container-max);
  margin         : 0 auto;
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  gap            : 20px;
  flex-wrap      : wrap;
}
.am-footer-copyright {
  font-family: var(--font-body);
  font-size  : 1rem;
  color      : var(--am-gray);
  margin     : 0;
  white-space: nowrap;
}
/* Legal links */
.am-footer-legal {
  display    : flex;
  align-items: center;
  flex-wrap  : wrap;
  gap        : 4px 0;
}
.am-footer-legal a {
  font-family   : var(--font-body);
  font-size     : 1rem;
  color         : var(--am-red);
  text-decoration: none;
  transition    : color 0.2s ease, opacity 0.2s ease;
  padding       : 0 2px;
}
.am-footer-legal a:hover { color: var(--am-red-dark); opacity: 0.8; }
.am-footer-sep {
  font-size: 0.78rem;
  color    : var(--am-gray);
  padding  : 0 4px;
}
.am-footer-credit {
  font-family: var(--font-body);
  font-size  : 1rem;
  color      : var(--am-gray);
}
.am-footer-credit-link {
  color          : var(--am-red) !important;
  text-decoration: none;
  font-weight    : 600;
  transition     : color 0.2s ease;
}
.am-footer-credit-link:hover { color: var(--am-red-dark) !important; }
/* ── Tablet (< 960px) ── */
/* ── Mobile (< 768px) ── */
/* ═══════════════════════════════════════════════════════════════════
   [FUTURE SECTIONS — BANNER, ABOUT, etc. — WILL BE APPENDED BELOW]
═══════════════════════════════════════════════════════════════════ */
/* ─────────────────────────────────────────────────────────────────────
   16.  MOBILE DONATE BUTTON (header bar — between logo & burger)
───────────────────────────────────────────────────────────────────── */
/* Sits in the navbar bar between logo and toggler on < xl */
.am-btn-donate--mobile {
  animation    : none;          /* no pulse in bar */
  padding      : 10px 22px;
  font-size    : 0.73rem !important;
  letter-spacing: 1.3px;
  margin-left  : auto;          /* push logo left, burger right */
  margin-right : 12px;
  flex-shrink  : 0;
}
/* ═══════════════════════════════════════════════════════════════════
   NEWSLETTER POPUP MODAL
═══════════════════════════════════════════════════════════════════ */
/* Footer trigger button */
.am-footer-newsletter-desc {
  font-family: var(--font-body);
  font-size  : 1.5rem;
  color      : rgba(255,255,255,0.72);
  line-height: 1.65;
  margin     : 0;
}
.am-footer-newsletter-btn {
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  font-family    : var(--font-title);
  font-size      : 1.25rem;
  font-weight    : 800;
  letter-spacing : 2px;
  text-transform : uppercase;
  color          : var(--am-white);
  background     : transparent;
  border         : 2px solid var(--am-white);
  border-radius  : 50px;
  padding        : 13px 28px;
  cursor         : pointer;
  position       : relative;
  overflow       : hidden;
  align-self     : flex-start;
  transition     :
    background 0.3s ease,
    color      0.3s ease,
    transform  0.18s ease,
    box-shadow 0.3s ease;
}
.am-footer-newsletter-btn::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: linear-gradient(108deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform : translateX(-100%) skewX(-18deg);
  transition: transform 0.55s ease;
}
.am-footer-newsletter-btn:hover {
  background: var(--am-white);
  color     : var(--am-purple);
  transform : translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
}
.am-footer-newsletter-btn:hover::before { transform: translateX(160%) skewX(-18deg); }
.am-footer-newsletter-btn:active        { transform: translateY(0) scale(0.97); }
/* ── Overlay backdrop ── */
/* NEW */
.am-newsletter-overlay {
  position        : fixed;
  top             : 0;
  left            : 0;
  right           : 0;
  bottom          : 0;
  width           : 100vw;
  height          : 100vh;
  background      : rgba(0,0,0,0.82);
  z-index         : 999999;
  display         : flex;
  align-items     : center;
  justify-content : center;
  padding         : 20px;
  backdrop-filter : blur(6px);
  -webkit-backdrop-filter: blur(6px);

  /* Hidden state */
  opacity         : 0;
  visibility      : hidden;
  pointer-events  : none;
  transition      : opacity 0.35s ease, visibility 0s linear 0.35s;
}
.am-newsletter-overlay.am-open {
  opacity       : 1;
  visibility    : visible;
  pointer-events: auto;
  transition    : opacity 0.35s ease, visibility 0s linear 0s;
}
/* ── Modal box ── */
.am-newsletter-modal {
  background   : var(--am-white);
  border-radius: 20px;
  width        : 100%;
  max-width    : 560px;
  max-height   : 90vh;
  overflow-y   : auto;
  position     : relative;
  padding      : 48px 44px 40px;
  box-shadow   : 0 24px 80px rgba(0,0,0,0.35);

  /* Entrance animation */
  transform    : translateY(24px) scale(0.97);
  transition   : transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.am-newsletter-overlay.am-open .am-newsletter-modal {
  transform: translateY(0) scale(1);
}
/* Scrollbar inside modal */
.am-newsletter-modal::-webkit-scrollbar { width: 4px; }
.am-newsletter-modal::-webkit-scrollbar-track { background: transparent; }
.am-newsletter-modal::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 4px; }
/* ── Close button ── */
.am-newsletter-close {
  position  : absolute;
  top       : 16px;
  right     : 16px;
  width     : 36px;
  height    : 36px;
  background: rgba(0,0,0,0.06);
  border    : none;
  border-radius: 50%;
  display   : flex;
  align-items: center;
  justify-content: center;
  cursor    : pointer;
  color     : var(--am-gray);
  transition: background 0.2s ease, color 0.2s ease, transform 0.18s ease;
}
.am-newsletter-close svg { width: 16px; height: 16px; }
.am-newsletter-close:hover {
  background: rgba(193,37,45,0.1);
  color     : var(--am-red);
  transform : rotate(90deg);
}
/* ── Modal header ── */
.am-newsletter-header {
  text-align  : center;
  margin-bottom: 28px;
}
.am-newsletter-eyebrow {
  font-family   : var(--font-title);
  font-size     : 0.68rem;
  font-weight   : 700;
  letter-spacing: 4px;
  color         : var(--am-red);
  text-transform: uppercase;
  margin        : 0 0 8px;
}
.am-newsletter-title {
  font-family   : var(--font-title);
  font-size     : 1.6rem;
  font-weight   : 800;
  color         : var(--am-off-black);
  margin        : 0 0 10px;
  letter-spacing: -0.3px;
  line-height   : 1.2;
}
.am-newsletter-subtitle {
  font-family: var(--font-body);
  font-size  : 0.9rem;
  color      : var(--am-gray);
  line-height: 1.65;
  margin     : 0;
}
/* ── Form layout ── */
.am-newsletter-form {
  display       : flex;
  flex-direction: column;
  gap           : 16px;
}
/* Two-col row for first/last name */
.am-nl-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap    : 14px;
}
.am-nl-field {
  display       : flex;
  flex-direction: column;
  gap           : 6px;
}
.am-nl-label {
  font-family   : var(--font-title);
  font-size     : 0.78rem;
  font-weight   : 600;
  color         : var(--am-dark);
  letter-spacing: 0.02em;
}
.am-nl-required { color: var(--am-red); }
.am-nl-input {
  height       : 46px;
  background   : #f5f5f5;
  border       : 1.5px solid rgba(0,0,0,0.10);
  border-radius: 10px;
  padding      : 0 14px;
  font-family  : var(--font-body);
  font-size    : 0.9rem;
  color        : var(--am-off-black);
  outline      : none;
  transition   : border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  width        : 100%;
}
.am-nl-input::placeholder { color: rgba(0,0,0,0.35); }
.am-nl-input:focus {
  border-color: var(--am-red);
  background  : var(--am-white);
  box-shadow  : 0 0 0 3px rgba(193,37,45,0.10);
}
/* ── Custom checkbox ── */
.am-nl-checkbox-label {
  display    : flex;
  align-items: flex-start;
  gap        : 10px;
  cursor     : pointer;
  margin-top : 2px;
}
.am-nl-checkbox { display: none; }
.am-nl-checkbox-custom {
  flex-shrink  : 0;
  width        : 20px;
  height       : 20px;
  border       : 2px solid rgba(0,0,0,0.18);
  border-radius: 5px;
  background   : #f5f5f5;
  display      : flex;
  align-items  : center;
  justify-content: center;
  margin-top   : 1px;
  transition   : border-color 0.22s ease, background 0.22s ease;
  position     : relative;
}
.am-nl-checkbox-custom::after {
  content   : '';
  width     : 5px;
  height    : 9px;
  border    : 2px solid var(--am-white);
  border-top: none;
  border-left: none;
  transform : rotate(45deg) scale(0);
  transition: transform 0.2s ease;
}
.am-nl-checkbox:checked + .am-nl-checkbox-custom {
  background  : var(--am-red);
  border-color: var(--am-red);
}
.am-nl-checkbox:checked + .am-nl-checkbox-custom::after {
  transform: rotate(45deg) scale(1);
}
.am-nl-checkbox-text {
  font-family: var(--font-body);
  font-size  : 0.82rem;
  color      : var(--am-gray);
  line-height: 1.55;
}
/* ── Submit button ── */
.am-nl-submit {
  height        : 52px;
  background    : var(--am-red);
  border        : 2px solid var(--am-red);
  border-radius : 50px;
  font-family   : var(--font-title);
  font-size     : 0.82rem;
  font-weight   : 800;
  letter-spacing: 2px;
  color         : var(--am-white);
  cursor        : pointer;
  margin-top    : 4px;
  position      : relative;
  overflow      : hidden;
  display       : flex;
  align-items   : center;
  justify-content: center;
  gap           : 10px;
  transition    :
    background   0.3s ease,
    border-color 0.3s ease,
    transform    0.18s ease,
    box-shadow   0.3s ease;
}
.am-nl-submit::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: linear-gradient(108deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform : translateX(-100%) skewX(-18deg);
  transition: transform 0.55s ease;
}
.am-nl-submit:hover {
  background  : var(--am-red-dark);
  border-color: var(--am-red-dark);
  box-shadow  : 0 8px 28px rgba(202,10,27,0.32);
  transform   : translateY(-1px);
}
.am-nl-submit:hover::before { transform: translateX(160%) skewX(-18deg); }
.am-nl-submit:active        { transform: translateY(0) scale(0.97); }
/* Loading spinner */
.am-nl-submit-loader {
  width        : 18px;
  height       : 18px;
  border       : 2.5px solid rgba(255,255,255,0.35);
  border-top   : 2.5px solid var(--am-white);
  border-radius: 50%;
  display      : none;
  animation    : nlSpin 0.7s linear infinite;
  flex-shrink  : 0;
}
@keyframes nlSpin {
  to { transform: rotate(360deg); }
}
.am-nl-submit.am-loading .am-nl-submit-text   { opacity: 0.6; }
.am-nl-submit.am-loading .am-nl-submit-loader { display: block; }
.am-nl-submit.am-loading                      { pointer-events: none; }
/* Privacy note */
.am-nl-privacy {
  font-family: var(--font-body);
  font-size  : 0.74rem;
  color      : rgba(0,0,0,0.35);
  text-align : center;
  margin     : 0;
  line-height: 1.5;
}
/* ── Success state ── */
.am-newsletter-success {
  display       : none;
  flex-direction: column;
  align-items   : center;
  text-align    : center;
  gap           : 16px;
  padding       : 20px 0;
}
.am-newsletter-success.am-show {
  display: flex;
  animation: successFadeIn 0.5s ease both;
}
@keyframes successFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.am-success-icon svg { width: 64px; height: 64px; }
.am-success-title {
  font-family: var(--font-title);
  font-size  : 1.4rem;
  font-weight: 800;
  color      : var(--am-off-black);
  margin     : 0;
}
.am-success-body {
  font-family: var(--font-body);
  font-size  : 0.92rem;
  color      : var(--am-gray);
  line-height: 1.65;
  margin     : 0;
  max-width  : 340px;
}
.am-success-close {
  margin-top    : 8px;
  padding       : 13px 36px;
  background    : var(--am-red);
  border        : 2px solid var(--am-red);
  border-radius : 50px;
  font-family   : var(--font-title);
  font-size     : 0.78rem;
  font-weight   : 800;
  letter-spacing: 2px;
  color         : var(--am-white);
  cursor        : pointer;
  transition    : background 0.3s ease, transform 0.18s ease;
}
.am-success-close:hover  { background: var(--am-red-dark); transform: translateY(-1px); }
.am-success-close:active { transform: translateY(0) scale(0.97); }
/* ── Mobile modal ── */
/* ═══════════════════════════════════════════════════════════════════
   DONATE INSTRUMENTS PAGE
═══════════════════════════════════════════════════════════════════ */
/* ─────────────────────────────────────────────────────────────
   DI — HERO
───────────────────────────────────────────────────────────── */
.am-di-hero {
  background: var(--am-white);
  overflow  : hidden;
  position  : relative;
}
/* Mobile-only top block */
.am-di-mobile-top {
  display: none;
}
/* Two-column grid */
.am-di-hero-inner {
  display              : grid;
  grid-template-columns: 1fr 1fr;
  min-height           : 540px;
  max-width            : var(--container-max);
  margin               : 0 auto;
}
/* ── Content column ── */
.am-di-hero-content {
  padding        : 64px 56px 64px 56px;
  display        : flex;
  flex-direction : column;
  justify-content: center;
  gap            : 18px;

  opacity   : 0;
  transform : translateX(-28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.am-di-hero-content.am-visible {
  opacity  : 1;
  transform: translateX(0);
}
/* Eyebrow */
.am-di-eyebrow {
  font-family   : var(--font-title);
  font-size     : 0.72rem;
  font-weight   : 700;
  letter-spacing: 2.5px;
  color         : var(--am-red);
  text-transform: uppercase;
  margin        : 0;
  line-height   : 1.4;
}
/* Heading */
.am-di-hero-heading {
  font-family   : var(--font-title);
  font-size     : clamp(1.75rem, 3vw, 2.4rem);
  font-weight   : 800;
  color         : var(--am-off-black);
  line-height   : 1.18;
  letter-spacing: -0.5px;
  margin        : 0;
}
/* Indented intro */
.am-di-hero-intro {
  border-left : 3px solid var(--am-red);
  padding-left: 20px;
  margin       : 6px 0 4px;
}
/* Body text */
.am-di-hero-body {
  font-family: var(--font-body);
  font-size  : clamp(0.9rem, 1.1vw, 1rem);
  color      : var(--am-dark);
  line-height: 1.75;
  margin     : 0;
}
/* Links in body */
.am-di-link {
  color          : var(--am-red);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight    : 600;
  transition     : color 0.2s ease, text-decoration-color 0.2s ease;
}
.am-di-link:hover {
  color                 : var(--am-red-dark);
  text-decoration-color : transparent;
}
/* Button row */
.am-di-hero-btns {
  display  : flex;
  gap      : 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}
/* ── Shared button styles for this page ── */
.am-di-btn {
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  font-family    : var(--font-title);
  font-size      : 0.8rem;
  font-weight    : 800;
  letter-spacing : 1.5px;
  text-transform : uppercase;
  border-radius  : 50px;
  padding        : 14px 32px;
  text-decoration: none;
  white-space    : nowrap;
  position       : relative;
  overflow       : hidden;
  transition     :
    background   0.3s ease,
    color        0.3s ease,
    border-color 0.3s ease,
    box-shadow   0.3s ease,
    transform    0.18s ease;
}
/* Shine sweep for all DI buttons */
.am-di-btn::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: linear-gradient(108deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform : translateX(-100%) skewX(-18deg);
  transition: transform 0.55s ease;
}
.am-di-btn:hover::before { transform: translateX(160%) skewX(-18deg); }
.am-di-btn:active        { transform: translateY(0) scale(0.97); }
/* Filled red */
.am-di-btn--filled {
  background  : var(--am-red);
  color       : var(--am-white);
  border      : 2px solid var(--am-red);
}
.am-di-btn--filled:hover {
  background  : var(--am-red-dark);
  border-color: var(--am-red-dark);
  box-shadow  : 0 8px 28px rgba(202,10,27,0.30);
  transform   : translateY(-2px);
  color       : var(--am-white);
}
/* Dark outline */
.am-di-btn--dark {
  background  : transparent;
  color       : var(--am-off-black);
  border      : 2px solid var(--am-off-black);
}
.am-di-btn--dark:hover {
  background  : var(--am-off-black);
  color       : var(--am-white);
  box-shadow  : 0 8px 28px rgba(0,0,0,0.18);
  transform   : translateY(-2px);
}
.am-di-btn--dark::before {
  background: linear-gradient(108deg, transparent 30%, rgba(255,255,255,0.10) 50%, transparent 70%);
}
/* ── Image column ── */
/* NEW */
.am-di-hero-image-wrap {
  position       : relative;
  overflow       : hidden;
  display        : flex;
  align-items    : center;
  justify-content: center;
  padding        : 48px 48px 48px 0;
}
.am-di-hero-image-wrap.am-visible {
  opacity  : 1;
  transform: translateX(0);
}
/* NEW */
.am-di-hero-img {
  width          : auto;
  max-height     : 520px;
  object-fit     : contain;
  object-position: center;
  display        : block;
  border-radius  : 6px;
  box-shadow     : 0 12px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
  transition     : transform 0.6s ease;
  border: 10px solid white;
}
.am-di-hero-image-wrap:hover .am-di-hero-img {
  transform: scale(1.01);
}
/* Red accent bar top-right */
/* NEW */
.am-di-hero-img-accent {
  position     : absolute;
  top          : 48px;
  right        : 48px;
  width        : 36px;
  height       : 4px;
  background   : var(--am-red);
  z-index      : 2;
  border-radius: 2px;
}
/* ─────────────────────────────────────────────────────────────
   DI — TAX DEDUCTIBLE
───────────────────────────────────────────────────────────── */
.am-di-tax {
  background: #f7f7f7;
  padding   : 64px 40px;
  position  : relative;
  overflow  : hidden;
}
/* Subtle left border accent */
.am-di-tax::before {
  content      : '';
  position     : absolute;
  top          : 0;
  left         : 0;
  width        : 4px;
  height       : 100%;
  background   : var(--am-red);
}
.am-di-tax-inner {
  max-width      : var(--container-max);
  margin         : 0 auto;
  display        : flex;
  align-items    : center;
  gap            : 48px;
  justify-content: space-between;
}
.am-di-tax-content {
  display       : flex;
  flex-direction: column;
  gap           : 24px;
  max-width     : 680px;

  opacity   : 0;
  transform : translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.am-di-tax-content.am-visible {
  opacity  : 1;
  transform: translateY(0);
}
.am-di-tax-heading {
  font-family   : var(--font-title);
  font-size     : clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight   : 800;
  color         : var(--am-off-black);
  line-height   : 1.35;
  letter-spacing: -0.2px;
  margin        : 0;
}
/* Tax icon */
.am-di-tax-icon {
  flex-shrink: 0;

  opacity   : 0;
  transform : scale(0.8) rotate(-8deg);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.am-di-tax-icon.am-visible {
  opacity  : 1;
  transform: scale(1) rotate(0deg);
}
.am-di-tax-svg {
  width    : 80px;
  height   : 80px;
  animation: taxIconFloat 4s ease-in-out infinite;
}
@keyframes taxIconFloat {
  0%, 100% { transform: translateY(0);   }
  50%       { transform: translateY(-6px); }
}
/* ─────────────────────────────────────────────────────────────
   DI — HOW IT WORKS
───────────────────────────────────────────────────────────── */
.am-di-how {
  background: var(--am-white);
  padding   : 72px 40px 80px;
  overflow  : hidden;
}
.am-di-how-inner {
  max-width     : var(--container-max);
  margin        : 0 auto;
  display       : flex;
  flex-direction: column;
  align-items   : center;
  gap           : 48px;
}
.am-di-how-eyebrow {
  font-family   : var(--font-title);
  font-size     : 1.875rem;
  font-weight   : 700;
  letter-spacing: 12px;
  color         : var(--am-off-black);
  text-transform: uppercase;
  text-align    : center;
  margin        : 0;

  opacity   : 0;
  transform : translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.am-di-how-eyebrow.am-visible { opacity: 1; transform: translateY(0); }
/* Steps row */
.am-di-steps {
  display    : flex;
  align-items: flex-start;
  gap        : 0;
  width      : 100%;
}
/* Each step */
.am-di-step {
  flex          : 1;
  display       : flex;
  flex-direction: column;
  align-items   : center;
  text-align    : center;
  gap           : 14px;
  padding       : 0 28px;

  opacity   : 0;
  transform : translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.am-di-step.am-visible { opacity: 1; transform: translateY(0); }
.am-di-step:nth-child(1) { transition-delay: 0.10s; }
.am-di-step:nth-child(3) { transition-delay: 0.22s; }
.am-di-step:nth-child(5) { transition-delay: 0.34s; }
/* Step number */
.am-di-step-num {
  font-family   : var(--font-title);
  font-size     : 2.2rem;
  font-weight   : 800;
  color         : var(--am-red);
  line-height   : 1;
  letter-spacing: -1px;
  position      : relative;
}
/* Subtle circle behind number */
.am-di-step-num::before {
  content      : '';
  position     : absolute;
  top          : 50%;
  left         : 50%;
  transform    : translate(-50%, -50%);
  width        : 64px;
  height       : 64px;
  border-radius: 50%;
  background   : rgba(193,37,45,0.06);
  z-index      : -1;
}
.am-di-step-title {
  font-family   : var(--font-title);
  font-size     : 1rem;
  font-weight   : 800;
  color         : var(--am-off-black);
  margin        : 0;
  letter-spacing: 0.01em;
}
.am-di-step-body {
  font-family: var(--font-body);
  font-size  : 0.9rem;
  color      : var(--am-gray);
  line-height: 1.7;
  margin     : 0;
  max-width  : 280px;
}
/* Divider between steps */
.am-di-step-divider {
  width        : 1px;
  height       : 100px;
  background   : rgba(0,0,0,0.10);
  flex-shrink  : 0;
  align-self   : center;
  position     : relative;
}
/* Dot at center of divider */
.am-di-step-divider::before {
  content      : '';
  position     : absolute;
  top          : 50%;
  left         : 50%;
  transform    : translate(-50%, -50%);
  width        : 6px;
  height       : 6px;
  border-radius: 50%;
  background   : var(--am-red);
}
/* ─────────────────────────────────────────────────────────────
   DI — RESPONSIVE TABLET (< 960px)
───────────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────
   DI — RESPONSIVE MOBILE (< 640px)
───────────────────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════════════
   DI PAGE — Remove JS-dependent visibility, show everything
═══════════════════════════════════════════════════════════════════ */
.am-di-hero-content,
.am-di-hero-image-wrap,
.am-di-mobile-top,
.am-di-tax-content,
.am-di-tax-icon,
.am-di-how-eyebrow,
.am-di-step {
  opacity   : 1 !important;
  transform : none !important;
}
/* ═══════════════════════════════════════════════════════════════════
   DONOR REGISTRATION PAGE
═══════════════════════════════════════════════════════════════════ */
/* ─────────────────────────────────────────────────────────────
   DR — HERO
───────────────────────────────────────────────────────────── */
.am-dr-hero {
  background: var(--am-white);
  overflow  : hidden;
}
.am-dr-hero-inner {
  display              : grid;
  grid-template-columns: 1fr 1fr;
  min-height           : 420px;
  max-width            : var(--container-max);
  margin               : 0 auto;
}
/* Content column */
.am-dr-hero-content {
  padding        : 56px 56px 56px 56px;
  display        : flex;
  flex-direction : column;
  justify-content: center;
  gap            : 18px;
}
/* Eyebrow */
.am-dr-eyebrow {
  font-family   : var(--font-title);
  font-size     : 0.72rem;
  font-weight   : 700;
  letter-spacing: 2.5px;
  color         : var(--am-red);
  text-transform: uppercase;
  margin        : 0;
}
/* Heading */
.am-dr-hero-heading {
  font-family   : var(--font-title);
  font-size     : clamp(1.65rem, 2.8vw, 2.2rem);
  font-weight   : 800;
  color         : var(--am-off-black);
  line-height   : 1.18;
  letter-spacing: -0.4px;
  margin        : 0;
}
/* Body */
.am-dr-hero-body {
  font-family: var(--font-body);
  font-size  : clamp(0.9rem, 1.1vw, 1rem);
  color      : var(--am-dark);
  line-height: 1.75;
  margin     : 0;
}
/* Links */
.am-dr-link {
  color                : var(--am-red);
  text-decoration      : underline;
  text-underline-offset: 3px;
  font-weight          : 600;
  transition           : color 0.2s ease, text-decoration-color 0.2s ease;
}
.am-dr-link:hover {
  color                : var(--am-red-dark);
  text-decoration-color: transparent;
}
/* Shared button base */
.am-dr-btn {
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  align-self     : flex-start;
  font-family    : var(--font-title);
  font-size      : 0.8rem;
  font-weight    : 800;
  letter-spacing : 1.5px;
  text-transform : uppercase;
  border-radius  : 50px;
  padding        : 14px 32px;
  text-decoration: none;
  white-space    : nowrap;
  position       : relative;
  overflow       : hidden;
  transition     :
    background   0.3s ease,
    color        0.3s ease,
    border-color 0.3s ease,
    box-shadow   0.3s ease,
    transform    0.18s ease;
}
.am-dr-btn::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: linear-gradient(108deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform : translateX(-100%) skewX(-18deg);
  transition: transform 0.55s ease;
}
.am-dr-btn:hover::before { transform: translateX(160%) skewX(-18deg); }
.am-dr-btn:active        { transform: translateY(0) scale(0.97); }
/* Red filled */
.am-dr-btn--filled {
  background  : var(--am-red);
  color       : var(--am-white);
  border      : 2px solid var(--am-red);
}
.am-dr-btn--filled:hover {
  background  : var(--am-red-dark);
  border-color: var(--am-red-dark);
  box-shadow  : 0 8px 28px rgba(202,10,27,0.30);
  transform   : translateY(-2px);
  color       : var(--am-white);
}
/* Image column */
.am-dr-hero-image-wrap {
  position       : relative;
  overflow       : hidden;
  display        : flex;
  align-items    : center;
  justify-content: center;
  padding        : 48px 48px 48px 0;
}
.am-dr-hero-img {
  width          : auto;
  max-height     : 520px;
  object-fit     : contain;
  object-position: center;
  display        : block;
  border-radius  : 6px;
  box-shadow     : 0 12px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
  transition     : transform 0.6s ease;
  border: 10px solid white;
}
.am-dr-hero-image-wrap:hover .am-dr-hero-img {
  transform: scale(1.01);
}
/* Red accent bar */
.am-dr-hero-img-accent {
  position     : absolute;
  top          : 48px;
  right        : 48px;
  width        : 36px;
  height       : 4px;
  background   : var(--am-red);
  z-index      : 2;
  border-radius: 2px;
}
/* ─────────────────────────────────────────────────────────────
   DR — FORM SECTION
───────────────────────────────────────────────────────────── */
.am-dr-form-section {
  background : #f8f8f8;
  padding    : 72px 40px 80px;
  position   : relative;
}
/* Decorative top red line */
.am-dr-form-section::before {
  content   : '';
  position  : absolute;
  top       : 0;
  left      : 50%;
  transform : translateX(-50%);
  width     : 60px;
  height    : 3px;
  background: var(--am-red);
  border-radius: 2px;
}
.am-dr-form-inner {
  max-width     : 740px;
  margin        : 0 auto;
  display       : flex;
  flex-direction: column;
  gap           : 36px;
}
/* Form header */
.am-dr-form-header {
  text-align: center;
}
.am-dr-form-title {
  font-family   : var(--font-title);
  font-size     : clamp(1.6rem, 2.8vw, 2rem);
  font-weight   : 800;
  color         : var(--am-off-black);
  margin        : 0 0 12px;
  letter-spacing: -0.3px;
  line-height   : 1.2;
}
.am-dr-form-subtitle {
  font-family: var(--font-body);
  font-size  : clamp(0.9rem, 1.1vw, 1rem);
  color      : var(--am-gray);
  line-height: 1.72;
  margin     : 0;
  max-width  : 540px;
  margin     : 0 auto;
}
/* Form card */
.am-dr-form-card {
  background   : var(--am-white);
  border-radius: 16px;
  padding      : 48px 44px;
  box-shadow   : 0 4px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  border       : 1px solid rgba(0,0,0,0.06);
}
/* Form layout */
.am-dr-form {
  display       : flex;
  flex-direction: column;
  gap           : 28px;
}
/* Field groups */
.am-dr-field-group {
  display       : flex;
  flex-direction: column;
  gap           : 8px;
}
/* Main field label */
.am-dr-field-label {
  font-family   : var(--font-title);
  font-size     : 0.88rem;
  font-weight   : 700;
  color         : var(--am-off-black);
  letter-spacing: 0.01em;
}
.am-dr-required {
  color      : var(--am-red);
  font-weight: 600;
  font-size  : 0.82rem;
}
/* Sub-labels (First, Last, etc) */
.am-dr-sub-label {
  font-family   : var(--font-title);
  font-size     : 0.76rem;
  font-weight   : 500;
  color         : var(--am-gray);
  letter-spacing: 0.02em;
  margin-bottom : 4px;
}
/* Hint text */
.am-dr-field-hint {
  font-family: var(--font-body);
  font-size  : 0.82rem;
  color      : var(--am-gray);
  line-height: 1.6;
  margin     : 0;
}
/* Two-column row */
.am-dr-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap    : 16px;
}
.am-dr-field {
  display       : flex;
  flex-direction: column;
}
.am-dr-field--half {
  max-width: calc(50% - 8px);
}
/* ── Input + Textarea shared styles ── */
.am-dr-input,
.am-dr-textarea {
  width        : 100%;
  background   : #f5f5f5;
  border       : 1.5px solid rgba(0,0,0,0.10);
  border-radius: 10px;
  padding      : 0 16px;
  font-family  : var(--font-body);
  font-size    : 0.9rem;
  color        : var(--am-off-black);
  outline      : none;
  transition   :
    border-color 0.25s ease,
    background   0.25s ease,
    box-shadow   0.25s ease;
}
.am-dr-input {
  height: 48px;
}
.am-dr-textarea {
  padding   : 14px 16px;
  resize    : vertical;
  min-height: 160px;
  line-height: 1.65;
}
.am-dr-input::placeholder,
.am-dr-textarea::placeholder {
  color: rgba(0,0,0,0.30);
}
.am-dr-input:focus,
.am-dr-textarea:focus {
  border-color: var(--am-red);
  background  : var(--am-white);
  box-shadow  : 0 0 0 3px rgba(193,37,45,0.08);
}
/* Character count */
.am-dr-char-count {
  font-family: var(--font-title);
  font-size  : 0.72rem;
  color      : rgba(0,0,0,0.35);
}
/* ── Custom Checkbox ── */
.am-dr-checkbox-group {
  display       : flex;
  flex-direction: column;
  gap           : 10px;
}
.am-dr-checkbox-label,
.am-dr-radio-label {
  display    : flex;
  align-items: flex-start;
  gap        : 12px;
  cursor     : pointer;
  font-family: var(--font-body);
  font-size  : 0.88rem;
  color      : var(--am-dark);
  line-height: 1.5;
  padding    : 8px 12px;
  border-radius: 8px;
  transition : background 0.2s ease;
}
.am-dr-checkbox-label:hover,
.am-dr-radio-label:hover {
  background: rgba(193,37,45,0.03);
}
.am-dr-checkbox,
.am-dr-radio { display: none; }
/* Checkbox custom */
.am-dr-checkbox-custom {
  flex-shrink  : 0;
  width        : 22px;
  height       : 22px;
  border       : 2px solid rgba(0,0,0,0.18);
  border-radius: 6px;
  background   : #f5f5f5;
  display      : flex;
  align-items  : center;
  justify-content: center;
  margin-top   : 1px;
  transition   : border-color 0.22s ease, background 0.22s ease, transform 0.15s ease;
  position     : relative;
}
.am-dr-checkbox-custom::after {
  content    : '';
  width      : 5px;
  height     : 10px;
  border     : 2px solid var(--am-white);
  border-top : none;
  border-left: none;
  transform  : rotate(45deg) scale(0);
  transition : transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.am-dr-checkbox:checked + .am-dr-checkbox-custom {
  background  : var(--am-red);
  border-color: var(--am-red);
  transform   : scale(1.05);
}
.am-dr-checkbox:checked + .am-dr-checkbox-custom::after {
  transform: rotate(45deg) scale(1);
}
/* Radio custom */
.am-dr-radio-group {
  display       : flex;
  flex-direction: column;
  gap           : 8px;
}
.am-dr-radio-custom {
  flex-shrink  : 0;
  width        : 22px;
  height       : 22px;
  border       : 2px solid rgba(0,0,0,0.18);
  border-radius: 50%;
  background   : #f5f5f5;
  display      : flex;
  align-items  : center;
  justify-content: center;
  margin-top   : 1px;
  transition   : border-color 0.22s ease, background 0.22s ease;
}
.am-dr-radio-custom::after {
  content      : '';
  width        : 10px;
  height       : 10px;
  border-radius: 50%;
  background   : var(--am-red);
  transform    : scale(0);
  transition   : transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.am-dr-radio:checked + .am-dr-radio-custom {
  border-color: var(--am-red);
  background  : var(--am-white);
}
.am-dr-radio:checked + .am-dr-radio-custom::after {
  transform: scale(1);
}
/* ── Submit button ── */
.am-dr-submit {
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  align-self     : flex-start;
  font-family    : var(--font-title);
  font-size      : 0.85rem;
  font-weight    : 800;
  letter-spacing : 2px;
  text-transform : uppercase;
  color          : var(--am-white);
  background     : var(--am-red);
  border         : 2px solid var(--am-red);
  border-radius  : 50px;
  padding        : 16px 48px;
  cursor         : pointer;
  position       : relative;
  overflow       : hidden;
  transition     :
    background   0.3s ease,
    border-color 0.3s ease,
    box-shadow   0.3s ease,
    transform    0.18s ease;
}
.am-dr-submit::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: linear-gradient(108deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform : translateX(-100%) skewX(-18deg);
  transition: transform 0.55s ease;
}
.am-dr-submit:hover {
  background  : var(--am-red-dark);
  border-color: var(--am-red-dark);
  box-shadow  : 0 8px 28px rgba(202,10,27,0.30);
  transform   : translateY(-2px);
  color       : var(--am-white);
}
.am-dr-submit:hover::before { transform: translateX(160%) skewX(-18deg); }
.am-dr-submit:active        { transform: translateY(0) scale(0.97); }
/* ─────────────────────────────────────────────────────────────
   DR — RESPONSIVE TABLET (< 960px)
───────────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────
   DR — RESPONSIVE MOBILE (< 640px)
───────────────────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════════════
   GIVING GUIDELINES PAGE
═══════════════════════════════════════════════════════════════════ */
/* ─────────────────────────────────────────────────────────────
   GG — HERO (Image left, guidelines right)
───────────────────────────────────────────────────────────── */
.am-gg-hero {
  background: var(--am-white);
  overflow  : hidden;
}
.am-gg-hero-inner {
  display              : grid;
  grid-template-columns: 0.8fr 1.2fr;
  max-width            : var(--container-max);
  margin               : 0 auto;
  min-height           : 540px;
}
/* Image */
.am-gg-hero-image-wrap {
  position       : relative;
  display        : flex;
  align-items    : flex-start;
  justify-content: center;
  padding        : 56px 0 56px 56px;
}
.am-gg-hero-img {
  width        : auto;
  max-height   : 520px;
  object-fit   : contain;
  border-radius: 6px;
  box-shadow   : 0 12px 40px rgba(0,0,0,0.12);
  transition   : transform 0.6s ease;
  border: 10px solid white;
}
.am-gg-hero-image-wrap:hover .am-gg-hero-img { transform: scale(1.01); }
.am-gg-hero-img-accent {
  position     : absolute;
  top          : 56px;
  left         : 56px;
  width        : 36px;
  height       : 4px;
  background   : var(--am-red);
  border-radius: 2px;
  z-index      : 2;
}
/* Content */
.am-gg-hero-content {
  padding: 56px 56px 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.am-gg-hero-heading {
  font-family   : var(--font-title);
  font-size     : clamp(1.8rem, 3vw, 2.4rem);
  font-weight   : 800;
  color         : var(--am-off-black);
  letter-spacing: -0.4px;
  line-height   : 1.18;
  margin        : 0;
}
.am-gg-hero-intro {
  font-family: var(--font-body);
  font-size  : clamp(0.92rem, 1.1vw, 1rem);
  color      : var(--am-dark);
  line-height: 1.75;
  margin     : 0;
}
.am-gg-hero-intro strong {
  font-weight: 700;
  color      : var(--am-off-black);
}
/* ── Numbered steps ── */
.am-gg-steps {
  list-style    : none;
  counter-reset : gg-step;
  padding       : 0;
  margin        : 0;
  display       : flex;
  flex-direction: column;
  gap           : 24px;
}
.am-gg-step {
  counter-increment: gg-step;
  position         : relative;
  padding-left     : 40px;
}
/* Number indicator */
.am-gg-step::before {
  content       : counter(gg-step) ".";
  position      : absolute;
  left          : 0;
  top           : 1px;
  font-family   : var(--font-title);
  font-size     : 1rem;
  font-weight   : 800;
  color         : var(--am-red);
  line-height   : 1.3;
}
.am-gg-step-title {
  font-family   : var(--font-title);
  font-size     : 0.92rem;
  font-weight   : 700;
  color         : var(--am-off-black);
  margin        : 0 0 6px;
  line-height   : 1.3;
}
.am-gg-step-body {
  font-family: var(--font-body);
  font-size  : 0.88rem;
  color      : var(--am-gray);
  line-height: 1.72;
  margin     : 0;
}
/* Shared link style */
.am-gg-link {
  color                : var(--am-red);
  text-decoration      : underline;
  text-underline-offset: 3px;
  font-weight          : 600;
  transition           : color 0.2s ease, text-decoration-color 0.2s ease;
}
.am-gg-link:hover {
  color                : var(--am-red-dark);
  text-decoration-color: transparent;
}
/* ─────────────────────────────────────────────────────────────
   GG — REPAIRS SECTION
───────────────────────────────────────────────────────────── */
.am-gg-repairs {
  background   : #f7f7f7;
  padding      : 72px 40px 80px;
  overflow     : hidden;
  position     : relative;
  border-top   : 1px solid rgba(0,0,0,0.06);
}
.am-gg-repairs-inner {
  max-width     : var(--container-max);
  margin        : 0 auto;
  display       : flex;
  flex-direction: column;
  gap           : 48px;
}
/* Top grid: content left, image right */
.am-gg-repairs-top {
  display              : grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap                  : 48px;
  align-items          : flex-start;
}
/* Section eyebrow (reused) */
.am-gg-section-eyebrow {
  font-family   : var(--font-title);
  font-size     : 0.72rem;
  font-weight   : 700;
  letter-spacing: 2.5px;
  color         : var(--am-red);
  text-transform: uppercase;
  margin        : 0 0 8px;
}
.am-gg-repairs-content {
  display       : flex;
  flex-direction: column;
  gap           : 16px;
}
.am-gg-repairs-heading {
  font-family   : var(--font-title);
  font-size     : clamp(1.5rem, 2.5vw, 2rem);
  font-weight   : 800;
  color         : var(--am-off-black);
  line-height   : 1.2;
  letter-spacing: -0.3px;
  margin        : 0;
}
.am-gg-repairs-sub {
  font-family: var(--font-title);
  font-size  : 1rem;
  font-weight: 700;
  color      : var(--am-off-black);
  margin     : 0;
}
/* Two-column instrument list */
.am-gg-instrument-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap    : 0 32px;
}
.am-gg-instrument-list {
  list-style: none;
  padding   : 0;
  margin    : 0;
}
.am-gg-instrument-list li {
  font-family : var(--font-body);
  font-size   : 0.88rem;
  color       : var(--am-dark);
  line-height : 1.5;
  padding     : 6px 0 6px 20px;
  position    : relative;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.am-gg-instrument-list li:last-child { border-bottom: none; }
/* Red bullet dot */
.am-gg-instrument-list li::before {
  content      : '';
  position     : absolute;
  left         : 0;
  top          : 14px;
  width        : 6px;
  height       : 6px;
  border-radius: 50%;
  background   : var(--am-red);
}
.am-gg-repairs-note {
  font-family: var(--font-body);
  font-size  : 0.9rem;
  color      : var(--am-dark);
  margin     : 0;
}
/* Repairs image */
.am-gg-repairs-image-wrap {
  position: relative;
}
.am-gg-repairs-img {
  width        : auto;
  max-height   : 520px;
  border-radius: 8px;
  box-shadow   : 0 12px 40px rgba(0,0,0,0.10);
  transition   : transform 0.6s ease;
  display: block;
  margin: 0 auto;
  border: 10px solid white;
}
.am-gg-repairs-image-wrap:hover .am-gg-repairs-img { transform: scale(1.01); }
.am-gg-repairs-img-accent {
  position     : absolute;
  top          : 0;
  right        : -16px;
  width        : 36px;
  height       : 4px;
  background   : var(--am-red);
  border-radius: 2px;
}
/* ── Partner drop-off info ── */
.am-gg-dropoff-info {
  display       : flex;
  flex-direction: column;
  gap           : 32px;
}
.am-gg-dropoff-intro {
  font-family   : var(--font-body);
  font-size     : 0.92rem;
  color         : var(--am-dark);
  line-height   : 1.75;
  margin        : 0;
  max-width     : 760px;
  padding-left  : 24px;
  border-left   : 3px solid var(--am-red);
}
/* Partner cards grid */
.am-gg-partner-cards {
  display              : grid;
  grid-template-columns: 1fr 1fr;
  gap                  : 24px;
}
.am-gg-partner-card {
  background   : var(--am-white);
  border-radius: 14px;
  padding      : 28px 28px 24px;
  box-shadow   : 0 4px 20px rgba(0,0,0,0.06);
  border       : 1px solid rgba(0,0,0,0.05);
  display      : flex;
  flex-direction: column;
  gap          : 20px;
  transition   : transform 0.3s ease, box-shadow 0.3s ease;
}
.am-gg-partner-card:hover {
  transform : translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.10);
}
.am-gg-partner-logo-wrap {
  display    : flex;
  align-items: center;
  height     : 48px;
}
.am-gg-partner-logo {
  max-height: 48px;
  width     : auto;
  object-fit: contain;
}
.am-gg-partner-body {
  display       : flex;
  flex-direction: column;
  gap           : 14px;
}
.am-gg-partner-name {
  font-family   : var(--font-title);
  font-size     : 1.05rem;
  font-weight   : 700;
  color         : var(--am-red);
  margin        : 0;
}
.am-gg-partner-details p {
  font-family: var(--font-body);
  font-size  : 0.85rem;
  color      : var(--am-dark);
  line-height: 1.6;
  margin     : 0 0 4px;
}
.am-gg-hours-title {
  font-family   : var(--font-title);
  font-size     : 0.82rem;
  font-weight   : 700;
  color         : var(--am-off-black);
  margin        : 0 0 6px;
  letter-spacing: 0.01em;
}
.am-gg-partner-hours p {
  font-family: var(--font-body);
  font-size  : 0.82rem;
  color      : var(--am-gray);
  line-height: 1.55;
  margin     : 0;
}
/* Call note */
.am-gg-callnote {
  display       : flex;
  align-items   : center;
  gap           : 10px;
  font-family   : var(--font-body);
  font-size     : 0.88rem;
  font-weight   : 600;
  font-style    : italic;
  color         : var(--am-dark);
  background    : rgba(193,37,45,0.04);
  border        : 1px solid rgba(193,37,45,0.12);
  border-radius : 10px;
  padding       : 14px 20px;
  margin        : 0;
}
.am-gg-callnote-icon {
  width     : 22px;
  height    : 22px;
  flex-shrink: 0;
}
/* ─────────────────────────────────────────────────────────────
   GG — DONATION DROPOFF (Record Shop)
───────────────────────────────────────────────────────────── */
.am-gg-dropoff {
  background: var(--am-white);
  overflow  : hidden;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.am-gg-dropoff-inner {
  display              : grid;
  grid-template-columns: 1fr 1fr;
  gap                  : 48px;
  max-width            : var(--container-max);
  margin               : 0 auto;
  min-height           : 420px;
}
.am-gg-dropoff-content {
  padding        : 64px 48px 64px 56px;
  display        : flex;
  flex-direction : column;
  justify-content: center;
  gap            : 16px;
}
.am-gg-dropoff-heading {
  font-family   : var(--font-title);
  font-size     : clamp(1.5rem, 2.5vw, 2rem);
  font-weight   : 800;
  color         : var(--am-off-black);
  line-height   : 1.2;
  letter-spacing: -0.3px;
  margin        : 0;
}
.am-gg-dropoff-meta {
  display       : flex;
  flex-direction: column;
  gap           : 12px;
}
.am-gg-dropoff-time,
.am-gg-dropoff-address {
  display    : flex;
  align-items: flex-start;
  gap        : 10px;
  font-family: var(--font-body);
  font-size  : 0.9rem;
  color      : var(--am-dark);
  line-height: 1.6;
  margin     : 0;
}
.am-gg-dropoff-address strong {
  font-family: var(--font-title);
  font-weight: 700;
  color      : var(--am-off-black);
}
.am-gg-meta-icon {
  width     : 20px;
  height    : 20px;
  flex-shrink: 0;
  color     : var(--am-red);
  margin-top: 2px;
}
.am-gg-dropoff-body {
  font-family: var(--font-body);
  font-size  : 0.9rem;
  color      : var(--am-dark);
  line-height: 1.72;
  margin     : 0;
}
/* Dropoff image */
.am-gg-dropoff-image-wrap {
  position       : relative;
  display        : flex;
  align-items    : center;
  justify-content: center;
  padding        : 48px 48px 48px 0;
}
.am-gg-dropoff-img {
  width        : auto;
  max-height   : 380px;
  object-fit   : contain;
  border-radius: 8px;
  /* box-shadow   : 0 12px 40px rgba(0,0,0,0.10); */
  transition   : transform 0.6s ease;
  border: 10px solid rgba(0,0,0,0.06);
}
.am-gg-dropoff-image-wrap:hover .am-gg-dropoff-img { transform: scale(1.01); }
.am-gg-dropoff-img-accent {
  position     : absolute;
  top          : 48px;
  right        : 48px;
  width        : 36px;
  height       : 4px;
  background   : var(--am-red);
  border-radius: 2px;
  z-index      : 2;
}
/* ─────────────────────────────────────────────────────────────
   GG — RESPONSIVE TABLET (< 960px)
───────────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────
   GG — RESPONSIVE MOBILE (< 640px)
───────────────────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════════════
   TAXABLE DONATIONS PAGE
═══════════════════════════════════════════════════════════════════ */
/* ── Hero ── */
.am-td-hero {
  background: var(--am-white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.am-td-hero-inner {
  display              : grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap                  : 48px;
  max-width            : var(--container-max);
  margin               : 0 auto;
  padding              : 56px 56px;
  align-items          : flex-start;
}
.am-td-hero-content {
  display       : flex;
  flex-direction: column;
  gap           : 18px;
}
.am-td-eyebrow {
  font-family   : var(--font-title);
  font-size     : 0.72rem;
  font-weight   : 700;
  letter-spacing: 2.5px;
  color         : var(--am-red);
  text-transform: uppercase;
  margin        : 0;
}
.am-td-hero-heading {
  font-family   : var(--font-title);
  font-size     : clamp(1.65rem, 2.8vw, 2.2rem);
  font-weight   : 800;
  color         : var(--am-off-black);
  line-height   : 1.18;
  letter-spacing: -0.4px;
  margin        : 0;
}
.am-td-hero-body {
  font-family: var(--font-body);
  font-size  : clamp(0.9rem, 1.1vw, 1rem);
  color      : var(--am-dark);
  line-height: 1.75;
  margin     : 0;
}
/* Thank You card */
.am-td-hero-aside { display: flex; align-items: flex-start; }
.am-td-thankyou-card {
  background   : var(--am-white);
  border       : 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding      : 28px 28px 24px;
  box-shadow   : 0 4px 20px rgba(0,0,0,0.06);
  display      : flex;
  flex-direction: column;
  gap          : 20px;
  border-top   : 3px solid var(--am-red);
  align-items: center;
}
.am-td-cv-logo {
  display    : flex;
  align-items: center;
  gap        : 10px;
}
.am-cv-icon-sm { display: flex; align-items: center; }
.am-cv-lines-sm {
  display       : flex;
  flex-direction: column;
  gap           : 2.5px;
}
.am-cv-lines-sm span {
  display      : block;
  height       : 2.5px;
  border-radius: 2px;
  background   : var(--am-red);
}
.am-cv-lines-sm span:nth-child(1) { width: 24px; }
.am-cv-lines-sm span:nth-child(2) { width: 18px; }
.am-cv-lines-sm span:nth-child(3) { width: 13px; }
.am-cv-lines-sm span:nth-child(4) { width: 8px; }
.am-cv-text-sm {
  display       : flex;
  flex-direction: column;
  line-height   : 1;
  gap           : 1px;
  font-family   : var(--font-title);
  font-size     : 0.62rem;
  letter-spacing: 2.5px;
  color         : var(--am-dark);
}
.am-cv-text-sm span:first-child { font-weight: 700; }
.am-cv-text-sm span:last-child  { font-weight: 400; }
.am-td-thankyou-title {
  font-family: var(--font-title);
  font-size  : 1rem;
  font-weight: 700;
  color      : var(--am-off-black);
  margin     : 1rem 0 0 0;
  text-align: center;
}
.am-td-thankyou-text {
  font-family: var(--font-body);
  font-size  : 0.85rem;
  color      : var(--am-gray);
  line-height: 1.25;
  margin     : 1rem 0 0 0;
  text-align: center;
}
/* ── Form section ── */
.am-td-form-section {
  background: #f7f7f7;
  padding   : 64px 40px 80px;
}
.am-td-form-inner {
  max-width: 820px;
  margin   : 0 auto;
}
.am-td-form-card {
  background   : var(--am-white);
  border-radius: 18px;
  padding      : 52px 48px;
  box-shadow   : 0 4px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  border       : 1px solid rgba(0,0,0,0.05);
}
.am-td-form {
  display       : flex;
  flex-direction: column;
  gap           : 24px;
}
/* ── Section headers with numbered badges ── */
.am-td-section {
  display    : flex;
  align-items: center;
  gap        : 14px;
  margin-top : 8px;
}
.am-td-section-badge {
  width          : 36px;
  height         : 36px;
  border-radius  : 50%;
  background     : var(--am-red);
  color          : var(--am-white);
  font-family    : var(--font-title);
  font-size      : 0.88rem;
  font-weight    : 800;
  display        : flex;
  align-items    : center;
  justify-content: center;
  flex-shrink    : 0;
}
.am-td-section-title {
  font-family   : var(--font-title);
  font-size     : 1.25rem;
  font-weight   : 800;
  color         : var(--am-off-black);
  margin        : 0;
  letter-spacing: -0.2px;
}
/* ── Divider ── */
.am-td-divider {
  height       : 1px;
  background   : rgba(0,0,0,0.08);
  margin       : 12px 0;
  position     : relative;
}
/* ── Shared form elements ── */
.am-td-field-group {
  display       : flex;
  flex-direction: column;
  gap           : 8px;
}
.am-td-label {
  font-family   : var(--font-title);
  font-size     : 0.88rem;
  font-weight   : 700;
  color         : var(--am-off-black);
}
.am-td-req { color: var(--am-red); font-weight: 600; font-size: 0.82rem; }
.am-td-optional { color: var(--am-gray); font-weight: 400; font-size: 0.82rem; font-style: italic; }
.am-td-sub {
  font-family: var(--font-title);
  font-size  : 0.76rem;
  font-weight: 500;
  color      : var(--am-gray);
  margin-bottom: 4px;
}
.am-td-hint {
  font-family: var(--font-body);
  font-size  : 0.82rem;
  color      : var(--am-gray);
  line-height: 1.6;
  margin     : 0;
}
.am-td-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.am-td-field {
  display       : flex;
  flex-direction: column;
}
.am-td-field--half { max-width: calc(50% - 8px); }
/* Input, Select, Textarea */
.am-td-input,
.am-td-select,
.am-td-textarea {
  width        : 100%;
  height       : 48px;
  background   : #f5f5f5;
  border       : 1.5px solid rgba(0,0,0,0.10);
  border-radius: 10px;
  padding      : 0 16px;
  font-family  : var(--font-body);
  font-size    : 0.9rem;
  color        : var(--am-off-black);
  outline      : none;
  transition   : border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  -webkit-appearance: none;
}
.am-td-select {
  background-image   : url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23706F70' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat  : no-repeat;
  background-position: right 16px center;
  padding-right      : 40px;
  cursor             : pointer;
}
.am-td-select--sm { height: 44px; font-size: 0.85rem; }
.am-td-input:focus,
.am-td-select:focus {
  border-color: var(--am-red);
  background  : var(--am-white);
  box-shadow  : 0 0 0 3px rgba(193,37,45,0.08);
}
.am-td-input--total {
  font-weight  : 700;
  font-size    : 1.05rem;
  border-color : rgba(193,37,45,0.25);
}
/* ── Info box ── */
.am-td-infobox {
  background   : rgba(193,37,45,0.04);
  border       : 1px solid rgba(193,37,45,0.12);
  border-left  : 4px solid var(--am-red);
  border-radius: 0 10px 10px 0;
  padding      : 20px 24px;
  font-family  : var(--font-body);
  font-size    : 0.88rem;
  color        : var(--am-dark);
  line-height  : 1.7;
}
.am-td-infobox p { margin: 0 0 10px; }
.am-td-infobox-list {
  list-style : none;
  padding    : 0;
  margin     : 0;
  display    : flex;
  flex-direction: column;
  gap        : 10px;
}
.am-td-infobox-list li {
  padding-left: 16px;
  position    : relative;
}
.am-td-infobox-list li::before {
  content      : '•';
  position     : absolute;
  left         : 0;
  color        : var(--am-red);
  font-weight  : 700;
}
.am-td-infobox-list li strong {
  font-family: var(--font-title);
  font-weight: 700;
  color      : var(--am-off-black);
}
/* ── Repeater row for items ── */
.am-td-item-row {
  display    : flex;
  gap        : 12px;
  align-items: flex-end;
}
.am-td-add-row {
  width          : 40px;
  height         : 40px;
  flex-shrink    : 0;
  background     : none;
  border         : none;
  color          : var(--am-blue);
  cursor         : pointer;
  padding        : 0;
  display        : flex;
  align-items    : center;
  justify-content: center;
  margin-bottom  : 4px;
  border-radius  : 50%;
  transition     : background 0.2s ease, color 0.2s ease, transform 0.18s ease;
}
.am-td-add-row svg { width: 28px; height: 28px; }
.am-td-add-row:hover {
  background: rgba(0,107,177,0.08);
  transform : scale(1.1);
}
/* ── Checkbox (reuses DR styles pattern) ── */
.am-td-checkbox-label {
  display    : flex;
  align-items: flex-start;
  gap        : 12px;
  cursor     : pointer;
  font-family: var(--font-body);
  font-size  : 0.88rem;
  color      : var(--am-dark);
  line-height: 1.55;
  padding    : 8px 12px;
  border-radius: 8px;
  transition : background 0.2s ease;
}
.am-td-checkbox-label:hover { background: rgba(193,37,45,0.03); }
.am-td-checkbox { display: none; }
.am-td-checkbox-custom {
  flex-shrink    : 0;
  width          : 22px;
  height         : 22px;
  border         : 2px solid rgba(0,0,0,0.18);
  border-radius  : 6px;
  background     : #f5f5f5;
  display        : flex;
  align-items    : center;
  justify-content: center;
  margin-top     : 1px;
  transition     : border-color 0.22s ease, background 0.22s ease, transform 0.15s ease;
}
.am-td-checkbox-custom::after {
  content    : '';
  width      : 5px;
  height     : 10px;
  border     : 2px solid var(--am-white);
  border-top : none;
  border-left: none;
  transform  : rotate(45deg) scale(0);
  transition : transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.am-td-checkbox:checked + .am-td-checkbox-custom {
  background  : var(--am-red);
  border-color: var(--am-red);
  transform   : scale(1.05);
}
.am-td-checkbox:checked + .am-td-checkbox-custom::after {
  transform: rotate(45deg) scale(1);
}
/* ── Signature pad ── */
.am-td-signature-pad {
  position     : relative;
  border       : 1.5px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  overflow     : hidden;
  background   : #fafafa;
}
.am-td-signature-pad canvas {
  display: block;
  width  : 100%;
  height : 140px;
  cursor : crosshair;
}
.am-td-sig-clear {
  position   : absolute;
  bottom     : 8px;
  right      : 8px;
  font-family: var(--font-title);
  font-size  : 0.68rem;
  font-weight: 600;
  color      : var(--am-gray);
  background : rgba(0,0,0,0.06);
  border     : none;
  border-radius: 6px;
  padding    : 4px 12px;
  cursor     : pointer;
  transition : background 0.2s ease, color 0.2s ease;
}
.am-td-sig-clear:hover { background: rgba(193,37,45,0.1); color: var(--am-red); }
/* Date row */
.am-td-date-row {
  display: flex;
  gap    : 10px;
}
.am-td-row--sig { align-items: flex-start; }
/* ── Submit + Save buttons ── */
.am-td-btns {
  display    : flex;
  gap        : 16px;
  flex-wrap  : wrap;
  margin-top : 12px;
  align-items: center;
}
.am-td-submit {
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  font-family    : var(--font-title);
  font-size      : 0.85rem;
  font-weight    : 800;
  letter-spacing : 2px;
  text-transform : uppercase;
  color          : var(--am-white);
  background     : var(--am-red);
  border         : 2px solid var(--am-red);
  border-radius  : 50px;
  padding        : 16px 48px;
  cursor         : pointer;
  position       : relative;
  overflow       : hidden;
  transition     : background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.18s ease;
}
.am-td-submit::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: linear-gradient(108deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform : translateX(-100%) skewX(-18deg);
  transition: transform 0.55s ease;
}
.am-td-submit:hover {
  background  : var(--am-red-dark);
  border-color: var(--am-red-dark);
  box-shadow  : 0 8px 28px rgba(202,10,27,0.30);
  transform   : translateY(-2px);
}
.am-td-submit:hover::before { transform: translateX(160%) skewX(-18deg); }
.am-td-submit:active        { transform: translateY(0) scale(0.97); }
.am-td-save {
  display       : inline-flex;
  align-items   : center;
  gap           : 8px;
  font-family   : var(--font-title);
  font-size     : 0.82rem;
  font-weight   : 600;
  color         : var(--am-gray);
  background    : none;
  border        : 1.5px solid rgba(0,0,0,0.15);
  border-radius : 50px;
  padding       : 13px 28px;
  cursor        : pointer;
  transition    : color 0.2s ease, border-color 0.2s ease, transform 0.18s ease;
}
.am-td-save:hover { color: var(--am-off-black); border-color: var(--am-off-black); transform: translateY(-1px); }
.am-td-save:active { transform: translateY(0) scale(0.97); }
/* ── Responsive ── */
/* ═══════════════════════════════════════════════════════════════════
   INSTRUMENTAL GIVING APP PAGE
═══════════════════════════════════════════════════════════════════ */
/* ── Shared link + button ── */
.am-ig-link {
  color: var(--am-red); text-decoration: underline;
  text-underline-offset: 3px; font-weight: 600;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.am-ig-link:hover { color: var(--am-red-dark); text-decoration-color: transparent; }
.am-ig-link--red  { color: var(--am-red); font-weight: 700; }
.am-ig-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-title); font-size: 0.8rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase; border-radius: 50px;
  padding: 14px 32px; text-decoration: none; position: relative;
  overflow: hidden; transition: background 0.3s ease, color 0.3s ease,
  border-color 0.3s ease, box-shadow 0.3s ease, transform 0.18s ease;
}
.am-ig-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(108deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: translateX(-100%) skewX(-18deg); transition: transform 0.55s ease;
}
.am-ig-btn:hover::before { transform: translateX(160%) skewX(-18deg); }
.am-ig-btn:active { transform: translateY(0) scale(0.97); }
.am-ig-btn--filled { background: var(--am-red); color: var(--am-white); border: 2px solid var(--am-red); }
.am-ig-btn--filled:hover { background: var(--am-red-dark); border-color: var(--am-red-dark);
  box-shadow: 0 8px 28px rgba(202,10,27,0.30); transform: translateY(-2px); color: var(--am-white); }
.am-ig-btn--dark { background: transparent; color: var(--am-off-black); border: 2px solid var(--am-off-black); }
.am-ig-btn--dark:hover { background: var(--am-off-black); color: var(--am-white);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18); transform: translateY(-2px); }
/* ── Phone frame ── */
.am-ig-phone-frame {
  width: 280px;
  overflow: hidden;
  /* box-shadow: 0 20px 60px rgba(0,0,0,0.20), 0 4px 16px rgba(0,0,0,0.12); */
  /* border: 6px solid #1C1E1F; background: #1C1E1F; */
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.5s ease;
}
.am-ig-phone-frame:hover { transform: translateY(-8px); box-shadow: 0 32px 80px rgba(0,0,0,0.28); }
.am-ig-phone-frame--sm { width: 240px; }
.am-ig-phone-img { width: 100%; display: block; }
/* ─── HERO ─── */
.am-ig-hero { background: var(--am-white); overflow: hidden; }
.am-ig-hero-inner {
  display: grid; grid-template-columns: 1fr 0.7fr; gap: 48px;
  max-width: var(--container-max); margin: 0 auto;
  padding: 56px 56px; align-items: center;
}
.am-ig-hero-content { display: flex; flex-direction: column; gap: 18px; }
.am-ig-eyebrow { font-family: var(--font-title); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2.5px; color: var(--am-red); text-transform: uppercase; margin: 0; }
.am-ig-hero-heading { font-family: var(--font-title); font-size: clamp(1.8rem,3vw,2.4rem);
  font-weight: 800; color: var(--am-off-black); line-height: 1.18; margin: 0; }
.am-ig-hero-body { font-family: var(--font-body); font-size: clamp(0.9rem,1.1vw,1rem);
  color: var(--am-dark); line-height: 1.75; margin: 0; }
.am-ig-hero-body strong { font-weight: 700; color: var(--am-off-black); }
/* QR row */
.am-ig-apps { display: flex; gap: 28px; margin: 4px 0; }
.am-ig-app-pair { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.am-ig-qr {
    width: 100%;
    height: 185px;
    /* border: 1.5px solid rgba(0,0,0,0.10); */
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.07); */
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.am-ig-qr:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
.am-ig-qr-img { width: 100%; height: 100%; object-fit: cover; }
.am-ig-badge-img { height: 34px; width: auto; object-fit: contain; }
/* Alt way */
.am-ig-altway { border-top: 1px solid rgba(0,0,0,0.08); padding-top: 18px;
  display: flex; flex-direction: column; gap: 14px; }
/* Phone column */
.am-ig-hero-phone { display: flex; align-items: center; justify-content: center; position: relative; }
.am-ig-hero-accent { position: absolute; top: 0; right: 0; width: 36px; height: 4px;
  background: var(--am-red); border-radius: 2px; }
/* ─── RED BANNER ─── */
.am-ig-banner { background: var(--am-purple); padding: 64px 40px; text-align: center;
  position: relative; overflow: hidden; }
.am-ig-banner-inner { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }
.am-ig-banner-text { font-family: var(--font-title); font-size: clamp(1.2rem,2.2vw,1.65rem);
  font-weight: 700; color: var(--am-white); line-height: 1.4; margin: 0 0 16px; }
.am-ig-banner-text em { font-style: italic; }
.am-ig-banner-tagline { font-family: Georgia, serif; font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-style: italic; color: var(--am-white); margin: 0; opacity: 0.92;
  background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, var(--am-white) 50%, rgba(255,255,255,0.9) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; }
.am-ig-banner-ring { position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08); pointer-events: none;
  animation: igRingPulse 6s ease-in-out infinite; }
.am-ig-banner-ring--1 { width: 400px; height: 400px; top: 50%; left: 50%;
  transform: translate(-50%,-50%); }
.am-ig-banner-ring--2 { width: 700px; height: 700px; top: 50%; left: 50%;
  transform: translate(-50%,-50%); animation-delay: 2s; }
@keyframes igRingPulse {
  0%,100% { opacity: 0.4; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.03); }
}
/* ─── GUIDE SECTIONS (Musicians & Donors) ─── */
.am-ig-guide { background: var(--am-white); overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.06); }
.am-ig-guide--reversed { background: #f9f9f9; }
.am-ig-guide-inner {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px;
  max-width: var(--container-max); margin: 0 auto;
  padding: 64px 56px; align-items: flex-start;
}
.am-ig-guide-inner--reversed { grid-template-columns: 0.8fr 1.2fr; }
.am-ig-guide-content { display: flex; flex-direction: column; gap: 20px; }
.am-ig-guide-heading { font-family: var(--font-title); font-size: clamp(1.5rem,2.5vw,2rem);
  font-weight: 800; color: var(--am-off-black); margin: 0; line-height: 1.2; }
/* Numbered steps */
.am-ig-guide-steps { list-style: none; counter-reset: ig-step; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 16px; }
.am-ig-guide-steps li { counter-increment: ig-step; position: relative; padding-left: 36px;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--am-dark); line-height: 1.72; }
.am-ig-guide-steps li::before { content: counter(ig-step) "."; position: absolute; left: 0; top: 0;
  font-family: var(--font-title); font-size: 0.92rem; font-weight: 800; color: var(--am-red); }
.am-ig-guide-steps li strong { font-weight: 700; color: var(--am-off-black); font-family: var(--font-title); }
.am-ig-guide-phone { display: flex; align-items: flex-start; justify-content: center;
  padding-top: 16px; position: relative; }
.am-ig-guide-accent { position: absolute; top: 16px; left: -16px; width: 36px; height: 4px;
  background: var(--am-red); border-radius: 2px; }
/* ─── FAQ ─── */
.am-ig-faq { background: var(--am-white); overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.06); }
.am-ig-faq-inner {
  display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 48px;
  max-width: var(--container-max); margin: 0 auto;
  padding: 72px 56px; align-items: flex-start;
}
.am-ig-faq-content { display: flex; flex-direction: column; gap: 24px; }
.am-ig-faq-heading { font-family: var(--font-title); font-size: clamp(1.5rem,2.5vw,2rem);
  font-weight: 800; color: var(--am-off-black); margin: 0; }
/* Accordion */
.am-ig-accordion { display: flex; flex-direction: column; gap: 0; }
.am-ig-acc-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.am-ig-acc-trigger {
  width: 100%; background: none; border: none; padding: 16px 40px 16px 0;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  color: var(--am-dark); text-align: left; cursor: pointer; position: relative;
  line-height: 1.5; transition: color 0.2s ease;
}
.am-ig-acc-trigger:hover { color: var(--am-red); }
/* Arrow */
.am-ig-acc-trigger::after {
  content: ''; position: absolute; right: 0; top: 50%;
  width: 8px; height: 8px; border-right: 2px solid var(--am-red);
  border-bottom: 2px solid var(--am-red);
  transform: translateY(-60%) rotate(45deg); transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.am-ig-acc-item.am-open .am-ig-acc-trigger::after { transform: translateY(-30%) rotate(225deg); }
.am-ig-acc-item.am-open .am-ig-acc-trigger { color: var(--am-red); }
/* Panel */
.am-ig-acc-panel {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 0 0 0;
}
.am-ig-acc-item.am-open .am-ig-acc-panel { padding: 0 0 32px 0; }
.am-ig-acc-panel p {
  font-family: var(--font-body); font-size: 0.88rem; color: var(--am-gray);
  line-height: 1.72; margin: 0 0 12px;
}
.am-ig-faq-phone { display: flex; align-items: flex-start; justify-content: center; padding-top: 20px; }
/* ─── HELP CTA ─── */
.am-ig-help { background: #f7f7f7; padding: 64px 40px; text-align: center;
  border-top: 1px solid rgba(0,0,0,0.06); }
.am-ig-help-inner { max-width: 600px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 24px; }
.am-ig-help-heading { font-family: var(--font-title); font-size: clamp(1.4rem,2.5vw,1.8rem);
  font-weight: 800; color: var(--am-off-black); margin: 0; line-height: 1.2; }
/* ─── RESPONSIVE ─── */
/* ═══════════════════════════════════════════════════════════════════
   MISSION PAGE
═══════════════════════════════════════════════════════════════════ */
/* ─── HERO ─── */
.am-ms-hero { background: var(--am-white); overflow: hidden; }
.am-ms-hero-inner {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px;
  max-width: var(--container-max); margin: 0 auto;
  padding: 56px; align-items: center;
}
/* Image */
.am-ms-hero-image-wrap {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.am-ms-hero-img {
  width: 100%; object-fit: contain; border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14); transition: transform 0.6s ease;
}
.am-ms-hero-image-wrap:hover .am-ms-hero-img { transform: scale(1.03); }
.am-ms-hero-accent {
  position: absolute; top: -12px; left: -12px; width: 36px; height: 4px;
  background: var(--am-red); border-radius: 2px; z-index: 2;
}
/* Content */
.am-ms-hero-content {
  display: flex; flex-direction: column; gap: 16px;
}
.am-ms-eyebrow {
  font-family: var(--font-title); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2.5px; color: var(--am-red); text-transform: uppercase; margin: 0;
}
.am-ms-hero-heading {
  font-family: var(--font-title); font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800; color: var(--am-off-black); line-height: 1.12;
  letter-spacing: -0.5px; margin: 0;
}
.am-ms-body {
  font-family: var(--font-body); font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: var(--am-dark); line-height: 1.78; margin: 0;
}
.am-ms-body strong { font-weight: 700; color: var(--am-off-black); }
.am-ms-body--sm { font-size: 0.88rem; color: var(--am-gray); }
/* Quote */
.am-ms-quote {
  border-left: 4px solid var(--am-red); padding: 16px 0 16px 24px;
  margin: 8px 0; background: rgba(193,37,45,0.03); border-radius: 0 10px 10px 0;
}
.am-ms-quote p {
  font-family: var(--font-title); font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 700; font-style: italic; color: var(--am-red); line-height: 1.45; margin: 0 0 8px;
}
.am-ms-quote cite {
  font-family: var(--font-body); font-size: 0.85rem; font-style: italic;
  color: var(--am-gray); display: block;
}
/* Buttons */
.am-ms-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.am-ms-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-title); font-size: 0.76rem; font-weight: 800;
  letter-spacing: 1.2px; text-transform: uppercase; border-radius: 50px;
  padding: 12px 24px; text-decoration: none; position: relative; overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease,
  box-shadow 0.3s ease, transform 0.18s ease; white-space: nowrap;
}
.am-ms-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(108deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: translateX(-100%) skewX(-18deg); transition: transform 0.55s ease;
}
.am-ms-btn:hover::before { transform: translateX(160%) skewX(-18deg); }
.am-ms-btn:active { transform: translateY(0) scale(0.97); }
.am-ms-btn--filled {
  background: var(--am-red); color: var(--am-white); border: 2px solid var(--am-red);
}
.am-ms-btn--filled:hover {
  background: var(--am-red-dark); border-color: var(--am-red-dark);
  box-shadow: 0 6px 22px rgba(202,10,27,0.28); transform: translateY(-2px);
  color: var(--am-white);
}
/* ─── VIDEO SECTION ─── */
.am-ms-video {
  background: var(--am-purple); padding: 72px 40px 80px;
  position: relative; overflow: hidden;
}
.am-ms-video::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(255,255,255,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.am-ms-video-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none; animation: msRingPulse 7s ease-in-out infinite;
}
.am-ms-video-ring--1 { width: 500px; height: 500px; top: 50%; left: 50%;
  transform: translate(-50%,-50%); }
.am-ms-video-ring--2 { width: 800px; height: 800px; top: 50%; left: 50%;
  transform: translate(-50%,-50%); animation-delay: 2.5s; }
@keyframes msRingPulse {
  0%,100% { opacity: 0.4; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 0.9; transform: translate(-50%,-50%) scale(1.03); }
}
.am-ms-video-inner {
  position: relative; z-index: 1; max-width: 860px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 36px;
}
.am-ms-video-header { text-align: center; }
.am-ms-video-eyebrow {
  font-family: var(--font-title); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 4px; color: rgba(255,255,255,0.70); text-transform: uppercase; margin: 0 0 10px;
}
.am-ms-video-heading {
  font-family: var(--font-title); font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800; color: var(--am-white); line-height: 1.25; margin: 0;
}
/* Video container — 16:9 */
.am-ms-video-wrap { width: 100%; }
.am-ms-video-container {
  position: relative; width: 100%; padding-bottom: 56.25%;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 4px 16px rgba(0,0,0,0.2);
}
.am-ms-video-container iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
/* ─── VALUES SECTION ─── */
.am-ms-values {
  background: var(--am-white); padding: 72px 40px 80px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.am-ms-values-inner {
  max-width: var(--container-max); margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 48px;
}
.am-ms-values-eyebrow {
  font-family: var(--font-title); font-size: 1.875rem; font-weight: 700;
  letter-spacing: 12px; color: var(--am-off-black); text-transform: uppercase;
  text-align: center; margin: 0;
}
.am-ms-values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; width: 100%;
}
/* Value card */
.am-ms-value-card {
  background: var(--am-white); border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px; padding: 36px 28px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
}
.am-ms-value-card:hover {
  transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.10);
}
.am-ms-value-icon svg { width: 48px; height: 48px; }
.am-ms-value-title {
  font-family: var(--font-title); font-size: 1.05rem; font-weight: 800;
  color: var(--am-off-black); margin: 0;
}
.am-ms-value-body {
  font-family: var(--font-body); font-size: 0.88rem; color: var(--am-gray);
  line-height: 1.72; margin: 0;
}
/* ─── RESPONSIVE ─── */
/* ═══════════════════════════════════════════════════════════════════
   OUR TEAM PAGE
═══════════════════════════════════════════════════════════════════ */
/* ─── HERO ─── */
.am-tm-hero {
  background: var(--am-purple); padding: 64px 40px 72px;
  text-align: center; position: relative; overflow: hidden;
}
.am-tm-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.am-tm-hero-inner {
  position: relative; z-index: 1; max-width: 680px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.am-tm-eyebrow {
  font-family: var(--font-title); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 4px; color: rgba(255,255,255,0.65); text-transform: uppercase; margin: 0;
}
.am-tm-hero-heading {
  font-family: var(--font-title); font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; color: var(--am-white); line-height: 1.15; margin: 0;
}
.am-tm-hero-body {
  font-family: var(--font-body); font-size: 1.05rem; color: rgba(255,255,255,0.78);
  line-height: 1.65; margin: 0;
}
/* Shared section eyebrow */
.am-tm-section-eyebrow {
  font-family: var(--font-title); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 4px; color: var(--am-red); text-transform: uppercase;
  margin: 0 0 8px; text-align: center;
}
/* ─── BOARD MEMBERS ─── */
.am-tm-board { background: var(--am-white); padding: 72px 40px 80px; }
.am-tm-board-inner {
  max-width: var(--container-max); margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 44px;
}
.am-tm-board-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; width: 100%;
}
/* Member card */
.am-tm-member {
  display: flex; flex-direction: column; gap: 0;
  background: var(--am-white); border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
  cursor: pointer;
}
.am-tm-member:hover {
  transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
/* Image */
.am-tm-member-img-wrap {
  position: relative; overflow: hidden; aspect-ratio: 5/6;
}
.am-tm-member-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.am-tm-member:hover .am-tm-member-img { transform: scale(1.05); }
/* Hover overlay */
.am-tm-member-overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  justify-content: center; padding-bottom: 20px;
  background: linear-gradient(to top, rgba(193,37,45,0.80) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.35s ease;
}
.am-tm-member:hover .am-tm-member-overlay { opacity: 1; }
.am-tm-read-more {
  font-family: var(--font-title); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--am-white);
  border: 1.5px solid var(--am-white); border-radius: 50px;
  padding: 8px 20px; transition: background 0.2s ease;
}
.am-tm-member:hover .am-tm-read-more:hover {
  background: var(--am-white); color: var(--am-red);
}
/* Info */
.am-tm-member-info { padding: 18px 18px 12px; }
.am-tm-member-name {
  font-family: var(--font-title); font-size: 1rem; font-weight: 800;
  color: var(--am-off-black); margin: 0 0 4px; line-height: 1.3;
}
.am-tm-member-role {
  font-family: var(--font-body); font-size: 0.78rem; color: var(--am-gray);
  font-style: italic;
}
/* Expandable bio */
.am-tm-member-bio {
  max-height: 0; overflow: hidden; padding: 0 18px;
  transition: max-height 0.45s ease, padding 0.45s ease;
}
.am-tm-member.am-bio-open .am-tm-member-bio {
  max-height: 400px; padding: 0 18px 20px;
}
.am-tm-member-bio p {
  font-family: var(--font-body); font-size: 0.84rem; color: var(--am-gray);
  line-height: 1.72; margin: 0;
  border-top: 1px solid rgba(0,0,0,0.07); padding-top: 14px;
}
/* ─── ADVISORS MARQUEE ─── */
.am-tm-advisors {
  background: #f7f7f7; padding: 56px 0; overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.am-tm-advisors-inner {
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.am-tm-marquee-wrap {
  width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.am-tm-marquee-track {
  display: flex; align-items: center; gap: 16px; width: max-content;
  animation: tmMarquee 22s linear infinite;
}
.am-tm-marquee-wrap:hover .am-tm-marquee-track { animation-play-state: paused; }
@keyframes tmMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.am-tm-advisor-tag {
  flex-shrink: 0; font-family: var(--font-title); font-size: 0.88rem;
  font-weight: 700; color: var(--am-white); background: var(--am-red);
  border-radius: 8px; padding: 14px 32px; white-space: nowrap;
  letter-spacing: 0.02em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.am-tm-advisor-tag:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 24px rgba(193,37,45,0.30);
}
/* ─── VOLUNTEERS ─── */
.am-tm-volunteers {
  background: var(--am-white); padding: 72px 40px 80px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.am-tm-volunteers-inner {
  max-width: var(--container-max); margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 40px;
}
.am-tm-vol-header { text-align: center; }
.am-tm-vol-heading {
  font-family: var(--font-title); font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 800; color: var(--am-off-black); margin: 0; line-height: 1.2;
}
.am-tm-vol-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 48px;
  width: 100%; max-width: 800px;
}
.am-tm-vol-col { display: flex; flex-direction: column; gap: 0; }
.am-tm-vol-col p {
  font-family: var(--font-body); font-size: 0.88rem; color: var(--am-dark);
  line-height: 1.5; margin: 0; padding: 9px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.am-tm-vol-col p:hover {
  color: var(--am-red); padding-left: 6px;
}
.am-tm-vol-col p:last-child { border-bottom: none; }
/* ─── CTA ─── */
.am-tm-cta {
  background: var(--am-red); padding: 72px 40px 80px;
  text-align: center; position: relative; overflow: hidden;
}
.am-tm-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.am-tm-cta-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none; animation: tmRingPulse 6s ease-in-out infinite;
}
.am-tm-cta-ring--1 { width: 400px; height: 400px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.am-tm-cta-ring--2 { width: 700px; height: 700px; top: 50%; left: 50%;
  transform: translate(-50%,-50%); animation-delay: 2s; }
@keyframes tmRingPulse {
  0%,100% { opacity: 0.4; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.03); }
}
.am-tm-cta-inner {
  position: relative; z-index: 1; max-width: 600px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.am-tm-cta-heading {
  font-family: var(--font-title); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; color: var(--am-white); margin: 0; line-height: 1.2;
}
.am-tm-cta-body {
  font-family: var(--font-body); font-size: 1.05rem; color: rgba(255,255,255,0.85);
  margin: 0;
}
.am-tm-cta-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-title); font-size: 0.82rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; color: var(--am-red);
  background: var(--am-white); border: 2px solid var(--am-white);
  border-radius: 50px; padding: 16px 40px; text-decoration: none;
  margin-top: 8px; position: relative; overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.18s ease;
}
.am-tm-cta-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(108deg, transparent 30%, rgba(193,37,45,0.10) 50%, transparent 70%);
  transform: translateX(-100%) skewX(-18deg); transition: transform 0.55s ease;
}
.am-tm-cta-btn:hover {
  background: transparent; color: var(--am-white); border-color: var(--am-white);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2); transform: translateY(-2px);
}
.am-tm-cta-btn:hover::before { transform: translateX(160%) skewX(-18deg); }
.am-tm-cta-btn:active { transform: translateY(0) scale(0.97); }
/* ─── RESPONSIVE ─── */
/* ═══════════════════════════════════════════════════════════════════
   BRANDON'S STORY PAGE
═══════════════════════════════════════════════════════════════════ */
/* ─── HERO IMAGE ─── */
.am-bs-hero { position: relative; overflow: hidden; }
.am-bs-hero-img-wrap { position: relative; height: 100vh; }
.am-bs-hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block;
}
.am-bs-hero-gradient {
  position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
}
.am-bs-photo-credit {
  position: absolute; bottom: 14px; left: 0; right: 0; text-align: center;
  font-family: var(--font-body); font-size: 0.72rem; font-style: italic;
  color: rgba(255,255,255,0.75); z-index: 2; text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
/* ─── INTRO QUOTE ─── */
.am-bs-intro {
  background: var(--am-white); padding: 56px 40px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.am-bs-intro-inner { max-width: 680px; margin: 0 auto; }
.am-bs-intro-quote {
  border: none; padding: 0; margin: 0; text-align: center;
}
.am-bs-intro-quote p {
  font-family: var(--font-body); font-size: clamp(1rem, 1.3vw, 1.12rem);
  font-style: italic; color: var(--am-dark); line-height: 1.78; margin: 0 0 16px;
}
.am-bs-intro-quote p:last-child { margin-bottom: 0; }
/* ─── MAIN CONTENT + SIDEBAR ─── */
.am-bs-main {
  background: var(--am-white); padding: 0 40px 80px;
}
.am-bs-main-inner {
  display: grid; grid-template-columns: 1fr 300px; gap: 56px;
  max-width: var(--container-max); margin: 0 auto;
  align-items: start; padding-top: 48px;
}
/* ─── ARTICLE ─── */
.am-bs-article { max-width: 840px; }
.am-bs-article-title {
  font-family: var(--font-title); font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800; color: var(--am-off-black); line-height: 1.12;
  letter-spacing: -0.5px; margin: 0 0 12px;
  padding-bottom: 16px; border-bottom: 3px solid var(--am-red);
}
.am-bs-meta {
  display: flex; align-items: center; gap: 8px; margin-bottom: 32px;
}
.am-bs-meta-item {
  font-family: var(--font-title); font-size: 0.82rem; font-weight: 500;
  color: var(--am-gray);
}
.am-bs-meta-sep { color: var(--am-gray); font-size: 0.7rem; }
/* Content typography */
.am-bs-content p {
  font-family: var(--font-body); font-size: 0.96rem; color: var(--am-dark);
  line-height: 1.82; margin: 0 0 20px;
}
.am-bs-greeting { font-size: 1.02rem !important; margin-bottom: 24px !important; }
.am-bs-subheading {
  font-family: var(--font-title); font-size: 1.1rem; font-weight: 800;
  color: var(--am-off-black); line-height: 1.4; margin: 32px 0 16px;
  padding-left: 18px; border-left: 3px solid var(--am-red);
}
.am-bs-highlight {
  background: rgba(193,37,45,0.04); border-left: 4px solid var(--am-red);
  padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 28px 0 !important;
  font-size: 0.98rem !important;
}
.am-bs-link {
  color: var(--am-red); text-decoration: underline; text-underline-offset: 3px;
  font-weight: 600; transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.am-bs-link:hover { color: var(--am-red-dark); text-decoration-color: transparent; }
/* Video */
.am-bs-video-wrap { margin: 32px 0; }
.am-bs-video-container {
  position: relative; width: 100%; padding-bottom: 56.25%;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.am-bs-video-container iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
/* Sign off */
.am-bs-sign-off {
  font-family: var(--font-body); font-size: 0.96rem; color: var(--am-dark);
  line-height: 1.6; padding-top: 20px; border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 12px;
}
.am-bs-sign-off strong {
  font-family: var(--font-title); font-weight: 800; color: var(--am-off-black);
}
/* ─── STICKY SIDEBAR ─── */
.am-bs-sidebar { position: relative; }
.am-bs-sidebar-sticky {
  position: sticky; top: calc(var(--header-height, 80px) + 24px);
  display: flex; flex-direction: column; gap: 20px;
}
/* Sidebar cards */
.am-bs-sidebar-card {
  border-radius: 14px; padding: 28px 24px; display: flex;
  flex-direction: column; gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.am-bs-sidebar-card:hover {
  transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.15);
}
.am-bs-sidebar-card--red { background: var(--am-red); }
.am-bs-sidebar-card--dark { background: var(--am-purple); }
.am-bs-sidebar-title {
  font-family: var(--font-title); font-size: 1.2rem; font-weight: 800;
  color: var(--am-white); margin: 0;
}
.am-bs-sidebar-text {
  font-family: var(--font-body); font-size: 0.85rem; color: rgba(255,255,255,0.82);
  line-height: 1.65; margin: 0;
}
.am-bs-sidebar-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-title); font-size: 0.76rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase; border-radius: 50px;
  padding: 12px 24px; text-decoration: none; align-self: flex-start;
  transition: background 0.3s ease, color 0.3s ease, transform 0.18s ease, box-shadow 0.3s ease;
}
.am-bs-sidebar-btn--white {
  background: var(--am-white); color: var(--am-off-black);
  border: 2px solid var(--am-white);
}
.am-bs-sidebar-btn--white:hover {
  background: transparent; color: var(--am-white); border-color: var(--am-white);
  transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
/* Share section */
.am-bs-sidebar-share {
  background: #f5f5f5; border-radius: 12px; padding: 20px;
  display: flex; flex-direction: column; gap: 12px; align-items: center;
}
.am-bs-share-label {
  font-family: var(--font-title); font-size: 0.76rem; font-weight: 600;
  letter-spacing: 1px; color: var(--am-gray); text-transform: uppercase; margin: 0;
}
.am-bs-share-icons { display: flex; gap: 10px; }
.am-bs-share-link {
  width: 40px; height: 40px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  background: var(--am-white); border: 1.5px solid rgba(0,0,0,0.12);
  color: var(--am-dark); transition: background 0.25s ease, color 0.25s ease,
  transform 0.2s ease, border-color 0.25s ease;
}
.am-bs-share-link svg { width: 18px; height: 18px; }
.am-bs-share-link:hover {
  background: var(--am-red); color: var(--am-white); border-color: var(--am-red);
  transform: translateY(-3px);
}
/* ═══════════════════════════════════════════════════════════════════
   GET INVOLVED PAGE
═══════════════════════════════════════════════════════════════════ */
/* ─── HERO ─── */
.am-gi-hero { position: relative; overflow: hidden; min-height: 280px; display: flex; align-items: flex-end; background: var(--am-purple); }
.am-gi-hero-inner {
  position: relative; z-index: 1; max-width: var(--container-max); margin: 0 auto;
  width: 100%; padding: 56px 56px 48px; display: flex; flex-direction: column; gap: 12px; align-items: center;
}
.am-gi-hero-heading {
  font-family: var(--font-title); font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800; color: var(--am-white); letter-spacing: 8px;
  text-transform: uppercase; margin: 0; line-height: 1.1;
  text-align: center;
}
.am-gi-hero-body {
  font-family: var(--font-body); font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: rgba(255,255,255,0.75); line-height: 1.65; margin: 0; max-width: 520px; text-align: center;
}
/* ─── CATEGORY CARDS ─── */
.am-gi-cards { background: var(--am-white); padding: 0; }
.am-gi-cards-inner {
  max-width: var(--container-max); margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}
.am-gi-card {
  display: grid; grid-template-columns: 1fr auto auto;
  align-items: center; gap: 32px;
  padding: 40px 56px; cursor: pointer;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  position: relative; overflow: hidden;
  transition: background 0.35s ease;
}
.am-gi-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--am-red);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.am-gi-card:hover { background: rgba(193,37,45,0.02); }
.am-gi-card:hover::before { transform: scaleY(1); }
/* Content */
.am-gi-card-content { display: flex; flex-direction: column; gap: 8px; }
.am-gi-card-title {
  font-family: var(--font-title); font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 800; color: var(--am-off-black); letter-spacing: 4px;
  text-transform: uppercase; margin: 0; line-height: 1.2;
  transition: color 0.25s ease;
}
.am-gi-card:hover .am-gi-card-title { color: var(--am-red); }
.am-gi-card-body {
  font-family: var(--font-body); font-size: 0.9rem; color: var(--am-gray);
  line-height: 1.68; margin: 0; max-width: 560px;
}
/* Action link + arrow */
.am-gi-card-action {
  display: flex; align-items: center; gap: 8px;
  transition: gap 0.3s ease;
}
.am-gi-card:hover .am-gi-card-action { gap: 14px; }
.am-gi-card-link {
  font-family: var(--font-title); font-size: 0.7rem; font-weight: 800;
  letter-spacing: 2px; color: var(--am-red); text-transform: uppercase;
  white-space: nowrap; transition: color 0.2s ease;
}
.am-gi-card-arrow { width: 22px; height: 22px; color: var(--am-red); flex-shrink: 0; transition: transform 0.3s ease; }
.am-gi-card:hover .am-gi-card-arrow { transform: translateX(4px); }
/* Icon */
.am-gi-card-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  color: rgba(0,0,0,0.08); transition: color 0.35s ease, transform 0.35s ease;
}
.am-gi-card-icon svg { width: 100%; height: 100%; }
.am-gi-card:hover .am-gi-card-icon { color: rgba(193,37,45,0.15); transform: scale(1.1); }
/* ═══════════════════════════════════════════════════════════
   FULL-SCREEN FORM PANELS
═══════════════════════════════════════════════════════════ */
.am-gi-panel {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  width: 100vw;
  background: var(--am-purple);
  z-index: 99999;
  overflow-y: auto;

  /* Hidden state — below viewport */
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    opacity   0.4s ease,
    visibility 0s linear 0.55s;
}
/* Open state */
.am-gi-panel.am-panel-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    opacity   0.35s ease,
    visibility 0s linear 0s;
}
/* Scrollbar */
.am-gi-panel::-webkit-scrollbar { width: 5px; }
.am-gi-panel::-webkit-scrollbar-track { background: transparent; }
.am-gi-panel::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.12); border-radius: 4px; }
/* Inner container */
.am-gi-panel-inner {
  max-width: 780px; margin: 0 auto; padding: 0 40px 80px;
  min-height: 100%;
}
/* Panel header */
.am-gi-panel-header {
  padding: 100px 0 32px; border-bottom: 2px solid rgba(255,255,255,0.15);
  margin-bottom: 36px; position: relative;

  /* Stagger entrance */
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}
.am-gi-panel.am-panel-open .am-gi-panel-header {
  opacity: 1; transform: translateY(0);
}
/* Close button */
.am-gi-panel-close {
  position: fixed; top: 24px; right: 32px; z-index: 100000;
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.10); border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50px; cursor: pointer;
  font-family: var(--font-title); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2px; color: rgba(255,255,255,0.85); padding: 10px 20px 10px 14px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.18s ease;
}
.am-gi-panel-close svg { width: 16px; height: 16px; transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1); }
.am-gi-panel-close:hover { background: var(--am-white); color: var(--am-purple); border-color: var(--am-white); }
.am-gi-panel-close:hover svg { transform: rotate(90deg); }
.am-gi-panel-close:active { transform: scale(0.95); }
.am-gi-panel-title {
  font-family: var(--font-title); font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800; color: var(--am-white); margin: 0 0 10px;
  line-height: 1.18; letter-spacing: -0.3px;
}
.am-gi-panel-subtitle {
  font-family: var(--font-body); font-size: 1rem;
  color: rgba(255,255,255,0.70); line-height: 1.65; margin: 0;
}
/* Panel body */
.am-gi-panel-body {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.45s ease 0.35s, transform 0.45s ease 0.35s;
}
.am-gi-panel.am-panel-open .am-gi-panel-body {
  opacity: 1; transform: translateY(0);
}
/* Form area */
.am-gi-panel-form-area {
  background: rgba(255,255,255,0.06); border-radius: 16px;
  padding: 40px 36px; min-height: 300px;
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
/* Placeholder text — remove when real forms are in */
.am-gi-form-placeholder {
  font-family: var(--font-title); font-size: 0.9rem;
  color: rgba(255,255,255,0.40); text-align: center; padding: 60px 0;
  letter-spacing: 1px;
}
/* ─── Panel backdrop overlay ─── */
.am-gi-backdrop {
  position: fixed; inset: 0; z-index: 899;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}
.am-gi-backdrop.am-backdrop-show {
  opacity: 1; visibility: visible;
  transition: opacity 0.4s ease, visibility 0s linear 0s;
}
/* ─── RESPONSIVE ─── */
/* ═══════════════════════════════════════════════════════════════════
   OUR IMPACT PAGE
═══════════════════════════════════════════════════════════════════ */
/* ─── HERO ─── */
.am-oi-hero {
  background: var(--am-white); padding: 48px 40px 36px; text-align: center;
}
.am-oi-hero-inner {
  max-width: 600px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.am-oi-hero-eyebrow {
  font-family: var(--font-title); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 4px; color: var(--am-red); text-transform: uppercase; margin: 0;
}
.am-oi-hero-heading {
  font-family: var(--font-title); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--am-off-black); line-height: 1.1;
  letter-spacing: -0.5px; margin: 0;
}
/* ─── PHOTO GALLERY ─── */
.am-oi-gallery {
  background: var(--am-white); padding: 0 40px 8px; overflow: hidden;
}
.am-oi-gallery-inner {
  max-width: var(--container-max); margin: 0 auto;
}
.am-oi-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 6px;
}
/* Wide items span 2 cols */
.am-oi-gallery-item--wide { grid-column: span 2; }
.am-oi-gallery-item {
  position: relative; overflow: hidden; border-radius: 6px;
}
.am-oi-gallery-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease, filter 0.4s ease;
}
/* Hover overlay */
.am-oi-gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(193,37,45,0.35) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.35s ease;
}
.am-oi-gallery-item:hover::after { opacity: 1; }
.am-oi-gallery-item:hover .am-oi-gallery-img {
  transform: scale(1.08);
}
/* ─── SUPPORT OUR MISSION ─── */
.am-oi-support {
  background: var(--am-white); padding: 72px 40px 88px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.am-oi-support-inner {
  max-width: 640px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}
.am-oi-support-content {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 18px;
}
.am-oi-support-heading {
  font-family: var(--font-title); font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; color: var(--am-off-black); line-height: 1.2;
  letter-spacing: -0.3px; margin: 0;
}
.am-oi-support-tagline {
  font-family: var(--font-title); font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 700; color: var(--am-red); line-height: 1.3; margin: 0;
}
.am-oi-support-body {
  font-family: var(--font-body); font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: var(--am-dark); line-height: 1.78; margin: 0; max-width: 580px;
}
.am-oi-support-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-title); font-size: 0.82rem; font-weight: 800;
  letter-spacing: 1.2px; color: var(--am-white); background: var(--am-off-black);
  border: 2px solid var(--am-off-black); border-radius: 50px;
  padding: 16px 36px; text-decoration: none; margin-top: 8px;
  position: relative; overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.18s ease;
}
.am-oi-support-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(108deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
  transform: translateX(-100%) skewX(-18deg); transition: transform 0.55s ease;
}
.am-oi-support-btn:hover {
  background: var(--am-red); border-color: var(--am-red); color: var(--am-white);
  box-shadow: 0 8px 28px rgba(202,10,27,0.30); transform: translateY(-2px);
}
.am-oi-support-btn:hover::before { transform: translateX(160%) skewX(-18deg); }
.am-oi-support-btn:active { transform: translateY(0) scale(0.97); }
/* ─── RESPONSIVE ─── */
/* ═══════════════════════════════════════════════════════════════════
   EVENTS PAGE
═══════════════════════════════════════════════════════════════════ */
/* ─── HERO ─── */
.am-ev-hero {
  /* background: var(--am-purple);  */
  padding: 48px 40px 44px;
  text-align: center; position: relative; overflow: hidden;
}
.am-ev-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 90% at 50% 40%, rgba(255,255,255,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.am-ev-hero-inner {
  position: relative; z-index: 1; display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
.am-ev-hero-logo-img {
  max-height: 423px; width: auto; object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.25));
}
.am-ev-hero-address {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-title); font-size: 1.25rem; font-weight: 600;
  letter-spacing: 3px; color: var(--am-purple); text-transform: uppercase; margin: 0;
}
.am-ev-pin-icon { width: 16px; height: 16px; color: rgba(255,255,255,0.85); flex-shrink: 0; }
/* ─── SHOWS SECTION ─── */
.am-ev-shows {
  background: var(--am-white); padding: 48px 40px 56px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.am-ev-shows-inner {
  max-width: var(--container-max); margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 36px;
}
/* Embed container */
.am-ev-embed {
  width: 100%; min-height: 200px;
}
/* Archive button */
.am-ev-archive-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-title); font-size: 0.78rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--am-white); background: var(--am-red); border: 2px solid var(--am-red);
  border-radius: 50px; padding: 13px 32px; text-decoration: none;
  position: relative; overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.18s ease;
}
.am-ev-archive-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(108deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: translateX(-100%) skewX(-18deg); transition: transform 0.55s ease;
}
.am-ev-archive-btn:hover {
  background: var(--am-red-dark); border-color: var(--am-red-dark);
  box-shadow: 0 8px 28px rgba(202,10,27,0.30); transform: translateY(-2px); color: var(--am-white);
}
.am-ev-archive-btn:hover::before { transform: translateX(160%) skewX(-18deg); }
.am-ev-archive-btn:active { transform: translateY(0) scale(0.97); }
/* ─── SECTION EYEBROW (shared) ─── */
.am-ev-section-eyebrow {
  font-family: var(--font-title); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 4px; color: var(--am-red); text-transform: uppercase; margin: 0;
}
/* ─── COMMUNITY EVENTS ─── */
.am-ev-community {
  background: #f7f7f7; padding: 72px 40px 80px;
}
.am-ev-community-inner {
  max-width: var(--container-max); margin: 0 auto;
  display: flex; flex-direction: column; gap: 48px;
}
.am-ev-community-header {
  display: flex; flex-direction: column; gap: 10px;
}
.am-ev-community-heading {
  font-family: var(--font-title); font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800; color: var(--am-off-black); margin: 0; line-height: 1.2;
}
/* ── Feature event card ── */
.am-ev-feature {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 0;
  background: var(--am-white); border-radius: 18px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow 0.35s ease;
}
.am-ev-feature:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.10); }
/* Flipped layout */
.am-ev-feature--flipped .am-ev-feature-img-wrap { order: 1; }
.am-ev-feature--flipped .am-ev-feature-content { order: 2; }
/* Image */
.am-ev-feature-img-wrap {
  position: relative; overflow: hidden; min-height: 320px;
}
.am-ev-feature-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.am-ev-feature-img-wrap:hover .am-ev-feature-img { transform: scale(1.05); }
.am-ev-feature-accent {
  position: absolute; top: 20px; left: 20px; width: 36px; height: 4px;
  background: var(--am-red); border-radius: 2px; z-index: 2;
}
/* Content */
.am-ev-feature-content {
  padding: 36px 36px 36px 40px;
  display: flex; flex-direction: column; gap: 14px; justify-content: center;
}
.am-ev-feature-title {
  font-family: var(--font-title); font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 800; color: var(--am-off-black); margin: 0; line-height: 1.22;
}
.am-ev-feature-subtitle {
  font-family: var(--font-body); font-size: 0.92rem; color: var(--am-gray); margin: 0;
}
.am-ev-feature-body {
  font-family: var(--font-body); font-size: 0.9rem; color: var(--am-dark);
  line-height: 1.65; margin: 0;
}
/* Date pills */
.am-ev-feature-dates {
  display: flex; flex-direction: column; gap: 6px;
}
.am-ev-date-pill {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 0.86rem; color: var(--am-dark);
  background: rgba(193,37,45,0.04); border-radius: 8px; padding: 8px 14px;
  border-left: 3px solid var(--am-red);
  transition: background 0.2s ease, padding-left 0.2s ease;
}
.am-ev-date-pill:hover { background: rgba(193,37,45,0.07); padding-left: 18px; }
.am-ev-date-icon { font-size: 0.9rem; flex-shrink: 0; }
/* Detail rows */
.am-ev-feature-details {
  display: flex; flex-direction: column; gap: 10px;
  padding: 16px 0; border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.am-ev-detail-row {
  display: flex; gap: 12px; align-items: flex-start;
  font-family: var(--font-body); font-size: 0.86rem; color: var(--am-dark); line-height: 1.55;
}
.am-ev-detail-label {
  font-family: var(--font-title); font-size: 0.68rem; font-weight: 800;
  letter-spacing: 1px; color: var(--am-white); background: var(--am-off-black);
  border-radius: 4px; padding: 3px 8px; flex-shrink: 0; margin-top: 1px;
}
/* Info note */
.am-ev-feature-note {
  background: rgba(193,37,45,0.04); border-left: 3px solid var(--am-red);
  border-radius: 0 10px 10px 0; padding: 16px 20px;
  font-family: var(--font-body); font-size: 0.86rem; color: var(--am-dark); line-height: 1.68;
}
.am-ev-feature-note strong {
  font-family: var(--font-title); font-weight: 700; color: var(--am-off-black);
}
/* Feature link */
.am-ev-feature-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-title); font-size: 0.86rem; font-weight: 700;
  color: var(--am-red); text-decoration: none;
  transition: gap 0.25s ease, color 0.2s ease;
}
.am-ev-feature-link:hover { color: var(--am-red-dark); gap: 12px; }
.am-ev-arrow-icon { width: 18px; height: 18px; flex-shrink: 0; }
/* ─── BOOK VENUE ─── */
.am-ev-book {
  background: var(--am-white); padding: 72px 40px 80px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.am-ev-book-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 36px;
}
.am-ev-book-header { text-align: center; }
.am-ev-book-heading {
  font-family: var(--font-title); font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800; color: var(--am-off-black); margin: 8px 0 0; line-height: 1.2;
}
.am-ev-book-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--am-white); border-radius: 18px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.05);
}
.am-ev-book-img-wrap { position: relative; overflow: hidden; min-height: 280px; }
.am-ev-book-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.am-ev-book-img-wrap:hover .am-ev-book-img { transform: scale(1.04); }
.am-ev-book-accent {
  position: absolute; top: 20px; left: 20px; width: 36px; height: 4px;
  background: var(--am-red); border-radius: 2px; z-index: 2;
}
.am-ev-book-credit {
  position: absolute; bottom: 10px; left: 14px;
  font-family: var(--font-body); font-size: 0.7rem; font-style: italic;
  color: rgba(255,255,255,0.75); text-shadow: 0 1px 3px rgba(0,0,0,0.5); z-index: 2;
}
.am-ev-book-content {
  padding: 40px 40px; display: flex; flex-direction: column;
  justify-content: center; gap: 20px;
}
.am-ev-book-body {
  font-family: var(--font-body); font-size: 0.95rem; color: var(--am-dark);
  line-height: 1.75; margin: 0;
}
.am-ev-book-btn {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  font-family: var(--font-title); font-size: 0.82rem; font-weight: 800;
  letter-spacing: 1px; color: var(--am-white); background: var(--am-red);
  border: 2px solid var(--am-red); border-radius: 50px;
  padding: 14px 28px; text-decoration: none;
  position: relative; overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.18s ease;
}
.am-ev-book-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(108deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: translateX(-100%) skewX(-18deg); transition: transform 0.55s ease;
}
.am-ev-book-btn:hover {
  background: var(--am-red-dark); border-color: var(--am-red-dark);
  box-shadow: 0 8px 28px rgba(202,10,27,0.30); transform: translateY(-2px); color: var(--am-white);
}
.am-ev-book-btn:hover::before { transform: translateX(160%) skewX(-18deg); }
.am-ev-book-btn:active { transform: translateY(0) scale(0.97); }
.am-ev-book-btn .am-ev-arrow-icon { width: 16px; height: 16px; }
/* ═══════════════════════════════════════════════════════════
   EVENTS — RESPONSIVE
═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════════
   PAST EVENTS / ARCHIVE PAGE
═══════════════════════════════════════════════════════════════════ */
/* ─── HERO ─── */
.am-pe-hero {
  background: var(--am-purple); padding: 48px 40px 44px;
  text-align: center; position: relative; overflow: hidden;
}
.am-pe-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.am-pe-hero-inner {
  position: relative; z-index: 1; display: flex; flex-direction: column;
  align-items: center; gap: 10px;
}
.am-pe-hero-eyebrow {
  font-family: var(--font-title); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 4px; color: rgba(255,255,255,0.60); text-transform: uppercase; margin: 0;
}
.am-pe-hero-heading {
  font-family: var(--font-title); font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; color: var(--am-white); line-height: 1.12; margin: 0;
}
/* ─── MAIN LAYOUT ─── */
.am-pe-main {
  background: #f7f7f7; padding: 48px 40px 72px;
}
.am-pe-main-inner {
  display: grid; grid-template-columns: 1fr 280px; gap: 48px;
  max-width: var(--container-max); margin: 0 auto; align-items: start;
}
/* ─── EVENT LISTING ─── */
.am-pe-listing {
  display: flex; flex-direction: column; gap: 0;
}
/* Event card */
.am-pe-card {
  display: flex; gap: 20px; padding: 28px 24px; text-decoration: none;
  background: var(--am-white); border-radius: 14px;
  margin-bottom: 14px; border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease,
  border-color 0.3s ease;
}
.am-pe-card:hover {
  transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.10);
  border-color: rgba(193,37,45,0.15);
}
/* Date badge */
.am-pe-card-date {
  flex-shrink: 0; width: 60px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2px;
  background: var(--am-red); border-radius: 10px; padding: 10px 8px;
  align-self: flex-start;
}
.am-pe-card-month {
  font-family: var(--font-title); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 1.5px; color: rgba(255,255,255,0.85); text-transform: uppercase;
}
.am-pe-card-day {
  font-family: var(--font-title); font-size: 1.5rem; font-weight: 800;
  color: var(--am-white); line-height: 1;
}
/* Card body */
.am-pe-card-body {
  display: flex; flex-direction: column; gap: 8px; flex: 1; min-width: 0;
}
.am-pe-card-title {
  font-family: var(--font-title); font-size: 1.05rem; font-weight: 800;
  color: var(--am-off-black); margin: 0; line-height: 1.3;
  transition: color 0.2s ease;
}
.am-pe-card:hover .am-pe-card-title { color: var(--am-red); }
.am-pe-card-meta {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  font-family: var(--font-body); font-size: 0.78rem; color: var(--am-gray);
}
.am-pe-card-venue { font-weight: 600; color: var(--am-dark); }
.am-pe-card-dot { color: var(--am-gray); font-size: 0.6rem; }
.am-pe-card-excerpt {
  font-family: var(--font-body); font-size: 0.88rem; color: var(--am-gray);
  line-height: 1.68; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Read more link */
.am-pe-card-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 4px;
  font-family: var(--font-title); font-size: 0.78rem; font-weight: 700;
  color: var(--am-red); transition: gap 0.25s ease, color 0.2s ease;
}
.am-pe-card:hover .am-pe-card-link { gap: 10px; color: var(--am-red-dark); }
.am-pe-arrow { width: 16px; height: 16px; flex-shrink: 0; }
/* Load more */
.am-pe-load-wrap { display: flex; justify-content: center; margin-top: 28px; }
.am-pe-load-btn {
  font-family: var(--font-title); font-size: 0.8rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--am-white); background: var(--am-red); border: 2px solid var(--am-red);
  border-radius: 50px; padding: 14px 36px; cursor: pointer;
  position: relative; overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.18s ease;
}
.am-pe-load-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(108deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: translateX(-100%) skewX(-18deg); transition: transform 0.55s ease;
}
.am-pe-load-btn:hover {
  background: var(--am-red-dark); border-color: var(--am-red-dark);
  box-shadow: 0 8px 28px rgba(202,10,27,0.30); transform: translateY(-2px);
}
.am-pe-load-btn:hover::before { transform: translateX(160%) skewX(-18deg); }
.am-pe-load-btn:active { transform: translateY(0) scale(0.97); }
/* ─── STICKY SIDEBAR ─── */
.am-pe-sidebar { position: relative; }
.am-pe-sidebar-sticky {
  position: sticky; top: calc(var(--header-height, 80px) + 24px);
  display: flex; flex-direction: column; gap: 20px;
}
/* Sidebar card */
.am-pe-sidebar-card {
  background: var(--am-white); border-radius: 14px;
  padding: 24px; border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.am-pe-sidebar-card--red {
  background: var(--am-red); border: none;
  box-shadow: 0 8px 28px rgba(202,10,27,0.20);
}
.am-pe-sidebar-title {
  font-family: var(--font-title); font-size: 1.1rem; font-weight: 800;
  color: var(--am-off-black); margin: 0 0 16px;
}
.am-pe-sidebar-title--white { color: var(--am-white); }
.am-pe-sidebar-text {
  font-family: var(--font-body); font-size: 0.85rem;
  color: rgba(255,255,255,0.82); line-height: 1.6; margin: 0 0 16px;
}
.am-pe-sidebar-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-title); font-size: 0.74rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--am-red); background: var(--am-white);
  border: 2px solid var(--am-white); border-radius: 50px;
  padding: 11px 24px; text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.18s ease;
}
.am-pe-sidebar-btn:hover {
  background: transparent; color: var(--am-white); border-color: var(--am-white);
  transform: translateY(-1px);
}
/* Categories nav */
.am-pe-cat-nav {
  display: flex; flex-direction: column; gap: 0;
}
.am-pe-cat-link {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  font-family: var(--font-title); font-size: 0.88rem; font-weight: 600;
  color: var(--am-dark); text-decoration: none; border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.am-pe-cat-link:hover {
  background: rgba(193,37,45,0.05); color: var(--am-red); padding-left: 18px;
}
.am-pe-cat-link--active {
  background: rgba(193,37,45,0.06); color: var(--am-red); font-weight: 700;
}
/* Category dot */
.am-pe-cat-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: rgba(0,0,0,0.15); transition: background 0.2s ease, transform 0.2s ease;
}
.am-pe-cat-link:hover .am-pe-cat-dot,
.am-pe-cat-link--active .am-pe-cat-dot {
  background: var(--am-red); transform: scale(1.2);
}
/* ─── RESPONSIVE ─── */
/* ═══════════════════════════════════════════════════════════════════
   CONTACT US PAGE
═══════════════════════════════════════════════════════════════════ */
/* ─── HERO ─── */
.am-ct-hero {
  background: var(--am-purple); padding: 52px 40px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.am-ct-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.am-ct-hero-inner {
  position: relative; z-index: 1; max-width: 640px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.am-ct-hero-eyebrow {
  font-family: var(--font-title); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 4px; color: rgba(255,255,255,0.60); text-transform: uppercase; margin: 0;
}
.am-ct-hero-heading {
  font-family: var(--font-title); font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800; color: var(--am-white); line-height: 1.18; margin: 0;
}
.am-ct-hero-body {
  font-family: var(--font-body); font-size: 1rem;
  color: rgba(255,255,255,0.75); line-height: 1.65; margin: 0;
}
/* ─── MAIN LAYOUT ─── */
.am-ct-main { background: #f7f7f7; padding: 48px 40px 80px; }
.am-ct-main-inner {
  display: grid; grid-template-columns: 1fr 300px; gap: 40px;
  max-width: var(--container-max); margin: 0 auto; align-items: start;
}
/* ─── FORM CARD ─── */
.am-ct-form-card {
  background: var(--am-white); border-radius: 18px;
  padding: 44px 40px; box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
}
.am-ct-form { display: flex; flex-direction: column; gap: 22px; }
/* Section headers */
.am-ct-section-header {
  display: flex; align-items: center; gap: 12px; margin-top: 4px;
}
.am-ct-section-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--am-red); flex-shrink: 0;
}
.am-ct-section-title {
  font-family: var(--font-title); font-size: 1.2rem; font-weight: 800;
  color: var(--am-off-black); margin: 0;
}
.am-ct-divider { height: 1px; background: rgba(0,0,0,0.07); margin: 4px 0; }
/* Fields */
.am-ct-field-group { display: flex; flex-direction: column; gap: 8px; }
.am-ct-label {
  font-family: var(--font-title); font-size: 0.86rem; font-weight: 700;
  color: var(--am-off-black);
}
.am-ct-req { color: var(--am-red); font-weight: 600; font-size: 0.8rem; }
.am-ct-sub {
  font-family: var(--font-title); font-size: 0.74rem; font-weight: 500;
  color: var(--am-gray); margin-bottom: 4px;
}
.am-ct-hint {
  font-family: var(--font-body); font-size: 0.84rem; color: var(--am-gray);
  line-height: 1.6; margin: 0;
}
.am-ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.am-ct-field { display: flex; flex-direction: column; }
.am-ct-field--half { max-width: calc(50% - 8px); }
/* Inputs */
.am-ct-input,
.am-ct-select,
.am-ct-textarea {
  width: 100%; height: 48px; background: #f5f5f5;
  border: 1.5px solid rgba(0,0,0,0.10); border-radius: 10px;
  padding: 0 16px; font-family: var(--font-body); font-size: 0.9rem;
  color: var(--am-off-black); outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  -webkit-appearance: none;
}
.am-ct-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23706F70' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 40px; cursor: pointer;
}
.am-ct-textarea { height: auto; padding: 14px 16px; resize: vertical; min-height: 140px; line-height: 1.65; }
.am-ct-input:focus, .am-ct-select:focus, .am-ct-textarea:focus {
  border-color: var(--am-red); background: var(--am-white);
  box-shadow: 0 0 0 3px rgba(193,37,45,0.08);
}
/* Checkboxes */
.am-ct-checkbox-group { display: flex; flex-direction: column; gap: 6px; }
.am-ct-checkbox-label {
  display: flex; align-items: flex-start; gap: 12px; cursor: pointer;
  font-family: var(--font-body); font-size: 0.88rem; color: var(--am-dark);
  line-height: 1.5; padding: 8px 12px; border-radius: 8px;
  transition: background 0.2s ease;
}
.am-ct-checkbox-label:hover { background: rgba(193,37,45,0.03); }
.am-ct-checkbox { display: none; }
.am-ct-checkbox-custom {
  flex-shrink: 0; width: 22px; height: 22px;
  border: 2px solid rgba(0,0,0,0.18); border-radius: 6px;
  background: #f5f5f5; display: flex; align-items: center;
  justify-content: center; margin-top: 1px;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.15s ease;
}
.am-ct-checkbox-custom::after {
  content: ''; width: 5px; height: 10px;
  border: 2px solid var(--am-white); border-top: none; border-left: none;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.am-ct-checkbox:checked + .am-ct-checkbox-custom {
  background: var(--am-red); border-color: var(--am-red); transform: scale(1.05);
}
.am-ct-checkbox:checked + .am-ct-checkbox-custom::after { transform: rotate(45deg) scale(1); }
/* Motivation box */
.am-ct-motivation {
  background: rgba(193,37,45,0.04); border-left: 3px solid var(--am-red);
  border-radius: 0 10px 10px 0; padding: 16px 20px;
}
.am-ct-motivation p {
  font-family: var(--font-body); font-size: 0.9rem; color: var(--am-dark);
  line-height: 1.68; margin: 0;
}
.am-ct-motivation strong { font-family: var(--font-title); font-weight: 700; color: var(--am-off-black); }
/* Submit */
.am-ct-submit {
  display: inline-flex; align-items: center; justify-content: center;
  align-self: flex-start; font-family: var(--font-title); font-size: 0.85rem;
  font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--am-white); background: var(--am-red); border: 2px solid var(--am-red);
  border-radius: 50px; padding: 16px 48px; cursor: pointer;
  position: relative; overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.18s ease;
}
.am-ct-submit::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(108deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: translateX(-100%) skewX(-18deg); transition: transform 0.55s ease;
}
.am-ct-submit:hover {
  background: var(--am-red-dark); border-color: var(--am-red-dark);
  box-shadow: 0 8px 28px rgba(202,10,27,0.30); transform: translateY(-2px);
}
.am-ct-submit:hover::before { transform: translateX(160%) skewX(-18deg); }
.am-ct-submit:active { transform: translateY(0) scale(0.97); }
/* ─── STICKY SIDEBAR ─── */
.am-ct-sidebar { position: relative; }
.am-ct-sidebar-sticky {
  position: sticky; top: calc(var(--header-height, 80px) + 24px);
  display: flex; flex-direction: column; gap: 18px;
}
/* Sidebar card */
.am-ct-sidebar-card {
  background: var(--am-white); border-radius: 14px;
  padding: 24px; border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.am-ct-sidebar-card:hover {
  transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.09);
}
/* HQ card — red top border */
.am-ct-sidebar-card--hq { border-top: 3px solid var(--am-red); }
/* Accent card — red tinted bg */
.am-ct-sidebar-card--accent {
  background: rgba(193,37,45,0.04); border-color: rgba(193,37,45,0.12);
}
.am-ct-sidebar-heading {
  font-family: var(--font-title); font-size: 1.1rem; font-weight: 800;
  color: var(--am-off-black); margin: 0;
}
.am-ct-sidebar-heading--red { color: var(--am-red); }
/* HQ logo */
.am-ct-hq-logo { padding: 8px 0; }
.am-ct-hq-logo-img {
  max-height: 100px; width: auto; object-fit: contain;
}
.am-ct-hq-details { display: flex; flex-direction: column; gap: 4px; }
.am-ct-hq-label {
  font-family: var(--font-title); font-size: 0.78rem; font-weight: 700;
  color: var(--am-off-black); margin: 0;
}
.am-ct-hq-address {
  font-family: var(--font-body); font-size: 0.85rem; color: var(--am-gray);
  line-height: 1.55; margin: 0;
}
/* Sidebar link with icon */
.am-ct-sidebar-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-title); font-size: 0.78rem; font-weight: 700;
  color: var(--am-red); text-decoration: none;
  transition: gap 0.25s ease, color 0.2s ease;
}
.am-ct-sidebar-link:hover { gap: 10px; color: var(--am-red-dark); }
.am-ct-link-icon { width: 16px; height: 16px; flex-shrink: 0; }
/* Press info */
.am-ct-press-info { display: flex; flex-direction: column; gap: 2px; }
.am-ct-press-label {
  font-family: var(--font-title); font-size: 0.78rem; font-weight: 600;
  color: var(--am-gray); margin: 0;
}
.am-ct-press-name {
  font-family: var(--font-title); font-size: 0.92rem; font-weight: 700;
  color: var(--am-off-black); margin: 0;
}
.am-ct-press-phone {
  font-family: var(--font-body); font-size: 0.85rem; color: var(--am-gray); margin: 0;
}
/* Sidebar button */
.am-ct-sidebar-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-title); font-size: 0.74rem; font-weight: 800;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--am-off-black); background: var(--am-white);
  border: 2px solid var(--am-off-black); border-radius: 50px;
  padding: 10px 20px; text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.18s ease;
}
.am-ct-sidebar-btn:hover {
  background: var(--am-off-black); color: var(--am-white);
  transform: translateY(-1px);
}
.am-ct-sidebar-btn--red {
  color: var(--am-red); border-color: var(--am-red);
}
.am-ct-sidebar-btn--red:hover {
  background: var(--am-red); color: var(--am-white); border-color: var(--am-red);
}
.am-ct-btn-icon { width: 16px; height: 16px; flex-shrink: 0; }
.am-ct-sidebar-text {
  font-family: var(--font-body); font-size: 0.84rem;
  color: var(--am-gray); line-height: 1.6; margin: 0;
}
/* ─── RESPONSIVE ─── */
/* ═══════════════════════════════════════════════════════════════════
   DONATE PAGE
═══════════════════════════════════════════════════════════════════ */
/* ─── HERO ─── */
.am-dn-hero {
  background: var(--am-purple); padding: 36px 40px;
  text-align: center; position: relative; overflow: hidden;
}
.am-dn-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.am-dn-hero-inner {
  position: relative; z-index: 1; display: flex; flex-direction: column;
  align-items: center; gap: 8px;
}
.am-dn-hero-eyebrow {
  font-family: var(--font-title); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 4px; color: rgba(255,255,255,0.60); text-transform: uppercase; margin: 0;
}
.am-dn-hero-heading {
  font-family: var(--font-title); font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800; color: var(--am-white); line-height: 1.15; margin: 0;
}
/* ─── MAIN: Image + Embed ─── */
.am-dn-main { background: var(--am-white); padding: 56px 40px 64px; }
.am-dn-main-inner {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px;
  max-width: var(--container-max); margin: 0 auto; align-items: start;
}
/* Image column */
.am-dn-image-col {
  display: flex; flex-direction: column; gap: 28px;
  position: sticky; top: calc(var(--header-height, 80px) + 24px);
}
.am-dn-image-wrap { position: relative; }
.am-dn-image {
  width: 100%; border-radius: 10px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  transition: transform 0.6s ease;
}
.am-dn-image-wrap:hover .am-dn-image { transform: scale(1.02); }
.am-dn-image-accent {
  position: absolute; top: -10px; left: -10px; width: 36px; height: 4px;
  background: var(--am-red); border-radius: 2px; z-index: 2;
}
/* Trust badges */
.am-dn-trust {
  display: flex; flex-direction: column; gap: 10px;
}
.am-dn-trust-item {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-title); font-size: 0.82rem; font-weight: 600;
  color: var(--am-dark); padding: 12px 16px;
  background: #f7f7f7; border-radius: 10px;
  border-left: 3px solid var(--am-red);
  transition: background 0.2s ease, padding-left 0.2s ease;
}
.am-dn-trust-item:hover { background: rgba(193,37,45,0.04); padding-left: 20px; }
.am-dn-trust-icon { width: 22px; height: 22px; flex-shrink: 0; }
/* Embed column */
.am-dn-embed-col { min-width: 0; }
/* .am-dn-embed-card {
  background: var(--am-white); border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  overflow: hidden; min-height: 500px;
} */
/* ─── OTHER WAYS ─── */
.am-dn-other {
  background: #f7f7f7; padding: 64px 40px 72px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.am-dn-other-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 36px;
}
.am-dn-other-content {
  display: flex; flex-direction: column; gap: 16px;
  text-align: center; align-items: center;
}
.am-dn-other-heading {
  font-family: var(--font-title); font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800; color: var(--am-off-black); margin: 0; line-height: 1.2;
}
.am-dn-other-body {
  font-family: var(--font-body); font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: var(--am-dark); line-height: 1.78; margin: 0; max-width: 620px;
}
.am-dn-link {
  color: var(--am-red); text-decoration: underline; text-underline-offset: 3px;
  font-weight: 600; transition: color 0.2s ease;
}
.am-dn-link:hover { color: var(--am-red-dark); text-decoration-color: transparent; }
.am-dn-other-note {
  font-family: var(--font-body); font-size: 0.82rem; color: var(--am-gray);
  line-height: 1.65; margin: 0; max-width: 580px;
}
/* Action cards */
.am-dn-other-actions {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.am-dn-action-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px; padding: 28px 20px;
  background: var(--am-white); border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.06); text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease,
  border-color 0.3s ease;
}
.am-dn-action-card:hover {
  transform: translateY(-6px); box-shadow: 0 16px 44px rgba(0,0,0,0.10);
  border-color: rgba(193,37,45,0.18);
}
.am-dn-action-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(193,37,45,0.06); display: flex;
  align-items: center; justify-content: center;
  color: var(--am-red); transition: background 0.3s ease, color 0.3s ease;
}
.am-dn-action-icon svg { width: 24px; height: 24px; }
.am-dn-action-card:hover .am-dn-action-icon {
  background: var(--am-red); color: var(--am-white);
}
.am-dn-action-label {
  font-family: var(--font-title); font-size: 0.92rem; font-weight: 800;
  color: var(--am-off-black);
}
.am-dn-action-sub {
  font-family: var(--font-body); font-size: 0.78rem; color: var(--am-gray);
}
/* ─── RESPONSIVE ─── */
/* ═══════════════════════════════════════════════════════════════════
   FAQ PAGE
═══════════════════════════════════════════════════════════════════ */
/* ─── HERO ─── */
.am-fq-hero {
  background: var(--am-purple); padding: 52px 40px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.am-fq-hero::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 65%);
  pointer-events:none;
}
.am-fq-hero-inner {
  position:relative; z-index:1; max-width:640px; margin:0 auto;
  display:flex; flex-direction:column; align-items:center; gap:12px;
}
.am-fq-hero-eyebrow {
  font-family:var(--font-title); font-size:0.72rem; font-weight:700;
  letter-spacing:4px; color:rgba(255,255,255,0.60); text-transform:uppercase; margin:0;
}
.am-fq-hero-heading {
  font-family:var(--font-title); font-size:clamp(1.8rem,3.5vw,2.6rem);
  font-weight:800; color:var(--am-white); line-height:1.15; margin:0;
}
.am-fq-hero-body {
  font-family:var(--font-body); font-size:1rem;
  color:rgba(255,255,255,0.72); line-height:1.65; margin:0;
}
/* ─── MAIN LAYOUT ─── */
.am-fq-main { background:#f7f7f7; padding:48px 40px 80px; }
.am-fq-main-inner {
  display:grid; grid-template-columns:1fr 280px; gap:44px;
  max-width:var(--container-max); margin:0 auto; align-items:start;
}
/* ─── FAQ CONTENT ─── */
.am-fq-content { display:flex; flex-direction:column; gap:40px; }
/* Category block */
.am-fq-category { display:flex; flex-direction:column; gap:0; }
.am-fq-cat-title {
  display:flex; align-items:center; gap:12px;
  font-family:var(--font-title); font-size:1.2rem; font-weight:800;
  color:var(--am-off-black); margin:0 0 16px;
}
.am-fq-cat-dot {
  width:10px; height:10px; border-radius:50%;
  background:var(--am-red); flex-shrink:0;
}
/* Accordion */
.am-fq-accordion {
  background:var(--am-white); border-radius:14px;
  border:1px solid rgba(0,0,0,0.06); box-shadow:0 2px 10px rgba(0,0,0,0.04);
  overflow:hidden;
}
.am-fq-item { border-bottom:1px solid rgba(0,0,0,0.06); }
.am-fq-item:last-child { border-bottom:none; }
.am-fq-trigger {
  width:100%; background:none; border:none; padding:18px 48px 18px 22px;
  font-family:var(--font-title); font-size:0.9rem; font-weight:600;
  color:var(--am-dark); text-align:left; cursor:pointer;
  position:relative; line-height:1.45;
  transition:color 0.2s ease, background 0.2s ease;
}
.am-fq-trigger:hover { color:var(--am-red); background:rgba(193,37,45,0.02); }
/* Chevron */
.am-fq-trigger::after {
  content:''; position:absolute; right:20px; top:50%;
  width:8px; height:8px; border-right:2px solid var(--am-red);
  border-bottom:2px solid var(--am-red);
  transform:translateY(-60%) rotate(45deg);
  transition:transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.am-fq-item.am-open .am-fq-trigger::after { transform:translateY(-30%) rotate(225deg); }
.am-fq-item.am-open .am-fq-trigger { color:var(--am-red); background:rgba(193,37,45,0.03); }
/* Panel */
.am-fq-panel {
  max-height:0; overflow:hidden; padding:0 22px;
  transition:max-height 0.4s ease, padding 0.4s ease;
}
.am-fq-item.am-open .am-fq-panel { padding:0 22px 20px; }
.am-fq-panel p {
  font-family:var(--font-body); font-size:0.88rem; color:var(--am-gray);
  line-height:1.75; margin:0 0 10px;
}
.am-fq-panel img {
    display: inline-block;
    vertical-align: top;
    margin-right: 12px;
    margin-bottom: 12px;
    max-width: calc(50% - 6px);
    height: auto;
}
.am-fq-panel img:last-child {
    margin-right: 0;
}
.am-fq-panel p:last-child { margin-bottom:0; }
.am-fq-link {
  color:var(--am-red); text-decoration:underline; text-underline-offset:3px;
  font-weight:600; transition:color 0.2s ease;
}
.am-fq-link:hover { color:var(--am-red-dark); text-decoration-color:transparent; }
/* ─── STICKY SIDEBAR ─── */
.am-fq-sidebar { position:relative; }
.am-fq-sidebar-sticky {
  position:sticky; top:calc(var(--header-height, 80px) + 24px);
  display:flex; flex-direction:column; gap:18px;
}
/* Sidebar cards */
.am-fq-sidebar-card {
  background:var(--am-white); border-radius:14px; padding:22px;
  border:1px solid rgba(0,0,0,0.06); box-shadow:0 2px 10px rgba(0,0,0,0.04);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}
.am-fq-sidebar-card:hover { transform:translateY(-3px); box-shadow:0 10px 32px rgba(0,0,0,0.09); }
.am-fq-sidebar-card--purple { background:var(--am-purple); border:none; box-shadow:0 8px 28px rgba(61,18,121,0.25); }
.am-fq-sidebar-card--red { background:var(--am-red); border:none; box-shadow:0 8px 28px rgba(202,10,27,0.20); }
.am-fq-sidebar-title {
  font-family:var(--font-title); font-size:0.95rem; font-weight:800;
  color:var(--am-off-black); margin:0 0 12px;
}
.am-fq-sidebar-title--white { color:var(--am-white); }
.am-fq-sidebar-text {
  font-family:var(--font-body); font-size:0.82rem;
  color:rgba(255,255,255,0.80); line-height:1.6; margin:0 0 14px;
}
/* Jump nav */
.am-fq-jump-nav { display:flex; flex-direction:column; gap:0; }
.am-fq-jump-link {
  display:flex; align-items:center; padding:10px 12px;
  font-family:var(--font-title); font-size:0.82rem; font-weight:600;
  color:var(--am-dark); text-decoration:none; border-radius:8px;
  border-left:3px solid transparent;
  transition:background 0.2s ease, color 0.2s ease, border-color 0.2s ease, padding-left 0.2s ease;
}
.am-fq-jump-link:hover {
  background:rgba(193,37,45,0.04); color:var(--am-red);
  border-left-color:var(--am-red); padding-left:16px;
}
/* App badges */
.am-fq-sidebar-badges { display:flex; gap:8px; }
.am-fq-badge-link { display:block; }
.am-fq-badge-img { width:auto; object-fit:contain; transition:transform 0.2s ease, opacity 0.2s ease; }
.am-fq-badge-link:hover .am-fq-badge-img { transform:translateY(-2px); opacity:0.88; }
/* Support btn */
.am-fq-sidebar-btn {
  display:inline-flex; align-items:center; justify-content:center;
  font-family:var(--font-title); font-size:0.74rem; font-weight:800;
  letter-spacing:1.5px; text-transform:uppercase;
  color:var(--am-red); background:var(--am-white);
  border:2px solid var(--am-white); border-radius:50px;
  padding:11px 22px; text-decoration:none;
  transition:background 0.3s ease, color 0.3s ease, transform 0.18s ease;
}
.am-fq-sidebar-btn:hover {
  background:transparent; color:var(--am-white); border-color:var(--am-white);
  transform:translateY(-1px);
}
/* ─── RESPONSIVE ─── */
/* ═══════════════════════════════════════════════════════════════
   GRAVITY FORMS → AM-DR DESIGN MAPPING
   Scoped to .am-dr-form-card so it only affects the donor form.
   Targets GF 2.9 legacy "gravity-theme" (gform-theme--no-framework).
   Append after your existing donor-registration CSS.
═══════════════════════════════════════════════════════════════ */
/* GF wrapper resets so it sits flush in your card */
.am-dr-form-card .gform_wrapper {
  margin : 0;
}
/* GF often re-renders its own heading; you already have a styled one
   above the card, so hide GF's duplicate. (Harmless if title="false".) */
.am-dr-form-card .gform_heading {
  display: none;
}
/* ── Form layout: match .am-dr-form (flex column, 28px gap) ── */
.am-dr-form-card .gform_fields {
  display              : flex !important;
  flex-direction       : column;
  gap                  : 28px;
  grid-template-columns : none !important; /* kill GF CSS grid */
}
/* Each field = .am-dr-field-group */
.am-dr-form-card .gfield {
  display        : flex;
  flex-direction : column;
  gap            : 8px;
  margin         : 0;
  padding        : 0;
}
/* Hide the honeypot / validation container GF injects */
.am-dr-form-card .gform_validation_container,
.am-dr-form-card .gfield--type-honeypot {
  display: none !important;
}
/* ── Main field label / legend = .am-dr-field-label ── */
.am-dr-form-card .gfield_label,
.am-dr-form-card legend.gfield_label {
  font-family    : var(--font-title);
  font-size      : 0.88rem;
  font-weight    : 700;
  color          : var(--am-off-black);
  letter-spacing : 0.01em;
  margin         : 0;
  padding        : 0;
  float          : none;
  width          : auto;
}
/* Required marker = .am-dr-required */
.am-dr-form-card .gfield_required,
.am-dr-form-card .gfield_required_text {
  color       : var(--am-red);
  font-weight : 600;
  font-size   : 0.82rem;
  margin-left : 4px;
}
/* ── Sub-labels (First / Last / Enter Email / Confirm) = .am-dr-sub-label ── */
.am-dr-form-card .gform-field-label--type-sub {
  font-family    : var(--font-title);
  font-size      : 0.76rem;
  font-weight    : 500;
  color          : var(--am-gray);
  letter-spacing : 0.02em;
  margin-bottom  : 4px;
  display        : block;
}
/* ── Hint / description text = .am-dr-field-hint ──
   GF places .gfield_description in the field; style it as your hint. */
.am-dr-form-card .gfield_description {
  font-family : var(--font-body);
  font-size   : 0.82rem;
  color       : var(--am-gray);
  line-height : 1.6;
  margin      : 0;
  padding     : 0;
}
/* ── Two-column complex rows (Name, Email) = .am-dr-row ──
   gravity-theme renders .ginput_complex as a grid row of auto cols. */
.am-dr-form-card .ginput_complex {
  display               : grid;
  grid-template-columns : 1fr 1fr;
  gap                   : 16px;
  margin                : 0;
}
.am-dr-form-card .ginput_complex > span {
  display        : flex;
  flex-direction : column;
  width          : 100%;
  padding        : 0;
}
/* GF's clear hack inside complex rows — neutralise in grid context */
.am-dr-form-card .gf_clear,
.am-dr-form-card .gf_clear_complex {
  display: none;
}
/* ── Inputs + textarea = .am-dr-input / .am-dr-textarea ── */
.am-dr-form-card .ginput_container input[type="text"],
.am-dr-form-card .ginput_container input[type="email"],
.am-dr-form-card .ginput_container input[type="tel"],
.am-dr-form-card .ginput_container textarea,
.am-dr-form-card .ginput_complex input,
.am-dr-form-card input.large,
.am-dr-form-card textarea.textarea {
  width         : 100%;
  background    : #f5f5f5;
  border        : 1.5px solid rgba(0,0,0,0.10);
  border-radius : 10px;
  padding       : 0 16px;
  font-family   : var(--font-body);
  font-size     : 0.9rem;
  color         : var(--am-off-black);
  outline       : none;
  box-shadow    : none;
  transition    :
    border-color 0.25s ease,
    background   0.25s ease,
    box-shadow   0.25s ease;
}
.am-dr-form-card .ginput_container input[type="text"],
.am-dr-form-card .ginput_container input[type="email"],
.am-dr-form-card .ginput_container input[type="tel"],
.am-dr-form-card .ginput_complex input,
.am-dr-form-card input.large {
  height : 48px;
}
.am-dr-form-card .ginput_container textarea,
.am-dr-form-card textarea.textarea {
  padding     : 14px 16px;
  resize      : vertical;
  min-height  : 160px;
  line-height : 1.65;
  height      : auto;
}
.am-dr-form-card input::placeholder,
.am-dr-form-card textarea::placeholder {
  color: rgba(0,0,0,0.30);
}
.am-dr-form-card .ginput_container input:focus,
.am-dr-form-card .ginput_container textarea:focus,
.am-dr-form-card input.large:focus,
.am-dr-form-card textarea.textarea:focus {
  border-color : var(--am-red);
  background   : var(--am-white);
  box-shadow   : 0 0 0 3px rgba(193,37,45,0.08);
}
/* Phone field is full-width in GF; constrain to half like .am-dr-field--half */
.am-dr-form-card .gfield--type-phone .ginput_container {
  max-width: calc(50% - 8px);
}
/* ── Character counter = .am-dr-char-count ── */
.am-dr-form-card .ginput_counter,
.am-dr-form-card .charleft {
  font-family : var(--font-title);
  font-size   : 0.72rem;
  color       : rgba(0,0,0,0.35);
  margin-top  : 4px;
}
/* ═══════════════════════════════════════════════════════════════
   CHECKBOXES & RADIOS
   GF markup: .gchoice > input.gfield-choice-input + label
   We hide GF's native input and draw a custom box on the label's
   ::before, with a checkmark/dot on ::after.
═══════════════════════════════════════════════════════════════ */
/* Choice group container = .am-dr-checkbox-group / radio-group */
.am-dr-form-card .gfield_checkbox,
.am-dr-form-card .gfield_radio {
  display        : flex;
  flex-direction : column;
  gap            : 10px;
}
/* Each choice row = .am-dr-checkbox-label / radio-label */
.am-dr-form-card .gchoice {
  position      : relative;
  display       : flex;
  align-items   : flex-start;
  gap           : 12px;
  padding       : 8px 12px;
  border-radius : 8px;
  transition    : background 0.2s ease;
  margin        : 0;
}
.am-dr-form-card .gchoice:hover {
  background: rgba(193,37,45,0.03);
}
/* Hide GF's native control (force past no-framework theme defaults).
   Uses the "clip" visually-hidden pattern so the input stays in place
   (no top/left drift) — this prevents the browser from scrolling to a
   focused, mispositioned input when a checkbox/radio is clicked. */
.am-dr-form-card .gchoice input.gfield-choice-input,
.am-dr-form-card .gchoice input[type="checkbox"],
.am-dr-form-card .gchoice input[type="radio"] {
  -webkit-appearance : none !important;
  -moz-appearance    : none !important;
  appearance         : none !important;
  position           : absolute !important;
  width              : 1px !important;
  height             : 1px !important;
  margin             : -1px !important;
  padding            : 0 !important;
  border             : 0 !important;
  overflow           : hidden !important;
  clip               : rect(0 0 0 0) !important;
  clip-path          : inset(50%) !important;
  white-space        : nowrap !important;
  opacity            : 0 !important;
}
/* Label = clickable text row */
.am-dr-form-card .gchoice label {
  position       : relative;
  display        : flex !important;
  flex-direction : row !important;
  align-items    : center;
  gap            : 12px;
  cursor         : pointer;
  font-family    : var(--font-body);
  font-size      : 0.88rem;
  font-weight    : 400;
  color          : var(--am-dark);
  line-height    : 1.5;
  margin         : 0;
  padding        : 0;
  width          : auto;
}
/* Custom box drawn before the label text */
.am-dr-form-card .gchoice label::before {
  content        : '';
  display        : block;
  flex-shrink    : 0;
  width          : 22px;
  height         : 22px;
  border         : 2px solid rgba(0,0,0,0.18);
  background     : #f5f5f5;
  margin         : 0;
  box-sizing     : border-box;
  line-height    : 1;
  transition     : border-color 0.22s ease, background 0.22s ease, transform 0.15s ease;
}
/* The check / dot indicator */
.am-dr-form-card .gchoice label::after {
  content   : '';
  position  : absolute;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* ── CHECKBOX shape (square) ── */
.am-dr-form-card .gfield--type-checkbox .gchoice label::before {
  border-radius: 6px;
}
.am-dr-form-card .gfield--type-checkbox .gchoice label::after {
  left        : 8px;
  top         : 5px;
  width       : 5px;
  height      : 10px;
  border      : 2px solid var(--am-white);
  border-top  : none;
  border-left : none;
  transform   : rotate(45deg) scale(0);
}
.am-dr-form-card .gfield--type-checkbox .gchoice input:checked + label::before {
  background   : var(--am-red);
  border-color : var(--am-red);
  transform    : scale(1.05);
}
.am-dr-form-card .gfield--type-checkbox .gchoice input:checked + label::after {
  transform: rotate(45deg) scale(1);
}
/* ── RADIO shape (circle) — applies if a field is a Radio Buttons type ── */
.am-dr-form-card .gfield--type-radio .gchoice label::before {
  border-radius: 50%;
}
.am-dr-form-card .gfield--type-radio .gchoice label::after {
  left          : 6px;
  top           : 7px;
  width         : 10px;
  height        : 10px;
  border-radius : 50%;
  background    : var(--am-red);
  transform     : scale(0);
}
.am-dr-form-card .gfield--type-radio .gchoice input:checked + label::before {
  border-color : var(--am-red);
  background    : var(--am-white);
}
.am-dr-form-card .gfield--type-radio .gchoice input:checked + label::after {
  transform: scale(1);
}
/* Keyboard focus ring for accessibility (native input is visually hidden) */
.am-dr-form-card .gchoice input:focus-visible + label::before {
  box-shadow: 0 0 0 3px rgba(193,37,45,0.18);
}
/* ═══════════════════════════════════════════════════════════════
   SUBMIT BUTTON = .am-dr-submit
═══════════════════════════════════════════════════════════════ */
.am-dr-form-card .gform_footer {
  margin  : 0;
  padding : 0;
}
.am-dr-form-card .gform_button, .am-dr-form-card input[type="submit"].gform_button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	align-self: flex-start !important;
	width: auto;
	font-family: var(--font-title) !important;
	font-size: 0.85rem !important;
	font-weight: 700 !important;
	letter-spacing: 2px !important;
	text-transform: uppercase !important;
	color: var(--am-white) !important;
	background: var(--am-red) !important;
	border: 2px solid var(--am-red) !important;
	border-radius: 50px !important;
	padding: 16px 48px !important;
	cursor: pointer !important;
	position: relative;
	overflow: hidden;
	transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.18s ease !important;
}
.am-dr-form-card .gform_button::before {
  content    : '';
  position   : absolute;
  inset      : 0;
  background : linear-gradient(108deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform  : translateX(-100%) skewX(-18deg);
  transition : transform 0.55s ease;
  pointer-events: none;
}
.am-dr-form-card .gform_button:hover {
  background    : var(--am-red-dark, #CA0A1B);
  border-color  : var(--am-red-dark, #CA0A1B);
  box-shadow    : 0 8px 28px rgba(202,10,27,0.30);
  transform     : translateY(-2px);
  color         : var(--am-white);
}
.am-dr-form-card .gform_button:hover::before {
  transform: translateX(160%) skewX(-18deg);
}
.am-dr-form-card .gform_button:active {
  transform: translateY(0) scale(0.97);
}
/* ═══════════════════════════════════════════════════════════════
   VALIDATION STATES (GF adds these on error)
═══════════════════════════════════════════════════════════════ */
.am-dr-form-card .gfield_error .ginput_container input,
.am-dr-form-card .gfield_error .ginput_container textarea {
  border-color : var(--am-red);
  background   : #fff;
}
.am-dr-form-card .gfield_validation_message,
.am-dr-form-card .validation_message {
  font-family : var(--font-body);
  font-size   : 0.8rem;
  color       : var(--am-red);
  margin-top  : 6px;
  background  : none;
  border      : none;
  padding     : 0;
}
.am-dr-form-card .gform_validation_errors {
  background     : #fdf3f3;
  border         : 1px solid rgba(193,37,45,0.25);
  border-radius  : 10px;
  padding        : 16px 20px;
  margin-bottom  : 24px;
}
.am-dr-form-card .gform_validation_errors .gform_submission_error {
  font-family : var(--font-title);
  font-size   : 0.95rem;
  font-weight : 700;
  color       : var(--am-off-black);
}
/* Confirmation message after submit */
.am-dr-form-card .gform_confirmation_message {
  font-family : var(--font-body);
  font-size   : 1rem;
  color       : var(--am-dark);
  line-height  : 1.7;
  text-align  : center;
  padding     : 24px 0;
}
/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — collapse two-col rows on mobile (matches your grid)
═══════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════
   GRAVITY FORMS → AM-TD (TAXABLE DONATIONS) DESIGN MAPPING
   Scoped to .am-td-form-card so it only affects this form.
   Targets GF 2.9 legacy "gravity-theme" (gform-theme--no-framework).
   Covers: text/email/phone inputs, name & address complex grids,
   selects, List field (itemized rows), consent checkboxes, signature
   pad, date dropdowns, section breaks, HTML infobox, dual footer
   buttons (Submit + Save and Continue Later).
   Append after your existing taxable-donations CSS.
═══════════════════════════════════════════════════════════════ */
/* Wrapper reset + hide GF's duplicated heading (you have your own) */
.am-td-form-card .gform_wrapper { margin: 0; }
.am-td-form-card .gform_heading { display: none; }
/* ── Field stack: match .am-td-form spacing ── */
.am-td-form-card .gform_fields {
  display               : flex !important;
  flex-direction        : column;
  gap                   : 26px;
  grid-template-columns  : none !important;
}
.am-td-form-card .gfield {
  display        : flex;
  flex-direction : column;
  gap            : 8px;
  margin         : 0;
  padding        : 0;
  flex           : 1 1 100% !important;   /* full width by default; signature/date override */
  max-width      : 100%;
  box-sizing     : border-box;
}
/* Hide honeypot/validation container */
.am-td-form-card .gform_validation_container,
.am-td-form-card .gfield--type-honeypot {
  display: none !important;
}
/* ── Labels / legends = .am-td-label ── */
.am-td-form-card .gfield_label,
.am-td-form-card legend.gfield_label {
  font-family    : var(--font-title);
  font-size      : 0.88rem;
  font-weight    : 700;
  color          : var(--am-off-black);
  letter-spacing : 0.01em;
  margin         : 0;
  padding        : 0;
  float          : none;
  width          : auto;
}
/* Required marker = .am-td-req */
.am-td-form-card .gfield_required,
.am-td-form-card .gfield_required_text {
  color       : var(--am-red);
  font-weight : 600;
  font-size   : 0.82rem;
  margin-left : 4px;
}
/* Sub-labels (First/Last, address parts, email) = .am-td-sub */
.am-td-form-card .gform-field-label--type-sub {
  font-family    : var(--font-title);
  font-size      : 0.76rem;
  font-weight    : 500;
  color          : var(--am-gray);
  letter-spacing : 0.02em;
  margin-bottom  : 4px;
  display        : block;
}
/* Hidden screen-reader sublabels stay hidden */
.am-td-form-card .hidden_sub_label.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0);
}
/* Field description / hint = .am-td-hint */
.am-td-form-card .gfield_description {
  font-family : var(--font-body);
  font-size   : 0.82rem;
  color       : var(--am-gray);
  line-height : 1.6;
  margin      : 0;
  padding     : 0;
}
/* ── Inputs, selects, textareas = .am-td-input / .am-td-select ── */
.am-td-form-card .ginput_container input[type="text"],
.am-td-form-card .ginput_container input[type="email"],
.am-td-form-card .ginput_container input[type="tel"],
.am-td-form-card .ginput_container select,
.am-td-form-card .ginput_complex input,
.am-td-form-card .ginput_complex select,
.am-td-form-card .gfield_list input[type="text"],
.am-td-form-card input.large,
.am-td-form-card select {
  width         : 100%;
  height        : 48px;
  background    : #f5f5f5;
  border        : 1.5px solid rgba(0,0,0,0.10);
  border-radius : 10px;
  padding       : 0 16px;
  font-family   : var(--font-body);
  font-size     : 0.9rem;
  color         : var(--am-off-black);
  outline       : none;
  box-shadow    : none;
  transition    : border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
/* Native select arrow restyle */
.am-td-form-card select {
  -webkit-appearance : none;
  -moz-appearance    : none;
  appearance         : none;
  background-image   : url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23706F70' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat   : no-repeat;
  background-position : right 16px center;
  padding-right       : 40px;
}
.am-td-form-card input::placeholder,
.am-td-form-card textarea::placeholder {
  color: rgba(0,0,0,0.30);
}
.am-td-form-card .ginput_container input:focus,
.am-td-form-card .ginput_container select:focus,
.am-td-form-card .gfield_list input:focus,
.am-td-form-card input.large:focus,
.am-td-form-card select:focus {
  border-color : var(--am-red);
  background   : var(--am-white);
  box-shadow   : 0 0 0 3px rgba(193,37,45,0.08);
}
/* Phone field → full width */
.am-td-form-card .gfield--type-phone .ginput_container {
  max-width: 100%;
}
/* Total field accent (Real/Estimated FMV Total) — field 19 */
.am-td-form-card #field_6_19 input {
  font-family : var(--font-title);
  font-weight : 700;
}
/* ═══════════════════════════════════════════════════════════════
   COMPLEX GRIDS — Name, Email (two cols) & Address (mixed)
   !important used because GF's gravity-theme stylesheet loads after
   this file and resets .ginput_complex / .gform-grid-row to flex-column.
═══════════════════════════════════════════════════════════════ */
.am-td-form-card .ginput_complex,
.am-td-form-card .ginput_container_name,
.am-td-form-card .ginput_container_email,
.am-td-form-card .ginput_container_address {
  display               : grid !important;
  grid-template-columns : 1fr 1fr !important;
  gap                   : 16px !important;
  margin                : 0 !important;
  width                 : 100% !important;
}
/* Cells fill their grid track (cancel GF --size-auto) */
.am-td-form-card .ginput_complex > span,
.am-td-form-card .ginput_complex > .gform-grid-col {
  display        : flex !important;
  flex-direction : column !important;
  width          : 100% !important;
  max-width      : 100% !important;
  flex           : initial !important;
  min-width      : 0 !important;
  padding        : 0 !important;
  box-sizing     : border-box;
}
/* Address: street + line 2 span full width */
.am-td-form-card .ginput_address_line_1,
.am-td-form-card .ginput_address_line_2 {
  grid-column: 1 / -1 !important;
}
/* City + ZIP → left column; State + Country → right column */
.am-td-form-card .ginput_address_city,
.am-td-form-card .ginput_address_zip {
  grid-column: 1 / 2 !important;
}
.am-td-form-card .ginput_address_state,
.am-td-form-card .ginput_address_country {
  grid-column: 2 / 3 !important;
}
/* GF clear hacks — neutralise inside grid */
.am-td-form-card .gf_clear,
.am-td-form-card .gf_clear_complex { display: none !important; }
/* ═══════════════════════════════════════════════════════════════
   HTML "HOW IT WORKS" INFOBOX  (field_6_14, .gfield_html)
   Recreates your .am-td-infobox styling.
═══════════════════════════════════════════════════════════════ */
.am-td-form-card .gfield_html {
  background    : #faf3f3;
  border        : 1px solid rgba(193,37,45,0.18);
  border-left   : 4px solid var(--am-red);
  border-radius : 12px;
  padding       : 22px 26px;
  font-family   : var(--font-body);
  font-size     : 0.9rem;
  color         : var(--am-dark);
  line-height   : 1.7;
}
.am-td-form-card .gfield_html strong { color: var(--am-off-black); }
.am-td-form-card .gfield_html ul {
  margin     : 12px 0 0;
  padding-left: 20px;
  list-style : none;
}
.am-td-form-card .gfield_html li {
  position    : relative;
  padding-left: 22px;
  margin-bottom: 10px;
}
.am-td-form-card .gfield_html li::before {
  content   : '';
  position  : absolute;
  left      : 0;
  top       : 8px;
  width     : 8px;
  height    : 8px;
  border-radius: 50%;
  background : var(--am-red);
}
/* ═══════════════════════════════════════════════════════════════
   LIST FIELD — Itemized donated items  (field_6_9)
   Header row + group rows + add/delete icon buttons.
═══════════════════════════════════════════════════════════════ */
.am-td-form-card .gfield_list,
.am-td-form-card .gfield_list_container {
  width: 100%;
}
/* Column header row */
.am-td-form-card .gfield_list_header {
  display               : grid;
  grid-template-columns : 1.5fr 1fr 56px;
  gap                   : 12px;
  margin-bottom         : 8px;
}
.am-td-form-card .gfield_header_item {
  font-family    : var(--font-title);
  font-size      : 0.76rem;
  font-weight    : 600;
  color          : var(--am-gray);
  letter-spacing : 0.02em;
}
/* Each item row mirrors the header grid */
.am-td-form-card .gfield_list_group {
  display               : grid;
  grid-template-columns : 1.5fr 1fr 56px;
  gap                   : 12px;
  align-items           : center;
  margin-bottom         : 10px;
}
.am-td-form-card .gfield_list_cell input {
  margin: 0;
}
/* Icon cell holds the add/delete buttons */
.am-td-form-card .gfield_list_icons {
  display     : flex;
  gap         : 10px;
  align-items : center;
  justify-content: center;
}

/* Convert GF's text "Add"/"Remove" buttons to red circular icon buttons */
/* .am-td-form-card .add_list_item,
.am-td-form-card .delete_list_item {
  font-size       : 0 !important;     
  width           : 36px !important;
  height          : 36px !important;
  border-radius    : 50% !important;
  border          : 1.5px solid var(--am-red) !important;
  background      : var(--am-white) !important;
  cursor          : pointer !important;
  position        : relative !important;
  flex-shrink     : 0 !important;
  transition      : background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease !important;
  padding         : 0 !important;
} */
/* .am-td-form-card .add_list_item:hover,
.am-td-form-card .delete_list_item:hover {
  background : var(--am-red) !important;
  transform  : translateY(-1px) !important;
  box-shadow : 0 4px 12px rgba(193,37,45,0.25) !important;
} */
/* Plus icon (add) */
/* .am-td-form-card .add_list_item::before,
.am-td-form-card .add_list_item::after {
  content   : '';
  position  : absolute;
  top       : 50%; left: 50%;
  background : var(--am-red);
  transition : background 0.2s ease;
} */
/* .am-td-form-card .add_list_item::before {
  width: 12px; height: 2px;
  transform: translate(-50%,-50%);
} */
/* .am-td-form-card .add_list_item::after {
  width: 2px; height: 12px;
  transform: translate(-50%,-50%);
} */
/* .am-td-form-card .add_list_item:hover::before,
.am-td-form-card .add_list_item:hover::after {
  background: var(--am-white);
} */
/* Minus icon (delete) */
/* .am-td-form-card .delete_list_item::before {
  content   : '';
  position  : absolute;
  top: 50%; left: 50%;
  width: 12px; height: 2px;
  background : var(--am-red);
  transform : translate(-50%,-50%);
  transition: background 0.2s ease;
}
.am-td-form-card .delete_list_item:hover::before {
  background: var(--am-white);
} */
/* ═══════════════════════════════════════════════════════════════
   CONSENT CHECKBOXES (field_6_20 FMV agreement, field_6_22 restrictions)
   Markup: .ginput_container_consent > input + label  (NOT .gchoice)
   Custom box via the clip-pattern (no scroll-jump) + label ::before.
═══════════════════════════════════════════════════════════════ */
.am-td-form-card .ginput_container_consent {
  position    : relative;
  display     : flex;
  align-items : flex-start;
  gap         : 12px;
  padding     : 8px 0;
}
/* Hide the native consent checkbox (clip pattern keeps it in place) */
.am-td-form-card .ginput_container_consent input[type="checkbox"] {
  -webkit-appearance : none !important;
  -moz-appearance    : none !important;
  appearance         : none !important;
  position           : absolute !important;
  width   : 1px !important; height : 1px !important;
  margin  : -1px !important; padding: 0 !important; border: 0 !important;
  overflow: hidden !important;
  clip    : rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  opacity : 0 !important;
}
/* Consent label = clickable row */
.am-td-form-card .gfield_consent_label {
  position    : relative;
  display      : flex !important;
  align-items  : flex-start;
  gap          : 12px;
  cursor       : pointer;
  font-family  : var(--font-body);
  font-size    : 0.88rem;
  font-weight  : 400;
  color        : var(--am-dark);
  line-height  : 1.5;
  margin       : 0;
}
/* Custom square box before the consent label */
.am-td-form-card .gfield_consent_label::before {
  content      : '';
  display      : block;
  flex-shrink  : 0;
  width        : 22px;
  height       : 22px;
  border       : 2px solid rgba(0,0,0,0.18);
  border-radius: 6px;
  background   : #f5f5f5;
  box-sizing   : border-box;
  margin-top   : 1px;
  transition   : border-color 0.22s ease, background 0.22s ease, transform 0.15s ease;
}
/* Checkmark */
.am-td-form-card .gfield_consent_label::after {
  content    : '';
  position   : absolute;
  left       : 8px;
  top        : 6px;
  width      : 5px;
  height     : 10px;
  border     : 2px solid var(--am-white);
  border-top : none;
  border-left: none;
  transform  : rotate(45deg) scale(0);
  transition : transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.am-td-form-card .ginput_container_consent input:checked + .gfield_consent_label::before {
  background   : var(--am-red);
  border-color : var(--am-red);
  transform    : scale(1.05);
}
.am-td-form-card .ginput_container_consent input:checked + .gfield_consent_label::after {
  transform: rotate(45deg) scale(1);
}
.am-td-form-card .ginput_container_consent input:focus-visible + .gfield_consent_label::before {
  box-shadow: 0 0 0 3px rgba(193,37,45,0.18);
}
/* ═══════════════════════════════════════════════════════════════
   SIGNATURE + DATE side by side
   Both are top-level gfield--width-half fields. The field stack is a
   flex column, so we let these two wrap into a shared row.
═══════════════════════════════════════════════════════════════ */
.am-td-form-card .gform_fields {
  flex-wrap: wrap !important;
}
.am-td-form-card .gfield--type-signature,
.am-td-form-card .gfield--type-date {
  flex      : 1 1 calc(50% - 13px) !important;   /* two across, 26px gap */
  /* max-width : calc(50% - 13px) !important; */
  min-width : 240px;
  box-sizing: border-box;
}
/* SIGNATURE FIELD (field_6_24, Signature add-on) */
.am-td-form-card .gfield_signature_container {
  border-radius : 12px !important;
  overflow      : hidden;
  border        : 1.5px dashed rgba(0,0,0,0.20) !important;
  background    : #f5f5f5 !important;
  width         : 100% !important;
  max-width     : 360px;
}
.am-td-form-card .gfield_signature_container canvas {
  border        : none !important;
  background    : transparent !important;
  width         : 100% !important;
  height        : auto !important;
}
/* Reset (clear) button image → keep clickable, nudge alignment */
.am-td-form-card #input_6_24_resetbutton,
.am-td-form-card [id$="_resetbutton"] {
  cursor : pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.am-td-form-card [id$="_resetbutton"]:hover { opacity: 1; }
/* ═══════════════════════════════════════════════════════════════
   DATE DROPDOWNS (field_6_11) — month / day / year in a row
   Overrides the general 2-col .ginput_complex rule above.
═══════════════════════════════════════════════════════════════ */
.am-td-form-card .gfield--type-date .ginput_complex {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 10px !important;
}
/* ═══════════════════════════════════════════════════════════════
   SECTION BREAK (field_6_21, .gsection) — numbered badge via counter
   A CSS counter numbers each section break automatically.
═══════════════════════════════════════════════════════════════ */
.am-td-form-card .gform_fields { counter-reset: am-td-section; }
.am-td-form-card .gsection {
  border-bottom : none;
  margin        : 14px 0 0;
  padding       : 0;
}
.am-td-form-card .gsection_title {
  display        : flex;
  align-items    : center;
  gap            : 14px;
  font-family    : var(--font-title);
  font-size      : 1.15rem;
  font-weight    : 800;
  color          : var(--am-off-black);
  margin         : 0;
}
.am-td-form-card .gsection_title::before {
  counter-increment: am-td-section;
  content        : counter(am-td-section);
  flex-shrink    : 0;
  width          : 34px;
  height         : 34px;
  border-radius  : 50%;
  background      : var(--am-red);
  color          : var(--am-white);
  font-size      : 0.95rem;
  font-weight    : 800;
  display        : flex;
  align-items    : center;
  justify-content: center;
}
.am-td-form-card .gsection_description {
  font-family : var(--font-body);
  font-size   : 0.85rem;
  color       : var(--am-gray);
  margin-top  : 8px;
  line-height : 1.6;
}
/* ═══════════════════════════════════════════════════════════════
   FOOTER BUTTONS — Submit (.gform_button) + Save (.gform_save_link)
═══════════════════════════════════════════════════════════════ */
.am-td-form-card .gform_footer {
  display     : flex !important;
  flex-wrap   : wrap !important;
  gap         : 16px !important;
  align-items : center !important;
  margin      : 28px 0 0 !important;
  padding     : 0 !important;
}
/* Primary submit = .am-td-submit */
.am-td-form-card .gform_button {
  display         : inline-flex !important;
  align-items     : center !important;
  justify-content : center !important;
  width           : auto !important;
  font-family     : var(--font-title) !important;
  font-size       : 0.85rem !important;
  font-weight     : 800 !important;
  letter-spacing  : 2px !important;
  text-transform  : uppercase !important;
  color           : var(--am-white) !important;
  background      : var(--am-red) !important;
  border          : 2px solid var(--am-red) !important;
  border-radius   : 50px !important;
  padding         : 16px 48px !important;
  cursor          : pointer !important;
  position        : relative !important;
  overflow        : hidden !important;
  transition      : background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.18s ease !important;
}
.am-td-form-card .gform_button::before {
  content    : '';
  position   : absolute;
  inset      : 0;
  background : linear-gradient(108deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform  : translateX(-100%) skewX(-18deg);
  transition : transform 0.55s ease;
  pointer-events: none;
}
.am-td-form-card .gform_button:hover {
  background    : var(--am-red-dark, #CA0A1B);
  border-color  : var(--am-red-dark, #CA0A1B);
  box-shadow    : 0 8px 28px rgba(202,10,27,0.30);
  transform     : translateY(-2px);
  color         : var(--am-white);
}
.am-td-form-card .gform_button:hover::before { transform: translateX(160%) skewX(-18deg); }
.am-td-form-card .gform_button:active { transform: translateY(0) scale(0.97); }
/* Secondary "Save and Continue Later" = .am-td-save (outlined) */
.am-td-form-card .gform_save_link {
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px;
	font-family: inherit;
	font-size: 0.8rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.5px !important;
	color: var(--am-dark) !important;
	background: transparent !important;
	border: 1.5px solid rgba(0,0,0,0.18);
	border-radius: 50px !important;
	padding: 13px 26px !important;
	cursor: pointer;
	transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease !important;
}
.am-td-form-card .gform_save_link svg path { fill: currentColor; }
.am-td-form-card .gform_save_link:hover {
  border-color : var(--am-red);
  color        : var(--am-red);
  background    : rgba(193,37,45,0.04);
}
/* ═══════════════════════════════════════════════════════════════
   VALIDATION + CONFIRMATION
═══════════════════════════════════════════════════════════════ */
.am-td-form-card .gfield_error .ginput_container input,
.am-td-form-card .gfield_error .ginput_container select {
  border-color : var(--am-red);
  background   : #fff;
}
.am-td-form-card .gfield_validation_message,
.am-td-form-card .validation_message {
  font-family : var(--font-body);
  font-size   : 0.8rem;
  color       : var(--am-red);
  margin-top  : 6px;
  background  : none; border: none; padding: 0;
}
.am-td-form-card .gform_validation_errors {
  background     : #fdf3f3;
  border         : 1px solid rgba(193,37,45,0.25);
  border-radius  : 10px;
  padding        : 16px 20px;
  margin-bottom  : 24px;
}
.am-td-form-card .gform_confirmation_message {
  font-family : var(--font-body);
  font-size   : 1rem;
  color       : var(--am-dark);
  line-height  : 1.7;
  text-align  : center;
  padding     : 24px 0;
}
/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════
   DEFAULT PAGE TEMPLATE (page.php + template-parts/content-page.php)
   Styles the native WordPress page template used for plain content
   pages (e.g. Privacy Policy, Terms of Use, Cookies, Photo Release)
   edited via the standard block/classic editor — not an ACF template.
   Targets only the markup already present in those two files.
   Append to your main stylesheet. No PHP changes required.
═══════════════════════════════════════════════════════════════ */
/* ── Page wrapper ──
   Top padding removed: the entry-header is now a full-bleed banner
   that sits flush under the site header, like other page heroes. */
.site-main {
  max-width : 800px;
  margin    : 0 auto;
  padding   : 0 40px 88px;
}
/* ── Article ── */
.site-main article {
  width: 100%;
}
/* ── Header / Title — full-bleed purple banner (no gradient) ──
   Breaks out of .site-main's centered max-width using the
   100vw negative-margin technique, so it spans the full viewport
   like every other hero section on the site. */
.site-main .entry-header {
  width        : 100vw;
  position     : relative;
  left         : 50%;
  right        : 50%;
  margin-left  : -50vw;
  margin-right : -50vw;
  margin-bottom: 48px;
  padding      : 72px 40px;
  background   : var(--am-purple);
  border-bottom: none;
  text-align   : center;
}
.site-main .entry-title {
  font-family   : var(--font-title);
  font-size     : clamp(2rem, 4vw, 2.6rem);
  font-weight   : 800;
  color         : var(--am-white);
  line-height   : 1.2;
  letter-spacing: -0.3px;
  margin        : 0 auto;
  max-width     : 800px;
}
/* ── Featured image (altadena_musicians_post_thumbnail) ── */
.site-main .post-thumbnail {
  margin       : 0 0 40px;
  border-radius: 16px;
  overflow     : hidden;
}
.site-main .post-thumbnail img {
  width     : 100%;
  height    : auto;
  display   : block;
  object-fit: cover;
}
/* ═══════════════════════════════════════════════════════════════
   ENTRY CONTENT — typography for arbitrary block/classic editor
   output (headings, paragraphs, lists, links, quotes, tables, etc.)
═══════════════════════════════════════════════════════════════ */
.site-main .entry-content {
  font-family: var(--font-body);
  font-size  : 1.05rem;
  line-height: 1.85;
  color      : var(--am-dark);
}
.site-main .entry-content > * + * {
  margin-top: 22px;
}
.site-main .entry-content p {
  margin: 0;
}
.site-main .entry-content h1,
.site-main .entry-content h2,
.site-main .entry-content h3,
.site-main .entry-content h4,
.site-main .entry-content h5,
.site-main .entry-content h6 {
  font-family   : var(--font-title);
  font-weight   : 800;
  color         : var(--am-off-black);
  line-height   : 1.3;
  margin-top    : 44px;
  margin-bottom : 0;
}
.site-main .entry-content h1 { font-size: 1.8rem; }
.site-main .entry-content h2 { font-size: 1.55rem; }
.site-main .entry-content h3 { font-size: 1.3rem; }
.site-main .entry-content h4 { font-size: 1.1rem; }
.site-main .entry-content h5,
.site-main .entry-content h6 {
  font-size     : 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.site-main .entry-content ul,
.site-main .entry-content ol {
  margin      : 0;
  padding-left: 24px;
}
.site-main .entry-content li + li {
  margin-top: 10px;
}
.site-main .entry-content li::marker {
  color: var(--am-red);
}
.site-main .entry-content a {
  color                 : var(--am-red);
  text-decoration       : underline;
  text-underline-offset : 2px;
  transition            : color 0.2s ease;
}
.site-main .entry-content a:hover {
  color: var(--am-purple);
}
.site-main .entry-content strong,
.site-main .entry-content b {
  color      : var(--am-off-black);
  font-weight: 700;
}
.site-main .entry-content blockquote {
  margin       : 0;
  padding      : 20px 28px;
  border-left  : 4px solid var(--am-red);
  background   : #f8f8f8;
  border-radius: 0 12px 12px 0;
  font-style   : italic;
  color        : var(--am-dark);
}
.site-main .entry-content blockquote p {
  margin: 0;
}
.site-main .entry-content blockquote p + p {
  margin-top: 14px;
}
.site-main .entry-content img {
  max-width    : 100%;
  height       : auto;
  border-radius: 12px;
  display      : block;
}
.site-main .entry-content figure {
  margin: 0;
}
.site-main .entry-content figcaption {
  font-family: var(--font-title);
  font-size  : 0.82rem;
  color      : var(--am-gray);
  margin-top : 8px;
  text-align : center;
}
.site-main .entry-content hr {
  border    : none;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin    : 36px 0;
}
.site-main .entry-content table {
  width           : 100%;
  border-collapse : collapse;
  font-size       : 0.95rem;
}
.site-main .entry-content th,
.site-main .entry-content td {
  padding      : 12px 16px;
  border       : 1px solid rgba(0,0,0,0.1);
  text-align   : left;
}
.site-main .entry-content th {
  font-family   : var(--font-title);
  font-weight   : 700;
  background    : #f8f8f8;
  color         : var(--am-off-black);
}
/* Multi-page post pagination (wp_link_pages) */
.site-main .entry-content .page-links {
  display        : flex;
  align-items    : center;
  gap            : 10px;
  flex-wrap      : wrap;
  font-family    : var(--font-title);
  font-size      : 0.85rem;
  font-weight    : 700;
  color          : var(--am-gray);
  margin-top     : 40px;
  padding-top    : 24px;
  border-top     : 1px solid rgba(0,0,0,0.08);
}
.site-main .entry-content .page-links a {
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  min-width      : 36px;
  height         : 36px;
  padding        : 0 12px;
  border-radius  : 50px;
  background     : #f5f5f5;
  color          : var(--am-dark);
  text-decoration: none;
}
.site-main .entry-content .page-links a:hover {
  background: var(--am-red);
  color     : var(--am-white);
}
.site-main .entry-content .page-links span:not(:first-child) {
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  min-width      : 36px;
  height         : 36px;
  border-radius  : 50px;
  background     : var(--am-red);
  color          : var(--am-white);
}
/* ── Footer / Edit link ── */
.site-main .entry-footer {
  margin-top : 44px;
  padding-top: 20px;
  border-top : 1px solid rgba(0,0,0,0.08);
}
.site-main .entry-footer .edit-link a {
  display        : inline-flex;
  align-items    : center;
  font-family    : var(--font-title);
  font-size      : 0.78rem;
  font-weight    : 700;
  letter-spacing : 0.03em;
  text-transform : uppercase;
  color          : var(--am-gray);
  text-decoration: none;
  padding        : 8px 16px;
  border          : 1.5px solid rgba(0,0,0,0.15);
  border-radius  : 50px;
  transition     : border-color 0.2s ease, color 0.2s ease;
}
.site-main .entry-footer .edit-link a:hover {
  border-color: var(--am-red);
  color       : var(--am-red);
}
/* ── Responsive ── */



/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — CONSOLIDATED MEDIA QUERIES
   Grouped by exact breakpoint, ordered largest to smallest max-width,
   with min-width queries last. Each group merges every occurrence of
   that exact @media condition from throughout the stylesheet above,
   in their original relative order.
═══════════════════════════════════════════════════════════════════ */


@media (max-width: 1199.98px) {
  .am-navbar-inner {
    padding : 0 24px;
    flex-wrap: wrap;
  }

  .am-header .am-dropdown {
    justify-content: space-between;
    width          : 100%;
    flex-wrap      : wrap; /* allows submenu to drop to its own row */
  }

  .am-header .am-dropdown-menu {
    position  : static !important;
    inset     : auto !important;
    transform : none !important;
    top       : auto !important;
    left      : auto !important;
    right     : auto !important;
    width     : 100% !important;
    max-width : 100% !important;
    box-shadow: none !important;
    margin    : 0 !important;
    float     : none !important;
  }

  .am-header .am-dropdown-menu.show {
    display: block !important;
  }

  .am-dropdown-arrow {
    width       : 40px;
    height      : 40px;
    margin-left : auto; /* push arrow to far right of full-width mobile row */
    border-radius: 50%;
  }
  .am-dropdown-arrow-icon {
    width : 9px;
    height: 9px;
  }

  .am-logo { margin-right: auto; }

  /* Collapsed menu panel */
  #amNavMenu {
    width       : 100%;
    background  : var(--am-white);
    border-top  : 2px solid rgba(193,37,45,0.13);
    padding     : 8px 0 20px;
    box-shadow  : 0 12px 32px rgba(0,0,0,0.09);
    overflow    : hidden;
    /* slide-down entrance */
    animation   : mobileMenuIn 0.3s var(--ease-out) both;
  }

  @keyframes mobileMenuIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0);    }
  }

  /* Nav links full-width */
  .am-nav { flex-direction: column; align-items: stretch; width: 100%; }

  .am-nav-link {
    height      : auto  !important;
    padding     : 13px 24px !important;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size   : 0.9rem !important;
  }
  .am-nav-link::before { display: none; }

  /* Mobile dropdown — inline, not floating */
  .am-dropdown-menu {
    position    : static   !important;
    float       : none;
    box-shadow  : none     !important;
    border-top  : none     !important;
    border-left : 3px solid var(--am-red) !important;
    border-radius: 0       !important;
    margin-left : 24px     !important;
    background  : rgba(193,37,45,0.025) !important;
    padding     : 4px 0 10px !important;
    min-width   : auto;
    max-height  : 0;
    overflow    : hidden;

    /* Override the desktop slide animation */
    visibility  : hidden;
    opacity     : 0;
    transform   : none !important;
    transition  :
      max-height var(--t-mid) var(--ease-out),
      opacity    var(--t-mid) var(--ease-out),
      visibility 0s linear var(--t-mid) !important;
  }

  .am-dropdown-menu.show {
    visibility : visible;
    opacity    : 1;
    max-height : 500px;
    transform  : none !important;
    transition :
      max-height var(--t-mid) var(--ease-out),
      opacity    var(--t-mid) var(--ease-out),
      visibility 0s linear 0s !important;
  }

  /* in-menu CTA is hidden on mobile — the header-bar button takes over */
  .am-cta-item { display: none !important; }
}


@media (max-width: 1023.98px) {
  .am-support-inner       { gap: 40px; }
  .am-support-album-wrap  { width: 280px; }
  .am-support-eyebrow     { font-size: 1.5rem; letter-spacing: 10px; }
}


@media (max-width: 959.98px) {
  .am-hero-inner   { grid-template-columns: 1fr 1fr; }
  .am-hero-content { padding: 40px 32px; gap: 16px; }
  .am-hero-apps    { gap: 20px; }
  .am-qr-wrap      { width: 90px; height: 90px; }

  .am-venue-section  { grid-template-columns: 1fr 1fr; min-height: 440px; }
  .am-venue-content  { padding: 40px 32px; gap: 16px; }
  .am-venue-eyebrow  { letter-spacing: 8px; }
  .am-venue-heading  { font-size: 1.4rem; }

  .am-stories-section      { padding: 56px 0 64px; gap: 32px; }
  .am-stories-slider-wrap  { padding: 0 12px; gap: 8px; }
  .am-stories-img-wrap     { width: 180px; }
  .am-stories-slide        { gap: 28px; }
  .am-stories-eyebrow      { font-size: 1.5rem; letter-spacing: 10px; }

  .am-involved-inner   { grid-template-columns: 1fr 1fr; min-height: 440px; }
  .am-involved-content { padding: 48px 32px 48px 32px; gap: 14px; }
  .am-involved-eyebrow { font-size: 1.5rem; letter-spacing: 10px; }
  .am-involved-btn     { font-size: 1rem; padding: 13px 28px; }

  .am-directory-inner   { grid-template-columns: 1fr 1fr; min-height: 440px; }
  .am-directory-content { padding: 48px 32px 48px 32px; gap: 18px; }
  .am-directory-title   { font-size: 1.5rem; letter-spacing: 9px; }
  .am-directory-body    { font-size: 0.92rem; }

  .am-footer-top     { padding: 48px 28px 56px; }
  .am-footer-cols    { gap: 28px; }
  .am-footer-stay    { font-size: 1.5rem; letter-spacing: 10px; }
  .am-footer-bottom  { padding: 18px 28px; }
  .am-footer-mid     { padding: 36px 28px 28px; }

  .am-di-hero-inner    { grid-template-columns: 1fr 1fr; }
  .am-di-hero-content  { padding: 48px 32px; gap: 14px; }
  .am-di-tax           { padding: 48px 24px; }
  .am-di-tax-inner     { gap: 32px; }
  .am-di-how           { padding: 56px 24px 64px; }
  .am-di-how-eyebrow   { font-size: 1.5rem; letter-spacing: 10px; }

  .am-dr-hero-inner     { grid-template-columns: 1fr 1fr; }
  .am-dr-hero-content   { padding: 40px 32px; gap: 14px; }
  .am-dr-form-section   { padding: 56px 24px 64px; }
  .am-dr-form-card      { padding: 36px 28px; }

  .am-gg-hero-inner          { grid-template-columns: 1fr 1fr; }
  .am-gg-hero-content        { padding: 40px 32px 40px 32px; gap: 18px; }
  .am-gg-hero-image-wrap     { padding: 40px 0 40px 32px; }
  .am-gg-repairs             { padding: 56px 24px 64px; }
  .am-gg-repairs-top         { gap: 32px; }
  .am-gg-dropoff-inner       { gap: 32px; }
  .am-gg-dropoff-content     { padding: 48px 32px; }
  .am-gg-dropoff-image-wrap  { padding: 32px; }

  .am-td-hero-inner     { padding: 40px 28px; gap: 32px; }
  .am-td-form-section   { padding: 48px 24px 64px; }
  .am-td-form-card      { padding: 36px 28px; }

  .am-ig-hero-inner, .am-ig-guide-inner, .am-ig-guide-inner--reversed, .am-ig-faq-inner {
    padding: 40px 28px; gap: 32px; }
  .am-ig-phone-frame { width: 220px; }
  .am-ig-phone-frame--sm { width: 200px; }
  .am-ig-banner { padding: 48px 24px; }

  .am-ms-hero-inner { padding: 40px 28px; gap: 36px; }
  .am-ms-video { padding: 56px 24px 64px; }
  .am-ms-values { padding: 56px 24px 64px; }
  .am-ms-values-eyebrow { font-size: 1.5rem; letter-spacing: 10px; }

  .am-tm-board { padding: 56px 24px 64px; }
  .am-tm-board-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .am-tm-volunteers { padding: 56px 24px 64px; }
  .am-tm-cta { padding: 56px 24px 64px; }

  .am-bs-main-inner { grid-template-columns: 1fr 260px; gap: 36px; }
  .am-bs-main { padding: 0 24px 64px; }
  .am-bs-intro { padding: 40px 24px; }
  .am-bs-hero-img-wrap { height: 340px; }

  .am-oi-gallery { padding: 0 24px 6px; }
  .am-oi-gallery-grid { grid-auto-rows: 160px; gap: 5px; }
  .am-oi-support { padding: 56px 24px 68px; }

  .am-ev-hero { padding: 40px 24px 36px; }
  .am-ev-hero-logo-img { max-height: 263px; }
  .am-ev-shows { padding: 36px 24px 48px; }
  .am-ev-community { padding: 56px 24px 64px; }
  .am-ev-feature-content { padding: 28px 28px 28px 32px; }
  .am-ev-book { padding: 56px 24px 64px; }
  .am-ev-book-content { padding: 32px; }

  .am-pe-main { padding: 36px 24px 56px; }
  .am-pe-main-inner { grid-template-columns: 1fr 240px; gap: 32px; }
  .am-pe-card { padding: 22px 20px; }

  .am-ct-main { padding: 36px 24px 64px; }
  .am-ct-main-inner { grid-template-columns: 1fr 260px; gap: 28px; }
  .am-ct-form-card { padding: 32px 28px; }

  .am-dn-main { padding: 40px 24px 48px; }
  .am-dn-main-inner { gap: 32px; }
  .am-dn-other { padding: 48px 24px 56px; }

  .am-fq-main { padding:36px 24px 64px; }
  .am-fq-main-inner { grid-template-columns:1fr 240px; gap:28px; }

  .am-gi-hero-inner { padding: 40px 28px 36px; }
  .am-gi-card { padding: 32px 28px; gap: 24px; }
  .am-gi-panel-inner { padding: 0 24px 60px; }
  .am-gi-panel-form-area { padding: 28px 24px; }
}


@media (max-width: 900px) {
  .am-se-main-inner {
    grid-template-columns: 1fr;
  }
  .am-se-sidebar-sticky {
    position: static;
  }
  .am-se-more-grid {
    grid-template-columns: 1fr;
  }

  .am-arc-main-inner,
  .am-sn-main-inner {
    grid-template-columns: 1fr;
  }
  .am-arc-sidebar-sticky,
  .am-sn-sidebar-sticky {
    position: static;
  }
  .am-na-card {
    flex-direction: column;
  }
  .am-na-card-img-wrap {
    width: 100%;
    height: 200px;
  }
}


@media (max-width: 899.98px) {
  .am-counter-inner { padding: 32px 24px 36px; }

  .am-counter-item--center {
    padding: 8px 32px;
  }

  .am-counter-number { font-size: clamp(2.4rem, 7vw, 3.2rem); }

  .am-mission-section  { padding: 56px 32px; }
  .am-mission-heading  { font-size: 26px; }
  .am-mission-body     { font-size: 20px; }
  .am-mission-ring--1  { width: 380px; height: 380px; }
  .am-mission-ring--2  { width: 620px; height: 620px; }

  .am-shows-section  { padding: 48px 24px 56px; }
  .am-shows-eyebrow  { letter-spacing: 8px; margin-bottom: 32px; }
  .am-shows-btn      { margin-top: 36px; }

  .am-press-section { padding: 48px 24px 56px; }
  .am-press-item    { padding: 14px 24px; }
  .am-press-img     { height: 36px; max-width: 130px; }

  .am-amc-section { padding: 56px 24px 64px; }
  .am-amc-grid    { gap: 16px; }
  .am-amc-title   { font-size: clamp(1.4rem, 3.5vw, 1.8rem); }

  .am-piano-section  { padding: 56px 28px 64px; }
  .am-piano-eyebrow  { font-size: 1.5rem; letter-spacing: 10px; }
  .am-piano-heading  { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }
  .am-piano-ring--1  { width: 300px;  height: 300px;  }
  .am-piano-ring--2  { width: 550px;  height: 550px;  }
  .am-piano-ring--3  { width: 800px;  height: 800px;  }

  .am-partners-section  { padding: 56px 0 64px; }
  .am-partners-eyebrow  { font-size: 1.5rem; letter-spacing: 10px; }
  .am-marquee-item      { padding: 10px 32px; }
  .am-marquee-img       { height: 82px; max-width: 130px; }
}


@media (max-width: 767.98px) {
  :root { --header-height: 68px; }

  .am-logo-img { height: 44px; }

  .am-navbar-inner { padding: 0 18px; }

  .am-support-section { padding: 56px 24px 64px; }

  .am-support-inner {
    grid-template-columns: 1fr;
    gap                  : 36px;
  }

  /* Stack: eyebrow → heading → album → tagline → body → button */
  .am-support-content { order: 1; gap: 16px; }
  .am-support-right   { order: 2; width: 100%; }

  /* On tablet, show album between heading and body */
  .am-support-album-wrap  { width: min(320px, 85vw); }

  .am-support-content {
    transform : translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }

  .am-support-right {
    transform : translateY(20px);
    transition: opacity 0.65s ease 0.15s, transform 0.65s ease 0.15s;
  }

  .am-support-content.am-visible,
  .am-support-right.am-visible {
    transform: translateY(0);
  }

  .am-support-ring--1 { width: 300px; height: 300px; right: -80px; }
  .am-support-ring--2 { width: 500px; height: 500px; right: -160px; }

  .am-footer-top  { padding: 40px 20px 48px; }

  /* Stack columns */
  .am-footer-cols {
    grid-template-columns: 1fr;
    gap                  : 36px;
    max-width            : 480px;
  }

  /* Centre all columns on mobile */
  .am-footer-col { align-items: center; text-align: center; }

  .am-footer-col--social   { align-items: center; }
  .am-footer-col--newsletter { align-items: stretch; }

  /* Mobile stay in tune spec */
  .am-footer-stay {
    font-size     : 0.78rem;
    letter-spacing: 8px;
  }

  .am-footer-contact-btn { align-self: center; }

  /* Legal bar stack */
  .am-footer-bottom-inner {
    flex-direction: column;
    align-items   : center;
    text-align    : center;
    gap           : 10px;
  }

  .am-footer-legal {
    justify-content: center;
  }

  .am-footer-copyright { white-space: normal; text-align: center; }

  .am-footer-mid    { padding: 32px 20px 24px; }
  .am-footer-bottom { padding: 18px 20px; }

  /* Sidebar moves below article on tablet/mobile */
  .am-bs-main-inner {
    grid-template-columns: 1fr; gap: 40px;
  }

  .am-bs-sidebar-sticky {
    position: static; /* un-stick */
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  }

  .am-bs-sidebar-share {
    grid-column: 1 / -1;
  }

  .am-pe-main-inner { grid-template-columns: 1fr; gap: 36px; }

  .am-pe-sidebar-sticky {
    position: static;
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  }

  .am-ct-main-inner { grid-template-columns: 1fr; gap: 32px; }

  .am-ct-sidebar-sticky {
    position: static;
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px;
  }

  .am-dn-main-inner { grid-template-columns: 1fr; }

  .am-dn-image-col {
    position: static;
    order: 2;
  }

  .am-dn-embed-col { order: 1; }

  .am-dn-trust { flex-direction: row; flex-wrap: wrap; }
  .am-dn-trust-item { flex: 1; min-width: 140px; }

  .am-fq-main-inner { grid-template-columns:1fr; gap:32px; }
  .am-fq-sidebar-sticky {
    position:static; display:grid; grid-template-columns:1fr 1fr; gap:14px;
  }
  .am-fq-sidebar-card:first-child { grid-column:1 / -1; }
  .am-footer-newsletter-btn{align-self: center;}

  .am-td-form-card .add_list_item,
  .am-td-form-card .delete_list_item {
    width : 38px !important;
    height: 38px !important;
  }
  .am-td-form-card .add_list_item::before,
  .am-td-form-card .delete_list_item::before {
    font-size: 18px !important;
  }
  .am-td-form-card .gfield_list_icons {
    gap: 10px !important;
  }
}


@media (max-width: 639.98px) {
  .am-counter-inner {
    padding    : 28px 24px 32px;
    align-items: center;
    gap        : 6px;
  }

  .am-counter-eyebrow {
    font-size    : 1.25rem;
    letter-spacing: 3px;
    margin-bottom: 8px;
  }

  .am-counter-grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap  : 0;
  }

  .am-counter-item,
  .am-counter-item--center {
    align-items : center;
    border      : none;
    padding     : 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.10);
  }

  .am-counter-item:last-child {
    border-bottom: none;
  }

  .am-counter-number {
    font-size    : clamp(3rem, 14vw, 3.8rem);
    letter-spacing: -1.5px;
  }

  .am-counter-label {
    font-size: 1.25rem;
  }

  /* 1 & 2 — Title + subtitle: show mobile-top block */
  .am-hero-mobile-top {
    display   : block;
    padding   : 28px 20px 0;
    opacity   : 0;
    transform : translateY(14px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .am-hero-mobile-top.am-visible {
    opacity  : 1;
    transform: translateY(0);
  }

  .am-hero-mobile-top .am-hero-heading {
    font-size    : clamp(1.5rem, 5.5vw, 1.65rem);
    margin-bottom: 8px;
  }

  .am-hero-mobile-top .am-hero-tagline {
    font-size: clamp(1.25rem, 3.5vw, 1.1rem);
    margin   : 0;
    margin-bottom: 1rem;
  }

  /* Single column */
  .am-hero-inner {
    grid-template-columns: 1fr;
    min-height           : auto;
  }

  /* 3 — Image: first inside the grid */
  .am-hero-image-wrap {
    order     : 1;
    height    : 260px;
    transform : translateY(20px);
    transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
  }

  .am-hero-image-wrap.am-visible {
    opacity  : 1;
    transform: translateY(0);
  }

  /* 4 — Body content: second inside the grid */
  .am-hero-content {
    order     : 2;
    padding   : 24px 20px 0;
    gap       : 14px;
    transform : translateY(20px);
    transition: opacity 0.6s ease 0.25s, transform 0.6s ease 0.25s;
  }

  /* Hide desktop heading/tagline — mobile-top handles them */
  .am-hero-heading--desktop,
  .am-hero-tagline--desktop { display: none; }

  /* 5 — QR codes: centered */
  .am-hero-apps {
    justify-content: center;
    gap            : 32px;
    padding-bottom : 32px;
  }

  .am-hero-app-pair { align-items: center; }
  .am-qr-wrap       { width: 100px; height: 100px; }
  .am-badge-img     { height: 34px; }

  .am-mission-section { padding: 48px 24px; }

  .am-mission-eyebrow {
    font-size    : 20px;
    letter-spacing: 8px;
  }

  .am-mission-heading {
    font-size  : 26px;
    line-height: 1.3;
  }

  .am-mission-body {
    font-size : 20px;
  }

  .am-mission-btn {
    padding  : 15px 32px;
    font-size: 0.78rem;
  }

  /* Center button only */
  .am-mission-btn { align-self: center; }

  .am-mission-ring--1 { width: 300px; height: 300px; }
  .am-mission-ring--2 { width: 500px; height: 500px; }

  .am-venue-section {
    grid-template-columns: 1fr;
    grid-template-rows   : auto auto;
  }

  /* Image on top */
  .am-venue-image-wrap {
    order     : 1;
    height    : 280px;
    transform : translateY(-20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }

  .am-venue-image-wrap.am-visible {
    transform: translateY(0);
  }

  /* Content below */
  .am-venue-content {
    order    : 2;
    padding  : 32px 20px 40px;
    gap      : 16px;
    transform: translateY(20px);
    transition: opacity 0.65s ease 0.15s, transform 0.65s ease 0.15s;
  }

  .am-venue-content.am-visible { transform: translateY(0); }

  .am-venue-eyebrow {
    font-size     : 1.25rem;
    letter-spacing: 8px;
    text-align: center;
  }

  .am-venue-heading { font-size: clamp(1.25rem, 5vw, 1.5rem); }

  .am-venue-body { font-size: 1.125rem; }

  .am-venue-btn {
    align-self: stretch;
    text-align: center;
    padding   : 15px 28px;
    font-size: 0.78rem;
  }

  .am-venue-eagle { width: 70px; }
  .am-venue-logo-name { font-size: 1.1rem; }

  .am-shows-section  { padding: 40px 16px 48px; }
  .am-shows-eyebrow  { font-size: 1.25rem; letter-spacing: 8px; margin-bottom: 28px; }
  .am-shows-btn      { width: 100%; max-width: 320px; margin-top: 28px; padding: 15px 28px; font-size: 0.78rem; }

  .am-press-section  { padding: 40px 16px 48px; }
  .am-press-eyebrow  { font-size: 1.25rem; letter-spacing: 8px; margin-bottom: 36px; }

  .am-press-row {
    gap: 0;
  }

  .am-press-item {
    padding     : 12px 16px;
    border-right: none;
    flex        : 0 0 50%;
  }

  /* Remove bottom border from last row items */
  .am-press-row:last-child .am-press-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .am-press-img { height: 32px; max-width: 120px; }

  .am-amc-section {
    padding: 48px 20px 56px;
  }

  .am-amc-inner { gap: 32px; }

  .am-amc-header { text-align: left; }

  .am-amc-title    { font-size: clamp(1.75rem, 6vw, 1.75rem); text-align: center;}
  .am-amc-subtitle { font-size: 1.5rem; line-height: 1.5; text-align: center; }

  .am-amc-grid {
    grid-template-columns: 1fr;
    gap                  : 28px;
  }

  .am-amc-card:nth-child(1) { transition-delay: 0.08s; }
  .am-amc-card:nth-child(2) { transition-delay: 0.18s; }
  .am-amc-card:nth-child(3) { transition-delay: 0.28s; }

  .am-amc-card-title, .am-amc-card-text { font-size: 1.125rem; }

  .am-amc-btn {
    width  : 100%;
    padding: 15px 32px;
    font-size: 0.78rem;
  }

  .am-stories-section     { padding: 48px 0 56px; gap: 28px; }

  /* Mobile title spec */
  .am-stories-eyebrow {
    font-size     : 1.25rem;
    letter-spacing: 8px;
  }

  .am-stories-slider-wrap { padding: 0 8px; gap: 4px; }

  /* Stack image above content on mobile */
  .am-stories-slide {
    flex-direction: column;
    align-items   : flex-start;
    gap           : 20px;
    padding       : 4px 12px;
  }

  .am-stories-img-wrap {
    width       : 100%;
    aspect-ratio: 16 / 9;
  }

  .am-stories-arrow { width: 36px; height: 36px; }
  .am-stories-arrow svg { width: 36px; height: 36px; }

  .am-stories-quote { font-size: 0.9rem; }

  .am-stories-btn {
    width  : calc(100% - 40px);
    padding: 15px 28px;
  }

  .am-involved-section { overflow: hidden; }

  .am-involved-inner {
    grid-template-columns: 1fr;
    grid-template-rows   : auto auto;
  }

  /* Image on top */
  .am-involved-image-wrap {
    order     : 1;
    height    : 260px;
    transform : translateY(-20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }

  .am-involved-image-wrap.am-visible { display: none; }

  /* Content below */
  .am-involved-content {
    order    : 2;
    padding  : 36px 20px 44px;
    gap      : 14px;
    transform: translateY(20px);
    transition: opacity 0.65s ease 0.15s, transform 0.65s ease 0.15s;
  }

  .am-involved-content.am-visible { transform: translateY(0); }

  /* Mobile title spec */
  .am-involved-eyebrow {
    font-size     : 1.25rem;
    letter-spacing: 8px;
    text-align: center;
  }

  .am-involved-heading    { font-size: clamp(1.1rem, 5vw, 1.3rem); }
  .am-involved-subheading { font-size: clamp(1rem, 4.5vw, 1.2rem); }
  .am-involved-body       { font-size: 1.125rem; }

  .am-involved-list li    { font-size: 1.125rem; }

  /* Mobile button spec */
  .am-involved-btns { gap: 12px; }

  .am-involved-btn {
    font-size : 0.78rem;
    padding   : 13px 24px;
    flex      : 1;
    text-align: center;
  }

  .am-directory-inner {
    grid-template-columns: 1fr;
    grid-template-rows   : auto auto;
  }

  /* Image on top */
  .am-directory-image-wrap {
    order     : 1;
    height    : 260px;
    transform : translateY(-20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }

  .am-directory-image-wrap.am-visible { transform: translateY(0); }

  /* Content below */
  .am-directory-content {
    order    : 2;
    padding  : 36px 20px 44px;
    gap      : 16px;
    transform: translateY(20px);
    transition: opacity 0.65s ease 0.15s, transform 0.65s ease 0.15s;
  }

  .am-directory-content.am-visible { transform: translateY(0); }

  /* Mobile title spec */
  .am-directory-title {
    font-size     : 1.25rem;
    letter-spacing: 8px;
    text-align: center;
  }

  .am-directory-body { font-size: 1.125rem; }

  .am-directory-btn {
    align-self: stretch;
    text-align: center;
    padding   : 15px 28px;
    font-size: 0.78rem: 
  }

  .am-piano-section  { padding: 48px 20px 56px; text-align: left; }

  .am-piano-inner    { align-items: center; gap: 18px; }

  /* Mobile title spec */
  .am-piano-eyebrow {
    font-size     : 1.25rem;
    letter-spacing: 8px;
    text-align: center;
  }

  .am-piano-heading { font-size: clamp(1.05rem, 5vw, 1.25rem); }
  .am-piano-body    { font-size: 1.125rem; }

  .am-piano-btns {
    flex-direction: column;
    width         : 100%;
    gap           : 12px;
    justify-content: flex-start;
  }

  .am-piano-btn {
    width  : 100%;
    padding: 15px 28px;
    font-size: 0.78rem;
  }

  .am-piano-ring--1 { width: 240px; height: 240px; }
  .am-piano-ring--2 { width: 420px; height: 420px; }
  .am-piano-ring--3 { width: 600px; height: 600px; }

  .am-support-section { padding: 48px 20px 56px; }

  .am-support-eyebrow {
    font-size     : 0.78rem;
    letter-spacing: 8px;
  }

  .am-support-album-wrap { width: min(280px, 90vw); }

  .am-support-btn {
    width  : 100%;
    padding: 15px 28px;
  }

  .am-partners-section  { padding: 48px 0 56px; }

  .am-partners-eyebrow {
    font-size     : 1.25rem;
    letter-spacing: 8px;
  }

  .am-marquee-item { padding: 8px 24px; }
  .am-marquee-img  { height: 68px; max-width: 100px; }

  .am-partners-btn {
    width  : calc(100% - 40px);
    padding: 15px 28px;
    font-size: 0.78rem;
  }

  /* Tighter mask on mobile */
  .am-marquee-wrap {
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 5%,
      black 95%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 5%,
      black 95%,
      transparent 100%
    );
  }

  .am-newsletter-modal   { padding: 40px 24px 32px; border-radius: 16px; }
  .am-newsletter-title   { font-size: 1.3rem; }
  .am-nl-row             { grid-template-columns: 1fr; gap: 16px; }
  .am-newsletter-overlay { padding: 12px; align-items: flex-end; }

  .am-newsletter-modal {
    border-radius: 20px 20px 0 0;
    max-height   : 92vh;
  }

  /* Hero */
  .am-di-mobile-top {
    display: block;
    padding: 28px 20px 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .am-di-mobile-top.am-visible { opacity: 1; transform: translateY(0); }

  .am-di-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .am-di-eyebrow--desktop { display: none; }

  .am-di-hero-image-wrap {
    order  : 1;
    padding: 20px;
  }

  .am-di-hero-img {
    max-height: 260px;
  }

  .am-di-hero-img-accent { display: none; }

  .am-di-hero-image-wrap.am-visible { transform: translateY(0); }

  .am-di-hero-content {
    order: 2;
    padding: 24px 20px 40px;
    gap: 14px;
    transform: translateY(16px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
  }

  .am-di-hero-heading { font-size: clamp(1.5rem, 6vw, 1.85rem); }

  .am-di-hero-btns { flex-direction: column; }
  .am-di-btn { width: 100%; text-align: center; }

  /* Tax section */
  .am-di-tax { padding: 40px 20px; }

  .am-di-tax-inner { flex-direction: column; gap: 24px; }

  .am-di-tax-heading { font-size: clamp(1.05rem, 4.5vw, 1.3rem); }

  .am-di-tax-icon { order: -1; }
  .am-di-tax-svg  { width: 60px; height: 60px; }

  .am-di-btn--dark { width: 100%; text-align: center; }

  /* How it works */
  .am-di-how { padding: 48px 20px 56px; }

  .am-di-how-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 8px;
  }

  .am-di-steps {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .am-di-step {
    padding: 24px 0;
    align-items: flex-start;
    text-align: left;
  }

  .am-di-step-body { max-width: none; }

  .am-di-step-divider {
    width: 100%;
    height: 1px;
    align-self: stretch;
  }

  .am-di-step-divider::before {
    left: 24px;
    transform: translate(0, -50%);
  }

  .am-dr-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .am-dr-hero-image-wrap {
    order  : 1;
    padding: 24px 20px;
  }

  .am-dr-hero-img { max-height: 240px; }

  .am-dr-hero-img-accent { display: none; }

  .am-dr-hero-content {
    order  : 2;
    padding: 0 20px 40px;
    gap    : 14px;
  }

  .am-dr-hero-heading {
    font-size: clamp(1.45rem, 6vw, 1.8rem);
  }

  .am-dr-btn { width: 100%; text-align: center; }

  /* Form */
  .am-dr-form-section { padding: 48px 16px 56px; }

  .am-dr-form-card {
    padding      : 28px 20px;
    border-radius: 12px;
  }

  .am-dr-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .am-dr-field--half { max-width: 100%; }

  .am-dr-form-title { font-size: clamp(1.3rem, 6vw, 1.7rem); }

  .am-dr-submit {
    align-self: stretch;
    text-align: center;
  }

  .am-dr-checkbox-label,
  .am-dr-radio-label {
    padding: 6px 8px;
    font-size: 0.84rem;
  }

  /* Hero */
  .am-gg-hero-inner {
    grid-template-columns: 1fr;
  }

  .am-gg-hero-image-wrap {
    order  : 1;
    padding: 24px 20px;
  }

  .am-gg-hero-img { max-height: 260px; }
  .am-gg-hero-img-accent { top: 24px; left: 20px; }

  .am-gg-hero-content {
    order  : 2;
    padding: 0 20px 40px;
    gap    : 18px;
  }

  .am-gg-hero-heading { font-size: clamp(1.45rem, 6vw, 1.8rem); }

  .am-gg-step { padding-left: 32px; }

  /* Repairs */
  .am-gg-repairs { padding: 48px 20px 56px; }

  .am-gg-repairs-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .am-gg-repairs-image-wrap { order: -1; }

  .am-gg-repairs-img-accent { right: 0; }

  .am-gg-instrument-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .am-gg-dropoff-intro { padding-left: 16px; }

  .am-gg-partner-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .am-gg-partner-card { padding: 24px 20px; }

  /* Dropoff */
  .am-gg-dropoff-inner {
    grid-template-columns: 1fr;
  }

  .am-gg-dropoff-content { padding: 36px 20px 0; }

  .am-gg-dropoff-image-wrap {
    padding: 24px 20px 40px;
  }

  .am-gg-dropoff-img { max-height: 260px; }
  .am-gg-dropoff-img-accent { display: none; }

  .am-td-hero-inner {
    grid-template-columns: 1fr;
    padding              : 32px 20px;
    gap                  : 24px;
  }

  .am-td-hero-aside { order: -1; }

  .am-td-form-section { padding: 40px 16px 56px; }

  .am-td-form-card {
    padding      : 28px 18px;
    border-radius: 14px;
  }

  .am-td-row { grid-template-columns: 1fr; gap: 14px; }
  .am-td-field--half { max-width: 100%; }

  .am-td-item-row { flex-direction: column; align-items: stretch; }
  .am-td-add-row  { align-self: flex-start; }

  .am-td-row--sig {
    grid-template-columns: 1fr;
  }

  .am-td-section-title { font-size: 1.05rem; }

  .am-td-btns { flex-direction: column; }
  .am-td-submit, .am-td-save { width: 100%; justify-content: center; }

  .am-ig-hero-inner, .am-ig-guide-inner, .am-ig-guide-inner--reversed, .am-ig-faq-inner {
    grid-template-columns: 1fr; padding: 32px 20px; gap: 28px; }

  .am-ig-hero-phone { order: -1; }
  .am-ig-hero-accent { display: none; }
  .am-ig-phone-frame { width: 200px; }
  .am-ig-phone-frame--sm { width: 180px; }

  .am-ig-guide-phone { order: -1; }
  .am-ig-guide-accent { display: none; }

  .am-ig-faq-phone { order: -1; }

  .am-ig-hero-heading { font-size: clamp(1.5rem,6vw,1.85rem); }
  .am-ig-banner { padding: 40px 20px; }
  .am-ig-banner-tagline { font-size: clamp(1.4rem,7vw,2rem); }
  .am-ig-help { padding: 48px 20px; }
  .am-ig-btn { width: 100%; text-align: center; }
  .am-ig-apps { justify-content: center; }

  .am-ms-hero-inner {
    grid-template-columns: 1fr; padding: 28px 20px; gap: 28px;
  }

  .am-ms-hero-image-wrap { order: 1; }
  .am-ms-hero-img { max-height: 260px; }
  .am-ms-hero-accent { top: -8px; left: -8px; }
  .am-ms-hero-content { order: 2; }

  .am-ms-hero-heading { font-size: clamp(1.6rem, 7vw, 2rem); }

  .am-ms-hero-btns { flex-direction: column; }
  .am-ms-btn { width: 100%; justify-content: center; }

  .am-ms-quote { padding: 14px 0 14px 18px; }
  .am-ms-quote p { font-size: 1rem; }

  .am-ms-video { padding: 48px 16px 56px; }
  .am-ms-video-container { border-radius: 10px; }

  .am-ms-values { padding: 48px 20px 56px; }
  .am-ms-values-eyebrow { font-size: 0.78rem; letter-spacing: 8px; }

  .am-ms-values-grid { grid-template-columns: 1fr; gap: 16px; }

  .am-ms-value-card { padding: 28px 20px; }

  .am-tm-hero { padding: 48px 20px 56px; }
  .am-tm-hero-heading { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  .am-tm-board { padding: 48px 16px 56px; }
  .am-tm-board-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  .am-tm-advisors { padding: 40px 0; }

  .am-tm-volunteers { padding: 48px 16px 56px; }
  .am-tm-vol-grid { grid-template-columns: 1fr 1fr; gap: 0 24px; }

  .am-tm-cta { padding: 48px 20px 56px; }
  .am-tm-cta-btn { width: 100%; max-width: 280px; }

  .am-bs-hero-img-wrap { height: 260px; }
  .am-bs-intro { padding: 32px 20px; }
  .am-bs-intro-quote p { font-size: 0.95rem; }
  .am-bs-main { padding: 0 16px 56px; }
  .am-bs-main-inner { padding-top: 32px; gap: 32px; }
  .am-bs-article-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .am-bs-content p { font-size: 0.92rem; }
  .am-bs-video-container { border-radius: 8px; }

  .am-bs-sidebar-sticky {
    grid-template-columns: 1fr;
  }

  .am-oi-hero { padding: 36px 20px 28px; }
  .am-oi-hero-heading { font-size: clamp(1.6rem, 8vw, 2.2rem); }

  .am-oi-gallery { padding: 0 12px 4px; }
  .am-oi-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px; gap: 4px;
  }
  .am-oi-gallery-item--wide { grid-column: span 2; }

  .am-oi-support { padding: 48px 20px 56px; }
  .am-oi-support-btn { width: 100%; max-width: 360px; text-align: center; }

  .am-ev-hero { padding: 32px 16px 28px; }
  .am-ev-hero-logo-img { max-height: 110px; }
  .am-ev-hero-address { font-size: 0.65rem; letter-spacing: 2px; }

  .am-ev-shows { padding: 28px 16px 40px; }

  .am-ev-community { padding: 48px 16px 56px; }
  .am-ev-community-heading { font-size: clamp(1.3rem, 6vw, 1.7rem); }

  /* Stack feature events */
  .am-ev-feature {
    grid-template-columns: 1fr;
  }

  .am-ev-feature--flipped .am-ev-feature-img-wrap { order: 1; }
  .am-ev-feature--flipped .am-ev-feature-content { order: 2; }

  .am-ev-feature-img-wrap { min-height: 220px; }

  .am-ev-feature-content { padding: 24px 20px 28px; }

  .am-ev-feature-title { font-size: clamp(1.2rem, 5vw, 1.5rem); }

  .am-ev-detail-label { font-size: 0.62rem; }

  /* Stack book venue */
  .am-ev-book { padding: 48px 16px 56px; }

  .am-ev-book-card { grid-template-columns: 1fr; }

  .am-ev-book-img-wrap { min-height: 200px; }

  .am-ev-book-content { padding: 24px 20px 28px; }

  .am-ev-book-btn { width: 100%; justify-content: center; }

  .am-ev-archive-btn { width: 100%; max-width: 280px; text-align: center; }

  .am-pe-hero { padding: 36px 20px 32px; }
  .am-pe-main { padding: 28px 16px 48px; }

  .am-pe-card { flex-direction: column; gap: 14px; padding: 20px 18px; }

  .am-pe-card-date {
    flex-direction: row; width: auto; gap: 8px;
    padding: 6px 14px; border-radius: 8px; align-self: flex-start;
  }

  .am-pe-card-month { font-size: 0.65rem; }
  .am-pe-card-day { font-size: 1rem; }

  .am-pe-sidebar-sticky { grid-template-columns: 1fr; }

  .am-pe-load-btn { width: 100%; max-width: 280px; }

  .am-ct-hero { padding: 40px 20px 36px; }
  .am-ct-hero-heading { font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .am-ct-main { padding: 28px 16px 56px; }
  .am-ct-form-card { padding: 24px 18px; border-radius: 14px; }
  .am-ct-row { grid-template-columns: 1fr; gap: 14px; }
  .am-ct-field--half { max-width: 100%; }
  .am-ct-submit { align-self: stretch; text-align: center; }
  .am-ct-sidebar-sticky { grid-template-columns: 1fr; }

  .am-dn-hero { padding: 28px 20px; }
  .am-dn-main { padding: 32px 16px 40px; }

  /* .am-dn-embed-card { border-radius: 12px; min-height: 400px; } */

  .am-dn-image { display: none; }
  .am-dn-image-accent { display: none; }

  .am-dn-trust { gap: 8px; }
  .am-dn-trust-item { font-size: 0.76rem; padding: 10px 12px; }

  .am-dn-other { padding: 40px 16px 48px; }
  .am-dn-other-actions { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }

  .am-fq-hero { padding:40px 20px 36px; }
  .am-fq-main { padding:28px 16px 56px; }
  .am-fq-trigger { padding:16px 40px 16px 18px; font-size:0.86rem; }
  .am-fq-trigger::after { right:16px; }
  .am-fq-panel { padding:0 18px; }
  .am-fq-item.am-open .am-fq-panel { padding:0 18px 18px; }
  .am-fq-cat-title { font-size:1.05rem; }
  .am-fq-sidebar-sticky { grid-template-columns:1fr; }

  .am-gi-hero { min-height: 220px; }
  .am-gi-hero-inner { padding: 32px 20px 28px; }
  .am-gi-hero-heading { font-size: clamp(1.8rem, 8vw, 2.6rem); letter-spacing: 4px; }

  .am-gi-card {
    grid-template-columns: 1fr;
    gap: 16px; padding: 28px 20px;
  }

  .am-gi-card-icon { display: none; }

  .am-gi-card-title { font-size: 1.1rem; letter-spacing: 3px; }

  .am-gi-panel { top: 0; height: 100vh; }
  .am-gi-panel-close { top: 16px; right: 16px; padding: 8px 16px 8px 10px; font-size: 0.62rem; }
  .am-gi-panel-header { padding: 72px 0 24px; }
  .am-gi-panel-inner { padding: 0 16px 48px; }
  .am-gi-panel-header { padding: 28px 0 24px; }
  .am-gi-panel-close { top: 28px; }
  .am-gi-panel-form-area { padding: 24px 18px; border-radius: 12px; }
}


@media (max-width: 600px) {
  .am-se-hero-inner {
    padding: 40px 20px 32px;
  }
  .am-se-main {
    padding: 40px 20px 56px;
  }
  .am-se-more {
    padding: 48px 20px;
  }
  .am-se-hero-meta {
    flex-direction: column;
    gap: 10px;
  }

  .am-arc-hero { padding: 48px 20px; }
  .am-arc-main { padding: 40px 20px 56px; }
  .am-sn-hero-inner { padding: 36px 20px 30px; }
  .am-sn-main { padding: 40px 20px 56px; }

  .am-dr-form-card .ginput_complex {
    grid-template-columns: 1fr;
  }
  .am-dr-form-card .gfield--type-phone .ginput_container {
    max-width: 100%;
  }
  .am-dr-form-card .gform_button {
    width      : 100%;
    align-self : stretch;
  }

  .am-td-form-card .ginput_complex,
  .am-td-form-card .gfield--type-date .ginput_complex {
    grid-template-columns: 1fr;
  }
  .am-td-form-card .ginput_address_line_1,
  .am-td-form-card .ginput_address_line_2,
  .am-td-form-card .ginput_address_city,
  .am-td-form-card .ginput_address_state,
  .am-td-form-card .ginput_address_zip,
  .am-td-form-card .ginput_address_country {
    grid-column: auto;
  }
  /* Signature + date stack full width on mobile */
  .am-td-form-card .gfield--type-signature,
  .am-td-form-card .gfield--type-date {
    flex: 1 1 100%;
  }
  .am-td-form-card .gfield--type-phone .ginput_container {
    max-width: 100%;
  }
  .am-td-form-card .gfield_list_header {
    display: none; /* hide column headers; rows use data-label */
  }
  .am-td-form-card .gfield_list_group {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .am-td-form-card .gfield_list_cell::before {
    content   : attr(data-label);
    font-family: var(--font-title);
    font-size : 0.72rem;
    font-weight: 600;
    color     : var(--am-gray);
    display   : block;
    margin-bottom: 4px;
  }
  .am-td-form-card .gfield_list_icons {
    justify-content: flex-start;
  }
  .am-td-form-card .gform_footer {
    flex-direction: column;
    align-items: stretch;
  }
  .am-td-form-card .gform_button,
  .am-td-form-card .gform_save_link {
    width: 100%;
    justify-content: center;
  }

  .site-main {
    padding: 0 20px 56px;
  }
  .site-main .entry-header {
    padding: 48px 20px;
    margin-bottom: 32px;
  }
}


@media (max-width: 479.98px) {
  :root { --header-height: 62px; }

  .am-logo-img { height: 38px; }

  .am-navbar-inner { padding: 0 14px; }

  .am-nav-link { padding: 12px 16px !important; font-size: 0.875rem !important; }

  .am-dropdown-item { padding: 9px 18px !important; }

  .am-cta-item { margin: 14px 16px 4px; }

  .am-counter-inner { padding: 24px 20px 28px; }

  .am-hero-mobile-top { padding: 22px 16px 0; }
  .am-hero-content    { padding: 20px 16px 0; }
  .am-hero-apps       { padding-bottom: 28px; gap: 24px; }
  .am-hero-image-wrap { height: 220px; }

  .am-mission-section { padding: 40px 16px; }
  .am-mission-heading { font-size: 22px; }
  .am-mission-body    { font-size: 18px; }

  .am-venue-content { padding: 28px 16px 36px; }
  .am-venue-image-wrap { height: 240px; }

  .am-press-item { flex: 0 0 50%; padding: 12px 12px; }
  .am-press-img  { height: 28px; max-width: 100px; }

  .am-amc-section { padding: 40px 16px 48px; }

  .am-stories-section  { padding: 40px 0 48px; }
  .am-stories-slide    { padding: 4px 8px; }

  .am-involved-content     { padding: 28px 16px 36px; }
  .am-involved-image-wrap  { height: 220px; }
  .am-involved-btns        { flex-direction: column; }
  .am-involved-btn         { width: 100%; }

  .am-directory-content    { padding: 28px 16px 36px; }
  .am-directory-image-wrap { height: 220px; }

  .am-piano-section { padding: 40px 16px 48px; }

  .am-support-section { padding: 40px 16px 48px; }

  .am-marquee-item { padding: 8px 18px; }
  .am-marquee-img  { height: 58px; max-width: 85px; }

  .am-footer-top  { padding: 36px 16px 44px; }
  .am-footer-mid  { padding: 28px 16px 20px; }
  .am-footer-bottom { padding: 16px; }
  .am-footer-form-row { flex-direction: column; }
  .am-footer-input    { width: 100%; }
  .am-footer-signup-btn { width: 100%; height: 46px; }

  .am-btn-donate--mobile {
    padding      : 9px 14px;
    font-size    : 0.67rem !important;
    letter-spacing: 1px;
    margin-right : 8px;
  }

  .am-newsletter-modal { padding: 36px 18px 28px; }

  .am-di-mobile-top    { padding: 22px 16px 0; }
  .am-di-hero-content  { padding: 20px 16px 36px; }
  .am-di-tax           { padding: 36px 16px; }
  .am-di-how           { padding: 40px 16px 48px; }

  .am-dr-hero-image-wrap { padding: 20px 16px; }
  .am-dr-hero-content    { padding: 0 16px 36px; }
  .am-dr-form-card       { padding: 24px 16px; }

  .am-gg-hero-image-wrap    { padding: 20px 16px; }
  .am-gg-hero-content       { padding: 0 16px 36px; }
  .am-gg-repairs            { padding: 40px 16px 48px; }
  .am-gg-dropoff-content    { padding: 28px 16px 0; }
  .am-gg-dropoff-image-wrap { padding: 20px 16px 36px; }
  .am-gg-partner-card       { padding: 20px 16px; }

  .am-ig-hero-inner, .am-ig-guide-inner, .am-ig-guide-inner--reversed, .am-ig-faq-inner {
    padding: 24px 16px; }
  .am-ig-phone-frame { width: 180px; }
  .am-ig-phone-frame--sm { width: 160px; }

  .am-ms-hero-inner { padding: 22px 16px; }
  .am-ms-video { padding: 40px 12px 48px; }
  .am-ms-values { padding: 40px 16px 48px; }

  .am-tm-board-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .am-tm-vol-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }

  .am-bs-hero-img-wrap { height: 200px; }
  .am-bs-main { padding: 0 12px 48px; }

  .am-oi-gallery-grid { grid-auto-rows: 120px; gap: 3px; }
  .am-oi-support { padding: 40px 16px 48px; }

  .am-ev-hero { padding: 28px 12px 24px; }
  .am-ev-hero-logo-img { max-height: 90px; }
  .am-ev-shows { padding: 24px 12px 36px; }
  .am-ev-community { padding: 40px 12px 48px; }
  .am-ev-feature-content { padding: 20px 16px 24px; }
  .am-ev-book { padding: 40px 12px 48px; }
  .am-ev-book-content { padding: 20px 16px 24px; }

  .am-pe-main { padding: 24px 12px 40px; }
  .am-pe-card { padding: 16px 14px; margin-bottom: 10px; }

  .am-ct-form-card { padding: 20px 14px; }

  .am-dn-main { padding: 24px 12px 32px; }
  .am-dn-other { padding: 32px 12px 40px; }

  .am-gi-hero-inner { padding: 24px 16px 22px; }
  .am-gi-card { padding: 24px 16px; }
  .am-gi-panel-inner { padding: 0 12px 40px; }
}


@media (min-width: 1400px) {
  .am-nav-link  { padding: 0 18px !important; }
  .am-logo      { margin-right: 56px; }
  .am-logo-img  { height: 58px; }
}