/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

html::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Opera */
}

body {
  font-family: 'Josefin Sans', sans-serif;
  background-color: #0a0a0a;
  color: #f0e6d6;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== CURTAIN REVEAL OVERLAY ===== */
.curtain-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: all;
  display: flex;
}

.curtain-overlay.revealed {
  pointer-events: none;
}

.curtain-panel {
  width: 50%;
  height: 100%;
  background: #0d0b09;
  position: relative;
  overflow: hidden;
}

.curtain-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(193, 154, 91, 0.03) 40px,
    rgba(193, 154, 91, 0.03) 41px
  );
}

.curtain-left {
  transform: translateX(0);
  transition: transform 1.4s cubic-bezier(0.76, 0, 0.24, 1);
  border-right: 1px solid rgba(193, 154, 91, 0.15);
}

.curtain-right {
  transform: translateX(0);
  transition: transform 1.4s cubic-bezier(0.76, 0, 0.24, 1);
  border-left: 1px solid rgba(193, 154, 91, 0.15);
}

.curtain-overlay.revealed .curtain-left {
  transform: translateX(-100%);
}

.curtain-overlay.revealed .curtain-right {
  transform: translateX(100%);
}

/* Curtain center logo */
.curtain-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 1;
  transition: opacity 0.6s ease 0.4s;
}

.curtain-logo.hidden {
  opacity: 0;
}

.curtain-logo svg,
.curtain-logo-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  animation: logoPulse 1.6s ease-in-out infinite;
}

.curtain-logo-text {
  text-align: center;
  opacity: 0;
  animation: logoTextReveal 0.8s ease forwards 0.4s;
}

.curtain-logo-text .clg-name {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: #c19a5b;
  display: block;
}

.curtain-logo-text .clg-sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(193, 154, 91, 0.75);
  display: block;
  margin-top: 4px;
}

/* Decorative lines on curtain */
.curtain-line {
  position: absolute;
  background: rgba(193, 154, 91, 0.12);
}

.curtain-line-h {
  width: 100%;
  height: 1px;
  left: 0;
}

.curtain-line-v {
  width: 1px;
  height: 100%;
  top: 0;
}

@keyframes logoPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes logoTextReveal {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Body locked during curtain */
body.curtain-active {
  overflow: hidden;
}

/* ===== HEADER / NAVBAR ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(193, 154, 91, 0.08);
  transition: all 0.4s ease;
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text .brand-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c19a5b;
}

.logo-text .brand-sub {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  opacity: 0.8;
  color: #c19a5b;
}

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

.nav-menu a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(240, 230, 214, 0.65);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #c19a5b;
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-menu a:hover {
  color: #c19a5b;
}

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

/* Active nav state (scroll-tracked) */
.nav-menu a.active {
  color: #c19a5b;
}

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

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

.social-links a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(193, 154, 91, 0.3);
  color: rgba(193, 154, 91, 0.6);
  transition: all 0.3s ease;
  font-size: 14px;
}

.social-links a:hover {
  border-color: #c19a5b;
  color: #c19a5b;
  background: rgba(193, 154, 91, 0.08);
  box-shadow: 0 0 16px rgba(193, 154, 91, 0.12);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #c19a5b;
  transition: all 0.3s ease;
}

/* ===== MAIN CONTENT ===== */
.main-content {
  padding-top: 80px;
}

/* ===== SECTION COMMON ===== */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}

.section-divider {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(193, 154, 91, 0.2), transparent);
}

.section-title {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 40px;
  position: relative;
  color: #c19a5b;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #c19a5b, rgba(193, 154, 91, 0.2));
  margin-top: 16px;
}

/* ===== WHO WE ARE ===== */
.who-we-are {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.who-we-are .section-title {
  flex-shrink: 0;
  min-width: 200px;
}

.who-we-are-content {
  flex: 1;
}

.who-we-are-content p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240, 230, 214, 0.65);
  margin-bottom: 24px;
}

/* ===== OUR TEAM ===== */
/* ===== TEAM SECTION - Premium Redesign ===== */
.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c19a5b;
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(193, 154, 91, 0.25);
  border-radius: 20px;
  margin-bottom: 20px;
}

.team-subtitle {
  font-size: 15px;
  font-weight: 300;
  color: rgba(240, 230, 214, 0.45);
  max-width: 500px;
  margin: 16px auto 0;
  line-height: 1.7;
}

/* Spotlight Founders Row */
.team-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.team-spotlight-card {
  display: flex;
  gap: 28px;
  align-items: center;
  background: rgba(193, 154, 91, 0.02);
  border: 1px solid rgba(193, 154, 91, 0.06);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.team-spotlight-card:hover {
  background: rgba(193, 154, 91, 0.05);
  border-color: rgba(193, 154, 91, 0.18);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.team-spotlight-img {
  position: relative;
  width: 180px;
  min-width: 180px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
}

.team-spotlight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) sepia(15%);
  transition: all 0.6s ease;
}

.team-spotlight-card:hover .team-spotlight-img img {
  filter: grayscale(20%) sepia(10%);
  transform: scale(1.06);
}

.team-spotlight-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-spotlight-card:hover .team-spotlight-overlay {
  opacity: 1;
}

.team-role-tag {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c19a5b;
  padding: 4px 12px;
  border: 1px solid rgba(193, 154, 91, 0.3);
  border-radius: 12px;
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(8px);
}

.team-spotlight-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.team-num {
  font-size: 36px;
  font-weight: 200;
  color: rgba(193, 154, 91, 0.12);
  line-height: 1;
  letter-spacing: -1px;
  transition: color 0.4s ease;
}

.team-spotlight-card:hover .team-num,
.team-card-v2:hover .team-num {
  color: rgba(193, 154, 91, 0.25);
}

.team-spotlight-info h3 {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #f0e6d6;
}

.team-spotlight-info p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(193, 154, 91, 0.65);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.team-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #c19a5b, transparent);
  margin-top: 8px;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.team-spotlight-card:hover .team-line {
  width: 80px;
}

/* Team Grid V2 - Staggered Layout */
.team-grid-v2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.team-card-v2 {
  position: relative;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.team-card-v2:hover {
  transform: translateY(-6px);
}

.team-card-v2-img {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(193, 154, 91, 0.06);
  transition: border-color 0.4s ease;
}

.team-card-v2:hover .team-card-v2-img {
  border-color: rgba(193, 154, 91, 0.2);
}

.team-card-v2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) sepia(15%);
  transition: all 0.6s ease;
}

.team-card-v2:hover .team-card-v2-img img {
  filter: grayscale(20%) sepia(10%);
  transform: scale(1.06);
}

.team-card-v2-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card-v2:hover .team-card-v2-hover {
  opacity: 1;
}

.team-card-v2-info {
  padding: 14px 4px 0;
}

.team-card-v2-info .team-num {
  font-size: 28px;
}

.team-card-v2-info h3 {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #f0e6d6;
  margin-top: 2px;
}

.team-card-v2-info p {
  font-size: 11px;
  font-weight: 300;
  color: rgba(193, 154, 91, 0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ===== AFFILIATED DIRECTORS ===== */
.directors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.director-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 1px solid rgba(193, 154, 91, 0.06);
  transition: border-color 0.4s ease;
}

.director-card:hover {
  border-color: rgba(193, 154, 91, 0.2);
}

.director-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) sepia(10%);
  transition: all 0.5s ease;
}

.director-card:hover img {
  filter: grayscale(30%) sepia(15%);
  transform: scale(1.08);
}

.director-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.85));
  text-align: center;
}

.director-card-info h3 {
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.5px;
  color: rgba(240, 230, 214, 0.9);
}

/* ===== WHAT WE DO ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
}

.service-col {
  padding: 30px 28px;
  border-right: 1px solid rgba(193, 154, 91, 0.1);
  transition: background 0.4s ease;
}

.service-col:last-child {
  border-right: none;
}

.service-col:hover {
  background: rgba(193, 154, 91, 0.03);
}

.service-icon {
  font-size: 36px;
  margin-bottom: 20px;
  color: #c19a5b;
  opacity: 0.8;
}

.service-col h3 {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #f0e6d6;
}

.service-col ul {
  list-style: none;
  padding: 0;
}

.service-col ul li {
  font-size: 14px;
  font-weight: 300;
  color: rgba(240, 230, 214, 0.5);
  padding: 6px 0;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.service-col:hover ul li {
  color: rgba(240, 230, 214, 0.65);
}

/* ===== CAROUSEL ===== */
.carousel-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 80px;
  position: relative;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(193, 154, 91, 0.1);
}

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

.carousel-slide {
  min-width: 100%;
  aspect-ratio: 16/7;
}

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

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(193, 154, 91, 0.2);
  color: #c19a5b;
  font-size: 28px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(193, 154, 91, 0.1);
  border-color: rgba(193, 154, 91, 0.4);
}

.carousel-btn.prev {
  left: 12px;
}

.carousel-btn.next {
  right: 12px;
}

/* ===== BRANDS / CLIENTS ===== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px 30px;
  margin-top: 50px;
  align-items: center;
  justify-items: center;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.45;
  transition: all 0.4s ease;
  padding: 10px;
}

.brand-item:hover {
  opacity: 1;
}

.brand-item svg,
.brand-item span {
  max-height: 50px;
  width: auto;
}

.brand-name {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(240, 230, 214, 0.85);
  text-align: center;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.brand-item:hover .brand-name {
  color: #c19a5b;
}

/* ===== CONTACT / GET IN TOUCH ===== */
.contact-section {
  position: relative;
  padding: 120px 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.8));
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c19a5b;
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(193, 154, 91, 0.25);
  border-radius: 20px;
  width: fit-content;
}

.contact-heading {
  font-size: 44px;
  font-weight: 300;
  line-height: 1.3;
  color: #f0e6d6;
  letter-spacing: 1px;
}

.contact-heading em {
  font-style: italic;
  color: #c19a5b;
  font-weight: 300;
}

.contact-subtext {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240, 230, 214, 0.5);
  max-width: 420px;
}

.contact-social-row {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.contact-social {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(193, 154, 91, 0.2);
  color: rgba(193, 154, 91, 0.6);
  transition: all 0.4s ease;
}

.contact-social:hover {
  border-color: #c19a5b;
  color: #c19a5b;
  background: rgba(193, 154, 91, 0.08);
  box-shadow: 0 0 24px rgba(193, 154, 91, 0.12);
  transform: translateY(-2px);
}

/* Contact Cards */
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 30px;
  background: rgba(193, 154, 91, 0.03);
  border: 1px solid rgba(193, 154, 91, 0.08);
  border-radius: 12px;
  transition: all 0.4s ease;
  cursor: default;
}

.contact-card:hover {
  background: rgba(193, 154, 91, 0.06);
  border-color: rgba(193, 154, 91, 0.2);
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(193, 154, 91, 0.08);
  border: 1px solid rgba(193, 154, 91, 0.15);
  color: #c19a5b;
  transition: all 0.4s ease;
}

.contact-card:hover .contact-card-icon {
  background: rgba(193, 154, 91, 0.15);
  box-shadow: 0 0 20px rgba(193, 154, 91, 0.1);
}

.contact-card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-card-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(193, 154, 91, 0.6);
}

.contact-card-value {
  font-size: 15px;
  font-weight: 300;
  color: rgba(240, 230, 214, 0.8);
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

a.contact-card-value:hover {
  color: #c19a5b;
}

/* ===== FOOTER ===== */
.footer {
  background: rgba(13, 11, 9, 0.95);
  border-top: 1px solid rgba(193, 154, 91, 0.1);
  padding: 28px 40px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img,
.footer-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.footer-logo-text .fbrand {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c19a5b;
}

.footer-logo-text .fsub {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(193, 154, 91, 0.7);
}

.footer-copyright {
  font-size: 13px;
  font-weight: 300;
  color: rgba(240, 230, 214, 0.4);
  font-style: italic;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== WARM AMBER GLOW BORDER EFFECT ===== */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 9998;
  box-shadow:
    inset 0 0 150px rgba(10, 8, 5, 0.6),
    inset 0 0 80px rgba(193, 154, 91, 0.04),
    inset 0 0 300px rgba(10, 8, 5, 0.4);
}

/* Subtle golden vignette */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(
    ellipse at center,
    transparent 50%,
    rgba(10, 8, 5, 0.5) 100%
  );
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .header-inner {
    position: relative;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 30px 40px;
    gap: 20px;
    border-bottom: 1px solid rgba(193, 154, 91, 0.1);
    border-top: 1px solid rgba(193, 154, 91, 0.06);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a.active {
    color: #c19a5b;
  }

  .nav-menu a.active::after {
    width: 0;
  }

  .mobile-toggle {
    display: flex;
  }

  .who-we-are {
    flex-direction: column;
    gap: 30px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .service-col {
    border-right: none;
    border-bottom: 1px solid rgba(193, 154, 91, 0.1);
    padding-bottom: 25px;
  }

  .directors-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-spotlight {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team-spotlight-card {
    flex-direction: row;
  }

  .team-grid-v2 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .team-grid-v2 .team-card-v2[style] {
    margin-top: 0 !important;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-section {
    padding: 80px 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 50px 24px;
  }

  .section-title {
    font-size: 28px;
  }

  .team-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .team-spotlight-img {
    width: 140px;
    min-width: 140px;
    height: 180px;
  }

  .team-spotlight-info h3 {
    font-size: 17px;
  }

  .directors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .contact-heading {
    font-size: 30px;
  }

  .contact-section {
    padding: 60px 24px;
  }

  .contact-card {
    padding: 20px 22px;
  }

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

  .header-inner {
    padding: 10px 20px;
  }

  .carousel-section {
    padding: 20px 24px 50px;
  }

  .curtain-logo svg {
    width: 60px;
    height: 60px;
  }

  .curtain-logo-text .clg-name {
    font-size: 16px;
    letter-spacing: 5px;
  }
}

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

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

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

  .team-spotlight-card {
    flex-direction: column;
    text-align: center;
  }

  .team-spotlight-img {
    width: 100%;
    min-width: unset;
    height: 250px;
  }

  .team-spotlight-info {
    align-items: center;
  }

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