:root {
  --bg-base: #f6efe1;
  --bg-alt: #2f1c28;
  --text-base: #3f2332;
  --text-base-light: #7e6270;
  --text-alt: #f8f1df;
  --text-alt-light: rgba(248, 241, 223, 0.74);
  --line-base: #e4d5b3;
  --line-alt: rgba(248, 241, 223, 0.24);
  --gold: #c99a3b;
  --gold-soft: #d7b873;
  --hero-overlay: linear-gradient(150deg, rgba(47, 28, 40, 0.75), rgba(47, 28, 40, 0.2));
  --shadow-lg: 0 20px 40px rgba(57, 28, 41, 0.16);
  --font-display: "Tenor Sans", sans-serif;
  --font-sans: "Jost", sans-serif;
  --font-mono: "Inter", sans-serif;
  --nav-height: 68px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 8% 12%, rgba(201, 154, 59, 0.14), transparent 26%),
    radial-gradient(circle at 86% 86%, rgba(106, 26, 48, 0.12), transparent 32%),
    var(--bg-base);
  color: var(--text-base);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

.nav-left.hide {
  display: none;
}

.nav-logo {
  max-width: 40px;
  border-radius: 50%;
}


.nav-link.meta-text {
  font-size: 13px;
}

.display-text {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.meta-text {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.body-text {
  font-size: 16px;
  color: var(--text-base);
  max-width: 500px;
}

.body-text.alt {
  color: var(--text-alt-light);
}

.grid-container {
  position: relative;
  width: 100%;
}

.border-bottom {
  border-bottom: 1px solid var(--line-base);
}

.border-right {
  border-right: 1px solid var(--line-base);
}

.border-left {
  border-left: 1px solid var(--line-base);
}

.border-top {
  border-top: 1px solid var(--line-base);
}

.alt-section .border-bottom {
  border-bottom: 1px solid var(--line-alt);
}

.alt-section .border-right {
  border-right: 1px solid var(--line-alt);
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--nav-height);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 239, 225, 0.9);
  border-bottom: 1px solid rgba(201, 154, 59, 0.3);
  backdrop-filter: blur(10px);
}

.nav-left,
.nav-right {
  padding: 0 42px;
  display: flex;
  align-items: center;
}

.nav-right {
  justify-content: flex-end;
  gap: 38px;
}

.nav-centered {
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-right: 14px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #5e1f32;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-link {
  text-decoration: none;
  color: var(--text-base);
  transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-link:hover {
  color: #6a1a30;
  opacity: 1;
}

.hero {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: calc(100vh - var(--nav-height));
}

.hero-img-container {
  position: relative;
  overflow: hidden;
  padding: 40px;
  display: flex;
  align-items: flex-end;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: saturate(1.02) contrast(1.04);
}

.hero-img-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}

.hero-img-container>span {
  position: relative;
  z-index: 2;
}

.hero-text-container {
  padding: 84px 62px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(248, 241, 223, 0.88), rgba(248, 241, 223, 0.94));
}

.hero-title {
  font-size: clamp(2.7rem, 5.2vw, 6.2rem);
  margin-top: auto;
  margin-bottom: 5px;
  color: #5e1f32;
  text-shadow: 0 2px 12px rgba(201, 154, 59, 0.12);
  margin-top: 0;
  margin-bottom: 3rem;
}

.hero-text-container .sub-title {
  text-align: center;
  margin-bottom: 0;
  margin-top: 3rem;
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 400;
}

.hero-name-wrap {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.02;
  text-align: center;
}

.hero-credential {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-air-logo {
  width: clamp(68px, 9vw, 120px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(63, 35, 50, 0.2));
}

.hero-air-text {
  text-align: center;
  line-height: 1.45;
  font-size: 12px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  padding: 22px 40px;
  background: linear-gradient(90deg, rgba(201, 154, 59, 0.08), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1.1fr;
}

.about-col {
  padding: 84px 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-quote {
  font-size: clamp(1.6rem, 2.6vw, 3rem);
  line-height: 1.15;
  color: #6a1a30;
  max-width: 95%;
}

.about-image-col {
  align-items: center;
}

.about-img-section {
  width: min(100%, 200px);
}

.about-image {
  width: 100%;
  max-width: 200px;
  border-radius: 15px;
  border: 1px solid rgba(201, 154, 59, 0.35);
  box-shadow: 0 16px 26px rgba(57, 28, 41, 0.18);
}

.about-desc-col .body-text {
  max-width: 100%;
}

.alt-section {
  background:
    radial-gradient(circle at top right, rgba(201, 154, 59, 0.1), transparent 28%),
    var(--bg-alt);
  color: var(--text-alt);
}

.alt-section .meta-text,
.alt-section .display-text {
  color: var(--text-alt);
}

.concept-container {
  padding: 130px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.concept-intro {
  position: absolute;
  top: 62px;
  left: 40px;
}

.concept-outro {
  position: absolute;
  bottom: 62px;
  left: 40px;
}

.rings-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px 0;
}

.ring-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.ring-group:not(:first-child) {
  margin-left: -80px;
}

.ring {
  width: 320px;
  height: 320px;
  border: 1px solid rgba(215, 184, 115, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background: radial-gradient(circle at 30% 30%, rgba(201, 154, 59, 0.14), rgba(47, 28, 40, 0.32));
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

.ring-group:hover .ring {
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 8px rgba(201, 154, 59, 0.09);
  z-index: 10;
}

.ring-label {
  font-size: 24px;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
  z-index: 2;
}

.ring-img-mask {
  width: 144px;
  height: 144px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(248, 241, 223, 0.35);
}

.ring-img-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.ring-group:hover .ring-img-mask img {
  transform: scale(1.07);
  filter: saturate(1.15);
}

.ring-dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold-soft);
  border-radius: 50%;
  margin-top: 26px;
  box-shadow: 0 0 10px rgba(201, 154, 59, 0.7);
}

.gurus-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.gurus-content {
  padding: 72px 62px;
}

.gurus-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  margin-bottom: 26px;
  color: var(--gold-soft);
}

.gurus-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gurus-list li {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(248, 241, 223, 0.18);
}

.gurus-list li:last-child {
  border-bottom: 0;
}

.gurus-list p {
  font-size: clamp(1.05rem, 2.2vw, 1.6rem);
  line-height: 1.22;
  color: var(--text-alt);
  margin-top: 8px;
}

.gurus-image-wrap {
  min-height: 460px;
  overflow: hidden;
}

.gurus-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px;
  gap: 12px;
  padding: 18px 20px 24px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 18px;
  border: 1px solid rgba(201, 154, 59, 0.35);
  box-shadow: var(--shadow-lg);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: saturate(0.92);
}

.gallery-item:hover img {
  transform: scale(1.07);
  filter: saturate(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(47, 28, 40, 0.86), transparent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay span {
  color: rgba(248, 241, 223, 0.76);
  display: block;
  margin-bottom: 8px;
}

.gallery-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-alt);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 18px 20px 24px;
}

.video-card {
  background: linear-gradient(180deg, rgba(248, 241, 223, 0.07), rgba(248, 241, 223, 0.02));
  border: 1px solid rgba(215, 184, 115, 0.34);
  border-radius: 16px;
  padding: 20px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 184, 115, 0.7);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 12px;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
  transition: filter 0.3s ease;
}

.video-card:hover .video-thumb img {
  filter: saturate(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  background-color: rgba(246, 239, 225, 0.88);
  border: 1px solid rgba(201, 154, 59, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6a1a30;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.video-card:hover .play-button {
  transform: translate(-50%, -50%) scale(1.08);
  background-color: rgba(248, 241, 223, 0.95);
}

.video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background-color: rgba(47, 28, 40, 0.9);
  color: var(--text-alt);
  padding: 3px 9px;
  border-radius: 99px;
  font-size: 9px;
}

.video-title {
  font-family: var(--font-display);
  font-size: 15px;
  text-transform: uppercase;
  color: var(--text-alt);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

.video-meta {
  font-size: 11px;
}

.youtube-cta {
  padding: 24px 40px 40px;
  text-align: center;
  border-top: 1px solid rgba(201, 154, 59, 0.24);
}

.youtube-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-soft);
  text-decoration: none;
  padding: 10px 18px;
  border: 1px solid rgba(215, 184, 115, 0.45);
  border-radius: 999px;
  transition: background-color 0.25s ease;
}

.youtube-link:hover {
  background-color: rgba(248, 241, 223, 0.08);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 18px 20px 24px;
}

.award-card {
  background: linear-gradient(180deg, #fffaf0, #f7ecd6);
  border: 1px solid rgba(201, 154, 59, 0.32);
  border-radius: 16px;
  padding: 36px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.award-image-container {
  max-width: 90px;
}

.award-image-container img {
  width: 100%;
}

.award-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(57, 28, 41, 0.12);
}

.award-year {
  color: #8f6f36;
  display: block;
  margin-bottom: 16px;
}

.award-title {
  font-size: 18px;
  margin-bottom: 12px;
  color: #5e1f32;
}

.award-org {
  font-weight: 400;
  margin-bottom: 16px;
  color: #5f4550;
}

.award-desc {
  font-size: 12px;
  color: #735a66;
}

.site-footer {
  padding: 60px 54px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  background:
    radial-gradient(circle at 14% 20%, rgba(201, 154, 59, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(246, 239, 225, 0.78), rgba(201, 154, 59, 0.11));
  align-items: start;
  border-bottom: 1px solid rgba(201, 154, 59, 0.25);
}

.footer-col h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 300;
  color: #5e1f32;
}

.footer-copy {
  margin-bottom: 28px;
}

.footer-address {
  text-align: right;
  justify-self: end;
  padding: 14px 18px 14px 24px;
  border-left: 1px solid rgba(201, 154, 59, 0.24);
}

.footer-label {
  display: block;
  margin-bottom: 12px;
  color: #7a5964;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-link {
  text-decoration: none;
  color: var(--text-base);
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-link::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 1px;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

.contact-link:hover::before {
  width: 25px;
}

.copyright-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 24px;
  background: rgba(47, 28, 40, 0.95);
  border-top: 1px solid rgba(215, 184, 115, 0.32);
}

.copyright-bar .meta-text {
  color: rgba(248, 241, 223, 0.82);
  text-align: center;
  letter-spacing: 0.16em;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 980;
  height: 52px;
  min-width: 52px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 28px rgba(17, 95, 49, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}

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

.language-switcher {
  position: fixed;
  left: 10px;
  bottom: 20px;
  z-index: 981;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(47, 28, 40, 0.92);
  border: 1px solid rgba(215, 184, 115, 0.45);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.lang-btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(248, 241, 223, 0.85);
  padding: 8px 14px;
  cursor: pointer;
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.lang-btn.is-active {
  background: rgba(215, 184, 115, 0.22);
  color: #fff6df;
}

.lightbox {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(109, 35, 66, 0.34), rgba(20, 8, 14, 0.95)),
    rgba(20, 8, 14, 0.96);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 24px;
}

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

.lightbox-inner {
  position: relative;
  width: min(1080px, 94vw);
  height: min(760px, 88vh);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(215, 184, 115, 0.26);
  background: linear-gradient(180deg, rgba(248, 241, 223, 0.06), rgba(248, 241, 223, 0.02));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.lightbox-img {
  width: calc(100% - 70px);
  height: calc(100% - 90px);
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(215, 184, 115, 0.35);
  background: rgba(18, 8, 13, 0.45);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.45);
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(215, 184, 115, 0.62);
  background: rgba(248, 241, 223, 0.2);
  color: var(--text-alt);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.lightbox-btn:hover {
  background: rgba(248, 241, 223, 0.3);
  border-color: rgba(215, 184, 115, 0.9);
  transform: translateY(-50%) scale(1.04);
}

.lightbox-prev {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}

.lightbox-close {
  top: 10px;
  right: 10px;
  transform: none;
  width: 40px;
  height: 40px;
}

.lightbox-close:hover {
  transform: scale(1.03);
}

.lightbox-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  text-align: center;
  color: rgba(248, 241, 223, 0.88);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.copyright-text {
  margin-bottom: 20px;
}

.copyright-bar {
  display: flex;
  flex-direction: column;
}

.vwss-badge-wrap {
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-img-container {
    height: 62vh;
    border-right: none;
    border-bottom: 1px solid var(--line-base);
  }

  .about-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .border-right {
    border-right: none;
  }

  .about-col {
    padding: 44px;
  }

  .about-image-col {
    padding-top: 0;
    padding-bottom: 8px;
  }

  .about-img-section {
    width: 100%;
    max-width: 100%;
  }

  .about-image {
    max-width: 100%;
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    object-position: top;
  }

  .rings-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .ring-group:not(:first-child) {
    margin-left: 0;
    margin-top: -56px;
  }

  .concept-intro,
  .concept-outro {
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    margin-bottom: 34px;
    text-align: center;
  }


  .hero-title {
    font-size: clamp(2rem, 10vw, 5rem);
  }

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

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: 1;
    grid-row: auto;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gurus-layout {
    grid-template-columns: 1fr;
  }

  .gurus-content {
    padding: 44px;
  }

  .gurus-image-wrap {
    min-height: 340px;
  }

  .footer-address {
    justify-self: start;
    text-align: left;
    border-left: 0;
    border-top: 1px solid rgba(201, 154, 59, 0.24);
    padding: 22px 0 0;
  }

  .lightbox-prev {
    left: 6px;
  }

  .lightbox-next {
    right: 6px;
  }
}

@media (max-width: 768px) {

  .hero-text-container .sub-title {
    margin-bottom: 20px;
    font-size: 15px;
  }

  .hero span.meta-text {
    text-align: center;
  }

  nav {
    height: auto;
    min-height: var(--nav-height);
    padding: 10px 0;
    justify-content: flex-end;
  }

  nav.border-bottom {
    justify-content: space-between;
  }

  .nav-left.hide.show-mobile {
    display: block;
  }

  #topMenu.nav-right.is-open {
    position: absolute;
    width: 100%;
    background: #5e1f32;
    top: 61px;
    opacity: 1;
    height: fit-content;
  }

  #topMenu.nav-right {
    height: 1px;
    opacity: 0;
    transition: all 0.5s ease-in-out 0s;
  }

  .about-quote {
    line-height: 1.5;
    text-align: center;
  }

  #topMenu.nav-right.is-open .nav-link.meta-text:not(:last-child) {
    width: 100%;
    border-bottom: 1px dashed #e0678b;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-right {
    display: none;
    width: 100%;
    padding: 8px 20px 14px;
    gap: 14px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border-top: 1px solid rgba(201, 154, 59, 0.25);
    margin-top: 6px;
  }

  .nav-right.is-open {
    display: flex;
  }

  .nav-centered {
    justify-content: flex-start;
  }

  .nav-link.meta-text {
    font-size: 16px;
    padding-bottom: 5px;
    padding-top: 5px;
    color: #fff;
  }

  .nav-left,
  .nav-right {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-text-container {
    padding: 48px 24px;
  }

  .hero-air-logo {
    width: 76px;
  }

  .section-header {
    padding: 20px;
  }

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

  .awards-grid,
  .gallery-grid {
    padding: 14px;
  }

  .site-footer {
    padding: 40px 24px;
  }

  .copyright-bar {
    padding: 12px 16px;
  }

  .copyright-bar .meta-text {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .floating-whatsapp {
    bottom: 78px;
    right: 14px;
    height: 46px;
    min-width: 46px;
    padding: 0 12px;
    font-size: 11px;
  }

  .language-switcher {
    bottom: 75px;
  }

  .vwss-badge-wrap {
    margin-top: 20px;
    margin-bottom: 5px;
  }

  .lightbox-inner {
    width: 96vw;
    height: min(560px, 82vh);
    border-radius: 14px;
  }

  .lightbox-img {
    width: calc(100% - 34px);
    height: calc(100% - 84px);
  }

  .lightbox-btn {
    width: 42px;
    height: 42px;
  }
}