/* ============================================
   Pickle 4 Paws — Global Stylesheet
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  /* Brand accent colors */
  --lime: #92fe3c;
  --lime-dark: #7ae02e;
  --blue: #0aadfb;
  --blue-dark: #0891d1;
  --white: #ffffff;
  /* Neutral palette (no blue tint) */
  --forest: #2C351C;
  --dark: #1c1c1e;
  --dark-mid: #2a2a2c;
  --text: #2c2c2e;
  --text-light: #5a5a5e;
  --neutral-100: #f8f8f8;
  --neutral-200: #eeeeee;
  --neutral-300: #d0d0d0;
  --font-body: 'DM Sans', sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 16px rgba(0, 0, 0, .06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, .10);
  --transition: .25s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ---------- Utility ---------- */
.container { width: 90%; max-width: var(--max-width); margin: 0 auto; }
.section { padding: 80px 0; }
.section--sm { padding: 56px 0; }
.text-center { text-align: center; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: .04em;
  line-height: 1.15;
  color: var(--dark);
  text-transform: uppercase;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 24px; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); margin-bottom: 16px; }
p + p { margin-top: 16px; }
.subheadline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: .85;
  line-height: 1.6;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.btn--primary {
  background: var(--lime);
  color: var(--dark);
  border-color: var(--lime);
  font-weight: 700;
}
.btn--primary:hover {
  background: var(--lime-dark);
  border-color: var(--lime-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(146, 254, 60, .35);
}
.btn--disabled {
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
}
.btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--secondary:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, .25);
}
.btn--outline-green {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn--outline-green:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn--dark:hover {
  background: var(--dark-mid);
  border-color: var(--dark-mid);
  transform: translateY(-2px);
}
.btn--mission {
  background: var(--lime);
  color: var(--dark);
  border-color: var(--lime);
  font-weight: 700;
}
.btn--mission:hover {
  background: var(--lime-dark);
  border-color: var(--lime-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(146, 254, 60, .35);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: var(--dark);
  z-index: 1000;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: .05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__logo-img {
  height: 44px;
  width: auto;
  border-radius: 6px;
}
.nav__logo span { color: var(--lime); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lime);
  transition: var(--transition);
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
}
.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}
.nav__cta {
  margin-left: 12px;
}
.nav__cta .btn {
  padding: 10px 24px;
  font-size: .85rem;
}
.nav__cta .btn--primary {
  color: var(--dark);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.nav__hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile drawer */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  background: var(--dark);
  padding: 24px 0 32px;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  z-index: 999;
}
.nav__mobile.open { display: block; animation: slideDown .3s ease; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
.nav__mobile a {
  display: block;
  padding: 12px 5%;
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav__mobile a:hover,
.nav__mobile a.active {
  color: var(--white);
  background: rgba(255,255,255,.07);
}
.nav__mobile .btn {
  margin: 16px 5% 0;
  width: 90%;
  text-align: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 40px) 20px 60px;
  overflow: hidden;
  background: var(--forest);
}
.hero--short {
  min-height: 50vh;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--neutral-300);
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,28,30,.88) 0%, rgba(28,28,30,.72) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero__content h1 {
  color: var(--white);
  margin-bottom: 16px;
}
.hero__content .subheadline {
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
}
.hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Split Hero ---------- */
.hero--split {
  min-height: auto;
  padding: calc(var(--nav-height) + 60px) 0 60px;
  text-align: left;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.hero-split__text {
  position: relative;
  z-index: 2;
}
.hero-split__text h1 {
  color: var(--white);
  margin-bottom: 16px;
}
.hero-split__accent {
  color: var(--lime);
}
.hero-split__text .subheadline {
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
  max-width: 460px;
}

/* Mosaic grid — court + carousel */
.hero-split__mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
  height: 420px;
}
.mosaic__large {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.mosaic__large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Carousel panel */
.mosaic__carousel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
}
.carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .8s ease;
}
.carousel__slide.active {
  opacity: 1;
}
.carousel__dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: var(--transition);
}
.carousel__dot.active {
  background: var(--lime);
  transform: scale(1.2);
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--neutral-200);
  padding: 28px 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.stats-bar__item {
  color: var(--dark);
  font-weight: 600;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.stats-bar__icon {
  font-size: 1.3rem;
}

/* ---------- Two-Column Layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.two-col__img {
  background: var(--neutral-200);
  border-radius: var(--radius-lg);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-300);
  font-size: .85rem;
  font-style: italic;
  overflow: hidden;
}
.two-col__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}
.two-col__text h2 { color: var(--dark); }
.two-col__text p { margin-bottom: 20px; }

/* ---------- Mission Callout ---------- */
.mission-callout {
  background: var(--forest);
  padding: 80px 0;
  text-align: center;
}
.mission-callout blockquote {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,.85);
  line-height: 1.8;
  max-width: 860px;
  margin: 0 auto 32px;
  position: relative;
  padding: 0 24px;
}
.mission-callout blockquote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  position: absolute;
  top: -30px;
  left: -10px;
  color: var(--lime);
  opacity: .5;
  line-height: 1;
}
.mission-callout h2 { color: var(--white); }

/* ---------- Photo Gallery Grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid__item {
  background: var(--neutral-200);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: .85rem;
  color: var(--neutral-300);
  font-style: italic;
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}
.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.gallery-grid__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery-grid__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 12px 10px;
  background: linear-gradient(transparent, rgba(0,0,0,.6));
  font-style: normal;
  font-weight: 600;
  color: var(--white);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  z-index: 2;
}

/* ---------- Event Cards ---------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.event-card__img {
  height: 180px;
  background: var(--neutral-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-300);
  font-size: .85rem;
  font-style: italic;
  overflow: hidden;
}
.event-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-card__body {
  padding: 24px;
}
.event-card__date {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--blue);
  margin-bottom: 8px;
}
.event-card__body h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.event-card__body p {
  font-size: .9rem;
  margin-bottom: 16px;
  color: var(--text-light);
}

/* ---------- Donate / CTA Strip ---------- */
.cta-strip {
  background: var(--neutral-200);
  padding: 56px 0;
  text-align: center;
}
.cta-strip h2 { color: var(--dark); }
.cta-strip p { color: var(--text); margin-bottom: 28px; }
.cta-strip .btn--secondary { border-color: var(--dark); color: var(--dark); }
.cta-strip .btn--secondary:hover { background: var(--dark); color: var(--white); }
.cta-strip .btn--dark:hover { background: var(--dark-mid); border-color: var(--dark-mid); }
.cta-strip .hero__buttons { margin-top: 8px; }

/* ---------- Feature Cards ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-card__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.feature-card h3 { color: var(--dark); }
.feature-card p { font-size: .9rem; }

/* ---------- Dogs Welcome Callout ---------- */
.dogs-callout {
  background: var(--neutral-100);
  padding: 80px 0;
}

/* ---------- Stats Row ---------- */
.stats-row {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}
.stats-row__item {
  text-align: center;
}
.stats-row__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--blue);
  letter-spacing: .03em;
}
.stats-row__label {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-light);
}

/* ---------- FAQ Accordion ---------- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--neutral-200);
}
.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}
.faq-item__question:hover { color: var(--blue); }
.faq-item__icon {
  font-size: 1.4rem;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-item__answer {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-item__answer p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---------- Forms ---------- */
.form {
  max-width: 640px;
  margin: 0 auto;
}
.form__group {
  margin-bottom: 20px;
}
.form__label {
  display: block;
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: 6px;
  color: var(--dark);
}
.form__label .required { color: #d94444; }
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(10, 173, 251, .12);
}
.form__textarea { min-height: 120px; resize: vertical; }
.form__submit { margin-top: 8px; width: 100%; }
.form__success {
  display: none;
  background: var(--dark);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 500;
  margin-top: 24px;
}
.form__success.show { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Error styles */
.form__input.error,
.form__select.error,
.form__textarea.error {
  border-color: #d94444;
}
.form__error {
  font-size: .8rem;
  color: #d94444;
  margin-top: 4px;
  display: none;
}
.form__error.show { display: block; }

/* ---------- Donate Hero Gradient ---------- */
.hero--donate .hero__overlay {
  background: linear-gradient(135deg, rgba(28,28,30,.88) 0%, rgba(28,28,30,.72) 100%);
}

/* ---------- Wide Image Section ---------- */
.wide-image {
  position: relative;
  min-height: 300px;
  background: var(--neutral-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-300);
  font-style: italic;
  overflow: hidden;
}
.wide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.wide-image__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.15) 100%);
}

/* ---------- Contact Strip ---------- */
.contact-strip {
  background: var(--neutral-200);
  padding: 40px 0;
  text-align: center;
}
.contact-strip a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
}
.contact-strip a:hover { color: var(--blue-dark); }

/* ---------- Callout Strip (mid-page) ---------- */
.callout-strip {
  background: var(--forest);
  padding: 56px 0;
  text-align: center;
}
.callout-strip h2 { color: var(--white); }
.callout-strip p { color: rgba(255,255,255,.85); margin-bottom: 24px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---------- Event Type Tabs / Filter ---------- */
.filter-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: center;
}
.filter-tab {
  padding: 8px 20px;
  border: 2px solid var(--neutral-300);
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}
.filter-tab:hover,
.filter-tab.active {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--white);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 56px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand .nav__logo {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.footer__brand p {
  font-size: .85rem;
  line-height: 1.7;
}
.footer__links h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: .06em;
}
.footer__links a {
  display: block;
  font-size: .85rem;
  padding: 4px 0;
  transition: var(--transition);
}
.footer__links a:hover { color: var(--lime); }
.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}
.footer__social a:hover {
  background: var(--lime);
  color: var(--white);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
}
.footer__bottom a {
  color: var(--lime);
  transition: var(--transition);
}
.footer__bottom a:hover { text-decoration: underline; }

/* ============================================
   Responsive
   ============================================ */

/* Tablet — 768px */
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col--reverse-mobile .two-col__img { order: -1; }

  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

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

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

  .hero { padding-top: calc(var(--nav-height) + 32px); }

  .hero-split { grid-template-columns: 1fr; gap: 32px; }
  .hero--split { text-align: center; }
  .hero-split__text .subheadline { max-width: 100%; }
  .hero-split__text .hero__buttons { justify-content: center !important; }
  .hero-split__mosaic { height: 320px; }
  .hero-split__mosaic { grid-template-columns: 1fr 1fr; }

  .stats-row { gap: 24px; }

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

/* Mobile — 375px */
@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .hero { min-height: 90vh; }
  .hero--short { min-height: 45vh; }
  .hero-split__mosaic { height: 240px; grid-template-columns: 1fr 1fr; }
  .hero__buttons { flex-direction: column; align-items: stretch; }
  .hero__buttons .btn { width: 100%; }

  .stats-bar__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .stats-bar__item { font-size: .85rem; }

  .gallery-grid { grid-template-columns: 1fr; }

  .features-grid { grid-template-columns: 1fr; }

  .footer__bottom { flex-direction: column; text-align: center; }

  .filter-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
}
