/* Pasur Belediye Spor — videodaki / örnek HTML tasarımı */
:root {
  --primary-red: #c41e3a;
  --primary-green: #30771c;
  --white: #fff;
  --black: #0d0d0d;
  --dark-gray: #1a1a1a;
  --gray: #333;
  --light-gray: #f5f5f5;
  --text-gray: #666;
  --border-gray: #e0e0e0;
  --header-h: 95px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--gray);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}

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

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 56px 0;
}

.section-title {
  text-align: center;
  font-size: clamp(1.75rem, 5vw, 2.625rem);
  font-weight: 900;
  color: var(--black);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.page-offset {
  padding-top: calc(var(--header-h) + var(--safe-top));
}

/* Animasyonlar */
.fade-in-up,
.slide-in-left,
.slide-in-right {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up {
  transform: translateY(40px);
}

.slide-in-left {
  transform: translateX(-40px);
}

.slide-in-right {
  transform: translateX(40px);
}

.fade-in-up.visible,
.slide-in-left.visible,
.slide-in-right.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in-up,
  .slide-in-left,
  .slide-in-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding-top: var(--safe-top);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  max-width: 1400px;
  margin: 0 auto;
  min-height: var(--header-h);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}

.nav-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.12));
  flex-shrink: 0;
}

.nav-club-name {
  font-size: clamp(0.75rem, 3.2vw, 1.35rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 8px;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray);
  margin: 0 auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

.nav-menu {
  position: fixed;
  top: calc(var(--header-h) + var(--safe-top));
  right: 0;
  width: min(100%, 300px);
  height: calc(100dvh - var(--header-h) - var(--safe-top));
  background: var(--white);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
  overflow-y: auto;
  z-index: 1001;
}

.nav-menu.is-open {
  transform: translateX(0);
}

.nav-link {
  display: block;
  padding: 14px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-red);
  background: rgba(196, 30, 58, 0.06);
}

.nav-link.active {
  font-weight: 700;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 999;
}

/* Hero — tek sabit görsel */
.hero-banner {
  margin-top: calc(var(--header-h) + var(--safe-top));
  position: relative;
  height: clamp(260px, 52vh, 360px);
  min-height: 260px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.75), rgba(47, 107, 30, 0.75));
  z-index: 1;
}

.hero-banner .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-banner .hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  z-index: 10;
  width: 92%;
  max-width: 900px;
  padding: 0 16px;
}

.hero-banner .hero-title {
  font-size: clamp(1.15rem, 4.5vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.45);
  line-height: 1.12;
}

.hero-banner .hero-subtitle {
  font-size: clamp(0.7rem, 2vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.95;
}

/* Başkan */
.president-section {
  background: var(--light-gray);
  padding: 56px 0;
}

.president-section .container {
  max-width: 520px;
}

.president-content {
  display: grid;
  gap: 32px;
  align-items: start;
}

.president-intro--desktop {
  display: none;
}

.president-intro--mobile {
  display: none;
}

.president-row {
  display: contents;
}

.president-photo {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 3/4;
  max-height: 300px;
  background: #1a1a1a;
}

.president-body {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.president-intro h2,
.president-body h2 {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  color: var(--black);
  margin-bottom: 10px;
}

.president-title {
  font-size: 1rem;
  color: var(--primary-red);
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.president-text {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-gray);
  margin-bottom: 18px;
}

/* Hakkımızda */
.about-section {
  background: var(--white);
}

.about-content-block {
  display: grid;
  gap: 28px;
  align-items: center;
  margin-bottom: 48px;
}

.about-content-block:last-child {
  margin-bottom: 0;
}

.about-text-content h3 {
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text-content p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.about-image {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* Kadro */
.squad-section {
  background: var(--light-gray);
}

.squad-category {
  margin-bottom: 48px;
}

.squad-category-title {
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 28px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 16px;
}

.squad-category-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-green));
  border-radius: 2px;
}

.squad-scroll-hint {
  display: none;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-gray);
  margin: -8px 0 12px;
}

.squad-scroll {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.player-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.player-card:active {
  transform: scale(0.98);
}

.player-photo {
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.08), rgba(47, 107, 30, 0.08));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary-red);
}

.player-number {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-green));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.player-info {
  padding: 20px;
  text-align: center;
}

.player-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
}

.player-position {
  font-size: 0.8rem;
  color: var(--primary-green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Galeri — boş çerçeveler, manuel foto */
.gallery-section {
  background: var(--white);
}

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

.gallery-frame {
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  background: transparent;
  cursor: default;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.gallery-frame.has-image {
  cursor: pointer;
}

.gallery-frame__box {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--light-gray);
  border: 2px dashed var(--border-gray);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.gallery-frame.has-image .gallery-frame__box {
  border-style: solid;
  border-color: rgba(196, 30, 58, 0.25);
  background: var(--white);
}

.gallery-frame__img {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  object-fit: contain;
  object-position: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.gallery-frame.has-image .gallery-frame__img {
  opacity: 1;
}

.gallery-frame.has-image:active .gallery-frame__box {
  transform: scale(0.98);
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  padding-top: calc(16px + var(--safe-top));
  padding-bottom: calc(16px + var(--safe-bottom));
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox__stage {
  width: 100%;
  max-width: 960px;
  max-height: 85dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox__img {
  max-width: 100%;
  max-height: 85dvh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: calc(12px + var(--safe-top));
  right: 16px;
  width: 48px;
  height: 48px;
  border: none;
  background: var(--white);
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 3001;
}

/* İletişim */
.contact-section {
  background: var(--light-gray);
}

.contact-grid {
  display: grid;
  gap: 28px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-green));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-info-text h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--black);
}

.contact-info-text p,
.contact-info-text a {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 28px 22px;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-gray);
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-green));
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--primary-red);
  color: var(--primary-red);
  margin-top: 8px;
}

/* Footer */
.footer {
  background: var(--dark-gray);
  color: rgba(255, 255, 255, 0.85);
  padding: 40px 0 24px;
}

.footer-content {
  display: grid;
  gap: 28px;
}

.footer-about h3,
.footer-links h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: background 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-red);
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 0.9rem;
  opacity: 0.85;
}

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

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ——— Mobil: dengeli görünüm ——— */
@media (max-width: 767px) {
  :root {
    --header-h: 64px;
  }

  body {
    background: var(--light-gray);
  }

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 36px 0;
  }

  .section-title {
    font-size: 1.35rem;
    margin-bottom: 10px;
  }

  .section-subtitle {
    font-size: 0.85rem;
    margin-bottom: 28px;
  }

  .nav-container {
    padding: 8px 16px;
  }

  .nav-logo {
    width: 44px;
    height: 44px;
  }

  .nav-club-name {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  /* Hero — mobilde takım fotoğrafı daha büyük */
  .hero-banner {
    height: clamp(300px, 62vh, 440px);
    min-height: 300px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    margin-top: calc(var(--header-h) + var(--safe-top));
    border-radius: 0 0 18px 18px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
  }

  .hero-banner .hero-bg {
    object-fit: cover;
    object-position: center 35%;
  }

  .hero-banner .hero-title {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
    letter-spacing: 0.08em;
    margin-bottom: 10px;
  }

  .hero-banner .hero-subtitle {
    font-size: clamp(0.72rem, 2.8vw, 0.9rem);
    letter-spacing: 0.14em;
  }

  /* Başkan: büyük foto + metin */
  .president-section {
    padding: 14px 0 16px;
  }

  .president-section .container {
    max-width: 100%;
    padding: 0 12px;
  }

  .president-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border-radius: 16px;
    padding: 20px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
  }

  .president-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    text-align: center;
  }

  .president-intro--mobile {
    display: block;
    width: 100%;
    text-align: center;
  }

  .president-intro--desktop {
    display: none;
  }

  .president-photo {
    display: block;
    width: min(72vw, 220px);
    height: auto;
    min-width: unset;
    max-width: 220px;
    max-height: 280px;
    aspect-ratio: 3 / 4;
    margin: 0 auto;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    object-fit: cover;
    object-position: center top;
  }

  .president-intro--mobile h2 {
    font-size: 1.35rem;
    margin-bottom: 6px;
    line-height: 1.2;
  }

  .president-intro--mobile .president-title {
    font-size: 0.72rem;
    margin-bottom: 0;
    color: var(--primary-green);
    letter-spacing: 0.12em;
  }

  .president-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
    text-align: center;
  }

  .president-text {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 14px;
    text-align: center;
    max-width: 340px;
    width: 100%;
  }

  .president-text--more {
    display: none;
  }

  .btn--outline {
    width: min(100%, 280px);
    min-height: 44px;
    padding: 12px 20px;
    font-size: 0.78rem;
    border-radius: 12px;
    margin-top: 4px;
  }

  /* Footer: daha küçük gri alan */
  .footer {
    padding: 12px 0 8px;
  }

  .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 14px;
    align-items: start;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-about h3 {
    font-size: 0.65rem;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
  }

  .footer-about__text {
    display: none;
  }

  .footer-social {
    gap: 4px;
  }

  .social-icon {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
    border-radius: 6px;
  }

  .footer-links h3 {
    font-size: 0.58rem;
    margin-bottom: 4px;
    letter-spacing: 0.04em;
  }

  .footer-links li {
    margin-bottom: 2px;
  }

  .footer-links a {
    font-size: 0.62rem;
    line-height: 1.3;
  }

  .footer-bottom {
    margin-top: 8px;
    padding-top: 6px;
    font-size: 0.55rem;
    line-height: 1.35;
  }

  .gallery-grid {
    gap: 12px;
  }

  .gallery-frame__box {
    padding: 8px;
  }

  .squad-scroll-hint {
    display: block;
    font-size: 0.75rem;
    margin-bottom: 10px;
  }

  .squad-scroll {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    grid-template-columns: unset;
  }

  .squad-scroll .player-card {
    flex: 0 0 148px;
    scroll-snap-align: start;
  }

  .squad-scroll .player-photo {
    height: 100px;
    font-size: 2rem;
  }

  .squad-scroll .player-info {
    padding: 12px 10px;
  }

  .squad-scroll .player-name {
    font-size: 0.75rem;
  }

  .squad-scroll .player-position {
    font-size: 0.65rem;
  }
}

/* Tablet */
@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop — videodaki görünüm */
@media (min-width: 768px) {
  :root {
    --header-h: 95px;
  }

  .nav-toggle,
  .nav-overlay {
    display: none;
  }

  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    flex-direction: row;
    gap: 8px;
    padding: 0;
    transform: none !important;
    box-shadow: none;
    overflow: visible;
    display: flex;
    align-items: center;
  }

  .nav-link {
    padding: 8px 0;
    margin: 0 12px;
    background: transparent !important;
    position: relative;
    font-size: 0.8rem;
  }

  .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-green));
    transition: width 0.3s ease;
  }

  .nav-link:hover::after,
  .nav-link.active::after {
    width: 100%;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--primary-red);
    background: transparent !important;
  }

  .nav-logo {
    width: 65px;
    height: 65px;
  }

  body {
    background: var(--white);
  }

  .hero-banner {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: calc(var(--header-h) + var(--safe-top));
    border-radius: 0;
    height: min(65vh, 600px);
    min-height: 400px;
  }

  .hero-banner .hero-title {
    font-size: clamp(2rem, 5vw, 4.5rem);
    letter-spacing: 3px;
    margin-bottom: 16px;
  }

  .hero-banner .hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.35rem);
    letter-spacing: 4px;
  }

  .president-section {
    background: var(--light-gray);
    padding: 56px 0;
  }

  .president-section .container {
    max-width: 1200px;
  }

  .president-content {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  .president-row {
    display: block;
  }

  .president-intro--mobile {
    display: none;
  }

  .president-intro--desktop {
    display: block;
  }

  .president-photo {
    aspect-ratio: 3/4;
    max-width: 260px;
    max-height: 300px;
    width: 100%;
    margin: 0;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    object-position: center top;
  }

  .president-body {
    background: var(--white);
    padding: 24px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  .president-text--more {
    display: block;
  }

  .president-title {
    color: var(--primary-red);
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .btn--outline {
    width: auto;
  }

  .btn--outline {
    width: auto;
  }

  .section {
    padding: 80px 0;
  }

  .about-content-block {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
  }

  .about-content-block:nth-child(even) .about-image {
    order: -1;
  }

  .squad-scroll {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
  }

  .player-photo {
    height: 240px;
    font-size: 3.5rem;
  }

  .player-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  }

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

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
  }

  .btn {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .hero-banner {
    height: 700px;
  }
}
