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

:root {
  --primary: #000;
  --secondary: #111;
  --accent: #81c784;
  --green: #81c784;
  --green-light: #a5d6a7;
  --green-dark: #66bb6a;
  --text: #fff;
  --text-muted: rgba(255, 255, 255, 0.55);
  --text-secondary: #d1d5db;
  --text-dark: #111;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--primary);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==================== LIQUID GLASS ==================== */
.liquid-glass {
  background: rgba(0, 0, 0, 0.4);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 20%,
    rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.1) 80%, rgba(255,255,255,0.3) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ==================== SMOOTH REVEAL ==================== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ==================== MAIN ==================== */
.main-content {
  margin-left: 0;
  min-height: 100vh;
  position: relative;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: opacity 0.8s ease;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 5%;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  will-change: transform;
}

.hero-media-active {
  opacity: 1 !important;
}

.hero-flash {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.hero-flash-active {
  opacity: 0.7;
}

.audio-toggle {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(129, 199, 132, 0.5);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: var(--green);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.audio-icon {
  width: 16px;
  height: 16px;
}

.audio-toggle.visible {
  opacity: 1;
  pointer-events: auto;
}

.audio-toggle:hover {
  background: rgba(129, 199, 132, 0.2);
  border-color: var(--green);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.04) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  padding-left: 0;
  padding-top: 5rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .hero-inner {
    padding: 0 3rem;
    padding-left: 0.5rem;
    padding-top: 5rem;
    padding-bottom: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-inner {
    padding: 0 4rem;
    padding-left: 0.5rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
}

.hero-content-hidden .hero-heading,
.hero-content-hidden .hero-sub,
.hero-content-hidden .hero-actions {
  opacity: 0 !important;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-left {
  max-width: 420px;
}

.hero-heading {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1rem;
  margin-left: -0.35rem;
  color: #070B17;
}

.hero-inner-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-text-block {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  line-height: 1;
}

.hero-title-line {
  display: block;
  line-height: 1;
  color: #000;
  white-space: nowrap;
  letter-spacing: normal;
}

.hero-sub-line {
  font-size: 0.7em;
  opacity: 0.9;
  line-height: 1;
  margin-top: -0.15em;
  color: #000;
}

.hero-logo {
  height: 100px;
  width: auto;
}

@media (min-width: 768px) {
  .hero-logo {
    height: 130px;
  }
}

@media (min-width: 1024px) {
  .hero-logo {
    height: 140px;
  }
}

@media (min-width: 1024px) {
  .hero-heading {
    font-size: 3.75rem;
  }
}

@media (min-width: 1280px) {
  .hero-heading {
    font-size: 4.5rem;
  }
}

.hero-char {
  display: inline;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-char.visible {
  opacity: 1;
}

.hero-sub {
  font-size: 1rem;
  color: #000080;
  margin-bottom: 1.25rem;
  margin-left: 1rem;
  white-space: nowrap;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

@media (min-width: 768px) {
  .hero-sub {
    font-size: 1.125rem;
  }
}

.hero-fade {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}

.hero-fade.visible {
  opacity: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 6.5rem;
  margin-left: 0.75rem;
}

.hero-right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

@media (min-width: 1024px) {
  .hero-right {
    justify-content: flex-end;
  }
}

.hero-tag {
  display: inline-flex;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .hero-tag {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-tag {
    font-size: 1.5rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  border-radius: 0;
  font-weight: 500;
  font-size: 0.8rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: inherit;
  background: transparent;
}

.btn-primary {
  color: #fff;
  background: #4a7296;
  border-color: #4a7296;
}

.btn-primary:hover {
  background: #3a5e7d;
  border-color: #3a5e7d;
}

.btn-ghost {
  color: #fff;
  border: 1px solid #81c784;
  background: #81c784;
}

.btn-ghost:hover {
  background: #6abf6d;
  border-color: #6abf6d;
}

/* ==================== PAGE BANNER ==================== */
.page-banner {
  position: relative;
  height: 35vh;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--secondary);
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, 0.1), transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(233, 69, 96, 0.05), transparent 50%);
}

.page-banner-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 20, 46, 0.3), rgba(12, 12, 29, 0.9));
}

.page-banner-content {
  position: relative;
  z-index: 1;
}

.page-banner-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  background: linear-gradient(135deg, #fff 30%, #a5d6a7 70%, #81c784);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 40px rgba(129, 199, 132, 0.3);
}

.page-banner-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
}

.page-banner-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.page-banner-breadcrumb a {
  color: var(--green);
  text-decoration: none;
  transition: color var(--transition);
}

.page-banner-breadcrumb a:hover {
  color: var(--green-light);
}

/* ==================== PILLARS ==================== */
.pillars {
  padding: 6rem 4rem;
  background: #f5f5f0;
  color: var(--text-dark);
  position: relative;
}

.pillars::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.pillars-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
  overflow-x: auto;
}

.pillar-card {
  padding: 2rem 1.8rem;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 200px;
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
  border: 1px solid transparent;
}

.pillar-card:hover {
  background: #fff;
  border-color: #e8e8e8;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.pillar-card:hover .pillar-icon {
  color: var(--green);
}

.pillar-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  padding: 0;
  color: #070B17;
  transition: color 0.3s ease;
}

.pillar-icon svg {
  width: 100%;
  height: 100%;
}

.pillar-card h3 {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pillar-card p {
  display: none;
}

.pillar-card .pillar-arrow {
  display: none;
}

@media (max-width: 768px) {
  .pillars {
    padding: 3rem 1rem;
  }

  .pillars-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ==================== ABOUT HERO ==================== */
.about-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.04) 100%);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 4rem;
}

.about-hero-badge {
  display: inline-block;
  padding: 0.3rem 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(129, 199, 132, 0.3);
}

.about-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #000;
}

.about-hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 300;
}

@media (max-width: 768px) {
  .about-hero-content {
    padding: 0 1.5rem;
  }
  .about-hero-content h1 {
    font-size: 2.2rem;
  }
  .about-hero {
    height: 40vh;
    min-height: 280px;
  }
}

/* ==================== ABOUT SECTIONS ==================== */
.about-section {
  padding: 5rem 4rem;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-badge {
  display: inline-block;
  padding: 0.3rem 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(129, 199, 132, 0.3);
}

/* ==================== ABOUT WHO ==================== */
.about-who {
  background: #f5f5f0;
  color: var(--text-dark);
}

.about-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-who-text h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  color: var(--primary);
}

.about-who-text > p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: justify;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.about-stat {
  text-align: center;
  padding: 1.2rem 0.5rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
}

.about-stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.about-stat-label {
  font-size: 0.75rem;
  color: #999;
  font-weight: 500;
}

.about-who-image {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}

.about-image-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(129, 199, 132, 0.1), rgba(129, 199, 132, 0.02));
  border: 1px solid rgba(129, 199, 132, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-image-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-audio-toggle {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 10;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(129, 199, 132, 0.5);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: var(--green);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.about-audio-toggle:hover {
  background: rgba(129, 199, 132, 0.2);
  border-color: var(--green);
}

@media (max-width: 768px) {
  .about-who-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-who-text h2 {
    font-size: 1.8rem;
  }
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
}

/* ==================== ABOUT MISION VISION ==================== */
.about-mv {
  background: #fff;
  color: #000;
}

.about-mv-header {
  margin-bottom: 4rem;
}

.about-mv-intro {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  font-weight: 300;
}

.about-zigzag {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.about-zigzag-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-mv-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  max-width: 500px;
}

.about-mv-icon {
  width: 44px;
  height: 44px;
  padding: 9px;
  background: rgba(129, 199, 132, 0.1);
  color: var(--green);
  margin-bottom: 1rem;
}

.about-mv-icon svg {
  width: 100%;
  height: 100%;
}

.about-mv-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000;
}

.about-mv-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
}

.about-zigzag-image {
  display: flex;
  justify-content: center;
}

.about-zigzag-image .about-image-frame {
  max-width: 360px;
  aspect-ratio: 3/4;
}

@media (max-width: 768px) {
  .about-zigzag-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-section {
    padding: 1.5rem 1rem;
  }
  .about-text-center h2 {
    font-size: 1.4rem;
  }
}

/* ==================== ABOUT TEXT CENTERED ==================== */
.about-text-center {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text-center h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  color: var(--primary);
  text-align: center;
}

.about-text-center > p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ==================== EQUIPMENT GRID ==================== */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.equipment-item {
  padding: 1.5rem 1rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  transition: all 0.3s ease;
}

.equipment-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.equipment-item .feature-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
  color: var(--green);
}

.equipment-item span {
  font-size: 0.85rem;
  color: #555;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .equipment-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== EQUIP LIST ==================== */
.equip-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.equip-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.equip-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.equip-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.4s ease;
}

.equip-img:hover img {
  opacity: 0.85;
}

.equip-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: #444;
  line-height: 1.4;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1.5px solid var(--green);
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .equip-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

@media (max-width: 768px) {
  .equip-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .equip-name {
    font-size: 0.75rem;
    margin-top: 0.6rem;
    padding-top: 0.6rem;
  }
}

@media (max-width: 480px) {
  .equip-list {
    grid-template-columns: 1fr;
  }
}

/* ==================== ABOUT MOSAIC ==================== */
.about-mosaic-section {
  background: #fff;
}

.about-mosaic-header {
  margin-bottom: 3rem;
}

.about-mosaic-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
}

.about-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.mosaic-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0f0ec;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.mosaic-wide {
  grid-column: span 2;
}

.mosaic-text {
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  background: #f5f5f0;
  border: 1px solid rgba(0,0,0,0.06);
}

.mosaic-icon {
  width: 36px;
  height: 36px;
  padding: 7px;
  background: rgba(129, 199, 132, 0.1);
  color: var(--green);
  margin-bottom: 0.75rem;
}

.mosaic-icon svg {
  width: 100%;
  height: 100%;
}

.mosaic-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.75rem;
}

.mosaic-text p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .about-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }
  .mosaic-wide {
    grid-column: span 2;
  }
  .mosaic-text {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .about-mosaic {
    grid-template-columns: 1fr;
  }
  .mosaic-wide {
    grid-column: span 1;
  }
}

/* ==================== ABOUT HISTORY ==================== */
.about-history {
  background: #f5f5f0;
  color: var(--text-dark);
}

.about-history-header {
  margin-bottom: 3.5rem;
}

.about-history-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
}

.about-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--green), var(--green-light), var(--green));
  border-radius: 2px;
}

.about-timeline-item {
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 2.5rem;
}

.about-timeline-item:last-child {
  padding-bottom: 0;
}

.about-timeline-marker {
  position: absolute;
  left: -0.3rem;
  top: 0.3rem;
  width: 12px;
  height: 12px;
  background: var(--green);
  border: 2px solid #f5f5f0;
  z-index: 1;
}

.about-timeline-year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  padding: 0.2rem 0;
  border-bottom: 1px solid rgba(129, 199, 132, 0.3);
}

.about-timeline-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.about-timeline-content p {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .about-timeline {
    padding-left: 1rem;
  }
  .about-timeline-item {
    padding-left: 1.8rem;
  }
}

/* ==================== PAGE BODY ==================== */
.page-body {
  padding: 5rem 4rem;
  background: var(--primary);
}

.page-body-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-body-content .lead {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.page-body-content p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.page-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.page-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all var(--transition);
}

.page-feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(129, 199, 132, 0.15);
  transform: translateX(5px);
}

.page-feature-item .feature-icon {
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.page-feature-item span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  padding: 5rem 4rem;
  background: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 169, 110, 0.06), transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(233, 69, 96, 0.03), transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.cta-content p {
  color: #555;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.cta-badge {
  display: inline-block;
  padding: 0.3rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(129, 199, 132, 0.3);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  background: var(--green);
  color: #000;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
  cursor: pointer;
}

.btn-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-cta:hover svg:last-child {
  transform: translateX(4px);
}

/* ==================== FOOTER ==================== */
.footer {
  text-align: center;
  padding: 3rem 4rem;
  background: #fff;
  color: #888;
  font-size: 0.85rem;
  border-top: 1px solid #eee;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--green);
}

/* ==================== HOME BUTTON ==================== */
.home-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 9999;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.home-btn:hover {
  background: #f5f5f5;
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.home-btn svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .home-btn {
    top: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
  }
  .home-btn svg {
    width: 17px;
    height: 17px;
  }
}

/* ==================== ANIMATIONS ==================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.7s ease forwards;
}

.slide-up {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== PARTICLES ==================== */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--green);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 15s infinite linear;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(1);
  }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 1.2rem;
  }

  .hero {
    height: auto;
    min-height: 0;
    padding-top: 0;
  }

  .hero-inner {
    padding: 0 1.5rem;
    padding-top: 0;
    justify-content: flex-start;
  }

  .hero-logo {
    height: 16px;
  }

  .hero-heading {
    margin-left: 0;
    margin-bottom: 0;
  }

  .hero-inner-row {
    gap: 0.3rem;
  }

  .hero-title-line {
    font-size: 0.45em;
  }

  .hero-sub-line {
    font-size: 0.55em;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 0.6rem;
    margin-left: 0;
  }

  .hero-actions .btn {
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
  }

  .hero-sub {
    font-size: 0.3rem;
    margin-left: 0;
    margin-bottom: 0;
    white-space: normal;
  }

  .hero-video {
    object-position: center 5%;
    transform: scale(1.15);
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #fff;
    z-index: 2;
  }

  .hero-tag {
    font-size: 0.9rem;
  }

  .page-banner {
    height: 28vh;
    min-height: 200px;
  }

  .page-banner-content h1 {
    font-size: 1.8rem;
  }

  .page-banner-content p {
    font-size: 0.95rem;
  }

  .pillars {
    padding: 3rem 1rem;
  }

  .page-body {
    padding: 3rem 1.5rem;
  }

  .page-features {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 3rem 1.5rem;
  }

  .cta-content h2 {
    font-size: 1.7rem;
  }

  .footer {
    padding: 2rem 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

}

@media (max-width: 1100px) {
  .pillars-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (min-width: 1200px) {
  .pillars-grid {
    flex-wrap: nowrap;
  }
}

/* ==================== CAROUSEL ==================== */
.carousel-section {
  padding: 0 1.5rem 5rem;
  background: #f5f5f0;
}

@media (min-width: 768px) {
  .carousel-section {
    padding: 0 3rem 5rem;
  }
}

.carousel-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.carousel {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
}

.carousel-caption h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.carousel-caption p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.carousel-prev {
  left: -22px;
}

.carousel-next {
  right: -22px;
}

@media (max-width: 768px) {
  .carousel-btn {
    width: 36px;
    height: 36px;
  }

  .carousel-btn svg {
    width: 16px;
    height: 16px;
  }

  .carousel-prev {
    left: -18px;
  }

  .carousel-next {
    right: -18px;
  }

  .carousel-caption {
    padding: 1.2rem;
  }

  .carousel-caption h3 {
    font-size: 1rem;
  }

  .carousel-caption p {
    font-size: 0.8rem;
  }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--green);
  transform: scale(1.3);
}

.carousel-dot:hover {
  background: var(--green-light);
}

/* ==================== WHATSAPP BUTTON ==================== */
.whatsapp-btn {
  position: fixed;
  bottom: auto;
  top: 75vh;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 9999;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-btn svg {
  width: 26px;
  height: 26px;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
  animation: none;
}

.whatsapp-btn svg {
  width: 22px;
  height: 22px;
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.7); }
  100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
}

/* ==================== FOOTER SOCIAL ==================== */
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-email {
  font-size: 0.8rem;
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-email:hover {
  color: #000;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .footer-social {
    order: 1;
  }
}

/* ==================== SECTION HEADER ==================== */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1rem;
  color: #666;
  max-width: 600px;
}

/* ==================== COLLAGE BANNER CTA ==================== */
.collage-banner {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collage-banner .home-collage {
  position: absolute;
  inset: 0;
  max-width: 100%;
  padding: 0;
  margin: 0;
  height: 100%;
  grid-auto-rows: 1fr;
  gap: 0;
}

.collage-banner .collage-item img {
  filter: brightness(0.4);
}

.collage-banner-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 560px;
  padding: 0 2rem;
}

.collage-banner-overlay .cta-badge {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(129, 199, 132, 0.3);
  padding: 0 0 0.3rem;
}

.collage-banner-overlay h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.collage-banner-overlay p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.collage-banner-overlay .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  background: var(--green);
  color: #000;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
  cursor: pointer;
}

.collage-banner-overlay .btn-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.collage-banner-overlay .btn-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.collage-banner-overlay .btn-cta:hover svg:last-child {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .collage-banner {
    min-height: 400px;
  }
  .collage-banner-overlay h2 {
    font-size: 1.8rem;
  }
  .collage-banner .home-collage {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 0;
    padding: 0;
  }
  .collage-banner .collage-featured {
    grid-column: span 2;
    grid-row: span 2;
  }
  .collage-banner .collage-wide {
    grid-column: span 2;
  }
}

/* ==================== HOME COLLAGE ==================== */
.home-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 0.25rem;
  max-width: 100%;
  padding: 0 2rem;
  margin: 0 auto 2.5rem;
  grid-auto-flow: dense;
}

.collage-item {
  overflow: hidden;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.collage-wide {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .home-collage {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 0.15rem;
  }
  .collage-featured {
    grid-column: span 2;
    grid-row: span 2;
  }
  .collage-wide {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .home-collage {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .collage-featured,
  .collage-wide {
    grid-column: span 1;
  }
  .collage-banner {
    min-height: 350px;
  }
  .collage-banner .home-collage {
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
    gap: 0;
    padding: 0;
  }
  .collage-banner .collage-featured,
  .collage-banner .collage-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .collage-banner-overlay h2 {
    font-size: 1.5rem;
  }
}

/* ==================== TRUST SECTION ==================== */
.trust-section {
  padding: 3rem 2rem;
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f5f5f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--green);
}

.trust-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ==================== PORTFOLIO MOSAIC SCROLL ==================== */
.portfolio-mosaic-section {
  background: #f5f5f0;
  padding: 5rem 4rem 0;
  overflow: hidden;
}

.mosaic-scroll {
  position: relative;
  overflow: hidden;
  max-height: 600px;
  cursor: pointer;
  margin-top: 3rem;
}

.mosaic-scroll-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  animation: scrollMosaicUp 150s linear infinite;
  will-change: transform;
}

.mosaic-scroll.paused .mosaic-scroll-track {
  animation-play-state: paused;
}

@keyframes scrollMosaicUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.mosaic-scroll-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
}

.mosaic-scroll-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

.mosaic-scroll-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(transparent, #f5f5f0);
  pointer-events: none;
  z-index: 1;
}

.mosaic-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.8rem;
  border-radius: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mosaic-scroll-hint.show {
  opacity: 1;
}

.mosaic-scroll-hint svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .portfolio-mosaic-section {
    padding: 3rem 1.5rem 0;
  }
  .mosaic-scroll {
    max-height: 400px;
  }
  .mosaic-scroll-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .mosaic-scroll-track {
    grid-template-columns: 1fr;
  }
}

/* ==================== PORTFOLIO GRID ==================== */
.portfolio-grid-section {
  padding: 0.5rem 4rem 5rem;
  background: #fff;
}

.portfolio-grid-container {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.portfolio-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.85));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-item-overlay {
  opacity: 1;
}

.portfolio-item-overlay h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.3rem;
}

.portfolio-item-overlay p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .portfolio-grid-section {
    padding: 3rem 1.5rem;
  }

  .portfolio-item-overlay {
    opacity: 1;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== MOBILE IMPROVEMENTS ==================== */
@media (max-width: 480px) {
  .hero-heading {
    font-size: 1rem;
  }
  .hero-logo {
    height: 14px;
  }
  .hero-heading {
    margin-bottom: 0;
  }
  .hero-inner-row {
    gap: 0.15rem;
  }
  .hero-title-line {
    font-size: 0.4em;
  }
  .hero-sub-line {
    font-size: 0.5em;
  }
  .hero-sub {
    font-size: 0.45rem;
    margin-bottom: 0;
  }
  .hero-actions {
    margin-top: 0.2rem;
    gap: 0.2rem;
  }
  .hero-actions .btn {
    font-size: 0.65rem;
    padding: 0.25rem 0.6rem;
  }

  .section-header h2,
  .about-text-center h2,
  .about-history-header h2,
  .about-mosaic-header h2 {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
  }

  .about-text-center > p {
    margin-bottom: 0.75rem;
  }

  .about-mv-card h3 {
    font-size: 0.95rem;
  }

  .about-mv-card p {
    font-size: 0.78rem;
  }

  .about-hero-content h1 {
    font-size: 1rem;
  }

  .about-hero-content p {
    font-size: 0.7rem;
  }

  .about-section {
    padding: 0.4rem 0.75rem;
  }

  .about-who-text h2 {
    font-size: 0.95rem;
  }

  .about-who-text p {
    font-size: 0.88rem;
  }

  .about-stats {
    gap: 0.5rem;
  }

  .about-stat-number {
    font-size: 1.5rem;
  }

  .about-stat-label {
    font-size: 0.7rem;
  }

  .pillars {
    padding: 3rem 1.2rem;
  }

  .pillar-card {
    padding: 0.75rem 0.5rem;
    min-width: 0;
    flex: 0 1 calc(50% - 0.4rem);
  }

  .about-zigzag-item {
    gap: 1rem;
  }

  .about-mv-card {
    padding: 1rem;
  }

  .about-image-frame {
    max-width: 100%;
  }

  .about-zigzag-image .about-image-frame {
    max-width: 260px;
  }

  .cta-section {
    padding: 3rem 1.5rem;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 0.85rem;
  }

  .btn-cta {
    padding: 0.7rem 1.5rem;
    font-size: 0.75rem;
  }

  .home-collage-section {
    padding: 2rem 0;
  }

  .about-history-header h2 {
    font-size: 1.5rem;
  }

  .about-timeline-item {
    gap: 1rem;
  }

  .about-timeline-content h4 {
    font-size: 1rem;
  }

  .about-timeline-content p {
    font-size: 0.82rem;
  }

  .about-mosaic-header h2 {
    font-size: 1.5rem;
  }

  .mosaic-text h3 {
    font-size: 1rem;
  }

  .mosaic-text p {
    font-size: 0.82rem;
  }

  .footer {
    padding: 2rem 1.2rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

.footer-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.15rem;
}
.footer-credit {
  margin: 0;
}
.footer-credit a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.75rem;
  transition: color var(--transition);
}
.footer-credit a:hover {
  color: var(--green);
}

.footer-links {
    gap: 0.75rem;
  }

  .hero {
    min-height: 40vh;
  }

  .hero-inner {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
  }

  .hero-video {
    object-position: center 5%;
    transform: scale(1.2);
  }

  .hero-actions {
    margin-top: 1.8rem;
    margin-left: 0;
  }

  .hero-heading .hero-title-line {
    font-size: 1.5rem;
  }

  .hero-sub-line {
    font-size: 0.75rem;
  }

  .hero-sub {
    font-size: 0.4rem;
  }

  .hero-logo {
    height: 38px;
  }

  .pillars-grid {
    gap: 0.5rem;
  }

  .pillar-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 0.5rem;
  }

  .pillar-card h3 {
    font-size: 0.7rem;
  }

  .about-who-image {
    margin-top: 1.5rem;
  }

  .section-header {
    margin-bottom: 1.5rem;
  }
}

img {
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
