/* ====================================================
   KINGS NAYRAA GLOBAL — Premium Trade & Luxury Interiors
   Design System: Dark luxury, rich gold, elegant serif
   ==================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --bg:         #0d111a;
  --bg2:        #131825;
  --bg3:        #1c2233;
  --gold:       #C9A84C;
  --gold-light: #E8C87A;
  --gold-dark:  #9B7535;
  --gold-muted: rgba(201,168,76,0.15);
  --cream:      #FAF5E9;
  --text:       #F0ECE2;
  --text-muted: #9A9387;
  --border:     rgba(201,168,76,0.2);
  --card-bg:    rgba(255,255,255,0.03);
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 8px 40px rgba(0,0,0,0.5);
  --transition: 0.3s ease-out;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Jost', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
  cursor: none; /* Custom cursor */
}

/* Background Canvas */
#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  pointer-events: none;
  background: #0d111a;
}

/* Custom Cursor Styles */
.cursor-dot {
  width: 10px; height: 10px;
  background-color: var(--gold);
  position: fixed; top: 0; left: 0;
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out;
}
.cursor-outline {
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  position: fixed; top: 0; left: 0;
  border-radius: 50%;
  z-index: 9998;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s;
}
.cursor-active { transform: translate(-50%, -50%) scale(1.5); background: rgba(201,168,76,0.1); }

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 20%, rgba(201,168,76,0.04) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
strong { font-weight: 600; color: var(--gold-light); }

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ---------- Layout ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}
.section { padding: 8rem 0; position: relative; background: transparent; isolation: isolate; overflow: hidden; }
.text-center { text-align: center; }

/* ---------- Section Labels & Titles ---------- */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::after {
  content: '';
  flex: 1;
  max-width: 3rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.text-center .section-label { justify-content: center; }
.text-center .section-label::after { display: none; }
.section-label.light { color: var(--gold-light); }
.section-label.light::after { background: var(--gold-light); }

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-title.light { color: #fff; }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 640px;
}
.text-center .section-sub { margin: 0 auto 3rem; }

.section-header-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3.5rem;
}
.section-header-row .section-title { margin-bottom: 0; }
.section-header-row .section-sub { margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: #0A0D17;
  box-shadow: 0 4px 20px rgba(201,168,76,0.25);
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 32px rgba(201,168,76,0.4);
}
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ====================================================
   NAVBAR
   ==================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
.navbar.scrolled {
  background: rgba(10,13,23,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 4px;
}
.logo-fallback {
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240,236,226,0.75);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--gold); }
.nav-link.active::after { width: 100%; }
.nav-cta {
  background: var(--gold);
  color: #0A0D17 !important;
  padding: 0.5rem 1.25rem;
  border-radius: 3px;
  font-weight: 700;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold-light); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ====================================================
   HERO
   ==================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,13,23,0.55) 0%,
    rgba(10,13,23,0.7) 50%,
    rgba(10,13,23,0.92) 100%
  );
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 2rem;
  padding-top: 5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.15em;
}
.hero-title-line { display: block; }
.hero-title-em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* Text Rotate Effect Enhanced - Static pill size */
.rotating-words {
  display: inline-flex;
  position: relative;
  height: 1.8em;
  width: 240px; /* Static container width */
  vertical-align: middle;
  overflow: hidden;
  margin-top: -0.2em;
}

.rotating-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centered in static pill */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: pre;
  width: 100%; /* Fill the fixed container */
  height: 1.4em;
  border-radius: 100px; /* True pill shape */
  background: var(--gold);
  color: #0b0e1a;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.rot-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
}

.rotating-word.active .rot-char.in {
  animation: charSlideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.rot-char.out {
  animation: charSlideOut 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
}

@keyframes charSlideIn {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes charSlideOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-100%); }
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.mobile-break {
  display: none;
}

@media (max-width: 768px) {
  .mobile-break { display: block; }
  .rotating-words { min-width: 200px; margin-top: 0.5rem; }
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounceDown 2s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ====================================================
   MARQUEE
   ==================================================== */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.85rem 0;
}
.marquee-track { overflow: hidden; }
.marquee-content {
  display: inline-flex;
  gap: 2rem;
  animation: marquee 35s linear infinite;
}
.marquee-content span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0A0D17;
  white-space: nowrap;
}
.marquee-dot { color: rgba(10,13,23,0.5) !important; font-size: 0.6rem !important; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ====================================================
   ABOUT
   ==================================================== */
.about-section { background: transparent; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-lead {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.about-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-plus {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  vertical-align: super;
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.about-visual { position: relative; }
.about-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}
.about-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}
.about-img-card:hover img { transform: scale(1.04); }
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,13,23,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.about-img-card:hover .about-img-overlay { opacity: 1; }
.about-img-overlay span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold-light);
}
.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow);
}
.badge-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 4px;
}
.about-img-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ====================================================
   MD PROFILE
   ==================================================== */
.md-section {
  background: var(--bg);
  overflow: hidden;
}
.md-bg-anim {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
  animation: mdBgShift 8s ease-in-out infinite alternate;
}
@keyframes mdBgShift {
  from { opacity: 0.6; transform: translateX(0) scale(1); }
  to   { opacity: 1; transform: translateX(-2%) scale(1.05); }
}
.md-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 6rem;
  align-items: center;
}
.md-image-col { position: relative; }
.md-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 580px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.md-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease-out;
}
.md-img-wrap:hover .md-portrait { transform: scale(1.03); }
.md-img-frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.md-img-badge {
  position: absolute;
  bottom: -1rem;
  right: -1.5rem;
  background: var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}
.badge-year {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0A0D17;
  line-height: 1;
}
.badge-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10,13,23,0.7);
  margin-top: 0.2rem;
}
.md-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.md-body {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.md-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.md-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}
.hi-icon { flex-shrink: 0; margin-top: 2px; }

.segments-intro { 
  background: transparent; 
  position: relative; 
  overflow: hidden; 
  isolation: isolate; 
}

/* Background Boxes Modular Component CSS */
.bg-boxes-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
  overflow: hidden;
}

.boxes-grid {
  position: absolute;
  left: -10%;
  top: -10%;
  display: flex;
  flex-wrap: wrap;
  width: 220%;
  height: 220%;
  transform: translate(-40%, -60%) skewX(-48deg) skewY(14deg) scale(0.675) rotate(0deg) translateZ(0);
  pointer-events: auto;
}

.bg-box {
  width: 64px;
  height: 32px;
  border-right: 1px solid rgba(51, 65, 85, 0.4);
  border-top: 1px solid rgba(51, 65, 85, 0.4);
  position: relative;
  transition: background-color 1.5s ease-out;
}

.boxes-mask {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, transparent 40%, var(--bg) 95%);
  z-index: 2;
}
.segments-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}
.segment-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.segment-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.22;
  filter: brightness(0.6) saturate(0.7);
  transition: opacity 0.5s ease-out, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
  pointer-events: none;
}
.segment-card:hover .segment-bg-img {
  opacity: 0.32;
  transform: scale(1.05);
}
.segment-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,17,26,0.55) 0%,
    rgba(13,17,26,0.35) 50%,
    rgba(13,17,26,0.65) 100%
  );
  opacity: 1;
  transition: opacity 0.5s ease-out;
  z-index: 1;
}
.segment-card:hover::before {
  background: linear-gradient(
    to bottom,
    rgba(13,17,26,0.4) 0%,
    rgba(13,17,26,0.2) 50%,
    rgba(13,17,26,0.55) 100%
  );
}
.segment-card:hover { 
  border-color: rgba(201,168,76,0.6); 
  transform: translateY(-8px) scale(1.02); 
  box-shadow: 0 24px 56px rgba(0,0,0,0.6), 0 0 40px rgba(201,168,76,0.1); 
  z-index: 10;
}
.segment-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: var(--gold-muted);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  position: relative;
  z-index: 2;
}
.segment-card:hover .segment-icon { background: rgba(201,168,76,0.2); }
.segment-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--cream);
  position: relative;
  z-index: 2;
}
.segment-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  position: relative;
  z-index: 2;
}
.segment-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  transition: color var(--transition);
  position: relative;
  z-index: 2;
}
.segment-card:hover .segment-link { color: var(--gold-light); }

/* ====================================================
   EXPORT SECTION
   ==================================================== */
.export-section { background: transparent; }
.export-bg-pattern { display: none; }
.export-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.exp-tab {
  background: transparent;
  border: none;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.75rem 1.25rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--transition), border-color var(--transition);
}
.exp-tab:hover { color: var(--cream); }
.exp-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.export-panel { display: none; }
.export-panel.active { display: block; }

/* ====================================================
   FURNITURE ACCORDION
   ==================================================== */
.furniture-accordion {
  margin: 3rem auto 5rem;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.accordion-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.accordion-item:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.accordion-item.active {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(201,168,76,0.15);
}
.accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--cream);
  font-family: 'Cinzel', serif;
  transition: background 0.3s ease;
}
.accordion-header:hover {
  background: rgba(201,168,76,0.04);
}
.accordion-item.active .accordion-header {
  background: rgba(201,168,76,0.06);
}
.acc-header-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.acc-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.35);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.accordion-item.active .acc-number {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.acc-title {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.acc-icon {
  color: var(--gold);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex-shrink: 0;
}
.accordion-item.active .acc-icon {
  transform: rotate(180deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.acc-content-inner {
  padding: 0.5rem 2rem 2.5rem;
}
@media (max-width: 768px) {
  .acc-title { font-size: 1.1rem; }
  .acc-number { width: 34px; height: 34px; font-size: 0.75rem; }
  .accordion-header { padding: 1.25rem 1.25rem; }
  .acc-content-inner { padding: 0.5rem 1rem 2rem; }
}


.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(201,168,76,0.4); }
.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,13,23,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-hover-overlay { opacity: 1; }
.product-hover-overlay span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.5rem 1.25rem;
  border-radius: 3px;
}
.product-info { padding: 1.5rem; }
.product-info h4 {
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.product-info p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Global Presence */
.global-presence {
  margin-top: 3.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.gp-header { flex-shrink: 0; }
.gp-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.gp-header p {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.gp-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex: 1;
}
.gp-region {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
}

/* ====================================================
   FURNITURE SECTION
   ==================================================== */
.furniture-section { background: transparent; }

/* Portrait Card Carousel */
.furn-card-carousel {
  position: relative;
  margin: 3rem 0 4rem;
  padding: 1rem 0 3.5rem;
  overflow: hidden;
}

.furn-card-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  transition: none;
  user-select: none;
}

.furn-card {
  flex: 0 0 calc(28% - 0.625rem);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: grab;
  border: 1px solid var(--border);
  transition: transform 0.45s cubic-bezier(0.2,0.8,0.2,1),
              opacity 0.45s ease,
              box-shadow 0.45s ease;
  transform: scale(0.88);
  opacity: 0.45;
  flex-shrink: 0;
}

.furn-card:active { cursor: grabbing; }

.furn-card.active {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 24px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.25);
  z-index: 2;
}

.furn-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  transition: transform 0.5s ease;
}

.furn-card.active img { transform: scale(1.03); }

.furn-card-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(10,13,23,0.9) 0%, transparent 100%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cream);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.furn-card.active .furn-card-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Nav Buttons */
.furn-card-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(13,17,26,0.8);
  backdrop-filter: blur(8px);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: border-color var(--transition), background var(--transition);
}
.furn-card-btn:hover { border-color: var(--gold); background: rgba(201,168,76,0.1); }
.furn-card-prev { left: 0.5rem; }
.furn-card-next { right: 0.5rem; }

/* Dots */
.furn-card-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  position: absolute;
  bottom: 0.5rem;
  left: 0; right: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .furn-card { flex: 0 0 72%; }
  .furn-card-btn { display: none; }
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.slider-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.slider-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-muted); }
.slider-dots { display: flex; gap: 0.5rem; align-items: center; }
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background var(--transition), transform var(--transition);
}
.dot.active { background: var(--gold); transform: scale(1.3); }

/* Furniture highlights */
.furn-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.furn-highlight-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.furn-highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}
.furn-highlight-card:hover img { transform: scale(1.07); }
.fhc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,13,23,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.furn-highlight-card:hover .fhc-overlay { opacity: 1; }
.fhc-overlay span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Office Gallery */
.office-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.office-intro-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.office-intro-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 480px;
}
.office-specs { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.spec-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
}
.office-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.office-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.office-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.5s ease-out;
}
.office-card:hover img { transform: scale(1.06); }
.office-card.main {
  grid-column: span 2;
}
.office-card.main img { aspect-ratio: 16/9; }
.office-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(10,13,23,0.9), transparent);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--transition), transform var(--transition);
}
.office-card:hover .office-card-overlay { opacity: 1; transform: translateY(0); }
.office-card-overlay h4 {
  font-size: 0.88rem;
  color: var(--cream);
  margin-bottom: 0.15rem;
}
.office-card-overlay span {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* Chair Gallery */
.chair-intro { margin-bottom: 2rem; }
.chair-intro-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.chair-intro-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 560px;
}
.chair-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.chair-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg3);
}
.chair-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  transition: transform 0.5s ease-out;
}
.chair-card:hover img { transform: scale(1.08); }
.chair-card.featured {
  grid-column: span 2;
}
.chair-card.featured img { aspect-ratio: 1; }
.chair-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(to top, rgba(10,13,23,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.chair-card:hover .chair-card-overlay { opacity: 1; }
.chair-card-overlay h4 {
  font-size: 0.82rem;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.chair-card-overlay p {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ====================================================
   REAL ESTATE
   ==================================================== */
.realestate-section { background: transparent; }
.re-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.re-projects { display: flex; flex-direction: column; gap: 5rem; }
.re-project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.re-project-reverse {
  direction: rtl;
}
.re-project-reverse > * { direction: ltr; }

/* RE Slider */
.re-project-gallery { position: relative; }
.re-slider {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
  background: var(--bg3);
  box-shadow: var(--shadow);
}
.re-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease-out;
}
.re-slide.active { opacity: 1; position: relative; }
.re-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.re-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.re-project-info { padding-top: 0.5rem; }
.re-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 100px;
  display: inline-block;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1rem;
}
.re-project-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.re-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}
.re-project-info > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.re-features { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.re-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.87rem;
  color: var(--text);
}
.re-cta { margin-top: 0.5rem; }

/* ====================================================
   REAL ESTATE — Coming Soon Strip
   ==================================================== */

.re-coming-soon {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.re-cs-launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 100px;
  padding: 0.4rem 1.1rem;
  font-size: 0.75rem;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.re-cs-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: cs-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes cs-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.6); }
}

.re-cs-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* ====================================================
   BLOGS & INSIGHTS
   ==================================================== */
.blogs-section {
  position: relative;
  z-index: 10;
}
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.blog-card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 20px 50px rgba(0,0,0,0.5); 
  border-color: rgba(201,168,76,0.4); 
}
.blog-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-img-wrap img {
  transform: scale(1.05);
}
.blog-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,16,21,0.6) 0%, transparent 60%);
  pointer-events: none;
}
.blog-category {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(14, 16, 21, 0.7);
  backdrop-filter: blur(8px);
  color: var(--gold);
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.2);
  z-index: 2;
}
.blog-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.blog-title {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--cream);
  line-height: 1.35;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}
.blog-card:hover .blog-title {
  color: var(--gold);
}
.blog-excerpt {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: gap var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-card:hover .blog-link {
  gap: 0.8rem;
}
/* ====================================================
   CATALOGS
   ==================================================== */
.catalogs-section { background: transparent; }
.catalog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}
.catalog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.catalog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(201,168,76,0.4); }
.catalog-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.catalog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}
.catalog-card:hover .catalog-card-img img { transform: scale(1.06); }
.catalog-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,13,23,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.catalog-card:hover .catalog-img-overlay { opacity: 1; }
.catalog-card-info {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.catalog-card-info h4 {
  font-size: 0.95rem;
  color: var(--cream);
}
.catalog-card-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ====================================================
   CONTACT
   ==================================================== */
.contact-section { position: relative; padding: 7rem 0; }
.contact-bg { display: none; }
.contact-bg-overlay { display: none; }
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.cd-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cd-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.cd-value {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
a.cd-value:hover { color: var(--gold-light); }

/* Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(12px);
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 0.8rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #fff;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%239A9387' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group select option { background: #181c2a; color: #fff; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-msg {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.5rem;
  min-height: 1.5rem;
  transition: color var(--transition);
}
.form-msg.success { color: #4ade80; }
.form-msg.error { color: #f87171; }

/* ====================================================
   FOOTER
   ==================================================== */
.footer { background: transparent; border-top: 1px solid var(--border); }
.footer-top { padding: 4rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.footer-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 4px;
}
.footer-brand-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
}
.footer-brand-sub {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer-nav-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-nav-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav-col a {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-nav-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ====================================================
   RESOURCES CTA SECTION
   ==================================================== */
.resources-cta {
  overflow: hidden;
}
.resources-cta-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(20px);
}
.cta-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-visual {
  background: rgba(201,168,76, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
  overflow: hidden;
}
.cta-img-stack {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 400px;
}
.cta-img-1, .cta-img-2 {
  position: absolute;
  width: 220px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transition: transform 0.5s ease;
}
.cta-img-1 {
  top: 10%;
  left: 0;
  z-index: 2;
  transform: rotate(-10deg);
}
.cta-img-2 {
  bottom: 10%;
  right: 0;
  z-index: 1;
  transform: rotate(5deg);
}
.resources-cta-card:hover .cta-img-1 { transform: rotate(-5deg) translateY(-10px); }
.resources-cta-card:hover .cta-img-2 { transform: rotate(10deg) translateY(10px); }

@media (max-width: 991px) {
  .resources-cta-card { grid-template-columns: 1fr; }
  .cta-content { padding: 3rem; text-align: center; }
  .cta-img-stack { height: 300px; max-width: 280px; }
  .cta-img-1, .cta-img-2 { width: 140px; }
}

@media (max-width: 480px) {
  .cta-content { padding: 2rem; }
  .cta-img-stack { height: 240px; }
}

/* ====================================================
   SCROLL REVEAL ANIMATIONS & PRO DIVIDERS
   ==================================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  filter: blur(8px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
              filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.3s; }

/* --- Reveal for headings specifically --- */
.section-title.scroll-reveal {
  transform: translateY(30px) rotateX(10deg);
  transform-origin: center bottom;
}
.section-title.scroll-reveal.revealed {
  transform: translateY(0) rotateX(0deg);
}

/* --- Pro Divider --- */
.pro-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  position: relative;
  width: 100%;
  margin: 0;
  background: transparent;
}
.pro-divider .line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76, 0.4), transparent);
}
.pro-divider .crown-divider {
  width: 42px;
  height: 42px;
  object-fit: contain;
  position: relative;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 10px rgba(201,168,76,0.5));
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-top: -10px;
}
.pro-divider:hover .crown-divider {
  transform: scale(1.2) rotate(5deg);
}

/* ====================================================
   WHATSAPP FLOAT
   ==================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5), 0 0 20px rgba(37,211,102,0.2);
  z-index: 1000;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
  color: #fff;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.4) !important;
}

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .md-grid { grid-template-columns: 1fr; gap: 3rem; }
  .md-img-wrap { max-width: 360px; margin: 0 auto; aspect-ratio: 1; }
  .md-image-col { display: flex; justify-content: center; }
  .section-header-row { grid-template-columns: 1fr; gap: 1rem; }
  .segments-cards { grid-template-columns: 1fr; }
  .re-project, .re-project-reverse { grid-template-columns: 1fr; direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .chair-gallery { grid-template-columns: repeat(3, 1fr); }
  .chair-card.featured { grid-column: span 3; }
  .chair-card.featured img { aspect-ratio: 16/7; }
  .catalog-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; right: 0; bottom: 0; width: 75vw; max-width: 320px; background: rgba(10,13,23,0.97); backdrop-filter: blur(20px); padding: 6rem 2rem 2rem; gap: 0.5rem; transform: translateX(100%); transition: transform 0.35s ease-out; z-index: 999; }
  .nav-links.open { display: flex; transform: translateX(0); }
  .nav-link { font-size: 1rem; padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
  .nav-cta { margin-top: 1rem; }
  .nav-toggle { display: flex; z-index: 1001; }
  .hero-title { font-size: clamp(2rem, 8vw, 3.2rem); }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .segments-cards { grid-template-columns: 1fr; }
  .office-gallery { grid-template-columns: 1fr 1fr; }
  .office-card.main { grid-column: span 2; }
  .chair-gallery { grid-template-columns: repeat(2, 1fr); }
  .chair-card.featured { grid-column: span 2; }
  .furn-highlights { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .catalog-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .global-presence { flex-direction: column; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 28px; height: 28px; }

  /* ---- MOBILE: Hide background boxes everywhere (only keep furniture canvas trail) ---- */
  .bg-boxes-container {
    display: none !important;
  }

  /* ---- MOBILE: RE projects — show heading FIRST, then slideshow ---- */
  .re-project,
  .re-project-reverse {
    display: flex;
    flex-direction: column;
  }
  .re-project .re-project-info,
  .re-project-reverse .re-project-info {
    order: -1;
  }
  .re-project .re-project-gallery,
  .re-project-reverse .re-project-gallery {
    order: 1;
    margin-top: 1.5rem;
  }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .office-gallery { grid-template-columns: 1fr; }
  .office-card.main { grid-column: span 1; }
  .chair-gallery { grid-template-columns: 1fr 1fr; }
  .export-tabs, .furniture-tabs { overflow-x: auto; padding-bottom: 0; flex-wrap: nowrap; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}
