:root {
  --brand: #44b3eb;
  --max-width: 1100px;
  --gallery-max-width: 1400px;
  --page-gap: 20px;
  --muted: #666;
  --base-font-size: 16px;
  --footer-bg: #07121a;
  --footer-text: #cfeafc;

  --card-shadow: rgba(12, 24, 32, 0.06);
  --card-shadow-strong: rgba(12, 24, 32, 0.12);

  --hero-glow: rgba(68, 179, 235, 0.16);
  --hero-glow-strong: rgba(68, 179, 235, 0.3);

  --coach-border-width: 8px;

  /* Header sizing vars shared across breakpoints */
  --header-height: 110px;
  --header-logo-height: 160px;
  --nav-gap: 28px;
  --nav-font-size: 18px;
  --flag-w: 50px;
  --flag-h: 40px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    "Sora",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: var(--base-font-size);
  color: #111;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

/* HEADER */
.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 60;
  background: #fff;
  box-shadow: 0 6px 18px rgba(13, 24, 35, 0.08);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px var(--page-gap);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  min-height: var(--header-height);
  height: auto;
}
.header-inner .nav.nav-left {
  justify-self: end;
  margin-right: 12px;
}
.header-inner .nav.nav-right {
  justify-self: start;
  margin-left: 12px;
}
.nav {
  display: flex;
  gap: var(--nav-gap);
  align-items: center;
  flex-wrap: wrap;
  row-gap: 8px;
}
.logo {
  height: var(--header-logo-height);
  display: inline-block;
  max-height: calc(var(--header-height) + 30px);
  width: auto;
}
.nav-link {
  position: relative;
  text-decoration: none;
  color: #0f1720;
  font-size: var(--nav-font-size);
  font-weight: 700;
  padding: 8px 0;
  white-space: nowrap;
  margin-top: 4px;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 3px;
  width: 100%;
  background: var(--brand);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 220ms ease;
}
.nav-link:hover::after,
.nav-link:focus::after {
  transform: scaleX(1);
}

/* LANG FLAG */
.lang-flag {
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  line-height: 1;
  position: relative;
}
.lang-flag img {
  display: block;
  width: var(--flag-w);
  height: var(--flag-h);
  object-fit: cover;
  border: 0;
  transform: translateY(2px);
  border-radius: 20%;
}
.lang-flag::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 3px;
  width: 100%;
  background: var(--brand);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 220ms ease;
}
.lang-flag:hover::after,
.lang-flag:focus::after {
  transform: scaleX(1);
}

main {
  padding-top: var(--header-height);
}

/* HERO */
.hero {
  position: relative;
  height: 155vh;
  min-height: 680px;
  overflow: visible;
}
.hero-inner {
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 500ms cubic-bezier(0.2, 0.9, 0.2, 1),
    transform 550ms cubic-bezier(0.2, 0.9, 0.2, 1);
}
.hero-inner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* VIDEO HERO */
.hero-video-box {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
  opacity: 0;
  transition: opacity 450ms ease-in-out;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 18, 26, 0.35),
    rgba(7, 18, 26, 0.85)
  );
  mix-blend-mode: multiply;
  z-index: 2;
}

/* INFO BOX */
.info-box {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  padding: 32px;
  box-sizing: border-box;
}
.info-inner {
  max-width: 520px;
  background: rgba(15, 23, 42, 0.35);
  padding: 22px 24px;
  border-radius: 14px;
  box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.65),
    0 0 0 1px rgba(148, 163, 184, 0.3);
}
.info-inner h1 {
  margin: 0 0 10px 0;
  font-size: 34px;
  color: #f9fafb;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.65);
}
.info-inner p {
  margin: 0 0 16px 0;
  color: #e5e7eb;
  font-size: 16px;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}

/* CTA */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #0b1120;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 15px;
  box-shadow:
    0 10px 30px rgba(56, 189, 248, 0.45),
    0 0 0 1px rgba(15, 23, 42, 0.35);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    color 160ms ease;
}
.cta:hover,
.cta:focus-visible {
  transform: translateY(-3px);
  background: #38a4dd;
  color: #fff;
  box-shadow:
    0 18px 40px rgba(56, 189, 248, 0.7),
    0 0 0 1px rgba(15, 23, 42, 0.6);
}

/* SECTION REVEAL */
.reveal-section {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 520ms cubic-bezier(0.2, 0.9, 0.2, 1),
    transform 520ms cubic-bezier(0.2, 0.9, 0.2, 1);
  will-change: opacity, transform;
}
.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ABOUT & PROGRAMS */
.about {
  padding: 56px var(--page-gap) 96px;
}
.programs {
  padding: 96px var(--page-gap) 80px;
}
.about-inner,
.programs-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 64px;
  align-items: center;
}
.about-inner {
  grid-template-columns: 60% 40%;
}
.programs-inner {
  grid-template-columns: 1fr 55%;
}
.about-image {
  width: 120%;
  height: 560px;
  transform: translateX(-18%);
  background: #e6e6e6;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(12, 24, 32, 0.1);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-content {
  justify-self: end;
  max-width: 460px;
  padding-left: 48px;
}
.about-content p {
  margin: 0 0 18px 0;
  color: #333;
  line-height: 1.75;
  font-size: 20px;
}
.about-content h2,
.programs-content h2 {
  font-size: 48px;
  line-height: 1.08;
  margin: 0 0 18px 0;
  color: #0f1720;
  font-weight: 700;
}

/* PROGRAMS */
.program-image {
  width: 110%;
  height: 560px;
  transform: translateX(6%);
  background: #e6e6e6;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(12, 24, 32, 0.1);
}
.program-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.programs-content {
  text-align: left;
}
.programs-content .lead {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 14px;
}
.programs-content .large {
  font-size: 20px;
  color: #444;
  margin-bottom: 14px;
}

/* COACHES */
.coaches {
  padding: 140px var(--page-gap) 56px;
  background: #fff;
}
.coaches-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}
.coaches-heading {
  margin-bottom: 56px;
  display: flex;
  justify-content: center;
}
.coaches-heading h2 {
  margin: 0;
  font-size: 48px;
  color: #0f1720;
  font-weight: 700;
}
.coaches-grid-simple {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 36px;
  justify-items: center;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .coaches-grid-simple {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .coaches-grid-simple {
    grid-template-columns: 1fr;
  }
}
.coach-item {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.coach-name {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #0f1720;
  letter-spacing: 0.02em;
}
.coach-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f3f3;

  /* adjusted: previously used shadow color as border color */
  border: var(--coach-border-width) solid rgba(15, 23, 42, 0.1);

  box-sizing: border-box;
  transition:
    box-shadow 320ms cubic-bezier(0.2, 0.9, 0.2, 1),
    border-color 240ms cubic-bezier(0.2, 0.9, 0.2, 1);
}
.coach-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.coach-circle:hover,
.coach-circle:focus {
  border-color: rgba(68, 179, 235, 0.6);
  box-shadow:
    0 26px 60px var(--hero-glow-strong),
    0 12px 36px var(--hero-glow-strong),
    0 0 0 10px var(--hero-glow);
  outline: none;
}

/* === adjusted: ensure it behaves like a button link and never underlines === */
.view-coach-btn,
.view-coach-btn:link,
.view-coach-btn:visited,
.view-coach-btn:hover,
.view-coach-btn:active,
.view-coach-btn:focus,
.view-coach-btn:focus-visible {
  text-decoration: none !important;
}
.coach-item a {
  text-decoration: none;
}
.view-coach-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;

  background: transparent;
  border: 2px solid var(--brand);
  color: var(--brand);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
  user-select: none;

  transition:
    background 160ms ease,
    color 160ms ease,
    transform 120ms ease,
    box-shadow 160ms ease;
}
.view-coach-btn:visited {
  color: var(--brand);
}
.view-coach-btn:hover,
.view-coach-btn:focus-visible {
  background: var(--brand);
  color: #0b1120;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(56, 189, 248, 0.45);
}
.view-coach-btn:active {
  transform: translateY(-1px);
}

/* GALLERY SECTION – carousel */
.gallery-section {
  margin-top: 48px;
  margin-bottom: 96px;
  padding: 56px 0;
  box-sizing: border-box;
  background: #f5f7fb;
}
.gallery-carousel-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 60px;
}
.gallery-carousel-container {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.gallery-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 400ms cubic-bezier(0.2, 0.9, 0.2, 1);
  will-change: transform;
}
.gallery-item {
  flex: 0 0 calc(25% - 15px);
  display: block;
  height: 280px;
  margin: 0;
  position: relative;
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
  transform: scale(1);
  transition:
    box-shadow 220ms cubic-bezier(0.2, 0.9, 0.2, 1),
    transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1),
    background-color 200ms ease;
}
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
  transform: scale(1);
  transition: transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1);
}
.gallery-item:hover,
.gallery-item:focus-within {
  background-color: #ffffff;
  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.28),
    0 0 0 1px rgba(148, 163, 184, 0.18);
  transform: scale(1.01);
}
.gallery-item:hover img,
.gallery-item:focus-within img {
  transform: scale(1.04);
}
.gallery-arrow {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.06);
  border: 2px solid var(--brand);
  color: var(--brand);
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 200ms ease,
    transform 180ms ease,
    color 160ms ease;
  user-select: none;
}
.gallery-arrow:hover,
.gallery-arrow:focus {
  background: var(--brand);
  color: #0b1120;
  transform: scale(1.08);
  outline: none;
}
.gallery-arrow:active {
  transform: scale(0.96);
}

/* CONTACT */
.contact {
  padding: 56px 0;
  background: var(--footer-bg);
}
.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-gap);
  text-align: center;
}
.contact h2 {
  margin: 0 0 18px 0;
  font-size: 36px;
  color: var(--footer-text);
}
.contact-icons {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
}
.contact-link {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  color: var(--footer-text);
  background: var(--footer-bg);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: none;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-link:hover,
.contact-link:focus {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
  background: #0b1723;
}
.contact-link img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.lightbox.open {
  display: flex;
  pointer-events: auto;
}
.lightbox .lb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 18, 0.75);
  opacity: 0;
  transition: opacity 220ms ease;
}
.lightbox.open .lb-overlay {
  opacity: 1;
}
.lightbox .lb-stage {
  position: relative;
  z-index: 230;
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

/* adjusted: contain + responsive sizing (no forced 800x800 crop) */
.lightbox .lb-img {
  object-fit: contain;
  transform-origin: center center;
  transform: scale(0.98);
  opacity: 0;
  transition:
    transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1),
    opacity 220ms ease;
  box-shadow: 0 40px 80px rgba(4, 8, 12, 0.5);
  border-radius: 6px;
  display: block;
  margin: 0 auto;

  width: auto;
  height: auto;
  max-width: 92vw;
  max-height: 92vh;
}
.lightbox.open .lb-img {
  transform: scale(1);
  opacity: 1;
}
.lb-prev,
.lb-next,
.lb-close {
  position: fixed;
  z-index: 240;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: none;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 28px;
  cursor: pointer;
  transition: none;
  backdrop-filter: blur(4px);
}
.lb-close {
  right: 22px;
  top: 22px;
  width: 46px;
  height: 46px;
  font-size: 28px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}
.lb-prev {
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}
.lb-next {
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

/* FOOTER */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 40px 0 20px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-gap);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.footer-col .footer-logo img {
  height: 54px;
  display: block;
}
.footer-col p {
  margin: 12px 0 0 0;
  color: var(--footer-text);
}
.footer-col h3 {
  margin: 0 0 8px 0;
  color: #fff;
  font-size: 16px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin: 8px 0;
}
.footer-col a {
  color: var(--footer-text);
  text-decoration: none;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.footer-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  transition:
    transform 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}
.footer-social a:hover,
.footer-social a:focus {
  transform: translateY(-3px);
  background: var(--brand);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.8);
}
.footer-social img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: 22px;
  padding-top: 14px;
  text-align: center;
  color: #9fcfe9;
  font-size: 13px;
}

/* ===== PATCH: focus-visible accessibility ===== */
.coach-circle:focus-visible,
.view-coach-btn:focus-visible,
.nav-link:focus-visible,
.lang-flag:focus-visible,
.cta:focus-visible,
.gallery-arrow:focus-visible {
  outline: 3px solid rgba(68, 179, 235, 0.55);
  outline-offset: 4px;
}

/* ====== RESPONSIVE BREAKPOINTS ====== */

@media (min-width: 1400px) {
  :root {
    --max-width: 1300px;
  }

  body {
    font-size: 17px;
  }

  .hero {
    height: 140vh;
    min-height: 800px;
  }

  .info-inner h1 {
    font-size: 40px;
  }

  .about-image,
  .program-image {
    height: 640px;
  }

  .coaches-heading h2 {
    font-size: 52px;
  }
}

/* Header, hero, gallery, footer tweaks for ≤ 1100px */
@media (max-width: 1100px) {
  :root {
    --header-logo-height: 110px;
    --nav-gap: 20px;
    --nav-font-size: 16px;
    --flag-w: 40px;
    --flag-h: 32px;
  }

  .header-inner {
    gap: 20px;
  }

  .hero {
    height: 130vh;
    min-height: 620px;
  }
  .info-box {
    right: 4%;
  }

  .about-inner,
  .programs-inner {
    gap: 40px;
  }

  .gallery-carousel-wrapper {
    padding: 0 40px;
  }
  .gallery-item {
    flex: 0 0 calc(33.333% - 14px);
    height: 240px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* Tablet layout tweaks */
@media (max-width: 900px) {
  :root {
    --header-logo-height: 96px;
    --header-height: 100px;
  }

  main {
    padding-top: var(--header-height);
  }

  .hero {
    height: 115vh;
    min-height: 560px;
  }
  .info-box {
    right: 50%;
    top: auto;
    bottom: 32px;
    transform: translateX(50%);
    padding: 16px;
  }
  .info-inner {
    max-width: 480px;
    padding: 18px 20px;
  }
  .info-inner h1 {
    font-size: 30px;
  }
  .info-inner p {
    font-size: 15px;
  }

  .about-inner,
  .programs-inner {
    grid-template-columns: 1fr;
  }
  .about-image,
  .program-image {
    width: 100%;
    height: 420px;
    transform: translateX(0);
  }
  .about-content,
  .programs-content {
    max-width: 100%;
    padding-left: 0;
  }
  .about-content h2,
  .programs-content h2 {
    font-size: 36px;
  }
  .about-content p,
  .programs-content .large,
  .programs-content .lead {
    font-size: 18px;
  }

  .coaches {
    padding-top: 80px;
  }
}

/* ==========================================================
   MOBILE (≤ 720px) - NO OVERLAP GUARANTEE
   ========================================================== */
@media (max-width: 720px) {
  :root {
    --header-height: 140px;
    --header-logo-height: 92px;
    --nav-gap: 14px;
    --nav-font-size: 14px;
    --flag-w: 42px;
    --flag-h: 34px;
  }

  main {
    padding-top: var(--header-height);
  }

  .header-inner {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 10px 14px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .header-inner::-webkit-scrollbar {
    display: none;
  }

  .logo-link {
    order: 0;
  }

  .nav.nav-left,
  .nav.nav-right {
    margin: 0 !important;
    display: inline-flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    row-gap: 0;
    gap: var(--nav-gap);
    align-items: center;
    flex: 0 0 auto;
  }
  .nav.nav-left {
    order: 1;
  }
  .nav.nav-right {
    order: 1;
  }

  .header-inner > .nav {
    max-width: 100%;
  }

  .lang-flag img {
    width: var(--flag-w);
    height: var(--flag-h);
    transform: none;
  }

  .nav-link {
    margin-top: 0;
    padding: 6px 0;
  }
}

/* Phones */
@media (max-width: 600px) {
  :root {
    --header-height: 124px;
    --header-logo-height: 84px;
    --nav-gap: 12px;
    --nav-font-size: 13px;
  }

  main {
    padding-top: var(--header-height);
  }

  .hero {
    height: 105vh;
    min-height: 480px;
  }

  .info-box {
    bottom: 24px;
  }
  .info-inner h1 {
    font-size: 26px;
  }

  .about {
    padding: 40px var(--page-gap) 64px;
  }
  .programs {
    padding: 64px var(--page-gap) 56px;
  }

  .coaches-heading h2 {
    font-size: 32px;
  }

  .contact-link {
    width: 56px;
    height: 56px;
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  :root {
    --header-height: 124px;
    --header-logo-height: 76px;
    --nav-gap: 10px;
    --nav-font-size: 12px;
    --flag-w: 38px;
    --flag-h: 30px;
  }

  main {
    padding-top: var(--header-height);
  }

  .hero {
    height: 100vh;
    min-height: 440px;
  }

  .gallery-carousel-wrapper {
    padding: 0 20px;
  }
  .gallery-item {
    flex: 0 0 100%;
    height: 220px;
  }
  .gallery-arrow {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Lightbox + footer tweaks */
@media (max-width: 640px) {
  .lb-prev,
  .lb-next {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
  .lb-close {
    width: 40px;
    height: 40px;
    font-size: 22px;
    right: 12px;
    top: 12px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
