:root {
  --red-main: #d63333;
  --red-deep: #a31515;
  --red-soft: #f7d9d9;
  --red-light: #fff3f3;
  --white: #ffffff;
  --black: #171717;
  --text-soft: #5f5f5f;
  --border-soft: rgba(214, 51, 51, 0.12);
  --shadow-soft: 0 18px 50px rgba(140, 20, 20, 0.12);
  --shadow-strong: 0 22px 60px rgba(140, 20, 20, 0.18);
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --transition: all 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--black);
  background: #fffdfd;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

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

.section-pad {
  padding: 110px 6%;
}

.section-head {
  max-width: 850px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-head h2 {
  color: #fff;
}
.section-head h3 {
  color: #000;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 18px;
}
.section-head h4 {
  color: #000;
  
}


.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 14px;
}
.section-tags {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #000;
  margin-bottom: 14px;
}

.section-tag.light {
  color: #ffdada;
}

.section-head h2,
.vision-left h2,
.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 18px;
}

.section-head p,
.about-card p,
.opening-main-text p,
.opening-card-text p,
.highlight-card p,
.vision-right p,
.cta-box p {
  font-size: 1rem;
  line-height: 1.85;
  color: #000;
}

.mini-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
  background: #fff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(214, 51, 51, 0.08);
}

.navbar.scrolled {
  background: rgba(255, 247, 247, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.navbar.nav-hidden {
  transform: translateY(-100%);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 80px;
  height: 80x;
  
  overflow: hidden;
  
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  font-size: 0.92rem;
  font-weight: 600;
  color: #222;
  position: relative;
  transition: var(--transition);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--red-main);
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--red-main);
}

.k3-link {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #24783A, #2f8a46);
  color: #fff !important;
  box-shadow: 0 10px 26px rgba(36, 120, 58, 0.2);
}

.k3-link::after {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px 0;
  background: var(--red-main);
  transition: 0.3s;
}

/* HERO */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  height: 100%;
}
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding: 140px 6% 90px;
  overflow: hidden;
  background: linear-gradient(135deg, #a41414 0%, #d53636 45%, #f16060 100%); /* your red */
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(214, 51, 51, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 51, 51, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: glowMove 8s ease-in-out infinite alternate;
}

.hero-glow-1 {
  width: 280px;
  height: 280px;
  background: rgba(255, 98, 98, 0.18);
  top: 10%;
  left: -60px;
}

.hero-glow-2 {
  width: 340px;
  height: 340px;
  background: rgba(214, 51, 51, 0.14);
  bottom: -50px;
  right: -30px;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(214, 51, 51, 0.14);
  animation: floatSlow 12s ease-in-out infinite;
}

.circle-1 {
  width: 180px;
  height: 180px;
  top: 18%;
  right: 17%;
}

.circle-2 {
  width: 110px;
  height: 110px;
  bottom: 18%;
  left: 10%;
  animation-delay: 2s;
}

.circle-3 {
  width: 68px;
  height: 68px;
  top: 32%;
  left: 44%;
  animation-delay: 4s;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 760px;
  color: #ffffff;
}

.hero-content h1,
.hero-content .hero-subtitle,
.hero-content .hero-text {
  color: #ffffff;
}

.hero-card {
  position: relative;
  z-index: 4;
}

.hero-tag {
  display: inline-block;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(214, 51, 51, 0.18);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #b71c1c;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.95;
  font-weight: 800;
  
  margin-bottom: 18px;
  
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  font-weight: 700;
  color: #c62828;
  margin-bottom: 18px;
  
}

.hero-text {
  max-width: 680px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #2b2b2b;
  margin-bottom: 34px;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.45);
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-main), #ef5a5a);
  color: white;
  box-shadow: 0 12px 30px rgba(214, 51, 51, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(214, 51, 51, 0.25);
}

.btn-secondary {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(214, 51, 51, 0.15);
  color: var(--red-main);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: #fff;
}

.hero-card-inner {
  background: #fff;
  border: 1px solid rgba(214, 51, 51, 0.12);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.hero-card-inner h3 {
  font-size: 1.7rem;
  margin-bottom: 12px;
  color: #8f1111;
}

.hero-card-inner p {
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 18px;
}

.hero-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  min-height: 250px;
}

.hero-image-wrap img {
  height: 100%;
}

/* ABOUT */
.about {
  background: linear-gradient(180deg, #fffefe 0%, #fff8f8 100%);
}

.about-grid {
  max-width: 1350px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: start;
}

.about-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 38px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
}

.about-card p + p {
  margin-top: 18px;
}

.info-stack {
  display: grid;
  gap: 20px;
}

.info-box {
  background: linear-gradient(135deg, #fff4f4, #ffffff);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 28px rgba(140, 20, 20, 0.06);
}

.info-box h3 {
  font-size: 1.2rem;
  color: var(--red-main);
  margin-bottom: 10px;
}

/* OPENING */
.opening {
  background: linear-gradient(135deg, #a41414 0%, #d53636 45%, #f16060 100%);

}

.opening-main {
  max-width: 1350px;
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
}

.opening-main-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  min-height: 450px;
}

.opening-main-image img {
  height: 100%;
}

.opening-main-text {
  padding: 10px 12px;
}

.opening-main-text h3 {
  font-size: 2.1rem;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
}

.opening-main-text p + p {
  margin-top: 16px;
}

.opening-cards {
  max-width: 1350px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.opening-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  transition: var(--transition);
}

.opening-card:hover {
  transform: translateY(-8px);
}

.opening-card img {
  height: 260px;
}

.opening-card-text {
  padding: 24px;
}

.opening-card-text h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #8f1414;
}

/* HIGHLIGHTS */
.highlights {
  background:
    radial-gradient(circle at top left, rgba(255, 219, 219, 0.5), transparent 28%),
    linear-gradient(180deg, #fff7f7 0%, #fffefe 100%);
}

.highlight-grid {
  max-width: 1350px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.highlight-card {
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-7px);
}

.highlight-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fbe2e2, #ffd5d5);
  color: var(--red-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 18px;
}

.highlight-card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
  color: #8f1717;
}

/* GALLERY */
.gallery {
  background: #fff;
}

.gallery-grid {
  max-width: 1350px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-auto-rows: 240px;
  gap: 20px;
}

.gallery-item {
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

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

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

/* VISION */
.vision {
  background: linear-gradient(135deg, #a41414 0%, #d53636 45%, #f16060 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.vision::before,
.vision::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  filter: blur(10px);
}

.vision::before {
  width: 260px;
  height: 260px;
  top: -100px;
  left: -70px;
}

.vision::after {
  width: 320px;
  height: 320px;
  bottom: -130px;
  right: -70px;
}

.vision-wrap {
  max-width: 1350px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.vision-right p {
  color: rgba(255,255,255,0.9);
}

.vision-right p + p {
  margin-top: 16px;
}

/* CTA */
.cta {
  background: #fff8f8;
}

.cta-box {
  max-width: 1100px;
  margin: 0 auto;
  padding: 55px 40px;
  background: linear-gradient(135deg, #ffffff, #fff3f3);
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.cta-buttons {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ANIMATIONS */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 1 !important;
  transform: none !important;
}

.reveal-up {
  transform: translateY(50px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

@keyframes glowMove {
  from { transform: translateY(0) translateX(0) scale(1); }
  to { transform: translateY(30px) translateX(15px) scale(1.08); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero,
  .about-grid,
  .opening-main,
  .vision-wrap {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero {
    padding-top: 150px;
  }

  .hero-card {
    max-width: 700px;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 18px;
    width: 260px;
    padding: 20px;
    background: rgba(255, 248, 248, 0.98);
    border: 1px solid rgba(214, 51, 51, 0.08);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    opacity: 1;
    pointer-events: none;
    transform: translateY(10px);
    transition: 0.3s ease;
  }

  .nav-menu.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .highlight-grid,
  .opening-cards,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .hero {
    min-height: auto;
    padding: 140px 6% 80px;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
  }

  .nav-inner {
    padding: 16px 20px;
  }

  .section-pad {
    padding: 90px 6%;
  }

  .opening-main-image {
    min-height: 320px;
  }
}

@media (max-width: 560px) {
  .brand-name {
    font-size: 1rem;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-head h2,
  .vision-left h2,
  .cta-box h2 {
    font-size: 2rem;


  }

  .about-card,
  .info-box,
  .highlight-card,
  .opening-card-text,
  .cta-box,
  .hero-card-inner {
    padding: 22px;
  }
}

/* VIDEO - plain */
.partnership {
  background: #ffffff;
}

.video-shell {
  width: 100%;
}

.youtube-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  max-height: 620px;
}

.youtube-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-caption {
  margin-top: 22px;
}

.video-caption h3 {
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}























/* =========================================================
   RESPONSIVE MEDIA - ALL TOGETHER AT THE BOTTOM
========================================================= */

/* ---------- LARGE TABLET / SMALL LAPTOP ---------- */
@media (max-width: 1200px) {
  .nav-inner {
    padding: 16px 24px;
  }

  .hero,
  .about-grid,
  .opening-main,
  .vision-wrap {
    gap: 28px;
  }

  .hero {
    grid-template-columns: 1fr 0.95fr;
    padding: 135px 5% 80px;
  }

  .hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
  }

  .hero-card-inner {
    padding: 24px;
  }

  .hero-image-wrap {
    min-height: 220px;
  }

  .about-grid,
  .opening-main,
  .vision-wrap {
    grid-template-columns: 1fr;
  }

  .opening-main-image {
    min-height: 380px;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

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

/* ---------- TABLET ---------- */
@media (max-width: 992px) {
  .section-pad {
    padding: 85px 5%;
  }

  .navbar {
    background: rgba(255, 255, 255, 0.98);
  }

  .nav-toggle {
    display: block;
    z-index: 1002;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 20px;
    width: min(300px, calc(100vw - 40px));
    padding: 18px;
    background: rgba(255, 248, 248, 0.98);
    border: 1px solid rgba(214, 51, 51, 0.12);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

  .nav-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    width: 100%;
    font-size: 0.95rem;
    padding: 4px 0;
  }

  .k3-link {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
    padding: 135px 5% 70px;
    gap: 24px;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-text {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-card {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-card-inner h3 {
    font-size: 1.5rem;
  }

  .hero-image-wrap {
    min-height: 240px;
  }

  .opening-main-text {
    padding: 0;
  }

  .opening-main-image {
    min-height: 340px;
  }

  .opening-cards,
  .highlight-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .opening-card img {
    height: 220px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
  }

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
    height: 200px;
    border-radius: 24px;
  }

  .cta-box {
    padding: 40px 28px;
  }
}

/* ---------- PHONE + SMALL TABLET ---------- */
@media (max-width: 768px) {
  .section-pad {
    padding: 75px 5%;
  }

  .nav-inner {
    padding: 14px 16px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .nav-menu {
    right: 16px;
    width: min(280px, calc(100vw - 32px));
    padding: 16px;
    gap: 12px;
    border-radius: 16px;
  }

  .hero {
    padding: 125px 5% 60px;
    gap: 20px;
  }

  .hero-tag {
    font-size: 0.68rem;
    padding: 8px 14px;
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 11vw, 4rem);
    line-height: 0.98;
    margin-bottom: 14px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .hero-text {
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 24px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }

  .hero-card-inner {
    padding: 20px;
    border-radius: 20px;
  }

  .hero-card-inner p {
    margin-bottom: 14px;
  }

  .hero-image-wrap {
    min-height: 200px;
    border-radius: 14px;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .section-head h3,
  .section-head h2,
  .vision-left h2,
  .cta-box h2 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    line-height: 1.15;
  }

  .section-head p,
  .about-card p,
  .opening-main-text p,
  .opening-card-text p,
  .highlight-card p,
  .vision-right p,
  .cta-box p {
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .about-card,
  .info-box,
  .highlight-card,
  .opening-card-text,
  .cta-box {
    padding: 20px;
  }

  .opening-main-image {
    min-height: 260px;
  }

  .opening-cards,
  .highlight-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .opening-card img {
    height: 200px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 145px;
    gap: 12px;
  }

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    height: 145px;
    border-radius: 18px;
  }

  .vision-wrap {
    gap: 24px;
  }

  .video-shell video {
    max-height: 300px;
    border-radius: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ---------- PHONE ---------- */
@media (max-width: 560px) {
  .section-pad {
    padding: 68px 4.5%;
  }

  .nav-inner {
    padding: 13px 14px;
  }

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

  .brand-name {
    font-size: 0.95rem;
  }

  .nav-toggle span {
    width: 24px;
    margin: 5px 0;
  }

  .nav-menu {
    top: calc(100% + 10px);
    right: 14px;
    width: min(260px, calc(100vw - 28px));
    padding: 14px;
  }

  .hero {
    padding: 115px 4.5% 50px;
  }

  .hero-glow-1 {
    width: 180px;
    height: 180px;
    top: 8%;
    left: -50px;
  }

  .hero-glow-2 {
    width: 220px;
    height: 220px;
    right: -50px;
    bottom: -30px;
  }

  .circle-1 {
    width: 100px;
    height: 100px;
    top: 14%;
    right: 8%;
  }

  .circle-2 {
    width: 70px;
    height: 70px;
    bottom: 14%;
    left: 4%;
  }

  .circle-3 {
    width: 42px;
    height: 42px;
    top: 34%;
    left: 55%;
  }

  .hero-tag {
    font-size: 0.64rem;
    letter-spacing: 1.3px;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-text {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .hero-card-inner h3 {
    font-size: 1.3rem;
  }

  .hero-image-wrap {
    min-height: 180px;
  }

  .section-head h3,
  .section-head h2,
  .vision-left h2,
  .cta-box h2 {
    font-size: 1.7rem;
  }

  .section-tag,
  .section-tags,
  .mini-label {
    font-size: 10px;
    letter-spacing: 1.6px;
  }

  .about-card,
  .info-box,
  .highlight-card,
  .opening-card-text,
  .cta-box,
  .hero-card-inner {
    padding: 18px;
  }

  .info-stack {
    gap: 14px;
  }

  .opening-main-image {
    min-height: 220px;
  }

  .opening-card img {
    height: 180px;
  }

  .opening-card-text h3,
  .highlight-card h3,
  .info-box h3 {
    font-size: 1.05rem;
  }

  .highlight-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    margin-bottom: 14px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 120px;
    gap: 10px;
  }

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    height: 120px;
    border-radius: 14px;
  }

.video-shell {
  width: 100%;
}

.video-shell video {
  width: 100%;
  display: block;
  border-radius: 22px;
  background: #000;
  max-height: 620px;
  object-fit: cover;
}

  .cta-box {
    border-radius: 22px;
  }
}

/* ---------- EXTRA SMALL PHONE ---------- */
@media (max-width: 380px) {
  .hero {
    padding-top: 108px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 0.88rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 13px 18px;
  }

  .gallery-grid {
    grid-auto-rows: 105px;
  }

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    height: 105px;
  }

  .opening-main-image {
    min-height: 190px;
  }

  .opening-card img {
    height: 160px;
  }
}