:root {
  --red: #c1121f;
  --red-dark: #8f0d17;
  --black: #0b0b0b;
  --black-soft: #171717;
  --mustard: #f2c14e;
  --mustard-soft: #f8dfa0;
  --white: #ffffff;
  --off-white: #f7f7f7;
  --gray: #5f6268;
  --line: #e8e8e8;
  --shadow: 0 22px 60px rgba(11, 11, 11, 0.14);
  --shadow-soft: 0 12px 35px rgba(11, 11, 11, 0.09);
  --radius: 8px;
  --header-height: 72px;
  --container: 1180px;
  --transition: 240ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--mustard);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--mustard);
  color: var(--black);
  font-weight: 800;
  padding: 10px 14px;
  transition: transform var(--transition);
}

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

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 11, 11, 0.72);
  backdrop-filter: blur(18px);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
  border-color: rgba(11, 11, 11, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 28px rgba(11, 11, 11, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 18px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
  letter-spacing: 0;
}

.brand {
  color: var(--white);
}

.site-header.is-scrolled .brand {
  color: var(--black);
}

.brand img,
.footer-brand img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--white);
  object-fit: contain;
}

.brand span,
.footer-brand span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
  font-weight: 750;
  padding: 10px 12px;
  transition: background var(--transition), color var(--transition);
}

.site-header.is-scrolled .nav-links a {
  color: var(--black);
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(193, 18, 31, 0.12);
  color: var(--mustard);
}

.site-header.is-scrolled .nav-links a:hover,
.site-header.is-scrolled .nav-links a.active {
  color: var(--red);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .menu-toggle {
  border-color: rgba(11, 11, 11, 0.12);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

.site-header.is-scrolled .menu-toggle span {
  background: var(--black);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 42px);
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 18px) 0 26px;
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: -1;
  height: 9px;
  background: linear-gradient(90deg, var(--red), var(--mustard), var(--red));
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/images/e7970cca-e84b-41a8-9442-d2feb9f15994.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(100deg, rgba(11, 11, 11, 0.94) 0%, rgba(11, 11, 11, 0.74) 47%, rgba(193, 18, 31, 0.32) 100%),
    radial-gradient(circle at 86% 24%, rgba(242, 193, 78, 0.24), transparent 28%);
}

.hero-content {
  max-width: 1120px;
  margin-inline: auto;
  text-align: center;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker {
  justify-content: center;
  color: var(--mustard);
  margin-bottom: 18px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(193, 18, 31, 0.18);
}

.hero-logo {
  width: clamp(82px, 11vw, 104px);
  height: clamp(82px, 11vw, 104px);
  margin: 0 auto 16px;
  border: 4px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: var(--white);
  object-fit: contain;
  box-shadow: var(--shadow);
}

.hero h1 {
  max-width: 1120px;
  margin: 0 auto;
  font-size: clamp(2.45rem, 5.25vw, 4.55rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.hero p {
  max-width: 740px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1;
  padding: 15px 22px;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(193, 18, 31, 0.28);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  border-color: var(--mustard);
  color: var(--mustard);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: min(100%, 640px);
  margin: 18px auto 0;
}

.hero-stats div {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  padding: 14px 12px;
  backdrop-filter: blur(12px);
}

.hero-stats dt {
  color: var(--mustard);
  font-size: clamp(1.45rem, 5vw, 2rem);
  font-weight: 950;
  line-height: 1;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 750;
}

.section {
  padding: clamp(70px, 10vw, 116px) 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  max-width: none;
}

.section-heading h2,
.contact-info h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.section-heading p,
.contact-info p {
  margin: 14px 0 0;
  color: var(--gray);
  font-size: 1.03rem;
}

.about-section {
  background:
    linear-gradient(180deg, var(--white), var(--off-white)),
    linear-gradient(90deg, rgba(193, 18, 31, 0.04), transparent);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: stretch;
}

.about-panel,
.value-card,
.news-card,
.player-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.about-panel {
  padding: clamp(24px, 5vw, 38px);
}

.about-panel h3,
.value-card h3,
.news-card h3,
.player-card h3 {
  margin: 0;
  color: var(--black);
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 950;
}

.about-panel p,
.value-card p,
.news-card p,
.player-card p {
  margin: 12px 0 0;
  color: var(--gray);
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 800;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 12px;
  height: 12px;
  border: 3px solid var(--red);
  border-radius: 50%;
  background: var(--mustard);
  transform: translateY(-50%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.value-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.value-card:first-child {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--black), #2a1012);
}

.value-card:first-child h3,
.value-card:first-child p {
  color: var(--white);
}

.value-card:hover,
.news-card:hover,
.player-card:hover {
  border-color: rgba(193, 18, 31, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.value-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--mustard);
  color: var(--black);
  font-weight: 950;
}

.gallery-section {
  background: var(--white);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-btn {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 850;
  padding: 10px 14px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  min-height: 220px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: var(--shadow-soft);
  padding: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:nth-child(5n + 1) {
  grid-column: span 5;
  aspect-ratio: 3 / 4;
}

.gallery-item:nth-child(5n + 2) {
  grid-column: span 7;
  aspect-ratio: 16 / 10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter var(--transition);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11, 11, 11, 0.74));
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-caption {
  position: absolute;
  inset: auto 14px 14px;
  z-index: 1;
  color: var(--white);
  font-weight: 900;
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}

.gallery-item:hover,
.gallery-item:focus-visible {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.04);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after,
.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.news-section {
  background: linear-gradient(180deg, var(--black), #181818);
  color: var(--white);
}

.news-section .section-heading h2,
.news-section .section-heading p {
  color: var(--white);
}

.news-section .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.news-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.11);
}

.news-date {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  min-height: 148px;
  background: var(--red);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.news-date span {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.news-body {
  padding: 24px;
}

.news-card h3 {
  color: var(--white);
  margin-top: 10px;
}

.news-card p {
  color: rgba(255, 255, 255, 0.68);
}

.news-state {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  text-align: center;
  padding: 28px 18px;
}

.news-state-error {
  border-color: rgba(193, 18, 31, 0.45);
  color: #ffb3b8;
}

.gallery-empty {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--gray);
  font-weight: 700;
  text-align: center;
  padding: 28px 18px;
}

.team-section {
  background: var(--off-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.player-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.player-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(193, 18, 31, 0.1), transparent 60%);
  pointer-events: none;
}

.player-number {
  position: absolute;
  top: 12px;
  right: 16px;
  color: rgba(193, 18, 31, 0.12);
  font-size: 5.8rem;
  line-height: 1;
  font-weight: 950;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(193, 18, 31, 0.05), transparent 48%),
    var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: start;
}

.contact-panel {
  display: grid;
  align-content: start;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 116px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.channel-card:hover {
  border-color: rgba(193, 18, 31, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.channel-card.whatsapp:hover {
  background: #128c4a;
  color: var(--white);
}

.channel-card.instagram:hover {
  background: var(--red);
  color: var(--white);
}

.channel-card.youtube:hover {
  background: #111111;
  color: var(--white);
}

.channel-card.phone:hover {
  background: var(--mustard);
  color: var(--black);
}

.channel-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 950;
}

.channel-icon svg,
.social-links svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
  transition: opacity var(--transition), color var(--transition);
}

.channel-card.whatsapp .channel-icon {
  background: #128c4a;
}

.channel-card.instagram .channel-icon {
  background: var(--red);
}

.channel-card.youtube .channel-icon {
  background: #111111;
}

.channel-card.phone .channel-icon {
  background: var(--mustard);
  color: var(--black);
}

.channel-card:hover .channel-icon {
  background: rgba(255, 255, 255, 0.18);
  color: currentColor;
}

.channel-card:hover .channel-icon svg {
  opacity: 0.82;
}

.channel-content {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.channel-content strong {
  font-size: 1.08rem;
  font-weight: 950;
}

.channel-content small {
  color: var(--gray);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.channel-card:hover .channel-content small {
  color: currentColor;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 26px 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-brand {
  max-width: 100%;
}

.footer-brand span {
  font-size: 0.98rem;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.9);
  padding: 72px 18px 28px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-content {
  width: min(100%, 1020px);
  max-height: calc(100svh - 120px);
  margin: 0;
  text-align: center;
}

.lightbox-content img {
  width: 100%;
  max-height: calc(100svh - 170px);
  border-radius: var(--radius);
  object-fit: contain;
  background: #111;
}

.lightbox-content figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transition: background var(--transition), transform var(--transition);
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.lightbox-close {
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 48px;
  height: 58px;
  font-size: 2.6rem;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox-nav:hover {
  transform: translateY(calc(-50% - 2px));
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

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

  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    max-height: calc(100svh - var(--header-height) - 18px);
    overflow-y: auto;
    border: 1px solid rgba(11, 11, 11, 0.08);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
    padding: 10px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a,
  .site-header.is-scrolled .nav-links a {
    justify-content: center;
    color: var(--black);
  }

  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    align-items: stretch;
    flex-direction: column;
  }

  .gallery-filters {
    justify-content: flex-start;
  }

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

  .gallery-item,
  .gallery-item:nth-child(5n + 1),
  .gallery-item:nth-child(5n + 2) {
    grid-column: span 3;
    aspect-ratio: 4 / 3;
  }

  .news-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand span {
    max-width: 58vw;
  }

  .hero {
    align-items: end;
    min-height: calc(100svh - 48px);
    padding-top: calc(var(--header-height) + 22px);
    padding-bottom: 26px;
  }

  .hero-content {
    text-align: left;
  }

  .hero-kicker,
  .hero-actions {
    justify-content: flex-start;
  }

  .hero-logo {
    margin-inline: 0;
    width: 78px;
    height: 78px;
    margin-bottom: 16px;
  }

  .hero h1 {
    margin-inline: 0;
    font-size: clamp(2.05rem, 10vw, 2.75rem);
    line-height: 1.02;
  }

  .hero p {
    margin-inline: 0;
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
  }

  .hero-actions .btn {
    width: 100%;
    padding-inline: 12px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
  }

  .hero-stats div {
    padding: 12px 6px;
  }

  .hero-stats dd {
    font-size: 0.74rem;
  }

  .values-grid,
  .news-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .contact-channels {
    grid-template-columns: 1fr;
  }

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

  .gallery-item,
  .gallery-item:nth-child(5n + 1),
  .gallery-item:nth-child(5n + 2) {
    grid-column: auto;
    min-height: 230px;
  }

  .news-card {
    grid-template-columns: 1fr;
  }

  .news-date {
    min-height: 82px;
  }

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

  .lightbox {
    padding-inline: 10px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .lightbox-nav:hover {
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
