:root {
  --brand: #0b5f8a;
  --brand-dark: #073d5a;
  --accent: #1a9b6c;
  --accent-hover: #148057;
  --text: #1a2332;
  --text-muted: #5a6577;
  --bg: #f3f6f9;
  --bg-alt: #e8eef4;
  --surface: #ffffff;
  --border: #d5dee8;
  --danger: #c0392b;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(11, 95, 138, 0.08);
  --max: 1120px;
  --header-h: 68px;
  --font: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-display: "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  font-size: 16px;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent);
}

ul,
ol {
  list-style: none;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #062d42 0%, var(--brand-dark) 100%);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
}

.logo img {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  object-fit: cover;
}

.logo span {
  white-space: nowrap;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-desktop a {
  color: rgba(255, 255, 255, 0.88);
  padding: 8px 12px;
  font-size: 0.92rem;
  border-radius: 4px;
  white-space: nowrap;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  line-height: 1.3;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--brand-dark);
}

.btn-light:hover {
  background: #e8f4fc;
  color: var(--brand-dark);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

.hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 45, 66, 0.97);
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  z-index: 999;
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  color: #fff;
  padding: 14px 16px;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-mobile .mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.nav-mobile .btn {
  width: 100%;
}

body.menu-open {
  overflow: hidden;
}

/* Top ads bar */
.ads-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 12px 0 10px;
  position: relative;
  z-index: 50;
}

.ads-bar .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ads-bar-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

#ads {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 14px 18px;
  background: transparent;
  margin: 0;
  min-height: 88px;
}

#ads .ads-item,
#ads > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 72px;
  box-sizing: border-box;
}

#ads figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#ads img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(24, 24, 24, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
  display: block;
  border: none;
  background: linear-gradient(135deg, #fff, #fff);
}

#ads a {
  display: inline-block;
  text-decoration: none;
  border-radius: 15px;
  cursor: pointer;
}

#ads img:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 24px rgba(24, 24, 24, 0.18);
}

#ads figcaption,
#ads .caption {
  height: 15px;
  font-size: 11px;
  color: #666;
  text-align: center;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 4px;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(72vh, 560px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(105deg, rgba(6, 45, 66, 0.92) 0%, rgba(11, 95, 138, 0.75) 45%, rgba(26, 155, 108, 0.55) 100%),
    url("/images/开云体育首页.jpg") center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, transparent 30%, rgba(6, 45, 66, 0.4) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 56px 0;
  max-width: 640px;
  animation: fadeUp 0.7s ease-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  line-height: 1.2;
}

.hero h1 {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 500;
  margin-bottom: 14px;
  opacity: 0.95;
  line-height: 1.5;
}

.hero p {
  font-size: 1.02rem;
  opacity: 0.88;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Sections */
.section {
  padding: 56px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  color: var(--brand-dark);
  margin-bottom: 10px;
  line-height: 1.35;
}

.section-desc {
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 720px;
  font-size: 1.02rem;
}

.prose {
  max-width: 820px;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--brand-dark);
  margin: 36px 0 14px;
}

.prose h3 {
  font-size: 1.15rem;
  color: var(--brand);
  margin: 28px 0 10px;
}

.prose p {
  margin-bottom: 14px;
  color: var(--text);
}

.prose ul,
.prose ol {
  margin: 12px 0 18px 1.2em;
}

.prose ul {
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

.prose li {
  margin-bottom: 8px;
}

.prose strong {
  color: var(--brand-dark);
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature-item {
  background: var(--surface);
  padding: 24px 22px;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.feature-item:hover {
  transform: translateY(-3px);
}

.feature-item h3 {
  font-size: 1.08rem;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Category grid */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.cat-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(11, 95, 138, 0.14);
}

.cat-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.cat-card-body {
  padding: 20px;
}

.cat-card h3 {
  font-size: 1.15rem;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.cat-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin-bottom: 12px;
}

.cat-card a {
  font-weight: 600;
  font-size: 0.92rem;
}

/* Download */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.download-card {
  background: var(--surface);
  padding: 28px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--brand);
}

.download-card h3 {
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.download-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

/* Partners */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
  align-items: center;
}

.partner-item {
  background: var(--surface);
  padding: 16px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  box-shadow: var(--shadow);
}

.partner-item img {
  max-height: 64px;
  width: auto;
  object-fit: contain;
}

.partner-item.club img {
  max-height: 72px;
  border-radius: 4px;
}

/* Promo strip */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.promo-item img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s;
}

.promo-item:hover img {
  transform: scale(1.02);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  padding: 16px 20px;
  font-weight: 600;
  color: var(--brand-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 20px 16px;
  color: var(--text-muted);
  font-size: 0.96rem;
}

/* Breadcrumb */
.breadcrumb {
  padding: 16px 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--brand);
}

.breadcrumb span {
  margin: 0 6px;
  opacity: 0.5;
}

/* Page banner */
.page-banner {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand) 60%, var(--accent));
  color: #fff;
  padding: 40px 0 36px;
}

.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 8px;
}

.page-banner p {
  opacity: 0.9;
  max-width: 640px;
}

/* Auth forms */
.auth-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 48px 0;
}

.auth-form-box {
  background: var(--surface);
  padding: 36px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.auth-form-box h2 {
  font-family: var(--font-display);
  color: var(--brand-dark);
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.auth-form-box .form-lead {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.92rem;
  color: var(--brand-dark);
}

.form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: #fff;
}

.form-group input:focus {
  outline: none;
  border-color: var(--brand);
}

.form-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.auth-seo {
  padding-top: 8px;
}

.auth-seo h2 {
  font-family: var(--font-display);
  color: var(--brand-dark);
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.auth-seo h3 {
  color: var(--brand);
  font-size: 1.05rem;
  margin: 20px 0 8px;
}

.auth-seo p,
.auth-seo li {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin-bottom: 10px;
}

.auth-seo ul {
  list-style: disc;
  margin-left: 1.2em;
  margin-bottom: 14px;
}

.auth-links {
  margin-top: 18px;
  font-size: 0.94rem;
  color: var(--text-muted);
}

/* Error pages */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.error-box h1 {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 12px;
}

.error-box h2 {
  font-size: 1.5rem;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.error-box p {
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 420px;
  margin-inline: auto;
}

.error-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-actions .btn-outline {
  border-color: var(--brand);
  color: var(--brand);
}

.error-actions .btn-outline:hover {
  background: var(--brand);
  color: #fff;
}

/* CTA band */
.cta-band {
  background: linear-gradient(110deg, var(--brand-dark), var(--brand));
  color: #fff;
  padding: 48px 0;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.cta-band p {
  opacity: 0.9;
  margin-bottom: 24px;
}

.cta-band .hero-ctas {
  justify-content: center;
}

/* Internal links box */
.ilinks {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 32px;
}

.ilinks h3 {
  font-size: 1.05rem;
  color: var(--brand-dark);
  margin-bottom: 14px;
}

.ilinks ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.ilinks a {
  font-size: 0.94rem;
}

/* Footer */
.site-footer {
  background: #041e2e;
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 0 0;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 36px;
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-brand p {
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.98rem;
  margin-bottom: 14px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-col a:hover {
  color: #7dcea0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Media blocks (image + SEO text) */
.media-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  align-items: center;
  margin: 40px 0;
}

.media-block.reverse {
  grid-template-columns: 1.1fr 1fr;
}

.media-block.reverse .media-visual {
  order: 2;
}

.media-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.media-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.media-copy h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.media-copy p {
  color: var(--text);
  margin-bottom: 12px;
  font-size: 0.98rem;
}

.media-copy ul {
  list-style: disc;
  margin: 10px 0 16px 1.2em;
  color: var(--text-muted);
}

.media-copy li {
  margin-bottom: 6px;
}

/* Showcase strip */
.showcase-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.showcase-item {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.showcase-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.showcase-item figcaption {
  padding: 12px 14px;
  font-size: 0.9rem;
  color: var(--brand-dark);
  font-weight: 600;
}

/* Promo cards with captions */
.promo-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.promo-card:hover {
  transform: translateY(-3px);
}

.promo-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.promo-card-body {
  padding: 14px 16px 18px;
}

.promo-card-body h3 {
  font-size: 1rem;
  color: var(--brand-dark);
  margin-bottom: 6px;
}

.promo-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Steps with images */
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.step-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}

.step-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.step-card-body {
  padding: 18px 16px 22px;
}

.step-num {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.step-card h3 {
  font-size: 1.05rem;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Ambassador highlight */
.ambassador {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: center;
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 28px 0;
}

.ambassador img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.ambassador h3 {
  font-family: var(--font-display);
  color: var(--brand-dark);
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.ambassador p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

/* Club gallery larger */
.club-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin: 20px 0 32px;
}

.club-gallery figure {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}

.club-gallery img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  padding: 12px;
  background: #fafbfc;
}

.club-gallery figcaption {
  padding: 10px 12px 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

/* Content image inline in prose */
.prose .content-img {
  margin: 20px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.prose .content-img img {
  width: 100%;
}

.prose .content-img figcaption {
  padding: 10px 14px;
  background: var(--surface);
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
}

/* Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 16px;
}

.mb-2 {
  margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-desktop,
  .header-actions .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .auth-wrap {
    grid-template-columns: 1fr;
  }

  .media-block,
  .media-block.reverse {
    grid-template-columns: 1fr;
  }

  .media-block.reverse .media-visual {
    order: 0;
  }

  .showcase-strip,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .ambassador {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ambassador img {
    max-width: 180px;
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 480px;
  }

  .logo span {
    font-size: 0.95rem;
  }

  .section {
    padding: 40px 0;
  }

  .club-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
