﻿html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* â”€â”€â”€ Navbar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.navbar {
  display: none;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(53, 61, 68, 0);
  color: #fff;
  padding: 0.6rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: 'Firme', Arial, sans-serif;
  font-size: 13px;
  transform: translateY(-100%);
  transition: none;
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.6rem 1rem;
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 0.5rem 0.8rem;
    font-size: 11px;
  }
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-chapters {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.8rem;
  gap: 0.45rem;
}

.navbar-chapters a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .navbar-left {
    gap: 0.8rem;
  }

  .navbar-chapters {
    display: none;
  }
}

@media (max-width: 600px) {
  .navbar-left {
    gap: 0.5rem;
  }
}

.navbar-left a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

.navbar-left img {
  height: 24px;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .navbar-left img {
    height: 20px;
  }
}

@media (max-width: 600px) {
  .navbar-left img {
    height: 28px;
  }
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

@media (min-width: 769px) {
  .menu-wrapper {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar-right {
    gap: 0.8rem;
  }
}

@media (max-width: 600px) {
  .navbar-right {
    gap: 0.5rem;
  }
}

.navbar-right button,
.navbar-right a {
  background: none;
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Firme', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  padding: 8px 0px;
  min-height: 44px;
  /* min-width: 44px; */
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .navbar-right button,
  .navbar-right a {
    font-size: 12px;
    padding: 6px 10px;
  }
}

@media (max-width: 600px) {
  .navbar-right button,
  .navbar-right a {
    font-size: 11px;
    padding: 5px 8px;
  }
}

/* Dropdown menus */
.menu-wrapper .dropdown {
    display: none;
    position: absolute;
    left: 60%;
    transform: translateX(-50%);
    top: 115%;
    background: #000000;
    color: #fff;
    flex-direction: column;
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    max-height: 80vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    z-index: 9999;
    min-width: 150px;
}

.social-dropdown {
      display: none;
    position: absolute;
    right: -23px;
    top: 119%;
    background: #000000;
    color: #fff;
    flex-direction: column;
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    max-height: 80vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    z-index: 9999;
    min-width: 75px;
}

.dropdown a,
.social-dropdown a {
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
  /* padding-left: 0; */
}

@media (max-width: 768px) {
  /* .menu-wrapper .dropdown â€” no override needed at this breakpoint */

  .dropdown a {
    /* padding-left: 0; */
  }
}

@media (max-width: 600px) {
  /* .menu-wrapper .dropdown â€” no override needed at this breakpoint */

  .dropdown a {
    /* padding-left: 0; */
  }
}

.dropdown a:hover,
.social-dropdown a:hover {
  background: #222;
}

.navbar-right .icon {
  font-size: 1rem;
}

.navbar-right .icon .icon-img,
.social-dropdown a .icon-img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .navbar-right .icon {
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .navbar-right .icon {
    font-size: 0.8rem;
  }
}

.dropdown::-webkit-scrollbar {
  width: 6px;
}

.dropdown::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.dropdown::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .dropdown {
    left: 0;
    right: 0;
    width: auto;
    max-height: 85vh;
  }
}

.show {
  display: flex;
}

.dropdown.show {
  display: flex;
}

/* CrÃ©ditos Section */
#creditos {
  background: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem;
  min-height: 100vh;
  box-sizing: border-box;
}

#creditos .guardian-text {
  max-width: 700px;
  margin: 0 auto;
}

#creditos .toptitle {
  color: #353d44;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-family: 'Firme';
}

#creditos .back-top {
  margin-bottom: 2rem;
}

#creditos .back-top a {
  text-decoration: none;
  color: #353d44;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  justify-content: center;
  font-family: 'Firme';
  padding-bottom: 100px;
}

#creditos p {
  color: #333;
  line-height: 1.8;
  font-size: 1rem;
  margin: 0.8rem 0;
  font-family: 'Firme';
}

#creditos p:last-child {
  color: #555;
  font-size: 0.8rem;
  margin-top: 2rem;
}

@media (max-width: 600px) {
  #creditos {
    padding: 4rem 1rem;
  }
  #creditos .guardian-text {
    max-width: 90%;
  }
}

/* Force proper centering for the CrÃ©ditos section */
#creditos .guardian-frame {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 auto !important;
  text-align: center !important;
  padding: 6rem 1.5rem !important;
}

@media (max-width: 600px) {
  .guardian-frame {
    padding: 0 !important;
  }
  #creditos .guardian-frame {
    padding: 0 !important;
  }
  .guardian-text {
    width: 90% !important;
    transform: translate(0px, 0px) !important;
    padding: 0rem;
  }
}

/* Veja Mais Section */
.vejamais {
  width: 100%;
  background-color: #f0f0f0;
  padding-bottom: 137px;
  padding-top: 20vh;
}

.vejamaiscontainer {
  width: 1265px;
  margin: auto;
  overflow: hidden;
}

.vejamaiscontainer h3 {
  font-family: 'Blacker Pro Display';
  font-style: normal;
  font-weight: 900;
  font-size: 42px;
  line-height: 42px;
  color: #000000;
  text-transform: none;
}

.grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  column-gap: 10px;
  row-gap: 1em;
}

.rectangle {
  width: 268px;
  display: flex;
  flex-direction: column;
}

.rectangle img {
  width: 268px;
  height: 178px;
  max-width: fit-content;
}

.rectangle p {
  font-family: 'Blacker Pro Display';
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
  margin-bottom: 0;
  margin-top: 10px;
}

/* .rectangleA â€” placeholder, no styles yet */

hr {
  border: 1px solid #cccccc;
  margin: 16px 0;
  height: 0;
  background: none;
  display: block;
}

.vertical-bar {
  width: 1px;
  height: 180px;
  background: #cccccc;
  margin: 0 16px;
  display: inline-block;
}

/* Show only hr on mobile, only vertical-bar on desktop */
@media (max-width: 768px) {
  .vertical-bar {
    display: none !important;
  }
  /* hr {
    display: block !important;
  } */
}
@media (min-width: 769px) {
  hr {
    display: none !important;
  }
  .vertical-bar {
    display: inline-block !important;
  }
}

/* #hr1, #hr2, #hr3 â€” no specific overrides */

@media (max-width: 1280px) {
  .vejamaiscontainer {
    width: 600px;
  }
  .grid {
    grid-template-columns: repeat(3, 2fr);
  }
  #hr1 {
    display: none;
  }
}

@media (max-width: 700px) {
  #hr2 {
    display: none;
  }
  #hr3 {
    display: none;
  }
}

/* Footer */
.footer {
  position: relative;
  height: 170px;
  width: 100%;
  background: #353d44;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footercontainer {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  padding: 0px;
  position: absolute;
  width: 1264px;
  height: 110px;
  margin: 2% 10%;
}

.footercontainer1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  position: static;
  width: 794px;
  /* height: 110px; */
  left: 0px;
  top: calc(50% - 110px / 2);
  justify-content: space-between;
}

.footercontainer2 {
  right: 0;
  width: auto;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  position: relative;
  width: 470px;
  height: 110px;
  left: 0px;
  top: calc(50% - 110px / 2);
  justify-content: flex-end;
}

.containerlogoexpresso {
  position: static;
  width: 155.83px;
  height: 32px;
  left: 0px;
  top: 0px;
  overflow: hidden;
}

.containerlogoexpresso img {
  width: 100%;
  height: auto;
}

.containerassinaturas {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  position: static;
  width: 359px;
  height: 18px;
  left: 0px;
  top: 44px;
  justify-content: flex-start;
  color: #bfd4df;
  flex-wrap: wrap;
}

.containerassinaturas p {
  font-family: 'Firme';
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  color: #bfd4df;
}

.containerassinaturas a {
  color: #bfd4df;
}

.containerresto {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  position: static;
  width: 100%;
  height: 36px;
  left: 0px;
  top: 74px;
  justify-content: flex-start;
  align-content: stretch;
  flex-wrap: wrap;
}

.footer p {
  margin: 0;
  padding-right: 10px;
}

.footercontainersocials {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px 0px 4px;
  position: static;
  width: 224px;
  height: 66px;
  right: 0px;
  bottom: 0px;
  flex: none;
  order: 1;
  flex-grow: 0;
  justify-content: space-between;
}

.footercontainersocials p {
  position: static;
  width: 180px;
  height: 18px;
  right: 158px;
  top: 0px;
  font-family: 'Firme';
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  color: #bfd4df;
}

.footersocials {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  position: static;
  width: 224px;
  height: 32px;
  right: 0px;
  top: 30px;
  justify-content: space-between;
}

.footersocials a {
  position: static;
  width: 32px;
  height: 32px;
  left: 0px;
  top: 0px;
  border: 1px solid;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.containerresto p {
  font-family: 'Firme';
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  color: #ffffff;
}

@media (max-width: 1400px) {
  .footercontainer1 {
    width: 620px;
  }
}

@media (max-width: 968px) {
  .footercontainer1 {
    width: 60%;
  }
  .footercontainer2 {
    width: 40%;
  }
}

@media (max-width: 700px) {
  .footer {
    height: 342px;
  }
  .footercontainer {
    flex-direction: column;
    align-items: flex-start;
    width: 85%;
    height: 278px;
    margin: 1px;
  }
  .vejamaiscontainer {
    flex-direction: column;
    align-items: flex-start;
    width: 85%;
  }
}

.hamburger {
  display: none !important;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px 12px;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .hamburger {
    font-size: 1.1rem;
    padding: 6px 10px;
  }
}

@media (max-width: 600px) {
  .hamburger {
    font-size: 1rem;
    padding: 5px 8px;
  }
}

@media (max-width: 768px) {
  .navbar-right .icon {
    display: none;
  }
  .hamburger {
    display: flex !important;
  }
}

.vl {
  border-left: 1px solid #ffffff;
  height: 20px;
}

@media (max-width: 768px) {
  .vl {
    height: 16px;
  }
}

@media (max-width: 600px) {
  .vl {
    height: 14px;
  }
}

body{
background-color: #ffffff;
}

html, body {
  scroll-behavior: auto;
}

body.locked {
  overflow: hidden;
}

section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 20px 0px 20px;
}

@media (max-width: 1024px) {
  section {
    padding: 40px 15px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 30px 15px;
    min-height: auto;
  }
}

@media (max-width: 600px) {
  section {
    padding: 20px 10px;
  }
}

.hero {
  background: #fafafa;
  color: white;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 0.9rem;
  }
}

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}

.content {
  background: #ffffff;
  text-align: center;
}

.content div {
  width: 700px;
  text-align: left;
  max-width: 700px;
  margin: 24px auto 0 auto;
}

@media (max-width: 768px) {
  .content div {
    width: 100%;
    max-width: 100%;
    margin: 16px auto 0;
  }
}

.content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.h2-gif-strip {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 8px;
  margin: 0 0 14px 0;
}

.h2-gif-strip img,
.h2-gif-strip video {
  width: auto;
  max-width: 100%;
  max-height: 75px;
  object-fit: cover;
  display: block;
  /* border-radius: 4px; */
  margin-bottom: 50px;
}

.h2-gif-strip video {
  max-width: 100%;
  max-height: 726px;
}

@media (max-width: 1024px) {
  .content h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}

@media (max-width: 600px) {
  .content h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .h2-gif-strip {
    gap: 8px;
    margin-bottom: 10px;
  }
}

.content p, .hero-body-text p {
  font-size: 1rem;
  line-height: 1.6;
  font-family: Blacker Pro Display;
  font-weight: 400;
  font-style: Regular;
  font-size: 19px;
  /* leading-trim: NONE; */
  line-height: 33px;
  letter-spacing: 0%;
  margin-bottom: 1.5rem;
  padding: 10px;
}

.two::first-letter {
  -webkit-initial-letter: 3;
  initial-letter: 3; /* Initial letter occupies 3 lines */
  font-size: 35px;
  line-height: 70px;
  color: white!important;
  background-color: white;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  margin-right: 20px;
}

/* @media (max-width: 768px) {
  .content p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 600px) {
  .content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
} */

.content p {
  overflow-wrap: anywhere;
}

.video-section {
  background: black;
  position: relative;
  min-height: 100vh;
}

@media (max-width: 768px) {
  .video-section {
    min-height: auto;
  }
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  video {
    max-height: 100vh;
  }
}

.overlay-text {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.5rem;
  background: rgba(0,0,0,0.5);
  padding: 10px 20px;
  border-radius: 8px;
}

@media (max-width: 1024px) {
  .overlay-text {
    font-size: 1.3rem;
    bottom: 30px;
  }
}

@media (max-width: 768px) {
  .overlay-text {
    font-size: 1.1rem;
    bottom: 20px;
    padding: 8px 15px;
  }
}

@media (max-width: 600px) {
  .overlay-text {
    font-size: 0.9rem;
    bottom: 15px;
    padding: 6px 12px;
  }
}

.sound-cta {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-gif-wrap {
  width: min(1080px, 92vw);
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.cta-gif-wrap picture {
  display: block;
  width: 100%;
}

.cta-gif {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 769px) {
  .content.sound-cta {
    padding: 0;
  }

  .content.sound-cta .cta-gif-wrap {
    width: 100%;
    max-width: none;
  }

  .content.sound-cta .cta-gif-wrap,
  .content.sound-cta .cta-gif-wrap picture {
    width: 100%;
  }
}

.sound-cta:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.sound-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.sound-cta p {
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .sound-cta h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .sound-cta h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .sound-cta p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 600px) {
  .sound-cta,
  .video-section {
    padding: 2px;
  }

  .sound-cta {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cta-gif-wrap {
    width: min(540px, 94vw);
  }
  
  .sound-cta h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  .sound-cta p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .sound-cta:hover {
    transform: scale(1.01);
  }
}

.video-section.hidden {
  display: none;
}

.content-sections.hidden {
  display: none;
}

/* â”€â”€â”€ Hero Layout Styles â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-layout {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 0px;
}

.hero-image-block {
  position: relative;
  width: 100vw;
  /* height: 480px; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bg {
    width: 100%;
    display: block;
    /* height: 100vw; */
    object-fit: cover;
    /* position: absolute; */
    top: 0px;
    left: 0px;
    z-index: 1;
}

.hero-athlete {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  z-index: 2;
}

.hero-title {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
}

.hero-title h1 {
  font-family: 'Blacker Pro Display', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 100px;
  line-height: 103px;
  letter-spacing: 0;
  text-align: center;
  color: #000000;
}

.hero-arrow {
  margin-top: 24px;
  font-size: 2.2rem;
  color: #222;
}

.hero-logo-block {
  position: absolute;
  top: 340px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.hero-logo {
  width: 120px;
  height: auto;
}

.hero-text-block {
  width: 865px;
  /* height: 288px; */
  max-width: 865px;
  min-height: 288px;
  margin-top: 320px;
  text-align: center;
  font-size: 1.1rem;
  color: #222;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-lead {
  font-family: 'Firme', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0;
  text-align: center;
  color: #222;
}

.hero-lead span {
  font-family: 'Firme', serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0;
  text-align: center;
  color: #222;
}

.hero-date {
  font-family: 'Firme', serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 36px;
  letter-spacing: 0;
  text-align: center;
  color: #222;
  margin-top: 100px;
}

.hero-arrow-section {
  margin: 32px 0 0 0;
  font-size: 2.2rem;
  color: #222;
  text-align: center;
}

.pre-creditos-arrow {
  margin: 48px 0 16px;
}

.pre-creditos-arrow-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #353d44;
  text-decoration: none;
  font-family: 'Firme', Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-arrow-img.hero-arrow-img--up {
  transform: rotate(180deg);
}

.hero-body-text {
  max-width: 700px;
  margin: 24px auto 0 auto;
  font-size: 1rem;
  color: #222;
  text-align: left;
}

.photo-credit-figure {
  width: min(780px, 95vw);
  margin: 2rem 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.hero-inline-image {
  display: block;
  width: 100%;
  margin: 0;
  border-radius: 0;
}

.photo-credit-zone {
  margin: 0;
  padding: 10px 0px;
  background: #ffffff00;
  color: #1f1f1f;
  font-family: 'Firme', Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 600;
}

.photo-credit-zone .photo-credit-label {
  font-weight: 700;
}

@media (max-width: 900px) {
  /* .hero-image-block, .hero-bg { height: 320px; } â€” disabled */
  .hero-title {
    top: 120px;
  }
  .hero-logo-block {
    top: 220px;
  }
  .hero-text-block {
    margin-top: 360px;
  }
}
@media (max-width: 600px) {
  .hero-layout {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-image-block {
    width: 100%;
    max-width: 100%;
    height: 100vh;
  }

  .hero-bg {
    width: 100%;
    max-width: none;
    height: 100vh;
  }

  .hero-title h1 {
    font-size: 2rem;
    line-height: 2.2rem;
    padding-bottom: 20px;
  }
  .hero-logo {
    width: 80px;
  }
  /* .hero-image-block, .hero-bg { height: 300px; } â€” disabled */
  .hero-title {
    top: 165px;
  }
  .hero-logo-block {
    top: 165px;
  }
  .hero-text-block {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    margin-top: 56px;
    font-size: 0.95rem;
    padding: 0 2px;
  }
  .hero-lead,
  .hero-lead span {
    font-size: 1.35rem;
    line-height: 1.75rem;
    overflow-wrap: anywhere;
    margin-top: -100px;
    padding-top: 100px;
  }

  .hero-body-text {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    margin: 20px auto 0;
    padding: 0 10px;
  }

  .photo-credit-figure {
    width: 100%;
    margin: 1.2rem 0;
    left: 0;
    transform: none;
  }

  .photo-credit-zone {
    padding: 8px 0px;
    font-size: 0.82rem;
  }

  .hero-body-text .two::first-letter {
    font-size: 28px;
    line-height: 52px;
    margin-right: 12px;
  }
}

.hero-arrow-img {
  width: 32px;
  height: 32px;
  opacity: 1;
  position: relative;
  top: 0;
  left: 0;
  transform: rotate(0deg);
  display: block;
  margin: 0 auto;
  animation: blink 3s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* â”€â”€â”€ Gallery Masonry â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mission-section {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mission-section .gallery-masonry {
  width: min(1200px, 96vw);
  max-width: 1200px;
    margin: 3rem auto 0;
}

.content.mission-section {
  width: 100%;
}

.content.mission-section .gallery-masonry {
  width: min(1200px, 96vw);
  max-width: 1200px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.content.mission-section .gallery-item {
  width: 100%;
}


.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-items: center;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 20px;
}

.gallery-item {
  overflow: hidden;
  /* border-radius: 8px; */
  background: #f0f0f0;
  aspect-ratio: 16 / 10;
  margin: 0 auto;
}

@media (min-width: 769px) {
  .gallery-masonry {
    align-items: start;
  }

  .gallery-masonry .gallery-item:nth-child(-n+2) {
    align-self: baseline;
  }

  .gallery-masonry .gallery-item:nth-child(n+3):nth-child(-n+4) {
    align-self: start;
  }

  /* Keep 2x2 but vary proportions slightly for visual rhythm. */
  .gallery-masonry .gallery-item:nth-child(1) {
    aspect-ratio: 16 / 9;
  }

  .gallery-masonry .gallery-item:nth-child(2) {
    aspect-ratio: 15 / 10;
  }

  .gallery-masonry .gallery-item:nth-child(3) {
    aspect-ratio: 15 / 10;
  }

  .gallery-masonry .gallery-item:nth-child(4) {
    aspect-ratio: 16 / 9;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 9999;
  cursor: zoom-out;
}

.gallery-lightbox.open {
  display: flex;
}

.gallery-lightbox img {
  width: auto;
  height: auto;
  max-width: 95vw;
  max-height: 95vh;
  /* border-radius: 8px; */
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

body.gallery-lightbox-open {
  overflow: hidden;
}


@media (max-width: 1024px) {
  .gallery-masonry {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .mission-section {
    justify-content: flex-start;
  }

  .mission-section .gallery-masonry {
    width: 100%;
    margin-top: 2rem;
  }

  .gallery-masonry {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 15px;
  }

  .gallery-item {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 600px) {
  .gallery-masonry {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 10px;
  }

  .gallery-item {
    aspect-ratio: 4 / 3;
  }

  .gallery-lightbox {
    padding: 10px;
    width: 100%;
    height: 100%;
    inset: 0;
  }

  .gallery-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
  }
}

/* Chapter inline video (Training & Discipline) */
.training-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.training-section .chapter-video {
  width: min(800px, 95vw);
  margin: 2rem 0;
  /* border-radius: 8px; */
  display: block;
}

@media (max-width: 768px) {
  .training-section .chapter-video {
    width: 95vw;
    margin: 1.2rem 0;
    border-radius: 4px;
  }
}

