/* =========================================
   GREG PALUMBO ART — Main Stylesheet
   Mobile-first: base = mobile, min-width per scalare
   ========================================= */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #020202;
  --bg-2: #0d0d0d;
  --bg-3: #191919;
  --text: #cfcfcf;
  --text-muted: #888;
  --white: #ffffff;
  --border: #2a2a2a;
  --accent: #ffffff;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Heebo', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  overscroll-behavior-x: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.site-wrapper {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
  touch-action: pan-y;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

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

ul { list-style: none; }

img {
  max-width: 100%;
  display: block;
}

section, footer, header, main, article {
  max-width: 100%;
  overflow-x: hidden;
}

/* --- Container --- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 480px) {
  .container { padding: 0 1.75rem; }
}

@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--white);
  font-weight: 700;
  line-height: 1.15;
}

h1 { font-size: clamp(1.9rem, 6vw, 5rem); }
h2 { font-size: clamp(1.55rem, 4vw, 4rem); }
h3 { font-size: clamp(1.25rem, 3vw, 2.625rem); }
h4 { font-size: clamp(1.1rem, 2vw, 2rem); }
h5 { font-size: 1.05rem; }

@media (min-width: 768px) {
  h5 { font-size: 1.25rem; }
}

.centered { text-align: center; }

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--bg);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

@media (min-width: 768px) {
  .btn-primary {
    font-size: 0.9rem;
    padding: 0.85rem 2rem;
  }
}

.btn-primary:hover {
  background: transparent;
  color: var(--white);
}

.btn-primary.small {
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
}

.btn-contact {
  border: 1px solid var(--white);
  padding: 0.6rem 1.25rem;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
}

@media (min-width: 768px) {
  .btn-contact {
    padding: 0.65rem 1.5rem;
    font-size: 0.95rem;
  }
}

.btn-contact:hover {
  background: var(--white);
  color: var(--bg) !important;
}

.btn-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--white);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.btn-link:hover { opacity: 0.65; }

/* =========================================
   HEADER — mobile first
   Mobile:  3-col grid → spazio | logo centrato | hamburger
   Desktop: flex → logo sinistra | nav destra
   ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: rgba(2, 2, 2, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.site-header .container {
  max-width: 1240px;
  padding: 0 1.25rem;
}

@media (min-width: 480px) {
  .site-header .container { padding: 0 1.75rem; }
}

@media (min-width: 768px) {
  .site-header .container { padding: 0 2rem; }
}

/* Mobile: flex + logo centrato con position absolute */
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* hamburger a destra */
  height: 64px;
}

@media (min-width: 480px) {
  .header-inner { height: 72px; }
}

/* Desktop: logo a sinistra, nav a destra */
@media (min-width: 768px) {
  .header-inner {
    justify-content: space-between;
    height: 90px;
  }
}

/* Logo base */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Mobile: logo assoluto al centro esatto dell'header */
.header-inner .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Desktop: torna nel flusso, a sinistra */
@media (min-width: 768px) {
  .header-inner .logo {
    position: static;
    transform: none;
    flex-shrink: 1;
  }
}

.logo img {
  height: 34px;
  width: auto;
  max-width: calc(100vw - 100px); /* spazio per hamburger su entrambi i lati */
  display: block;
}

@media (min-width: 480px) {
  .logo img { height: 40px; }
}

@media (min-width: 768px) {
  .logo img { height: 55px; }
}

.logo-text {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: #E81818;
  letter-spacing: 0.02em;
  line-height: 1;
}

/* Mobile nav — hidden, diventa fixed overlay quando .open */
.main-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 1.25rem;
  z-index: 99;
}

@media (min-width: 480px) {
  .main-nav { top: 72px; }
}

.main-nav.open { display: block; }

.main-nav ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

/* Desktop nav — visibile, inline */
@media (min-width: 768px) {
  .main-nav {
    display: block;
    position: static;
    top: auto;
    background: none;
    border: none;
    padding: 0;
  }

  .main-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
  }
}

.main-nav a {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}

.main-nav a:hover { color: var(--white); }

/* Link attivo */
.main-nav a.active { color: var(--white); }

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--white);
}

.main-nav .btn-contact.active::after { display: none; }

/* Hamburger — visibile solo su mobile */
.hamburger {
  display: flex;
  grid-column: 3;
  justify-self: end;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

@media (min-width: 768px) {
  .hamburger { display: none; }
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   HERO CAROUSEL — mobile first
   ========================================= */
.hero-carousel {
  position: relative;
  margin-top: 64px;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (min-width: 480px) {
  .hero-carousel { margin-top: 72px; }
}

@media (min-width: 768px) {
  .hero-carousel { margin-top: 90px; }
}

.carousel-slide {
  display: none;
  flex-direction: column;
}

.carousel-slide.active { display: flex; }

.slide-title-bar {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 480px) {
  .slide-title-bar { padding: 1.25rem 1.75rem 1rem; }
}

@media (min-width: 768px) {
  .slide-title-bar { padding: 1.25rem 2rem 1rem; }
}

.slide-title-bar h5 {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 1.5px #6EC1E4;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.5s ease forwards;
}

.slide-image {
  width: 100%;
  aspect-ratio: 16/8;
  overflow: hidden;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slide-subtitle {
  padding: 0.75rem 1.25rem 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeUp 0.5s ease 0.15s forwards;
}

@media (min-width: 480px) {
  .slide-subtitle { padding: 0.9rem 1.75rem 0; font-size: 0.9rem; }
}

@media (min-width: 768px) {
  .slide-subtitle { padding: 1rem 2rem 0; font-size: 0.95rem; }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.carousel-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border-top: 1px solid var(--border);
  position: relative;
}

@media (min-width: 480px) {
  .carousel-bottom { padding: 1.1rem 1.75rem; }
}

@media (min-width: 768px) {
  .carousel-bottom { padding: 1.25rem 2rem; }
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s;
}

.dot.active { background: var(--white); }

.carousel-btn-next {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 24px;
  position: absolute;
  right: 1.25rem;
  transition: opacity 0.2s;
}

@media (min-width: 480px) {
  .carousel-btn-next { width: 44px; height: 30px; right: 1.75rem; }
}

@media (min-width: 768px) {
  .carousel-btn-next { width: 50px; height: 34px; right: 2rem; }
}

.carousel-btn-next svg {
  width: 100%;
  height: 100%;
  fill: var(--white);
}

.carousel-btn-next:hover { opacity: 0.5; }

/* =========================================
   HERO TEXT
   ========================================= */
.hero-text {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.hero-text h2 { margin-bottom: 1rem; max-width: 700px; }

.hero-text p {
  font-size: 1rem;
  max-width: 600px;
  color: var(--text);
}

@media (min-width: 768px) {
  .hero-text { padding: 4.5rem 0; }
  .hero-text h2 { margin-bottom: 1.5rem; }
  .hero-text p { font-size: 1.1rem; }
}

@media (min-width: 1024px) {
  .hero-text { padding: 6rem 0; }
  .hero-text p { font-size: 1.15rem; }
}

/* =========================================
   SECTION HEADER
   ========================================= */
.section-header { margin-bottom: 1.75rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p {
  max-width: 660px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .section-header { margin-bottom: 3rem; }
  .section-header p { font-size: 1.05rem; }
}

@media (min-width: 1024px) {
  .section-header { margin-bottom: 3.5rem; }
}

.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* =========================================
   EXHIBITIONS — mobile: 1 col
   ========================================= */
.exhibitions {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.exhibitions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.exhibition-card {
  background: var(--bg-2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.exhibition-img {
  height: 210px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-3);
  transition: transform 0.4s;
}

.exhibition-card:hover .exhibition-img { transform: scale(1.03); }

.exhibition-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ex-location {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.exhibition-body h3 { font-size: 1.2rem; }

.exhibition-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  flex: 1;
}

.exhibition-body blockquote {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-left: 2px solid var(--border);
  padding-left: 1rem;
}

@media (min-width: 768px) {
  .exhibitions { padding: 4.5rem 0; }
  .exhibitions-grid { grid-template-columns: repeat(2, 1fr); }
  .exhibition-img { height: 260px; }
  .exhibition-body { padding: 1.75rem; }
  .exhibition-body h3 { font-size: 1.35rem; }
  .exhibition-body p { font-size: 0.95rem; }
}

@media (min-width: 1024px) {
  .exhibitions { padding: 6rem 0; }
  .exhibition-img { height: 300px; }
  .exhibition-body { padding: 2rem; }
  .exhibition-body h3 { font-size: 1.4rem; }
}

/* =========================================
   LATEST WORKS — mobile: 1 col
   ========================================= */
.latest-works {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.works-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 200px;
  gap: 4px;
}

.work-item {
  background-size: cover;
  background-position: center;
  background-color: var(--bg-3);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Mobile: annulla span multipli */
.work-item.tall { grid-row: span 1; }
.work-item.wide { grid-column: span 1; }

.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2,2,2,0.5);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.work-item:hover .work-overlay { opacity: 1; }

.work-overlay span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (min-width: 600px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 230px;
  }
  .work-item.wide { grid-column: span 2; }
}

@media (min-width: 768px) {
  .latest-works { padding: 4.5rem 0; }
  .works-grid { grid-auto-rows: 255px; }
  .work-overlay span { font-size: 1rem; }
  .work-overlay { padding: 1.5rem; }
}

@media (min-width: 1024px) {
  .latest-works { padding: 6rem 0; }
  .works-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
  }
  .work-item.tall { grid-row: span 2; }
}

/* =========================================
   ICONIC ART / EVENTS — mobile: 1 col
   ========================================= */
.iconic-art {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.event-card {
  background: var(--bg-3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.event-img {
  height: 190px;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
}

.event-body {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.event-tag {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.event-body h4 { font-size: 1rem; line-height: 1.3; }

.event-date { font-size: 0.85rem; color: var(--text-muted); }

.event-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
}

.discount { font-size: 0.8rem; color: #6aaa6a; }

@media (min-width: 600px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 768px) {
  .iconic-art { padding: 4.5rem 0; }
  .event-img { height: 215px; }
  .event-body { padding: 1.35rem; gap: 0.6rem; }
  .event-body h4 { font-size: 1.05rem; }
}

@media (min-width: 1024px) {
  .iconic-art { padding: 6rem 0; }
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .event-img { height: 240px; }
  .event-body { padding: 1.5rem; }
  .event-body h4 { font-size: 1.1rem; }
}

/* =========================================
   UPCOMING EVENTS — mobile: stacked
   ========================================= */
.upcoming-events {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.upcoming-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

/* Mobile: immagine sopra, info sotto */
.upcoming-item {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  transition: background 0.2s;
}

.upcoming-item:last-child { border-bottom: 1px solid var(--border); }
.upcoming-item:hover { background: var(--bg-2); }

.upcoming-img {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-3);
  flex-shrink: 0;
}

.upcoming-info {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}

.upcoming-info h4 { font-size: 1rem; }

/* Tablet: immagine a sinistra */
@media (min-width: 600px) {
  .upcoming-item { flex-direction: row; align-items: stretch; }
  .upcoming-img { width: 100px; height: auto; }
  .upcoming-info { padding: 1.25rem 1.75rem; gap: 0.6rem; }
  .upcoming-info h4 { font-size: 1.1rem; }
}

@media (min-width: 768px) {
  .upcoming-events { padding: 4.5rem 0; }
  .upcoming-img { width: 130px; }
  .upcoming-info { padding: 1.5rem 2rem; }
  .upcoming-info h4 { font-size: 1.2rem; }
}

@media (min-width: 1024px) {
  .upcoming-events { padding: 6rem 0; }
  .upcoming-img { width: 200px; }
  .upcoming-info { padding: 2rem 2.5rem; }
  .upcoming-info h4 { font-size: 1.3rem; }
}

/* =========================================
   CONTACT — mobile: stacked
   ========================================= */
.contact {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-text h2 { margin-bottom: 0.9rem; }

.contact-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.contact-email a {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--white); }

.contact-form textarea { resize: vertical; }

@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

@media (min-width: 768px) {
  .contact { padding: 4.5rem 0; }
  .contact-inner {
    grid-template-columns: 1fr 1.6fr;
    gap: 3.5rem;
  }
  .contact-text h2 { margin-bottom: 1.5rem; }
  .contact-form { gap: 1rem; }
  .contact-form input,
  .contact-form textarea { padding: 0.85rem 1.1rem; }
}

@media (min-width: 1024px) {
  .contact { padding: 6rem 0; }
  .contact-inner { gap: 5rem; }
}

/* =========================================
   FOOTER — mobile: stacked
   ========================================= */
.site-footer {
  background: var(--bg-2);
  padding-top: 2.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand .logo {
  margin-left: 0 !important;
  margin-bottom: 1.1rem;
  max-width: 260px;
  display: flex;
  justify-content: flex-start;
  overflow: visible;
}

.footer-brand .logo img {
  object-position: left center;
  max-width: 100%;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  max-width: 400px;
  line-height: 1.8;
}

.footer-nav h5 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-nav-cols {
  display: flex;
  gap: 2.5rem;
}

.footer-nav-cols ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--white); }

/* Footer bottom — stacked su mobile */
.footer-bottom { padding: 1.1rem 0; }

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-links { display: flex; gap: 1.25rem; }

.footer-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
}

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

@media (min-width: 768px) {
  .site-footer { padding-top: 4rem; }

  .footer-inner {
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
  }

  .footer-brand .logo {
    max-width: 360px;
    margin-bottom: 1.25rem;
  }

  .footer-brand p { font-size: 0.9rem; }

  .footer-nav h5 { font-size: 0.8rem; margin-bottom: 1.25rem; }

  .footer-nav-cols { gap: 3rem; }

  .footer-nav a { font-size: 0.9rem; }

  .footer-bottom { padding: 1.25rem 0; }

  .footer-bottom .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 0;
  }

  .footer-bottom p { font-size: 0.8rem; }

  .footer-links { gap: 1.5rem; }

  .footer-links a { font-size: 0.8rem; }
}
