/* Artful Harlem Craft — Design System (theartbrand.online) */
:root {
  --background: #FBFBF9;
  --foreground: #494943;
  --ivory: #FBFBF9;
  --charcoal: #1B1B1B;
  --soft-black: #292929;
  --brand-blue: #015FE7;
  --brand-blue-30: rgba(1, 95, 231, 0.19);
  --brand-blue-52: rgba(1, 95, 231, 0.32);
  --brand-blue-78: rgba(1, 95, 231, 0.48);
  --teal: #20B2AA;
  --teal-10: rgba(32, 178, 170, 0.1);
  --warm-red: #C62424;
  --text-muted: rgba(73, 73, 67, 0.9);
  --white: #FFFFFF;
  --gold: #20B2AA;
  --flame-orange: #015FE7;
  --art-green: #20B2AA;
  --radius: 15px;
  --radius-lg: 20px;
  --shadow-brand: 0 0 10px 3px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  --shadow-warm: 0 0 10px 3px rgba(0, 0, 0, 0.5);
  --shadow-orange: 0 0 10px 3px rgba(0, 0, 0, 0.5);
  --shadow-elegant: 0 10px 40px -10px rgba(0, 0, 0, 0.2);
  --gradient-dark: linear-gradient(130deg, #015FE7 40%, rgba(1, 95, 231, 0.32) 70%);
  --gradient-hero: linear-gradient(135deg, #015FE7 20%, rgba(0, 87, 210, 0.34) 50%);
  --gradient-blue: linear-gradient(140deg, rgba(1, 95, 231, 0.19) 2%, #015FE7 80%);
  --gradient-blue-soft: linear-gradient(145deg, #015FE7 10%, rgba(1, 95, 231, 0.32) 80%);
  --container: min(1400px, 100% - 2rem);
  --font-serif: 'Poppins', sans-serif;
  --font-sans: 'Inter', sans-serif;
  --font-accent: 'Bebas Neue', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

body.abc-nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  margin: 0;
}

p {
  margin: 0 0 1rem;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.abc-container {
  width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .abc-container {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .abc-container {
    padding-inline: 2rem;
  }
}

/* Buttons */
.abc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.abc-btn--teal {
  background: var(--teal);
  color: var(--ivory);
  border: 2px solid var(--teal);
  box-shadow: var(--shadow-brand);
}

.abc-btn--teal:hover {
  background: var(--teal-10);
  color: var(--teal);
}

.abc-btn--nav-cta {
  background: var(--teal);
  color: var(--charcoal);
  border: 2px solid var(--teal);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  box-shadow: none;
}

.abc-btn--nav-cta:hover {
  background: var(--teal);
  color: var(--charcoal);
  box-shadow: var(--shadow-brand);
}

.abc-btn--red {
  background: var(--warm-red);
  color: var(--ivory);
  box-shadow: var(--shadow-warm);
}

.abc-btn--red:hover {
  background: hsl(0, 69%, 40%);
}

.abc-btn--orange {
  background: var(--teal);
  color: var(--ivory);
  border: 2px solid var(--teal);
}

.abc-btn--orange:hover {
  background: var(--teal-10);
  color: var(--teal);
}

.abc-btn--ivory {
  background: var(--ivory);
  color: var(--brand-blue);
  box-shadow: var(--shadow-elegant);
}

.abc-btn--ivory:hover {
  background: #f0f0ec;
}

.abc-btn--green {
  background: var(--teal);
  color: var(--ivory);
  border: 2px solid var(--teal);
}

.abc-btn--green:hover {
  background: var(--teal-10);
  color: var(--teal);
}

.abc-btn--gold {
  background: var(--teal);
  color: var(--ivory);
}

.abc-btn--outline-white {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.abc-btn--outline-white:hover {
  background: var(--teal);
  border-color: transparent;
  box-shadow: var(--shadow-brand);
}

.abc-btn--outline-orange {
  background: transparent;
  border: 2px solid var(--brand-blue);
  color: var(--brand-blue);
}

.abc-btn--outline-orange:hover {
  background: var(--brand-blue);
  color: var(--ivory);
}

.abc-btn--outline-red {
  background: transparent;
  border: 2px solid var(--warm-red);
  color: var(--warm-red);
}

.abc-btn--outline-red:hover {
  background: var(--warm-red);
  color: var(--ivory);
}

.abc-btn--outline-ivory {
  background: transparent;
  border: 2px solid var(--ivory);
  color: var(--ivory);
}

.abc-btn--outline-ivory:hover {
  background: var(--teal);
  border-color: transparent;
  color: var(--ivory);
}

.abc-btn--lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.abc-btn--full {
  width: 100%;
  max-width: 100%;
}

.abc-btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.abc-eyebrow {
  font-family: var(--font-accent);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Navigation */
.abc-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}

.abc-nav--scrolled {
  background: rgba(251, 251, 249, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-elegant);
}

.abc-nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 5.5rem;
  padding-block: 0.75rem;
}

.abc-nav__logo {
  justify-self: start;
  grid-column: 1;
}

.abc-nav__logo img {
  height: 3.5rem;
  width: auto;
  display: block;
}

.abc-nav__list {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  grid-column: 2;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 992px) {
  .abc-nav__list {
    display: flex;
  }
}

.abc-nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  transition: color 0.3s;
  text-decoration: none;
}

.abc-nav__link:hover {
  color: var(--brand-blue);
}

.abc-nav__list .menu-item a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.3s;
}

.abc-nav__list .menu-item a:hover {
  color: var(--brand-blue);
}

.abc-nav__list .current-menu-item>a,
.abc-nav__list .current_page_item>a {
  color: var(--teal);
}

.abc-nav__cta {
  display: none;
  justify-self: end;
  grid-column: 3;
}

@media (min-width: 992px) {
  .abc-nav__cta {
    display: block;
  }
}

.abc-nav__toggle {
  display: block;
  justify-self: end;
  grid-column: 3;
  position: relative;
  z-index: 1;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
  padding: 0.25rem;
}

@media (min-width: 992px) {
  .abc-nav__toggle {
    display: none;
  }
}

.abc-nav__icon--close {
  display: none;
}

.abc-nav--menu-open .abc-nav__icon--menu {
  display: none;
}

.abc-nav--menu-open .abc-nav__icon--close {
  display: block;
}

/* Full-screen mobile drawer */
.abc-nav__backdrop {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.abc-nav__backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.abc-nav__backdrop[hidden] {
  display: block !important;
}

.abc-nav__drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1002;
  width: min(100%, 22rem);
  height: 100%;
  height: 100dvh;
  background: rgba(20, 22, 24, 0.98);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.35);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.abc-nav__drawer.is-open {
  transform: translateX(0);
}

.abc-nav__drawer[hidden] {
  display: block !important;
}

.abc-nav__drawer-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 5.5rem 1.25rem 2rem;
  width: 100%;
  max-width: none;
}

.abc-nav__mobile-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1;
}

.abc-nav__mobile-list li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(251, 251, 249, 0.08);
}

.abc-nav__mobile-list a {
  display: flex;
  align-items: center;
  min-height: 3.25rem;
  padding: 0.75rem 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ivory);
  text-decoration: none;
  transition: color 0.2s ease;
}

.abc-nav__mobile-list a:hover,
.abc-nav__mobile-list .current-menu-item>a,
.abc-nav__mobile-list .current_page_item>a {
  color: var(--teal);
}

.abc-nav__drawer .abc-btn--full {
  margin-top: auto;
  flex-shrink: 0;
}

.abc-nav--menu-open {
  z-index: 1003;
  background: rgba(20, 22, 24, 0.98);
  backdrop-filter: blur(12px);
}

.abc-nav--menu-open .abc-nav__toggle {
  color: var(--ivory);
}

@media (max-width: 991px) {
  .abc-nav__drawer {
    width: 100%;
    max-width: 100%;
  }

  .abc-nav__drawer-inner {
    padding-inline: 1.5rem;
  }
}

/* Nav on homepage hero — transparent with white links */
.home .abc-nav:not(.abc-nav--scrolled) .abc-nav__link,
.home .abc-nav:not(.abc-nav--scrolled) .abc-nav__list .menu-item a {
  color: var(--white);
}

.home .abc-nav:not(.abc-nav--scrolled) .abc-nav__link:hover,
.home .abc-nav:not(.abc-nav--scrolled) .abc-nav__list .menu-item a:hover {
  color: var(--teal);
}

.home .abc-nav:not(.abc-nav--scrolled) .abc-nav__list .current-menu-item>a,
.home .abc-nav:not(.abc-nav--scrolled) .abc-nav__list .current_page_item>a {
  color: var(--teal);
}

.home .abc-nav:not(.abc-nav--scrolled) .abc-nav__toggle {
  color: var(--white);
}

.home .abc-nav:not(.abc-nav--scrolled) .abc-nav__link::after {
  display: none;
}

body:not(.home) .abc-nav {
  background: rgba(251, 251, 249, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-elegant);
}

.abc-nav__mobile {
  display: none;
}

/* Hero */
.abc-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.abc-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.abc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #015FE7 20%, rgba(0, 87, 210, 0.34) 50%);
  opacity: 0.85;
}

.abc-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 7.5rem 1rem 4rem;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}

.abc-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 500;
  color: var(--ivory);
  margin: 0 auto 1.5rem;
  line-height: 1.15;
  max-width: 90%;
}

.abc-hero__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: rgba(251, 251, 249, 0.9);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.abc-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .abc-hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.abc-hero__actions .abc-btn {
  width: 100%;
  max-width: 280px;
}

@media (min-width: 640px) {
  .abc-hero__actions .abc-btn {
    width: auto;
    max-width: none;
  }
}

/* Page hero (inner pages) */
.abc-page-hero {
  padding: 8rem 0 5rem;
  text-align: center;
  background: var(--gradient-blue);
}

.abc-page-hero--orange {
  background: var(--gradient-blue-soft);
}

.abc-page-hero--dark {
  background: var(--gradient-blue-soft);
}

.abc-page-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}

.abc-page-hero__subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: hsl(60 20% 98% / 0.8);
  max-width: 48rem;
  margin: 0 auto;
}

.abc-page-hero__note {
  font-size: 0.875rem;
  color: hsl(60 20% 98% / 0.6);
  margin-top: 2rem;
}

/* About section */
.abc-about {
  padding: 6rem 0;
  background: var(--gradient-blue);
  position: relative;
  overflow: hidden;
}

.abc-about__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .abc-about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.abc-about__eyebrow {
  color: var(--ivory);
}

.abc-about__title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.abc-about__text {
  color: hsl(60 20% 98% / 0.9);
  font-size: 1.125rem;
}

.abc-about__text p {
  margin-bottom: 1rem;
}

.abc-about__credit {
  padding-top: 1.5rem;
  border-top: 1px solid hsl(60 20% 98% / 0.3);
  font-size: 0.875rem;
  color: hsl(60 20% 98% / 0.7);
}

.abc-about__image-wrap {
  position: relative;
}

.abc-about__image {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(251, 251, 249, 0.9);
  box-shadow: var(--shadow-card);
}

.abc-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.abc-about__image:hover img {
  transform: scale(1.05);
}

.abc-about__frame {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(251, 251, 249, 0.5);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* Products showcase */
.abc-products {
  padding: 6rem 0;
  background: var(--ivory);
  position: relative;
}

.abc-products__header {
  text-align: center;
  margin-bottom: 4rem;
}

.abc-products__header .abc-eyebrow {
  color: var(--brand-blue);
}

.abc-products__title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.abc-products__tagline {
  font-size: 1.125rem;
  color: var(--text-muted);
}

.abc-products__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .abc-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .abc-products__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.abc-showcase-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.abc-showcase-card__inner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all 0.5s;
}

.abc-showcase-card:hover .abc-showcase-card__inner {
  transform: translateY(-4px);
  box-shadow: var(--shadow-brand);
}

.abc-showcase-card__image {
  aspect-ratio: 4/5;
  background: rgba(1, 95, 231, 0.05);
}

.abc-showcase-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abc-showcase-card__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem;
  background: var(--brand-blue-78);
  text-align: left;
}

.abc-showcase-card__caption h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.abc-showcase-card__caption p {
  font-size: 1rem;
  color: var(--white);
  margin: 0;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.abc-products__cta {
  text-align: center;
}

.abc-products__note {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--brand-blue-30);
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Manifesto */
.abc-manifesto {
  padding: 8rem 0;
  position: relative;
  background: var(--flame-orange);
  background-size: cover;
  background-position: center;
}

.abc-manifesto__overlay {
  position: absolute;
  inset: 0;
  background: var(--brand-blue);
  opacity: 0.9;
}

.abc-manifesto__content {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.abc-manifesto__title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 4rem;
}

.abc-manifesto__lines {
  margin-bottom: 3rem;
}

.abc-manifesto__line {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 2.25rem);
  color: var(--ivory);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.abc-manifesto__divider {
  width: 8rem;
  height: 4px;
  margin: 4rem auto 0;
  background: linear-gradient(to right, transparent, var(--ivory), transparent);
}

/* Events */
.abc-events {
  padding: 6rem 0;
  background: var(--ivory);
  position: relative;
}

.abc-events__header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.abc-events__header .abc-eyebrow {
  color: var(--brand-blue);
}

.abc-events__title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.abc-events__subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
}

.abc-events__grid {
  display: grid;
  gap: 3rem;
  position: relative;
}

@media (min-width: 768px) {
  .abc-events__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.abc-event-card {
  background: var(--gradient-dark);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  border: none;
  box-shadow: var(--shadow-brand);
}

.abc-event-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.abc-event-card__icon {
  width: 4rem;
  height: 4rem;
  background: var(--teal-10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.abc-event-card__title {
  font-size: 1.5rem;
  color: var(--ivory);
}

.abc-event-card__badge {
  display: inline-block;
  background: var(--teal);
  color: var(--ivory);
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

.abc-event-card__desc {
  color: rgba(251, 251, 249, 0.8);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.abc-event-card__schedule {
  margin-bottom: 2rem;
}

.abc-event-card__schedule li {
  color: rgba(251, 251, 249, 0.7);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.abc-event-card__schedule li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--ivory);
}

/* Gallery */
.abc-gallery {
  padding: 6rem 0;
  background: var(--gradient-blue-soft);
}

.abc-gallery__header .abc-eyebrow {
  color: rgba(251, 251, 249, 0.9);
}

.abc-gallery__title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}

.abc-gallery__tagline {
  font-size: 1.125rem;
  color: rgba(251, 251, 249, 0.9);
  margin-bottom: 1rem;
}

.abc-gallery__desc {
  font-size: 1rem;
  color: rgba(251, 251, 249, 0.8);
  max-width: 48rem;
  margin: 0 auto;
}

.abc-gallery__grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .abc-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .abc-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.abc-gallery-card {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.5s, transform 0.5s;
}

.abc-gallery-card:hover {
  box-shadow: var(--shadow-brand);
  transform: translateY(-4px);
}

.abc-gallery-card__image {
  aspect-ratio: 3/4;
}

.abc-gallery-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.abc-gallery-card:hover .abc-gallery-card__image img {
  transform: scale(1.05);
}

.abc-gallery-card__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem;
  background: var(--brand-blue-78);
}

.abc-gallery-card__caption h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(251, 251, 249, 0.9);
  margin: 0 0 0.25rem;
}

.abc-gallery-card__caption p {
  font-size: 0.9375rem;
  color: rgba(251, 251, 249, 0.85);
  margin: 0;
}

.abc-gallery__header {
  text-align: center;
  margin-bottom: 4rem;
}

.abc-gallery__cta {
  text-align: center;
}

/* Donate section */
.abc-donate {
  padding: 6rem 0;
  background-image: repeating-linear-gradient(45deg, #1b1b1b, #444444 100px);
  position: relative;
}

.abc-donate__header {
  text-align: center;
  margin-bottom: 4rem;
}

.abc-donate__header .abc-eyebrow {
  color: rgba(251, 251, 249, 0.9);
}

.abc-donate__title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}

.abc-donate__subtitle {
  font-size: 1.125rem;
  color: rgba(251, 251, 249, 0.8);
  max-width: 42rem;
  margin: 0 auto;
}

.abc-donate__grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .abc-donate__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.abc-donate-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-brand);
}

.abc-donate-card--light {
  background: var(--ivory);
}

.abc-donate-card--dark {
  background: var(--gradient-dark);
}

.abc-donate-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.abc-donate-card--light .abc-donate-card__title {
  color: var(--charcoal);
}

.abc-donate-card--dark .abc-donate-card__title {
  color: var(--ivory);
}

.abc-donate-card__desc {
  margin-bottom: 1.5rem;
}

.abc-donate-card--light .abc-donate-card__desc {
  color: hsl(0 0% 17% / 0.7);
}

.abc-donate-card--dark .abc-donate-card__desc {
  color: hsl(60 20% 98% / 0.8);
}

.abc-donate-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.abc-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--brand-blue-30);
  font-family: var(--font-sans);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.abc-input--dark {
  background: rgba(251, 251, 249, 0.1);
  border-color: var(--brand-blue-52);
  color: var(--ivory);
}

.abc-input--dark::placeholder {
  color: rgba(251, 251, 249, 0.4);
}

.abc-donate-note {
  font-size: 0.75rem;
  text-align: center;
  color: var(--text-muted);
}

.abc-donate-card__footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--brand-blue-52);
  font-size: 0.875rem;
  color: rgba(251, 251, 249, 0.6);
}

/* Footer */
.abc-footer {
  background-color: rgba(30, 31, 27, 0.78);
  background-image: linear-gradient(135deg, #015FE7 20%, rgba(1, 95, 231, 0.19) 80%);
  padding: 3rem 0 1.5rem;
  position: relative;
  color: rgba(251, 251, 249, 0.7);
}

.abc-footer__grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 0;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .abc-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
}

.abc-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.abc-footer__logo {
  display: inline-block;
  width: fit-content;
}

.abc-footer__logo img {
  width: min(180px, 30vw);
  height: auto;
  display: block;
}

.abc-footer__brand-text p {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(251, 251, 249, 0.7);
  line-height: 1.6;
  margin: 0 0 0.75rem;
}

.abc-footer__brand-text p:last-child {
  margin-bottom: 0;
}

.abc-footer__col h4 {
  font-family: var(--font-accent);
  color: rgba(251, 251, 249, 0.95);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

@media (min-width: 768px) {
  .abc-footer__col {
    padding-top: 0.625rem;
    padding-left: 2.5rem;
  }
}

.abc-footer__col li {
  margin-bottom: 0.9375rem;
}

.abc-footer__col li:last-child {
  margin-bottom: 0;
}

.abc-footer__col a {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(251, 251, 249, 0.7);
  transition: color 0.3s;
}

.abc-footer__col a:hover {
  color: var(--teal);
}

.abc-footer__social {
  border-top: 1px solid rgba(251, 251, 249, 0.7);
  border-bottom: 1px solid rgba(251, 251, 249, 0.7);
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.abc-footer__social a {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(251, 251, 249, 0.7);
  transition: color 0.3s;
}

.abc-footer__social a:hover {
  color: var(--teal);
}

.abc-footer__bottom {
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(251, 251, 249, 0.7);
  text-align: center;
}

.abc-footer__bottom p {
  margin: 0;
}

@media (min-width: 768px) {
  .abc-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 2rem;
  }

  .abc-footer__bottom p:last-child {
    text-align: right;
    flex-shrink: 0;
  }
}

.abc-chat-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--teal);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-brand);
  z-index: 999;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}

.abc-chat-fab:hover {
  background: #1a9a93;
}

/* Oils page */
.abc-section__title--spaced {
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .abc-section__title--spaced {
    margin-bottom: 3rem;
  }
}

.abc-section--center {
  text-align: center;
}

.abc-section--center .abc-section__title {
  margin-bottom: 1.5rem;
}

.abc-mission-text {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: hsl(60 20% 98% / 0.9);
  margin-bottom: 2rem;
  max-width: 40rem;
  margin-inline: auto;
}

.abc-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--charcoal);
}

.abc-oils-grid {
  padding: 2rem 0 3rem;
  background: var(--ivory);
}

.abc-oils-grid__inner {
  display: grid;
  gap: 1.5rem;
  width: 100%;
  max-width: none;
}

@media (min-width: 640px) {
  .abc-oils-grid__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .abc-oils-grid__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

.abc-oil-card {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--brand-blue-52);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s;
}

.abc-oil-card:hover {
  box-shadow: var(--shadow-brand);
}

.abc-oil-card__image {
  aspect-ratio: 1;
  overflow: hidden;
}

.abc-oil-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.abc-oil-card:hover .abc-oil-card__image img {
  transform: scale(1.05);
}

.abc-oil-card__body {
  padding: 1.5rem;
}

.abc-oil-card__title {
  font-size: 1.5rem;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.abc-oil-card__desc {
  color: hsl(60 20% 98% / 0.7);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.abc-oil-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.abc-oil-card__price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal);
}

.abc-oil-card__price .woocommerce-Price-amount {
  color: var(--teal);
}

.abc-info-section {
  padding: 5rem 0;
  text-align: center;
  background: var(--gradient-blue);
}

.abc-info-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ivory);
  margin-bottom: 1.5rem;
}

.abc-info-section p {
  font-size: 1.125rem;
  color: hsl(60 20% 98% / 0.9);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* About page sections */
.abc-section {
  padding: 5rem 0;
}

.abc-section--ivory {
  background: var(--ivory);
}

.abc-section--gradient {
  background: var(--gradient-blue);
}

.abc-section__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--brand-blue);
  margin-bottom: 2rem;
}

.abc-section--gradient .abc-section__title {
  color: var(--ivory);
  text-align: center;
}

.abc-section__content {
  max-width: 56rem;
  margin: 0 auto;
}

.abc-section__content p {
  font-size: 1.125rem;
  color: hsl(0 0% 17% / 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.abc-values-grid {
  display: grid;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .abc-values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.abc-value-card h3 {
  font-size: 1.5rem;
  color: var(--brand-blue);
  margin-bottom: 1rem;
}

.abc-value-card p {
  color: hsl(0 0% 17% / 0.8);
}

/* Art auctions */
.abc-auctions-grid {
  padding: 0 0 3rem;
  background: var(--ivory);
}

.abc-auctions-grid__inner,
.abc-oils-grid__inner {
  display: grid;
  gap: 1.5rem;
  width: 100%;
  max-width: none;
}

@media (min-width: 640px) {

  .abc-auctions-grid__inner,
  .abc-oils-grid__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {

  .abc-auctions-grid__inner,
  .abc-oils-grid__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

.abc-section-intro {
  text-align: center;
  padding-top: 2rem;
  margin-bottom: 2rem;
}

.abc-section-intro__text {
  color: var(--text-muted);
  margin: 0;
  font-size: 1.0625rem;
}

.abc-section__title--center {
  text-align: center;
}

.abc-auction-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--brand-blue-30);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s;
}

.abc-auction-card:hover {
  box-shadow: var(--shadow-brand);
}

.abc-auction-card__image {
  aspect-ratio: 1;
  overflow: hidden;
}

.abc-auction-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.abc-auction-card:hover .abc-auction-card__image img {
  transform: scale(1.05);
}

.abc-auction-card__body {
  padding: 1.5rem;
}

.abc-auction-card__title {
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.abc-auction-card__artist {
  color: hsl(0 0% 17% / 0.7);
  margin-bottom: 0.25rem;
}

.abc-auction-card__medium {
  font-size: 0.875rem;
  color: hsl(0 0% 17% / 0.6);
  margin-bottom: 1rem;
}

.abc-auction-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.abc-auction-card__price {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-blue);
}

.abc-steps-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
  text-align: center;
}

@media (min-width: 768px) {
  .abc-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.abc-step__num {
  width: 4rem;
  height: 4rem;
  background: var(--teal-10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
}

.abc-step h3 {
  font-size: 1.25rem;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.abc-step p {
  color: hsl(60 20% 98% / 0.7);
  font-size: 0.95rem;
}

/* Events page */
.abc-upcoming {
  padding: 5rem 0;
}

.abc-upcoming__header {
  text-align: center;
  margin-bottom: 3rem;
}

.abc-upcoming__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.abc-upcoming__subtitle {
  font-size: 1.125rem;
  color: hsl(0 0% 17% / 0.7);
}

.abc-upcoming-list {
  max-width: 56rem;
  margin: 0 auto;
}

.abc-upcoming-item {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-elegant);
  margin-bottom: 2rem;
  transition: box-shadow 0.3s;
}

.abc-upcoming-item:hover {
  box-shadow: 0 10px 40px -10px hsl(42 45% 59% / 0.3);
}

.abc-upcoming-item h3 {
  font-size: 1.75rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.abc-upcoming-meta {
  margin-bottom: 1.5rem;
}

.abc-upcoming-meta li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: hsl(0 0% 17% / 0.7);
  margin-bottom: 0.75rem;
}

.abc-upcoming-meta .icon {
  color: var(--teal);
}

/* Donate page impact */
.abc-impact-grid {
  display: grid;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .abc-impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.abc-impact-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 2px solid var(--brand-blue-30);
  box-shadow: var(--shadow-card);
}

.abc-impact-card__icon {
  width: 4rem;
  height: 4rem;
  background: var(--teal-10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.abc-impact-card h3 {
  font-size: 1.5rem;
  color: var(--brand-blue);
  margin-bottom: 0.75rem;
}

.abc-impact-card p {
  color: hsl(0 0% 17% / 0.7);
  margin: 0;
}

.abc-testimonials {
  padding: 5rem 0;
}

.abc-testimonials__title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 3rem;
}

.abc-testimonial {
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
  max-width: 56rem;
  margin-inline: auto;
}

.abc-testimonial p {
  font-size: 1.125rem;
  color: hsl(60 20% 98% / 0.8);
  font-style: italic;
  margin-bottom: 1rem;
}

.abc-testimonial cite {
  font-style: normal;
  color: var(--teal);
  font-weight: 600;
}

/* 404 */
.abc-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: hsl(0 0% 96%);
}

.abc-404 h1 {
  font-size: 4rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.abc-404 p {
  color: hsl(0 0% 17% / 0.7);
  margin-bottom: 2rem;
}

/* Page wrappers */
.abc-page--about {
  background: var(--gradient-blue);
  min-height: 100vh;
}

.abc-page--oils {
  background: var(--ivory);
  min-height: 100vh;
}

.abc-page--auctions {
  background: var(--ivory);
  min-height: 100vh;
}

.abc-page--events {
  background: var(--ivory);
  min-height: 100vh;
}

.abc-page--donate {
  background: var(--gradient-blue-soft);
  min-height: 100vh;
}

/* Toast for add to cart */
.abc-toast {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-elegant);
  z-index: 9999;
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.3s;
  pointer-events: none;
}

.abc-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.abc-toast a {
  color: var(--teal);
  text-decoration: underline;
  margin-left: 0.5rem;
}

/* WooCommerce overrides */
.abc-page-wrap--woo {
  padding: 6rem 0 3rem;
  background: var(--ivory);
}

.woocommerce .abc-container {
  padding-block: 0;
  max-width: 100%;
}

.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (min-width: 1024px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
}

.woocommerce ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
}

/* ==========================================================================
   Responsive — mobile first polish
   ========================================================================== */

/* Small phones */
@media (max-width: 479px) {
  .abc-container {
    padding-inline: 1rem;
  }

  .abc-nav__inner {
    min-height: 4.5rem;
    padding-block: 0.5rem;
    gap: 0.5rem;
  }

  .abc-nav__logo img {
    height: 2.75rem;
  }

  .abc-hero__content {
    padding: 6.5rem 0.75rem 3rem;
  }

  .abc-hero__title {
    max-width: 100%;
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .abc-hero__subtitle {
    font-size: 0.9375rem;
    margin-bottom: 2rem;
  }

  .abc-hero__overlay {
    opacity: 0.9;
  }

  .abc-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
  }

  .abc-about,
  .abc-products,
  .abc-events,
  .abc-gallery,
  .abc-donate,
  .abc-manifesto {
    padding: 3.5rem 0;
  }

  .abc-manifesto {
    padding: 4rem 0;
  }

  .abc-products__header,
  .abc-events__header,
  .abc-gallery__header,
  .abc-donate__header {
    margin-bottom: 2.5rem;
  }

  .abc-about__frame {
    display: none;
  }

  .abc-about__title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .abc-about__text {
    font-size: 1rem;
  }

  .abc-event-card {
    padding: 1.5rem;
  }

  .abc-event-card__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .abc-event-card__title {
    font-size: 1.25rem;
  }

  .abc-donate-card {
    padding: 1.5rem;
  }

  .abc-donate-amounts {
    grid-template-columns: 1fr;
  }

  .abc-donate-amounts .abc-btn {
    width: 100%;
  }

  .abc-showcase-card__caption,
  .abc-gallery-card__caption {
    padding: 1rem;
  }

  .abc-showcase-card__caption h4,
  .abc-gallery-card__caption h4 {
    font-size: 1.0625rem;
  }

  .abc-page-hero {
    padding: 6.5rem 0 3.5rem;
  }

  .abc-section,
  .abc-oils-grid,
  .abc-auctions-grid,
  .abc-upcoming,
  .abc-testimonials,
  .abc-impact-grid {
    padding-block: 3rem;
  }

  .abc-footer {
    padding: 2.5rem 0 1.25rem;
  }

  .abc-footer__grid {
    gap: 2rem;
    padding-bottom: 1.5rem;
  }

  .abc-footer__col h4 {
    font-size: 1.25rem;
  }

  .abc-footer__col {
    padding-left: 0 !important;
  }

  .abc-footer__social {
    gap: 1rem;
    padding: 1rem 0;
  }

  .abc-footer__social a {
    font-size: 0.875rem;
  }

  .abc-footer__bottom {
    font-size: 0.75rem;
  }

  .abc-chat-fab {
    width: 3.25rem;
    height: 3.25rem;
    bottom: 1rem;
    right: 1rem;
  }

  .abc-toast {
    left: 1rem;
    right: 1rem;
    bottom: 5rem;
  }

  .abc-oil-card__footer,
  .abc-auction-card__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .abc-oil-card__footer .abc-btn,
  .abc-auction-card__footer .abc-btn {
    width: 100%;
  }

  .abc-upcoming-item {
    padding: 1.5rem;
  }

  .abc-upcoming-item h3 {
    font-size: 1.375rem;
  }
}

/* Phones & small tablets */
@media (max-width: 767px) {
  .abc-nav__list {
    gap: 1rem;
  }

  .abc-products__grid {
    grid-template-columns: 1fr;
    max-width: 22rem;
    margin-inline: auto;
  }

  .abc-gallery__grid {
    grid-template-columns: 1fr;
    max-width: 20rem;
    margin-inline: auto;
  }

  .abc-footer__grid {
    grid-template-columns: 1fr;
  }

  .abc-footer__brand {
    text-align: center;
    align-items: center;
  }

  .abc-footer__logo {
    margin-inline: auto;
  }

  .abc-footer__col {
    text-align: center;
    padding-left: 0 !important;
  }

  .abc-footer__col ul {
    padding: 0;
  }

  .abc-manifesto__line {
    font-size: clamp(1.0625rem, 4.5vw, 1.375rem);
    margin-bottom: 1.25rem;
  }

  .abc-manifesto__title {
    margin-bottom: 2.5rem;
  }

  .abc-values-grid {
    grid-template-columns: 1fr;
  }

  .abc-steps-grid {
    grid-template-columns: 1fr;
  }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 991px) {
  .abc-nav__list {
    gap: 1.25rem;
  }

  .abc-nav__list .menu-item a,
  .abc-nav__link {
    font-size: 0.8125rem;
  }

  .abc-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .abc-footer__brand {
    grid-column: 1 / -1;
  }

  .abc-footer__col {
    padding-left: 0 !important;
  }

  .abc-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .abc-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large tablets / small laptops — tighten nav if needed */
@media (min-width: 992px) and (max-width: 1199px) {
  .abc-nav__list {
    gap: 1.25rem;
  }

  .abc-nav__list .menu-item a {
    font-size: 0.8125rem;
  }

  .abc-btn--nav-cta {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }
}

/* Touch devices — disable hover transforms that cause layout shift */
@media (hover: none) {

  .abc-showcase-card:hover .abc-showcase-card__inner,
  .abc-gallery-card:hover {
    transform: none;
  }

  .abc-about__image:hover img,
  .abc-gallery-card:hover .abc-gallery-card__image img,
  .abc-oil-card:hover .abc-oil-card__image img,
  .abc-auction-card:hover .abc-auction-card__image img {
    transform: none;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}