/* ============================================================
   SOLOMON FURNITURE & INTERIOR — PREMIUM STYLESHEET
   Color Palette:
     Navy Blue   #24405A  (primary)
     Ivory White #F7F3EE  (background)
     Muted Gold  #A97F2E  (accent)
     Taupe Beige #D9C7B8  (secondary bg)
     Warm Gray   #6B6661  (text secondary)
   Fonts: Playfair Display (serif) + Montserrat (sans)
   ============================================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #F7F3EE;
  color: #24405A;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- TYPOGRAPHY --- */
.serif { font-family: 'Playfair Display', Georgia, serif; }

/* --- BILINGUAL DISPLAY (legacy — now handled by JS i18n) --- */
.mn { display: block; }
.en { display: block; color: inherit; opacity: 0.7; font-size: 0.88em; margin-top: 0.1em; }

/* Tighter for headings */
h1 .en, h2 .en, h3 .en {
  opacity: 0.6;
  font-size: 0.72em;
  letter-spacing: 0.02em;
}

/* --- COLORS --- */
:root {
  /* New brand palette */
  --navy:         #24405A;
  --navy-light:   #3a5a7a;
  --navy-dark:    #182d40;
  --ivory:        #F7F3EE;
  --ivory-dark:   #EDE8E0;
  --gold:         #A97F2E;
  --gold-light:   #C9A050;
  --gold-pale:    #EDE0C4;
  --taupe:        #D9C7B8;
  --taupe-dark:   #C4AE9B;
  --warm-gray:    #6B6661;
  --warm-gray-lt: #9A938E;
  --border:       rgba(169, 127, 46, 0.20);
  --shadow:       0 2px 24px rgba(36, 64, 90, 0.08);
  --shadow-lg:    0 8px 48px rgba(36, 64, 90, 0.14);

  /* Legacy aliases (keep for partial compatibility) */
  --warm-white:     #F7F3EE;
  --stone-beige:    #EDE8E0;
  --muted-ivory:    #F0EBE4;
  --light-taupe:    #D9C7B8;
  --soft-grey:      #6B6661;
  --charcoal:       #24405A;
  --charcoal-light: #3a5a7a;
  --bronze:         #A97F2E;
  --bronze-light:   #C9A050;
  --bronze-pale:    #EDE0C4;
}

/* --- CONTAINER --- */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.container--narrow { max-width: 860px; }
@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* --- SECTION --- */
.section { padding: 100px 0; }
@media (max-width: 768px) { .section { padding: 64px 0; } }

/* --- SECTION HEADERS --- */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}
.section-eyebrow .mn, .section-eyebrow .en { display: inline; }
.section-eyebrow [data-l] { display: inline; }
.section-eyebrow [data-l][style*="display:none"] { display: none !important; }
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-title--left { text-align: left; }
.section-intro {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.75;
  font-family: 'Montserrat', sans-serif;
}
.section-intro .mn { display: block; margin-bottom: 4px; color: var(--navy); }
.section-intro .en { display: block; opacity: 0.65; font-size: 0.9em; }
.section-cta { text-align: center; margin-top: 56px; }

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--ivory);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: background 0.3s ease, transform 0.2s ease;
}
.btn-primary:hover { background: var(--gold); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ivory);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 36px;
  border: 1px solid rgba(247,243,238,0.50);
  transition: all 0.3s ease;
}
.btn-ghost:hover { background: rgba(247,243,238,0.14); border-color: rgba(247,243,238,0.85); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 36px;
  border: 1px solid var(--navy);
  transition: all 0.3s ease;
}
.btn-outline:hover { background: var(--navy); color: var(--ivory); }

.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: gap 0.3s ease, color 0.3s ease;
}
.btn-text-link:hover { gap: 14px; color: var(--navy); }
.btn-text-link .mn, .btn-text-link .en { display: inline; opacity: 1; font-size: 1em; }

.btn-enquire {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--gold);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 24px;
  transition: background 0.3s ease;
}
.btn-enquire .btn-mn, .btn-enquire .btn-en { display: block; line-height: 1.3; }
.btn-enquire .btn-en { opacity: 0.75; font-size: 0.85em; }
.btn-enquire:hover { background: var(--navy); }

/* --- HEADER --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(247, 243, 238, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.header-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-serif {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--navy);
}
.logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 14px;
  position: relative;
  transition: color 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-mn {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.nav-en {
  font-size: 0.62rem;
  color: var(--warm-gray);
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.nav-link:hover .nav-mn { color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 16px; }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--navy);
  transition: all 0.3s ease;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 20px 40px 24px;
  border-top: 1px solid var(--border);
  background: var(--ivory);
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ivory-dark);
  font-size: 0.92rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
}
.mobile-nav-link .nav-mn { font-size: 1rem; color: var(--navy); }
.mobile-nav-link .nav-en { font-size: 0.74rem; color: var(--warm-gray); }
.mt-4 { margin-top: 20px; }

/* --- LANGUAGE SWITCHER --- */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 1px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0;
  overflow: hidden;
}
.lang-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: var(--warm-gray);
  padding: 6px 10px;
  border-radius: 0;
  transition: background 0.22s ease, color 0.22s ease;
  background: transparent;
  cursor: pointer;
  border: none;
  line-height: 1;
}
.lang-btn:hover { color: var(--navy); background: var(--ivory-dark); }
.lang-btn.active {
  background: var(--navy);
  color: var(--ivory);
}
.lang-sep {
  font-size: 0.6rem;
  color: var(--taupe);
  user-select: none;
}

/* Mobile lang switcher */
.mobile-lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 0 8px;
  border-bottom: 1px solid var(--ivory-dark);
}
.lang-switcher--mobile {
  gap: 4px;
  padding: 16px 0 8px;
  border-bottom: 1px solid var(--ivory-dark);
  background: transparent;
  border: none;
}
.lang-switcher--mobile .lang-btn {
  font-size: 0.72rem;
  padding: 6px 14px;
  border: 1px solid var(--taupe);
  border-radius: 2px;
}
.lang-switcher--mobile .lang-btn.active {
  background: var(--navy);
  color: var(--ivory);
  border-color: var(--navy);
}
.mobile-lang-switcher .lang-btn {
  font-size: 0.72rem;
  padding: 5px 12px;
  border: 1px solid var(--taupe);
  border-radius: 2px;
}
.mobile-lang-switcher .lang-btn.active {
  background: var(--navy);
  color: var(--ivory);
  border-color: var(--navy);
}
.mobile-lang-switcher .lang-sep {
  color: var(--taupe);
}

@media (max-width: 1024px) {
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .header-inner { padding: 0 20px; }
  /* Hide desktop lang switcher on mobile */
  .header-actions .lang-switcher { display: none; }
}
@media (max-width: 480px) { .mobile-nav { padding: 16px 20px 20px; } }

/* --- HERO --- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.08); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(24, 45, 64, 0.88) 0%,
    rgba(24, 45, 64, 0.55) 30%,
    rgba(24, 45, 64, 0.22) 65%,
    rgba(24, 45, 64, 0.08) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 80px 96px;
}
.hero-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.3s;
}
.hero-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(0.85rem, 1.8vw, 1.1rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.5s;
}
.hero-tagline [data-l] { display: inline; }
.hero-tagline [data-l][style*="display:none"] { display: none !important; }
.hero-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 28px;
  max-width: 780px;
}
.hero-heading .heading-mn { display: block; margin-bottom: 8px; }
.hero-heading .heading-en { display: block; font-size: 0.65em; opacity: 0.72; font-weight: 300; letter-spacing: 0.02em; }
.hero-subheading {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.94rem;
  line-height: 1.82;
  color: rgba(247,243,238,0.82);
  max-width: 580px;
  margin: 0 0 44px;
}
.hero-subheading .mn { display: block; color: rgba(247,243,238,0.90); margin-bottom: 6px; }
.hero-subheading .en { display: block; opacity: 0.65; font-size: 0.9em; }
.hero-ctas { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; }
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  right: 80px;
  z-index: 2;
}
.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 52px;
  background: rgba(247,243,238,0.35);
  margin: 0 auto;
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.35; }
  50% { transform: scaleY(0.45); opacity: 0.75; }
}
@media (max-width: 1024px) {
  .hero-content { padding: 0 40px 80px; }
  .hero-scroll-indicator { right: 40px; }
}
@media (max-width: 640px) {
  .hero-content { padding: 0 24px 64px; }
  .hero-scroll-indicator { display: none; }
  .hero-heading { font-size: clamp(2.2rem, 7vw, 3.2rem); }
}

/* --- PAGE HERO --- */
.page-hero {
  position: relative;
  padding-top: 72px;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero--light { background: var(--ivory-dark); min-height: 360px; align-items: center; }
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24,45,64,0.72) 0%, rgba(24,45,64,0.30) 60%, rgba(24,45,64,0.12) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 64px 40px 60px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.page-hero-content--center { text-align: center; padding: 80px 40px; }
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: white;
  margin-bottom: 20px;
}
.page-hero-title--dark { color: var(--navy); }
.page-hero-title .mn { display: block; }
.page-hero-title .en { display: block; font-size: 0.65em; opacity: 0.65; margin-top: 6px; }
.page-hero-intro {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(247,243,238,0.78);
  max-width: 560px;
}
.page-hero-intro--dark { color: var(--navy); }
.page-hero-intro .mn { display: block; margin-bottom: 4px; }
.page-hero-intro .en { display: block; opacity: 0.65; font-size: 0.9em; }

/* --- CATEGORIES --- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.category-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
}
.category-card-img-wrap { position: absolute; inset: 0; overflow: hidden; }
.category-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.category-card:hover .category-card-img { transform: scale(1.06); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24,45,64,0.72) 0%, rgba(24,45,64,0.15) 60%, transparent 100%);
  transition: background 0.4s ease;
}
.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(169,127,46,0.65) 0%, rgba(24,45,64,0.2) 60%, transparent 100%);
}
.category-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  z-index: 2;
}
.category-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: white;
  line-height: 1.3;
}
.category-card-title .mn { display: block; font-size: 1em; }
.category-card-title .en { display: block; font-size: 0.75em; opacity: 0.72; margin-top: 2px; }

@media (max-width: 1024px) { .categories-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px) { .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; } }
@media (max-width: 480px) { .categories-grid { grid-template-columns: repeat(2, 1fr); } }

/* --- FEATURED / ALT SECTION --- */
.featured-section--alt { background: var(--muted-ivory); }

/* --- PROJECT CARDS --- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.projects-grid--full { grid-template-columns: repeat(3, 1fr); gap: 28px; }
.projects-grid--3 { grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1024px) { .projects-grid, .projects-grid--full { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .projects-grid, .projects-grid--full, .projects-grid--3 { grid-template-columns: 1fr; gap: 24px; } }

.project-card { background: white; overflow: hidden; transition: box-shadow 0.4s ease, transform 0.4s ease; }
.project-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.project-card-link { display: block; }
.project-card-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.project-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
}
.project-card:hover .project-card-img { transform: scale(1.04); }
.project-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(36, 64, 90, 0);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
  transition: background 0.4s ease;
}
.project-card:hover .project-card-overlay { background: rgba(36, 64, 90, 0.38); }
.card-cta-label {
  background: var(--ivory);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.card-cta-label .mn, .card-cta-label .en { display: block; line-height: 1.4; }
.card-cta-label .en { opacity: 0.65; font-size: 0.85em; }
.project-card:hover .card-cta-label { opacity: 1; transform: translateY(0); }

.project-card-body { padding: 20px 24px 24px; }
.project-card-meta { font-family: 'Montserrat', sans-serif; font-size: 0.70rem; color: var(--warm-gray); margin-bottom: 8px; }
.meta-label-mn, .meta-label-en { display: inline; }
.meta-label-en { opacity: 0.65; font-size: 0.9em; }
.category-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.project-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 10px;
}
.project-card-title .title-mn { display: block; color: var(--navy); }
.project-card-title .title-en { display: block; font-size: 0.82em; color: var(--warm-gray); margin-top: 3px; }
.project-card-designer { font-family: 'Montserrat', sans-serif; font-size: 0.74rem; color: var(--warm-gray); }
.project-card-designer .mn { display: block; color: var(--navy-light); }
.project-card-designer .en { display: block; opacity: 0.65; font-size: 0.9em; }

/* --- FILTER BAR --- */
.filter-section { margin-bottom: 56px; }
.filter-group { margin-bottom: 20px; }
.filter-group-label { font-family: 'Montserrat', sans-serif; font-size: 0.70rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 12px; }
.filter-group-label .mn, .filter-group-label .en { display: inline; margin-right: 6px; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn {
  padding: 8px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 1px solid var(--border);
  color: var(--navy-light);
  background: white;
  transition: all 0.25s ease;
  cursor: pointer;
}
.filter-btn .mn, .filter-btn .en { display: inline; }
.filter-btn .en { margin-left: 4px; opacity: 0.55; font-size: 0.88em; }
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--navy); color: white; border-color: var(--navy); }
.filter-btn.active .en { opacity: 0.65; }
.no-results { text-align: center; padding: 80px 0; }
.no-results p { color: var(--warm-gray); font-size: 0.95rem; margin-bottom: 6px; }
.no-results .mn { color: var(--navy-light); }

/* --- DESIGNERS GRID (HOME) --- */
.designers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 768px) { .designers-grid { grid-template-columns: 1fr; gap: 40px; } }

.designer-card { background: white; overflow: hidden; transition: box-shadow 0.4s ease; }
.designer-card:hover { box-shadow: var(--shadow-lg); }
.designer-card-portrait-wrap { aspect-ratio: 3/4; overflow: hidden; }
.designer-card-portrait {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.designer-card:hover .designer-card-portrait { transform: scale(1.04); }
.designer-card-body { padding: 24px 28px 32px; }
.designer-card-specialty {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.designer-card-specialty .mn { display: block; }
.designer-card-specialty .en { display: block; opacity: 0.65; font-size: 0.9em; }
.designer-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 12px;
}
.designer-card-bio { font-family: 'Montserrat', sans-serif; font-size: 0.86rem; color: var(--warm-gray); margin-bottom: 20px; }
.designer-card-bio .mn { color: var(--navy-light); display: block; }
.designer-card-bio .en { display: block; opacity: 0.65; font-size: 0.9em; }

/* --- STATS SECTION --- */
.stats-section {
  background: var(--navy);
  padding: 64px 0;
}
.stats-section--about {
  background: var(--navy-dark);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid rgba(169, 127, 46, 0.2);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.75);
  line-height: 1.4;
}
.stat-number [data-l], .stat-label [data-l] { display: inline; }
.stat-number [data-l][style*="display:none"],
.stat-label [data-l][style*="display:none"] { display: none !important; }
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(169, 127, 46, 0.2);
  }
}
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- ABOUT SPLIT --- */
.about-preview-section { background: var(--ivory-dark); }
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .about-split { grid-template-columns: 1fr; gap: 48px; } }
.about-img { width: 100%; height: 560px; object-fit: cover; }
.about-copy { font-family: 'Montserrat', sans-serif; font-size: 0.93rem; line-height: 1.85; margin-bottom: 20px; }
.about-copy .mn { display: block; color: var(--navy); margin-bottom: 6px; }
.about-copy .en { display: block; font-size: 0.88em; color: var(--warm-gray); }
.about-copy--accent {
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  font-style: italic;
  font-size: 0.92rem;
  margin-bottom: 32px;
}

/* --- VALUES --- */
.values-section { background: var(--navy); }
.values-section--about { background: var(--muted-ivory); }
.values-section .section-title, .values-section .section-intro { color: white; }
.values-section .section-eyebrow { color: var(--gold-light); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.values-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .values-grid, .values-grid--4 { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 480px) { .values-grid, .values-grid--4 { grid-template-columns: 1fr; } }

.value-card { padding: 48px 40px; background: rgba(247,243,238,0.04); border: 1px solid rgba(247,243,238,0.09); }
.values-section--about .value-card { background: white; border-color: var(--border); }
.value-icon { font-size: 1.6rem; color: var(--gold-light); margin-bottom: 20px; }
.values-section--about .value-icon { color: var(--gold); }
.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: white;
}
.values-section--about .value-title { color: var(--navy); }
.value-title .mn { display: block; }
.value-title .en { display: block; font-size: 0.75em; opacity: 0.55; margin-top: 2px; }
.value-desc { font-family: 'Montserrat', sans-serif; font-size: 0.84rem; line-height: 1.75; color: rgba(247,243,238,0.58); }
.values-section--about .value-desc { color: var(--warm-gray); }
.value-desc .mn { display: block; margin-bottom: 4px; }
.value-desc .en { display: block; opacity: 0.65; font-size: 0.9em; }

/* --- INQUIRY FORM --- */
.inquiry-section { background: var(--ivory-dark); }
.inquiry-section--project { background: var(--muted-ivory); }
.inquiry-form-wrap { max-width: 640px; margin: 0 auto; }
.inquiry-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; gap: 20px; }
.form-row-2 > * { flex: 1; }
@media (max-width: 600px) { .form-row { flex-direction: column; } }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy-light); }
.form-label .mn { display: block; }
.form-label .en { display: block; opacity: 0.55; font-size: 0.88em; margin-top: 1px; }
.form-input {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  color: var(--navy);
  background: white;
  border: 1px solid var(--border);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-pale); }
.form-input::placeholder { color: var(--taupe); }
.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6661' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem;
  color: var(--warm-gray);
  line-height: 1.65;
  padding-top: 4px;
}
.form-privacy svg { flex-shrink: 0; margin-top: 2px; }

.btn-submit { width: 100%; justify-content: center; }
.btn-loading { display: flex; justify-content: center; }
.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
  text-align: center;
  padding: 40px 24px;
  background: white;
  border: 1px solid var(--border);
}
.success-icon { font-size: 2rem; color: var(--gold); margin-bottom: 16px; }
.success-mn { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); margin-bottom: 6px; }
.success-en { font-family: 'Montserrat', sans-serif; font-size: 0.88rem; color: var(--warm-gray); }
.form-error { padding: 16px 20px; background: #fdf2f2; border: 1px solid #e8c8c8; }
.form-error p { font-family: 'Montserrat', sans-serif; font-size: 0.85rem; color: #b44040; }
.error-en { opacity: 0.75; font-size: 0.9em; }

/* --- FOOTER --- */
.site-footer { background: var(--navy); color: rgba(247,243,238,0.75); padding: 80px 0 0; }
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 64px;
}
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) { .footer-inner { grid-template-columns: 1fr; gap: 32px; } }
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  /* Keep logo visible on dark background */
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-logo { display: flex; flex-direction: column; line-height: 1; margin-bottom: 16px; }
.footer-logo .logo-serif { font-size: 1.5rem; color: white; }
.footer-logo .logo-sub { color: var(--gold-light); }
.footer-tagline { font-family: 'Montserrat', sans-serif; font-size: 0.84rem; line-height: 1.7; color: rgba(247,243,238,0.50); }
.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-col-title .mn, .footer-col-title .en { display: block; }
.footer-col-title .en { opacity: 0.65; font-size: 0.88em; }
.footer-nav nav { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.84rem;
  color: rgba(247,243,238,0.60);
  transition: color 0.25s ease;
}
.footer-link .mn, .footer-link .en { display: inline; }
.footer-link:hover { color: var(--gold-light); }
.footer-contact address { font-style: normal; display: flex; flex-direction: column; gap: 14px; }
.footer-address-item { font-family: 'Montserrat', sans-serif; font-size: 0.82rem; line-height: 1.65; color: rgba(247,243,238,0.60); display: flex; gap: 10px; align-items: flex-start; }
.footer-address-item svg { flex-shrink: 0; margin-top: 2px; opacity: 0.6; }
.footer-contact-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  color: rgba(247,243,238,0.60);
  display: flex;
  gap: 10px;
  align-items: center;
  transition: color 0.25s ease;
}
.footer-contact-link:hover { color: var(--gold-light); }
.footer-contact-link svg { flex-shrink: 0; opacity: 0.6; }
.footer-bottom {
  margin-top: 64px;
  padding: 20px 40px;
  border-top: 1px solid rgba(247,243,238,0.10);
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.74rem;
  color: rgba(247,243,238,0.32);
}

/* --- DESIGNERS PAGE --- */
.designers-full-section { padding-top: 80px; }
.designer-profile {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.designer-profile:last-child { border-bottom: none; }
.designer-profile--reverse { grid-template-columns: 1.6fr 1fr; }
.designer-profile--reverse .designer-profile-portrait-col { order: 2; }
.designer-profile--reverse .designer-profile-content-col { order: 1; }
@media (max-width: 900px) {
  .designer-profile, .designer-profile--reverse { grid-template-columns: 1fr; gap: 40px; }
  .designer-profile--reverse .designer-profile-portrait-col, .designer-profile--reverse .designer-profile-content-col { order: unset; }
}
.designer-profile-portrait-wrap { position: relative; }
.designer-profile-portrait {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}
.designer-profile-specialty-tag {
  position: absolute;
  bottom: 24px;
  left: -16px;
  background: white;
  padding: 12px 20px;
  box-shadow: var(--shadow);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.70rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.designer-profile-specialty-tag .mn { display: block; }
.designer-profile-specialty-tag .en { display: block; opacity: 0.65; font-size: 0.88em; }
.designer-profile-index { font-family: 'Playfair Display', serif; font-size: 4rem; color: var(--taupe); line-height: 1; margin-bottom: 8px; }
.designer-profile-name {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}
.designer-profile-name .mn { display: block; }
.designer-profile-name .en { display: block; font-size: 0.6em; opacity: 0.55; }
.designer-specialties { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.specialty-pill {
  padding: 6px 16px;
  border: 1px solid var(--border);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.70rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  color: var(--gold);
}
.specialty-pill .mn { display: block; }
.specialty-pill .en { display: block; opacity: 0.55; font-size: 0.88em; }
.designer-profile-bio { font-family: 'Montserrat', sans-serif; font-size: 0.93rem; line-height: 1.85; color: var(--navy-light); margin-bottom: 32px; }
.designer-profile-bio .mn { display: block; margin-bottom: 6px; }
.designer-profile-bio .en { display: block; font-size: 0.9em; color: var(--warm-gray); }

.designer-works-preview { margin-bottom: 32px; }
.works-preview-label { font-family: 'Montserrat', sans-serif; font-size: 0.70rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 12px; }
.works-preview-label .mn, .works-preview-label .en { display: inline; margin-right: 4px; }
.works-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.work-preview-item { position: relative; aspect-ratio: 4/3; overflow: hidden; display: block; }
.work-preview-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.work-preview-item:hover img { transform: scale(1.06); }
.work-preview-overlay {
  position: absolute;
  inset: 0;
  background: rgba(36,64,90,0.5);
  display: flex;
  align-items: flex-end;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.35s ease;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.70rem;
  color: white;
}
.work-preview-item:hover .work-preview-overlay { opacity: 1; }

/* --- ABOUT PAGE --- */
.about-story-section { background: var(--ivory); }
.about-story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .about-story-split { grid-template-columns: 1fr; gap: 40px; } }
.about-story-img-caption { margin-top: 12px; font-family: 'Montserrat', sans-serif; font-size: 0.73rem; color: var(--warm-gray); letter-spacing: 0.06em; }
.about-story-img-caption .mn, .about-story-img-caption .en { display: inline; margin-right: 4px; }
.about-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

.process-section { background: var(--ivory-dark); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
@media (max-width: 768px) { .process-steps { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }
.process-step { background: white; padding: 40px 32px; }
.process-step-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: var(--gold-pale); margin-bottom: 16px; line-height: 1; }
.process-step-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 400; margin-bottom: 12px; }
.process-step-title .mn { display: block; color: var(--navy); }
.process-step-title .en { display: block; font-size: 0.78em; color: var(--warm-gray); margin-top: 3px; }
.process-step-desc { font-family: 'Montserrat', sans-serif; font-size: 0.84rem; color: var(--warm-gray); line-height: 1.75; }
.process-step-desc .mn { display: block; color: var(--navy-light); margin-bottom: 4px; }
.process-step-desc .en { display: block; opacity: 0.65; font-size: 0.9em; }

/* --- TEAM --- */
.team-section { background: var(--ivory); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 768px) { .team-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { background: white; overflow: hidden; transition: box-shadow 0.4s ease; }
.team-card:hover { box-shadow: var(--shadow-lg); }
.team-card-portrait-wrap { aspect-ratio: 3/4; overflow: hidden; }
.team-card-portrait { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.team-card:hover .team-card-portrait { transform: scale(1.04); }
.team-card-body { padding: 20px 24px 28px; }
.team-card-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 400; margin-bottom: 6px; color: var(--navy); }
.team-card-name .mn, .team-card-name .en { display: block; }
.team-card-name .en { font-size: 0.78em; color: var(--warm-gray); margin-top: 2px; }
.team-card-role { font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.team-card-role .mn, .team-card-role .en { display: block; }
.team-card-role .en { opacity: 0.65; font-size: 0.88em; }
.team-card-bio { font-family: 'Montserrat', sans-serif; font-size: 0.84rem; color: var(--warm-gray); line-height: 1.65; }
.team-card-bio .mn, .team-card-bio .en { display: block; }
.team-card-bio .en { opacity: 0.65; font-size: 0.9em; margin-top: 4px; }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — EXTENDED SECTIONS
═══════════════════════════════════════════════════════════ */

/* --- ABOUT HERO --- */
.about-hero .page-hero-content { text-align: center; }
.about-hero .page-hero-content--center { text-align: center; }

/* --- QUOTE BLOCK --- */
.about-quote-section {
  background: var(--navy);
  padding: 80px 0;
}
.about-quote-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
}
.about-quote-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 6rem;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 24px;
  opacity: 0.5;
}
.about-quote-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.65;
  margin-bottom: 24px;
}
.about-quote-text [data-l] { display: inline; }
.about-quote-text [data-l][style*="display:none"] { display: none !important; }
.about-quote-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}
.about-quote-sub [data-l] { display: inline; }
.about-quote-sub [data-l][style*="display:none"] { display: none !important; }

/* --- TIMELINE --- */
.timeline-section { background: var(--ivory); }
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-item {
  display: grid;
  grid-template-columns: 120px 48px 1fr;
  gap: 0;
  align-items: flex-start;
  position: relative;
}
.timeline-year-col {
  padding: 0 24px 0 0;
  padding-top: 4px;
  text-align: right;
}
.timeline-year {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--taupe-dark);
  line-height: 1;
}
.timeline-year--current { color: var(--gold); }
.timeline-year [data-l] { display: inline; }
.timeline-year [data-l][style*="display:none"] { display: none !important; }
.timeline-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8px;
}
.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--taupe-dark);
  border: 3px solid var(--ivory);
  box-shadow: 0 0 0 2px var(--taupe-dark);
  flex-shrink: 0;
  z-index: 1;
}
.timeline-dot--current {
  background: var(--gold);
  box-shadow: 0 0 0 2px var(--gold), 0 0 16px rgba(169,127,46,0.35);
}
.timeline-line {
  width: 2px;
  flex: 1;
  min-height: 80px;
  background: linear-gradient(to bottom, var(--taupe-dark), var(--taupe));
  margin-top: 4px;
}
.timeline-content-col {
  padding: 0 0 60px 28px;
}
.timeline-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--taupe);
  padding: 6px 16px;
  margin-bottom: 14px;
}
.timeline-badge [data-l] { display: inline; }
.timeline-badge [data-l][style*="display:none"] { display: none !important; }
.timeline-badge--vivace { background: var(--gold-pale); color: var(--navy); }
.timeline-badge--current { background: var(--navy); color: var(--gold); }
.timeline-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.8;
}
.timeline-desc [data-l] { display: block; }
.timeline-desc [data-l][style*="display:none"] { display: none !important; }
@media (max-width: 600px) {
  .timeline-item { grid-template-columns: 72px 36px 1fr; }
  .timeline-year { font-size: 1.3rem; }
  .timeline-content-col { padding: 0 0 48px 16px; }
}

/* --- HOW WE WORK pillars --- */
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.about-pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
}
.about-pillar [data-l] { display: inline; }
.about-pillar [data-l][style*="display:none"] { display: none !important; }
.about-pillar-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  min-width: 24px;
}

/* --- 8 VALUES GRID --- */
.values-grid--8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
@media (max-width: 900px) { .values-grid--8 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .values-grid--8 { grid-template-columns: 1fr 1fr; } }

/* --- BRAND VOICE --- */
.brand-voice-section { background: var(--ivory-dark); }
.voice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
@media (max-width: 900px) { .voice-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .voice-grid { grid-template-columns: 1fr; } }
.voice-card {
  background: white;
  padding: 40px 32px 36px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.voice-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.voice-card-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 16px;
}
.voice-card-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 14px;
  line-height: 1;
}
.voice-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}
.voice-card-title [data-l] { display: inline; }
.voice-card-title [data-l][style*="display:none"] { display: none !important; }
.voice-card-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.84rem;
  color: var(--warm-gray);
  line-height: 1.75;
}
.voice-card-desc [data-l] { display: block; }
.voice-card-desc [data-l][style*="display:none"] { display: none !important; }

/* --- DESIGN STYLES --- */
.design-styles-section { background: var(--ivory); }
.styles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .styles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .styles-grid { grid-template-columns: 1fr; } }
.style-card { overflow: hidden; transition: box-shadow 0.4s ease; }
.style-card:hover { box-shadow: var(--shadow-lg); }
.style-card-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.style-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.style-card:hover .style-card-img { transform: scale(1.05); }
.style-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(36,64,90,0.72) 0%, transparent 55%);
}
.style-card-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(169,127,46,0.6);
  padding: 5px 12px;
  background: rgba(36,64,90,0.4);
  backdrop-filter: blur(4px);
}
.style-card-body { padding: 20px 20px 28px; background: white; }
.style-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
}
.style-card-title [data-l] { display: inline; }
.style-card-title [data-l][style*="display:none"] { display: none !important; }
.style-card-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.80rem;
  color: var(--warm-gray);
  line-height: 1.7;
}
.style-card-desc [data-l] { display: block; }
.style-card-desc [data-l][style*="display:none"] { display: none !important; }

/* --- PARTNERS --- */
.partners-section { background: var(--navy); }
.partners-section .section-title { color: white; }
.partners-section .section-intro { color: rgba(247,243,238,0.65); }
.partners-section .section-eyebrow { color: var(--gold-light); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
@media (max-width: 900px) { .partners-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .partners-grid { grid-template-columns: repeat(2, 1fr); } }
.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 20px;
  border: 1px solid rgba(169,127,46,0.15);
  text-align: center;
  transition: background 0.3s ease, border-color 0.3s ease;
  cursor: default;
}
.partner-item:hover {
  background: rgba(169,127,46,0.08);
  border-color: rgba(169,127,46,0.4);
}
.partner-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.75);
  transition: color 0.3s ease;
}
.partner-item:hover .partner-name { color: var(--gold-light); }

/* --- CTA BLOCK --- */
.cta-section { background: var(--ivory-dark); }
.cta-block { text-align: center; max-width: 540px; margin: 0 auto; }
.cta-title { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 400; margin-bottom: 16px; color: var(--navy); }
.cta-title .mn, .cta-title .en { display: block; }
.cta-title .en { font-size: 0.68em; opacity: 0.55; margin-top: 4px; }
.cta-intro { font-family: 'Montserrat', sans-serif; font-size: 0.90rem; color: var(--warm-gray); line-height: 1.75; margin-bottom: 32px; }
.cta-intro .mn { display: block; color: var(--navy-light); margin-bottom: 4px; }
.cta-intro .en { display: block; opacity: 0.65; font-size: 0.9em; }

/* --- CONTACT PAGE --- */
.contact-section { background: var(--ivory); }
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .contact-split { grid-template-columns: 1fr; gap: 48px; } }
.contact-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 36px;
}
.contact-info-title .mn, .contact-info-title .en { display: block; }
.contact-info-title .en { font-size: 0.65em; opacity: 0.55; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.contact-info-item:last-of-type { border-bottom: none; }
.contact-icon { width: 40px; height: 40px; background: var(--ivory-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.contact-info-label { font-family: 'Montserrat', sans-serif; font-size: 0.70rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 6px; }
.contact-info-label .mn, .contact-info-label .en { display: inline; margin-right: 4px; }
.contact-info-value { font-family: 'Montserrat', sans-serif; font-size: 0.88rem; color: var(--navy); line-height: 1.7; }
.contact-info-value .mn, .contact-info-value .en { display: block; }
.contact-info-value .en { opacity: 0.65; font-size: 0.9em; margin-top: 4px; }
.contact-link { font-family: 'Montserrat', sans-serif; font-size: 0.88rem; color: var(--navy); transition: color 0.25s ease; }
.contact-link:hover { color: var(--gold); }
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 160px;
  background: var(--ivory-dark);
  border: 1px dashed var(--taupe);
  color: var(--warm-gray);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.80rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.map-link:hover .map-placeholder { background: var(--gold-pale); border-color: var(--gold); color: var(--gold); }
.contact-map-preview { margin-top: 8px; }
.contact-form-title { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 400; color: var(--navy); margin-bottom: 32px; }
.contact-form-title .mn, .contact-form-title .en { display: block; }
.contact-form-title .en { font-size: 0.65em; opacity: 0.55; }

/* --- PROJECT DETAIL --- */
.project-detail-hero { position: relative; height: 70vh; min-height: 480px; overflow: hidden; margin-top: 72px; }
.project-detail-hero-img { position: absolute; inset: 0; }
.detail-hero-img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(24,45,64,0.78) 0%, rgba(24,45,64,0.20) 60%, transparent 100%); }
.project-detail-hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 56px 40px; max-width: 1280px; margin: 0 auto; }
.detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.62);
  margin-bottom: 16px;
}
.detail-breadcrumb a { color: rgba(247,243,238,0.62); transition: color 0.25s ease; }
.detail-breadcrumb a:hover { color: var(--gold-light); }
.detail-breadcrumb .mn, .detail-breadcrumb .en { display: inline; }
.breadcrumb-sep { color: rgba(247,243,238,0.30); }
.detail-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 400; color: white; margin-bottom: 16px; }
.detail-hero-title .mn { display: block; }
.detail-hero-title .en { display: block; font-size: 0.65em; opacity: 0.65; margin-top: 6px; }
.detail-hero-meta { display: flex; gap: 32px; flex-wrap: wrap; }
.detail-meta-item { font-family: 'Montserrat', sans-serif; font-size: 0.78rem; color: rgba(247,243,238,0.68); }
.detail-meta-item .meta-label { display: inline; }
.detail-meta-item .mn { display: inline; }
.detail-meta-item .en { display: inline; opacity: 0.65; font-size: 0.9em; }

.project-detail-body { background: var(--ivory); }
.project-summary { margin-bottom: 40px; }
.project-summary-text { font-family: 'Montserrat', sans-serif; font-size: 1.02rem; line-height: 1.85; margin-bottom: 6px; }
.project-summary-text.mn { color: var(--navy); }
.project-summary-text.en { color: var(--warm-gray); font-size: 0.92rem; }
.project-materials { margin-bottom: 56px; padding: 28px 32px; border-left: 3px solid var(--gold); background: var(--muted-ivory); }
.materials-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 10px; color: var(--navy); }
.materials-title .mn, .materials-title .en { display: inline; margin-right: 6px; }
.materials-title .en { opacity: 0.55; font-size: 0.8em; }
.materials-value { font-family: 'Montserrat', sans-serif; font-size: 0.88rem; color: var(--navy-light); }
.materials-value.en { opacity: 0.65; font-size: 0.85rem; }

.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  margin: 56px 0;
}
.gallery-item { overflow: hidden; aspect-ratio: 4/3; }
.gallery-item--featured { grid-column: 1 / -1; aspect-ratio: 16/9; }
.gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover .gallery-img { transform: scale(1.02); }
@media (max-width: 640px) { .project-gallery { grid-template-columns: 1fr; } .gallery-item--featured { grid-column: auto; aspect-ratio: 4/3; } }

.project-designer-credit { display: flex; gap: 32px; align-items: flex-start; padding: 40px; background: var(--ivory-dark); border: 1px solid var(--border); margin-bottom: 40px; }
.credit-portrait { width: 80px; height: 80px; object-fit: cover; border-radius: 50%; flex-shrink: 0; }
.credit-label { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 4px; }
.credit-label .mn, .credit-label .en { display: inline; margin-right: 4px; }
.credit-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 400; color: var(--navy); margin-bottom: 8px; }
.credit-name .mn { display: block; }
.credit-name .en { display: block; font-size: 0.72em; opacity: 0.55; }
.credit-bio { font-family: 'Montserrat', sans-serif; font-size: 0.84rem; color: var(--warm-gray); margin-bottom: 14px; }
.credit-bio .mn { display: block; color: var(--navy-light); margin-bottom: 4px; }
.credit-bio .en { display: block; font-size: 0.9em; opacity: 0.65; }

.related-section { background: var(--muted-ivory); }
.not-found-section { padding: 160px 0 100px; text-align: center; }

/* --- ANIMATIONS --- */
.reveal-fade { opacity: 0; animation: fadeIn 0.9s ease forwards; }
.reveal-up { opacity: 0; animation: fadeInUp 0.9s ease forwards; }
.delay-1 { animation-delay: 0.18s; }
.delay-2 { animation-delay: 0.36s; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll-based reveal */
.reveal-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* --- PROJECT ITEM HIDDEN STATE --- */
.project-item { transition: opacity 0.35s ease; }
.project-item.hidden { display: none; }

/* ============================================================
   ADDITIONAL POLISH & RESPONSIVE
   ============================================================ */

/* ---- PROJECTS FULL SECTION ---- */
.projects-full-section { background: var(--ivory); }

/* ---- FILTER STICKY POSITION ---- */
@media (min-width: 1024px) {
  .filter-section { position: sticky; top: 72px; z-index: 90; background: var(--ivory); padding: 24px 0; border-bottom: 1px solid var(--border); margin-bottom: 48px; }
  .projects-full-section { padding-top: 0; }
}

/* ---- PROJECT ITEMS GRID ---- */
#projects-grid { padding-top: 8px; }

/* ---- HERO MOBILE ---- */
@media (max-width: 640px) {
  .hero-section { height: 90vh; }
  .hero-heading { font-size: 1.9rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; max-width: 280px; justify-content: center; }
  .hero-content { padding: 0 24px; }
  .page-hero-content { padding: 40px 20px 48px; }
}

/* ---- ABOUT SPLIT MOBILE ---- */
@media (max-width: 640px) {
  .about-img { height: 320px; }
}

/* ---- CATEGORY CARD ASPECT RATIO MOBILE ---- */
@media (max-width: 480px) {
  .category-card { aspect-ratio: 1/1; }
}

/* ---- DESIGNER PROFILE MOBILE ---- */
@media (max-width: 640px) {
  .designer-profile-portrait-wrap .designer-profile-specialty-tag { left: 0; }
  .works-preview-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- CONTACT SECTION MOBILE ---- */
@media (max-width: 640px) {
  .contact-info-item { gap: 12px; }
  .contact-icon { width: 32px; height: 32px; }
}

/* ---- FOOTER MOBILE ---- */
@media (max-width: 600px) {
  .footer-inner { padding: 0 20px; }
  .footer-bottom { padding: 16px 20px; }
}

/* ---- PROJECT DETAIL MOBILE ---- */
@media (max-width: 640px) {
  .project-detail-hero { height: 50vh; min-height: 320px; }
  .project-detail-hero-content { padding: 40px 20px; }
  .detail-hero-meta { flex-direction: column; gap: 10px; }
  .project-designer-credit { flex-direction: column; }
  .credit-portrait { width: 64px; height: 64px; }
}

/* ---- PREMIUM TYPOGRAPHY ENHANCEMENTS ---- */
.hero-heading { font-variant-ligatures: common-ligatures; }

/* Subtle gold accent lines for sections */
.categories-section .section-header::after,
.featured-section .section-header::after,
.designers-section .section-header::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto 0;
  opacity: 0.6;
}

/* ---- LETTER SPACING REFINEMENTS ---- */
.section-title .mn { letter-spacing: 0.01em; }
.section-title .en { letter-spacing: 0.04em; }

/* ---- CATEGORY CARD HOVER LINE ---- */
.category-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 3;
}
.category-card:hover::after { transform: scaleX(1); }

/* ---- SMOOTH IMAGE ENTRANCE ---- */
img { transition: opacity 0.4s ease; }
img[loading="lazy"] { opacity: 0; }
img.loaded, img:not([loading]) { opacity: 1; }

/* ---- PREMIUM FORM ENHANCEMENTS ---- */
.form-input:hover { border-color: var(--taupe); }
.form-group label { cursor: default; }

/* ---- PAGE TRANSITION WRAPPER ---- */
#page-wrapper { animation: pageEnter 0.5s ease forwards; }
@keyframes pageEnter { from { opacity: 0; } to { opacity: 1; } }

/* ---- SELECTION COLOR ---- */
::selection { background: var(--gold-pale); color: var(--navy); }

/* ---- CUSTOM SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--taupe); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---- GALLERY LIGHTBOX HINT ---- */
.gallery-item { cursor: zoom-in; }

/* ---- SCROLL TO TOP HINT AT BOTTOM ---- */
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }

/* ---- INQUIRY SECTION CONTRAST ---- */
.inquiry-section .section-title { color: var(--navy); }
.inquiry-section .section-title .en { opacity: 0.5; }

/* ---- NOT FOUND ---- */
.not-found-section { min-height: 60vh; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 32px; text-align: center; padding-top: 72px; }

/* ---- PRINT STYLES ---- */
@media print {
  .site-header, .site-footer, .hero-scroll-indicator, .btn-enquire { display: none; }
  .hero-section { height: auto; min-height: auto; }
}

/* ---- PREMIUM VIDEO SECTION ---- */
.video-section {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.video-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(169,127,46,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.video-section .section-title { color: white; }
.video-section .section-eyebrow { color: var(--gold-light); }
.video-section .section-intro { color: rgba(247,243,238,0.65); }
.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: var(--navy-dark);
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0,0,0,0.4);
}
.video-container video,
.video-container iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(24,45,64,0.3);
  transition: background 0.3s ease;
  cursor: pointer;
  z-index: 2;
}
.video-play-btn:hover { background: rgba(24,45,64,0.1); }
.video-play-icon {
  width: 72px;
  height: 72px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.video-play-btn:hover .video-play-icon {
  transform: scale(1.1);
  background: var(--gold-light);
}
.video-play-icon svg { margin-left: 4px; }

/* ============================================================
   ABOUT PAGE — MISSING / ALIAS CSS CLASSES
   ============================================================ */

/* --- PAGE HERO ABOUT VARIANT --- */
.page-hero--about .page-hero-bg {
  background-position: center 30%;
}
.page-hero-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  opacity: 0.9;
}
.page-hero-tagline [data-l] { display: inline; }
.page-hero-tagline [data-l][style*="display:none"] { display: none !important; }
.page-hero-content--about { padding-bottom: 80px; }

/* --- PHILOSOPHY SECTION --- */
.philosophy-section { background: var(--ivory); }
.philosophy-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .philosophy-split { grid-template-columns: 1fr; gap: 48px; } }
.philosophy-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.philosophy-content-col { padding: 20px 0; }
.philosophy-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin: 12px 0 16px;
  letter-spacing: 0.01em;
}
.philosophy-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

/* --- TIMELINE TITLE & PHASE LABEL --- */
.timeline-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--navy);
  margin: 10px 0 12px;
  line-height: 1.3;
}
.timeline-title [data-l] { display: inline; }
.timeline-title [data-l][style*="display:none"] { display: none !important; }
.timeline-phase-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--taupe);
  padding: 6px 16px;
  margin-bottom: 14px;
}
.timeline-phase-label [data-l] { display: inline; }
.timeline-phase-label [data-l][style*="display:none"] { display: none !important; }

/* --- BRAND VOICE GRID (aliases for voice-grid / voice-card) --- */
.brand-voice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
@media (max-width: 900px) { .brand-voice-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .brand-voice-grid { grid-template-columns: 1fr; } }
.brand-voice-card {
  background: white;
  padding: 40px 32px 36px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.brand-voice-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.brand-voice-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 16px;
}
.brand-voice-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}
.brand-voice-title [data-l] { display: inline; }
.brand-voice-title [data-l][style*="display:none"] { display: none !important; }
.brand-voice-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.84rem;
  color: var(--warm-gray);
  line-height: 1.75;
}
.brand-voice-desc [data-l] { display: block; }
.brand-voice-desc [data-l][style*="display:none"] { display: none !important; }

/* --- MATERIALS SECTION (about page) --- */
.materials-section { background: var(--navy); }
.materials-section .section-title { color: white; }
.materials-section .section-intro { color: rgba(247,243,238,0.65); }
.materials-section .section-eyebrow { color: var(--gold-light); }

/* --- PARTNER CARD (about page, navy bg variant) --- */
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  border: 1px solid rgba(169,127,46,0.15);
  text-align: center;
  transition: background 0.3s ease, border-color 0.3s ease;
  cursor: default;
  background: rgba(247,243,238,0.04);
}
.partner-card:hover {
  background: rgba(169,127,46,0.08);
  border-color: rgba(169,127,46,0.4);
}
.partner-card .partner-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.82);
  transition: color 0.3s ease;
  margin-bottom: 6px;
}
.partner-card:hover .partner-name { color: var(--gold-light); }
.partner-cat {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  color: rgba(247,243,238,0.45);
  letter-spacing: 0.06em;
}
.partner-cat [data-l] { display: inline; }
.partner-cat [data-l][style*="display:none"] { display: none !important; }

/* --- SECTION TITLE LEFT ALIGNMENT --- */
.section-title--left { text-align: left; }
.section-title--light { color: var(--ivory) !important; }

/* --- SECTION INTRO LIGHT --- */
.section-intro--light { color: rgba(247,243,238,0.65) !important; }

/* ══════════════════════════════════════════════════════
   STYLES SECTION (about page — style categories)
══════════════════════════════════════════════════════ */
.styles-section { background: var(--ivory); }

/* ══════════════════════════════════════════════════════
   TIMELINE IMAGE
══════════════════════════════════════════════════════ */
.timeline-img-wrap {
  margin-top: 20px;
  overflow: hidden;
  border-radius: 4px;
}
.timeline-img {
  width: 100%;
  max-width: 520px;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.timeline-img-wrap:hover .timeline-img { transform: scale(1.03); }

/* ══════════════════════════════════════════════════════
   ABOUT CTA SECTION
══════════════════════════════════════════════════════ */
.about-cta-section {
  background: var(--navy);
  padding: 100px 0;
}
.about-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.about-cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.25;
  margin: 16px 0 20px;
}
.about-cta-title .mn { display: block; }
.about-cta-title .en { display: block; font-size: 0.72em; color: rgba(247,243,238,0.55); margin-top: 6px; }
.about-cta-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: rgba(247,243,238,0.65);
  line-height: 1.75;
  margin-bottom: 40px;
}
.about-cta-sub .mn { display: block; }
.about-cta-sub .en { display: block; font-size: 0.88em; opacity: 0.7; margin-top: 4px; }
.about-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid rgba(247,243,238,0.4);
  color: var(--ivory);
  background: transparent;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(169,127,46,0.06);
}
