
/* ═══════════════════════════════════════════════════
   R & A MAHOGANY — PRODUCTION STYLESHEET
   Retina-ready · Mobile-first · Scroll-animated
   ═══════════════════════════════════════════════════ */

:root {
  --black: #0D0D0D;
  --black-soft: #111111;
  --gold: #C9A84C;
  --gold-light: #E0C06A;
  --gold-dark: #A88B3A;
  --gold-muted: rgba(201,168,76,0.15);
  --gold-border: rgba(201,168,76,0.2);
  --cream: #FAF7F0;
  --warm-gray: #2A2A2A;
  --text-light: #D4D0C8;
  --text-muted: #8A8578;
  --section-pad: clamp(64px, 8vw, 120px);
  --side-pad: clamp(20px, 4vw, 48px);
  --max-w: 1320px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Lato', -apple-system, sans-serif;
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Retina crisp rendering */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  body { -webkit-font-smoothing: subpixel-antialiased; }
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.4s; }

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--black);
  border-bottom: 1px solid var(--gold-muted);
  padding: 9px 0;
  font-size: 12.5px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}
.top-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a {
  color: var(--gold);
  text-decoration: none;
  margin-left: 18px;
  transition: color 0.3s;
}
.top-bar a:hover { color: var(--gold-light); }

/* ─── HEADER ─── */
header {
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--gold-border);
  transition: padding 0.3s;
}
header.scrolled { padding: 10px 0; }

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid var(--gold-border);
}
.logo-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.8px;
  line-height: 1.15;
}
.logo-text span {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 400;
}

/* Desktop nav */
nav { display: flex; align-items: center; gap: 4px; }
nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 9px 13px;
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}
nav a:hover, nav a.active { color: var(--gold); }
nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateX(-50%);
}
nav a:hover::after, nav a.active::after { width: 55%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  font-weight: 700 !important;
  padding: 10px 24px !important;
  border-radius: 2px;
  margin-left: 8px;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.nav-cta::after { display: none !important; }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  width: 44px;
  height: 44px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
  line-height: 1;
}
.mobile-toggle:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,13,13,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav a {
  color: var(--cream);
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  padding: 14px 20px;
  transition: color 0.3s;
  letter-spacing: 1px;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s;
}
.mobile-nav-close:hover { background: rgba(201,168,76,0.1); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: max(92vh, 600px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 45%, rgba(201,168,76,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 25%, rgba(201,168,76,0.04) 0%, transparent 45%),
    linear-gradient(175deg, var(--black) 0%, #0f0f0f 100%);
}
/* Decorative gold line */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 40%;
  right: 0;
  width: 45%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.12), transparent);
}

.hero-video-area {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: 52%;
  height: 72%;
  background:
    linear-gradient(135deg, rgba(201,168,76,0.06) 0%, rgba(13,13,13,0.95) 100%);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
}
.hero-video-area::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 4px;
  pointer-events: none;
}

.play-btn {
  width: 76px;
  height: 76px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  animation: pulse-glow 2.5s infinite;
  position: relative;
  z-index: 1;
}
.play-btn:hover {
  background: var(--gold);
  transform: scale(1.12);
  box-shadow: 0 0 40px rgba(201,168,76,0.3);
}
.play-btn:hover svg { fill: var(--black); }
.play-btn svg {
  width: 26px;
  height: 26px;
  fill: var(--gold);
  margin-left: 4px;
  transition: fill 0.3s;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.25); }
  50% { box-shadow: 0 0 0 18px rgba(201,168,76,0); }
}
.video-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  opacity: 0;
  animation: heroFadeUp 0.9s 0.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-tag::before {
  content: '';
  width: 44px;
  height: 1px;
  background: var(--gold);
}
.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5.2vw, 70px);
  font-weight: 700;
  line-height: 1.06;
  max-width: 560px;
  margin-bottom: 26px;
  opacity: 0;
  animation: heroFadeUp 0.9s 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.hero-desc {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.75;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 42px;
  font-weight: 300;
  opacity: 0;
  animation: heroFadeUp 0.9s 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.9s 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  padding: 16px 34px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.3);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--cream);
  padding: 16px 34px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(201,168,76,0.35);
  cursor: pointer;
  transition: all 0.35s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.04);
}

.hero-stats {
  display: flex;
  gap: 52px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--gold-muted);
  opacity: 0;
  animation: heroFadeUp 0.9s 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3vw, 38px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ─── GOLD DIVIDER ─── */
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--gold) 50%, transparent 95%);
  opacity: 0.25;
}

/* ─── SECTION HEADERS ─── */
.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 68px;
  padding: 0 var(--side-pad);
}
.section-tag {
  font-size: 11.5px;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.section-tag::before, .section-tag::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.12;
}
.section-header p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 300;
}

/* ─── PRODUCT CATEGORIES ─── */
.categories { padding: var(--section-pad) 0; }

.cat-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cat-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  border: 1px solid var(--gold-muted);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.cat-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}
.cat-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.cat-card:hover .cat-card-bg { transform: scale(1.08); }
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,0.05) 0%, rgba(13,13,13,0.88) 100%);
  transition: all 0.5s;
}
.cat-card:hover .cat-card-overlay {
  background: linear-gradient(180deg, rgba(13,13,13,0.15) 0%, rgba(13,13,13,0.94) 100%);
}
.cat-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
}
.cat-card-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 7px;
  line-height: 1.2;
}
.cat-card-content p {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  line-height: 1.5;
}
.cat-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(-10px, 10px);
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.cat-card:hover .cat-arrow {
  opacity: 1;
  transform: translate(0, 0);
}
.cat-arrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
}
.cat-grid-2 {
  max-width: var(--max-w);
  margin: 18px auto 0;
  padding: 0 var(--side-pad);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.cat-card.wide { height: 340px; }

.cat-grid-3 {
  max-width: var(--max-w);
  margin: 18px auto 0;
  padding: 0 var(--side-pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cat-card.sm { height: 300px; }

/* ─── ABOUT ─── */
.about-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(175deg, #090909 0%, var(--black) 100%);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.035) 0%, transparent 65%);
  pointer-events: none;
}
.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-left .section-tag { justify-content: flex-start; }
.about-left .section-tag::before { display: none; }
.about-left h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 26px;
}
.about-left h3 em { font-style: italic; color: var(--gold); font-weight: 500; }
.about-text {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 18px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 36px 0 42px;
}
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about-feat-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.about-feat-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}
.about-feat span {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

.about-right { position: relative; }
.about-img-main {
  width: 100%;
  height: 520px;
  background:
    linear-gradient(135deg, rgba(201,168,76,0.06), rgba(42,42,42,0.4));
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.about-img-main small { font-size: 11px; letter-spacing: 1px; opacity: 0.6; text-transform: none; }
.about-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--gold);
  color: var(--black);
  padding: 26px 30px;
  text-align: center;
}
.badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}
.badge-text {
  font-size: 10.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 5px;
}

/* ─── SHOWROOMS ─── */
.showrooms { padding: var(--section-pad) 0; }

.showroom-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.showroom-card {
  border: 1px solid var(--gold-muted);
  padding: 38px 32px;
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.showroom-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.showroom-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
.showroom-card:hover::before { transform: scaleX(1); }

.showroom-icon {
  width: 50px;
  height: 50px;
  background: rgba(201,168,76,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.showroom-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.showroom-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}
.showroom-city {
  font-size: 11.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.showroom-addr {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.showroom-phone {
  font-size: 15px;
  color: var(--cream);
  font-weight: 700;
  letter-spacing: 0.5px;
}
.showroom-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 22px;
  transition: gap 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.showroom-link:hover { gap: 16px; }

/* ─── SERVICES ─── */
.services {
  padding: var(--section-pad) 0;
  background: linear-gradient(175deg, #070707, var(--black));
}
.services-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  padding: 38px 26px;
  border: 1px solid rgba(201,168,76,0.1);
  text-align: center;
  transition: all 0.4s;
}
.service-card:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.025);
  transform: translateY(-3px);
}
.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 800;
  color: rgba(201,168,76,0.12);
  margin-bottom: 18px;
  line-height: 1;
}
.service-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 14px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  padding: 84px var(--side-pad);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
    var(--black);
  text-align: center;
  border-top: 1px solid var(--gold-muted);
  border-bottom: 1px solid var(--gold-muted);
}
.cta-banner h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-banner h3 em { font-style: italic; color: var(--gold); font-weight: 500; }
.cta-banner p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  font-weight: 300;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── FOOTER ─── */
footer {
  background: #060606;
  padding: 84px 0 0;
  border-top: 1px solid rgba(201,168,76,0.08);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 44px;
}
.footer-brand h4 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1.3;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 22px;
}
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}
.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.social-links a svg { width: 18px; height: 18px; fill: var(--gold); transition: fill 0.3s; }
.social-links a:hover svg { fill: var(--black); }

.footer-col h5 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--cream);
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 11px;
  transition: color 0.3s;
  line-height: 1.4;
}
.footer-col a:hover { color: var(--gold); }

.footer-addr-item { margin-bottom: 20px; }
.footer-addr-item strong {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
}
.footer-addr-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}
.footer-addr-item .phone {
  color: var(--cream);
  font-weight: 700;
  font-size: 14px;
  margin-top: 3px;
  display: inline-block;
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 52px auto 0;
  padding: 24px var(--side-pad);
  border-top: 1px solid rgba(201,168,76,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* Tooltip on hover */
.whatsapp-float::before {
  content: 'Chat with us';
  position: absolute;
  right: 68px;
  background: #25D366;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s;
  pointer-events: none;
}
.whatsapp-float:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════ */

/* Tablet landscape */
@media (max-width: 1100px) {
  nav a { padding: 8px 10px; font-size: 11.5px; letter-spacing: 0.8px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* Tablet portrait */
@media (max-width: 900px) {
  nav { display: none; }
  .mobile-toggle { display: flex; align-items: center; justify-content: center; }
  .hero-video-area { display: none; }
  .hero h2 { max-width: 100%; }
  .hero-desc { max-width: 100%; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-right { max-width: 480px; }
  .showroom-grid { grid-template-columns: 1fr 1fr; }
}

/* Large phone */
@media (max-width: 680px) {
  .top-bar { display: none; }
  .hero { min-height: max(80vh, 540px); }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .hero-btns { flex-direction: column; width: 100%; }
  .btn-primary, .btn-outline { text-align: center; justify-content: center; width: 100%; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-grid-2 { grid-template-columns: 1fr; }
  .cat-grid-3 { grid-template-columns: 1fr 1fr; }
  .cat-card { height: 320px; }
  .cat-card.wide { height: 280px; }
  .cat-card.sm { height: 260px; }
  .showroom-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-features { grid-template-columns: 1fr; }
  .about-img-main { height: 360px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn-primary, .cta-btns .btn-outline { width: 100%; max-width: 360px; }
}

/* Small phone */
@media (max-width: 400px) {
  .logo-text h1 { font-size: 14px; letter-spacing: 1px; }
  .logo-img { width: 42px; height: 42px; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Safe area for notched phones */
@supports (padding: max(0px)) {
  .whatsapp-float {
    bottom: max(24px, env(safe-area-inset-bottom, 24px));
    right: max(24px, env(safe-area-inset-right, 24px));
  }
}


/* ═══════════════════════════════════════════════════
   FROM about.html — page hero, story, vmv, values, parent
   ═══════════════════════════════════════════════════ */

/* ─── PAGE HERO BANNER WITH VIDEO ─── */
.page-hero {
  padding: clamp(100px, 14vw, 200px) 0 clamp(80px, 10vw, 140px);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.page-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,13,13,0.75) 0%, rgba(13,13,13,0.85) 50%, rgba(13,13,13,0.92) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}

.page-hero .breadcrumb {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.page-hero .breadcrumb a { color: var(--gold); text-decoration: none; }

.page-hero .breadcrumb a:hover { color: var(--gold-light); }

.page-hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 22px;
}

.page-hero h2 em { font-style: italic; color: var(--gold); font-weight: 500; }

.page-hero p {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 300;
}

/* ─── ABOUT STORY ─── */
.story-section {
  padding: var(--section-pad) 0;
}

.story-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 28px;
}

.story-text h3 em { font-style: italic; color: var(--gold); font-weight: 500; }

.story-text p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 20px;
}

.story-img {
  width: 100%;
  height: 480px;
  border: 1px solid var(--gold-border);
  background: linear-gradient(135deg, rgba(201,168,76,0.06), rgba(42,42,42,0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

.story-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gold);
  color: var(--black);
  padding: 24px 28px;
  text-align: center;
}

.story-badge .badge-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 800; line-height: 1; }

.story-badge .badge-text { font-size: 10px; letter-spacing: 1.8px; text-transform: uppercase; font-weight: 700; margin-top: 4px; }

/* ─── VISION / MISSION / VALUES ─── */
.vmv-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(175deg, #090909 0%, var(--black) 100%);
}

.vmv-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.vmv-card {
  border: 1px solid var(--gold-muted);
  padding: 44px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.vmv-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.vmv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: transform 0.5s;
}

.vmv-card:hover::before { transform: scaleX(1); }

.vmv-icon {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.vmv-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

.vmv-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 18px;
}

.vmv-card p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.8;
  font-weight: 300;
}

/* ─── CORE VALUES GRID ─── */
.values-section {
  padding: var(--section-pad) 0;
}

.values-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.value-card {
  padding: 32px 24px;
  border: 1px solid rgba(201,168,76,0.1);
  text-align: center;
  transition: all 0.4s;
}

.value-card:hover { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.025); transform: translateY(-3px); }

.value-card .v-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card .v-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

.value-card h5 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; }

.value-card p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

/* ─── PARENT COMPANY ─── */
.parent-section {
  padding: 80px var(--side-pad);
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%), var(--black);
  text-align: center;
  border-top: 1px solid var(--gold-muted);
  border-bottom: 1px solid var(--gold-muted);
}

.parent-section h3 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3vw, 38px); font-weight: 700; margin-bottom: 16px; }

.parent-section h3 em { font-style: italic; color: var(--gold); font-weight: 500; }

.parent-section p { font-size: 18px; color: var(--text-muted); max-width: 640px; margin: 0 auto 32px; line-height: 1.75; font-weight: 300; }

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

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

.story-inner { grid-template-columns: 1fr; gap: 48px; }

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

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

.story-img { height: 320px; }


/* ═══════════════════════════════════════════════════
   V2 ADDITIONS — supporting classes for WordPress templates
   (Showroom card grids, services row, footer widgets, etc.)
   ═══════════════════════════════════════════════════ */

/* Default page wrapper */
.ra-page-default { background: var(--black); }

/* Header: WordPress menu fallback (when wp_nav_menu emits a ul.primary-menu) */
header#mainHeader .main-nav { display: flex; align-items: center; }
header#mainHeader .primary-menu {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 28px; align-items: center;
}
header#mainHeader .primary-menu li { position: relative; }
header#mainHeader .primary-menu a {
  color: var(--cream); text-decoration: none;
  font-size: 14px; font-weight: 500; letter-spacing: 0.5px;
  padding: 8px 0; transition: color 0.3s ease;
}
header#mainHeader .primary-menu a:hover,
header#mainHeader .primary-menu .current-menu-item > a { color: var(--gold); }
header#mainHeader .primary-menu .menu-item-has-children > a::after {
  content: ' ▾'; font-size: 9px; opacity: 0.7;
}
header#mainHeader .primary-menu .sub-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: #161616; border: 1px solid var(--gold-muted);
  list-style: none; padding: 8px 0; margin: 0; min-width: 200px; z-index: 100;
}
header#mainHeader .primary-menu li:hover > .sub-menu { display: block; }
header#mainHeader .primary-menu .sub-menu a {
  display: block; padding: 10px 20px; font-size: 13px;
}

/* Mobile nav (WordPress menu emits .mobile-menu) */
.mobile-nav .mobile-menu {
  list-style: none; padding: 0; margin: 0;
}
.mobile-nav .mobile-menu li { border-bottom: 1px solid var(--gold-muted); }
.mobile-nav .mobile-menu a {
  display: block; padding: 18px 0;
  color: var(--cream); text-decoration: none;
  font-size: 18px; font-weight: 500; font-family: 'Playfair Display', serif;
}
.mobile-nav .mobile-menu a:hover { color: var(--gold); }

/* About section grid (Home page about preview + About page story-section already use story-grid)
   Note: home.html uses .about-section + .about-inner — we use .about-grid in our templates */
.about-section .about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--side-pad);
}
.about-section .about-image {
  aspect-ratio: 4 / 3; overflow: hidden;
  border: 1px solid var(--gold-muted); background: linear-gradient(135deg, #161616, #0f0f0f);
}
.about-section .about-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.about-section .about-content .section-tag { margin-bottom: 12px; }
.about-section .about-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.8vw, 44px); color: var(--cream);
  font-weight: 700; margin: 0 0 20px;
}
.about-section .about-content h3 em {
  font-style: italic; color: var(--gold); font-weight: 500;
}
.about-section .about-content p {
  font-size: 16px; line-height: 1.8; color: var(--text-light);
  margin-bottom: 20px; font-weight: 300;
}
.about-section .about-content .btn-primary { margin-top: 12px; }

@media (max-width: 1100px) {
  .about-section .about-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Showroom card grid (used on Home + Showrooms pages) */
.showrooms { padding: var(--section-pad) 0; }
.showroom-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--side-pad);
}
.showroom-card {
  border: 1px solid var(--gold-muted); background: rgba(255,255,255,0.02);
  overflow: hidden; transition: border-color 0.3s ease, transform 0.4s ease;
}
.showroom-card:hover {
  border-color: var(--gold); transform: translateY(-4px);
}
.showroom-card-img {
  aspect-ratio: 16 / 9; background: linear-gradient(135deg, #161616, #0f0f0f);
}
.showroom-card-content { padding: 28px 32px 32px; }
.showroom-card-content .city-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 10px; display: inline-block;
}
.showroom-card-content h4 {
  font-family: 'Playfair Display', serif; font-size: 24px;
  color: var(--cream); margin: 0 0 12px; font-weight: 700;
}
.showroom-card-content p {
  font-size: 14px; line-height: 1.7; color: var(--text-light);
  font-weight: 300; margin: 0 0 20px;
}
.showroom-card-content .card-link {
  color: var(--gold); font-weight: 600; font-size: 14px;
  letter-spacing: 1px; text-decoration: none;
}
.showroom-card-content .card-link:hover { color: var(--gold-light); }

@media (max-width: 1100px) {
  .showroom-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* Services row (Home page services + About "What sets us apart") */
.services { padding: var(--section-pad) 0; }
.services-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--side-pad);
}
.service-item {
  text-align: center; padding: 32px 20px;
  border: 1px solid var(--gold-muted); background: rgba(255,255,255,0.02);
  transition: border-color 0.3s ease, transform 0.4s ease;
}
.service-item:hover {
  border-color: var(--gold); transform: translateY(-4px);
}
.service-item .service-num {
  font-family: 'Playfair Display', serif; font-size: 56px;
  color: var(--gold); font-weight: 700; line-height: 1; margin-bottom: 14px; opacity: 0.9;
}
.service-item h4 {
  font-family: 'Playfair Display', serif; font-size: 19px;
  color: var(--cream); margin: 0 0 12px; font-weight: 600;
}
.service-item p {
  font-size: 14px; line-height: 1.7; color: var(--text-muted);
  font-weight: 300; margin: 0;
}

@media (max-width: 1100px) {
  .services-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .services-row { grid-template-columns: 1fr; }
}

/* CTA banner content */
.cta-banner .cta-content {
  text-align: center; max-width: 720px; margin: 0 auto;
  padding: 0 var(--side-pad);
}
.cta-banner .cta-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px); color: var(--cream);
  font-weight: 700; margin: 0 0 16px;
}
.cta-banner .cta-content h3 em {
  font-style: italic; color: var(--gold); font-weight: 500;
}
.cta-banner .cta-content p {
  font-size: 16px; color: var(--text-light); line-height: 1.7;
  margin-bottom: 32px; font-weight: 300;
}

/* Footer: rename .footer style as .site-footer (preserve existing footer rules) */
.site-footer {
  background: #0a0a0a; padding: var(--section-pad) 0 0;
  border-top: 1px solid var(--gold-muted);
}
.site-footer .footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--side-pad);
}
.site-footer .footer-brand h4 {
  font-family: 'Playfair Display', serif; color: var(--gold);
  font-size: 20px; margin: 0 0 16px; line-height: 1.3; font-weight: 700;
}
.site-footer .footer-brand p {
  font-size: 14px; color: var(--text-light); line-height: 1.7;
  font-weight: 300; margin: 0 0 24px;
}
.site-footer .footer-col h5,
.site-footer .footer-widget-title {
  font-family: 'Playfair Display', serif; font-size: 14px;
  color: var(--gold); margin: 0 0 20px;
  text-transform: uppercase; letter-spacing: 2px; font-weight: 700;
}
.site-footer .footer-col a,
.site-footer .footer-menu a {
  display: block; color: var(--text-light); text-decoration: none;
  font-size: 14px; padding: 6px 0;
  transition: color 0.3s ease, padding-left 0.3s ease;
  font-weight: 300;
}
.site-footer .footer-col a:hover,
.site-footer .footer-menu a:hover { color: var(--gold); padding-left: 4px; }
.site-footer .footer-menu { list-style: none; padding: 0; margin: 0; }
.site-footer .footer-widget { margin-bottom: 24px; }
.site-footer .footer-bottom {
  border-top: 1px solid var(--gold-muted);
  padding: 24px var(--side-pad);
  margin-top: 48px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  max-width: var(--max-w); margin-left: auto; margin-right: auto;
  font-size: 12px; color: var(--text-muted);
}
.site-footer .footer-bottom a { color: var(--gold); text-decoration: none; }
.site-footer .social-links {
  display: flex; gap: 12px;
}
.site-footer .social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border: 1px solid var(--gold-muted);
  color: var(--gold); padding: 0; transition: all 0.3s;
}
.site-footer .social-links a:hover {
  background: var(--gold); color: var(--black); padding: 0;
}
.site-footer .social-links svg {
  width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.6;
}

@media (max-width: 1100px) {
  .site-footer .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .site-footer .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* Top bar contact group */
.top-bar-contact { display: flex; gap: 20px; }
.top-bar-contact a {
  color: var(--cream); text-decoration: none; font-size: 12px; letter-spacing: 0.5px;
}
.top-bar-contact a:hover { color: var(--gold); }

/* Showrooms-detailed page (uses big cards with map+info) */
.showrooms-detailed { padding: var(--section-pad) 0; }
.showrooms-detailed .inner-section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--side-pad); }



/* ═══════════════════════════════════════════════════════════════
   ELEMENTOR-NATIVE-WIDGET OVERRIDES (v2.1+ Home page)
   These rules style native Elementor widgets that have our brand
   CSS classes applied via the "CSS Classes" field in the editor.
   ═══════════════════════════════════════════════════════════════ */

/* The hero section as a 2-col Elementor section */
.elementor-section.hero,
.elementor-element.hero {
  background: var(--black);
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Hero tag (small uppercase line) */
.hero-tag .elementor-heading-title,
.elementor-widget-heading.hero-tag .elementor-heading-title {
  font-size: 12px !important;
  letter-spacing: 4px !important;
  color: var(--gold) !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  font-family: 'Lato', sans-serif !important;
  margin-bottom: 16px !important;
}

/* Hero main headline */
.hero-headline .elementor-heading-title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(36px, 5.5vw, 64px) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  color: var(--cream) !important;
  margin-bottom: 24px !important;
}

/* Hero description */
.hero-desc .elementor-widget-container,
.hero-desc p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 300;
  max-width: 540px;
  margin-bottom: 32px;
}

/* Section tag (small uppercase above a section heading) */
.elementor-widget-heading.section-tag .elementor-heading-title,
.section-tag .elementor-heading-title {
  font-size: 12px !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  font-weight: 700 !important;
  font-family: 'Lato', sans-serif !important;
  margin-bottom: 12px !important;
  position: relative;
  display: inline-block;
}

/* Section main headline */
.section-headline .elementor-heading-title,
.about-headline .elementor-heading-title,
.cta-headline .elementor-heading-title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(28px, 4vw, 44px) !important;
  font-weight: 700 !important;
  color: var(--cream) !important;
  line-height: 1.2 !important;
  margin-bottom: 18px !important;
}

/* Section intro paragraph below headline */
.section-intro .elementor-widget-container,
.section-intro p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  max-width: 720px;
  margin: 0 auto;
}

/* Category cards (Elementor columns with .cat-card-col class) */
.elementor-column.cat-card-col {
  background: linear-gradient(135deg, #161616 0%, #0f0f0f 100%);
  border: 1px solid var(--gold-muted);
  transition: border-color 0.3s ease, transform 0.4s ease;
  overflow: hidden;
}
.elementor-column.cat-card-col:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.elementor-column.cat-card-col .elementor-widget-image img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.cat-card-title .elementor-heading-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 20px !important;
  color: var(--cream) !important;
  font-weight: 600 !important;
  margin: 20px 24px 8px !important;
}
.cat-card-desc .elementor-widget-container p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
  margin: 0 24px 16px;
}
.elementor-column.cat-card-col .elementor-widget-button {
  padding: 0 24px 20px;
}

/* The .btn-primary / .btn-outline / .btn-link classes on Elementor buttons */
.elementor-widget-button.btn-primary .elementor-button {
  background-color: var(--gold) !important;
  color: var(--black) !important;
  border: 1px solid var(--gold) !important;
  padding: 14px 32px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  font-family: 'Lato', sans-serif !important;
  border-radius: 0 !important;
  transition: all 0.3s ease !important;
}
.elementor-widget-button.btn-primary .elementor-button:hover {
  background-color: transparent !important;
  color: var(--gold) !important;
}
.elementor-widget-button.btn-outline .elementor-button {
  background-color: transparent !important;
  color: var(--cream) !important;
  border: 1px solid var(--gold-muted) !important;
  padding: 14px 32px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  font-family: 'Lato', sans-serif !important;
  border-radius: 0 !important;
  transition: all 0.3s ease !important;
}
.elementor-widget-button.btn-outline .elementor-button:hover {
  background-color: var(--gold) !important;
  color: var(--black) !important;
  border-color: var(--gold) !important;
}
.elementor-widget-button.btn-link .elementor-button {
  background-color: transparent !important;
  color: var(--gold) !important;
  border: 0 !important;
  padding: 8px 0 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
}

/* About section columns */
.elementor-column.about-image-col .elementor-widget-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--gold-muted);
}
.elementor-column.about-content-col .elementor-widget-container p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
}

/* Showroom card columns */
.elementor-column.showroom-card-col {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--gold-muted);
  transition: border-color 0.3s ease, transform 0.4s ease;
}
.elementor-column.showroom-card-col:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.elementor-column.showroom-card-col .elementor-widget-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.city-label .elementor-heading-title {
  font-size: 11px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  font-weight: 700 !important;
  font-family: 'Lato', sans-serif !important;
  margin: 24px 28px 8px !important;
}
.showroom-name .elementor-heading-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 24px !important;
  color: var(--cream) !important;
  font-weight: 700 !important;
  margin: 0 28px 12px !important;
}
.elementor-column.showroom-card-col .elementor-widget-text-editor p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0 28px 20px;
}
.elementor-column.showroom-card-col .elementor-widget-button {
  padding: 0 28px 28px;
}

/* Service item columns */
.elementor-column.service-item-col {
  text-align: center;
  padding: 36px 20px;
  border: 1px solid var(--gold-muted);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s ease, transform 0.4s ease;
}
.elementor-column.service-item-col:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.service-num .elementor-heading-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 56px !important;
  color: var(--gold) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  opacity: 0.9;
  margin-bottom: 14px !important;
}
.service-title .elementor-heading-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 19px !important;
  color: var(--cream) !important;
  font-weight: 600 !important;
  margin-bottom: 12px !important;
}

/* CTA banner */
.elementor-section.cta-banner {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  padding-top: 80px;
  padding-bottom: 80px;
}
.elementor-section.cta-banner .elementor-widget-text-editor p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 32px;
}
.elementor-section.cta-btns {
  margin-top: 16px;
}



/* ═══════════════════════════════════════════════════════════════
   v2.2.0 — About page native-widget styles
   ═══════════════════════════════════════════════════════════════ */

/* Page hero styling for native-widget version */
.elementor-section.page-hero {
  background: var(--black);
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}
.elementor-section.page-hero .breadcrumb {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  text-align: center;
  font-weight: 700;
}
.elementor-section.page-hero .breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.elementor-section.page-hero .breadcrumb a:hover { color: var(--gold); }

.page-hero-headline .elementor-heading-title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(40px, 6vw, 72px) !important;
  color: var(--cream) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  margin-bottom: 20px !important;
}
.page-hero-sub .elementor-widget-container p {
  color: var(--text-light) !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
  font-weight: 300 !important;
  max-width: 720px;
  margin: 0 auto !important;
}

/* Story section — text col left, image col right */
.elementor-section.story-section {
  background: var(--black);
  padding-top: 80px;
  padding-bottom: 80px;
}
.story-headline .elementor-heading-title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(28px, 4vw, 44px) !important;
  color: var(--cream) !important;
  font-weight: 700 !important;
  margin-bottom: 28px !important;
  line-height: 1.2 !important;
}
.story-text .elementor-widget-container p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 18px;
}
.story-text .elementor-widget-container strong {
  color: var(--gold);
  letter-spacing: 1px;
  font-weight: 700;
}
.elementor-column.story-image-col {
  position: relative;
}
.elementor-column.story-image-col .elementor-widget-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--gold-muted);
}

/* The 2022 founding badge floating on the story image */
.elementor-column.story-image-col .story-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--black);
  padding: 20px 26px;
  z-index: 5;
  text-align: center;
  border: 2px solid var(--black);
}
.elementor-column.story-image-col .badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.elementor-column.story-image-col .badge-text {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.3;
}

/* Vision / Mission / Promise 3-card section */
.elementor-section.vmv-section {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  padding-top: 80px;
  padding-bottom: 80px;
}
.elementor-column.vmv-card-col {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--gold-muted);
  padding: 40px 28px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.4s ease;
}
.elementor-column.vmv-card-col:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.elementor-column.vmv-card-col .vmv-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--gold-muted);
  color: var(--gold);
}
.elementor-column.vmv-card-col .vmv-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}
.vmv-title .elementor-heading-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 22px !important;
  color: var(--cream) !important;
  font-weight: 600 !important;
  margin-bottom: 16px !important;
}
.vmv-body .elementor-widget-container p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}

/* Core Values 4-col grid */
.elementor-section.values-grid {
  background: var(--black);
  padding-top: 30px;
  padding-bottom: 30px;
}
.elementor-column.value-card-col {
  text-align: center;
  padding: 28px 16px;
  border: 1px solid var(--gold-muted);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s ease, transform 0.4s ease;
}
.elementor-column.value-card-col:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.elementor-column.value-card-col .v-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--gold-muted);
  color: var(--gold);
}
.elementor-column.value-card-col .v-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}
.value-title .elementor-heading-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 17px !important;
  color: var(--cream) !important;
  font-weight: 600 !important;
  margin-bottom: 10px !important;
}
.value-body .elementor-widget-container p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}

/* Parent section (GoodSeed Industries) */
.elementor-section.parent-section {
  background: linear-gradient(135deg, #161616, #0f0f0f);
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}
.parent-headline .elementor-heading-title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(24px, 3.5vw, 36px) !important;
  color: var(--cream) !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
}
.parent-text .elementor-widget-container p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto 28px !important;
}
.elementor-section.parent-section .elementor-widget-button {
  text-align: center;
}

/* Responsive: VMV / Values / Story */
@media (max-width: 980px) {
  .elementor-section.story-section .elementor-row,
  .elementor-section.vmv-section .elementor-row {
    flex-direction: column;
  }
  .elementor-column.value-card-col {
    width: 50% !important;
  }
}
@media (max-width: 600px) {
  .elementor-column.value-card-col {
    width: 100% !important;
  }
}
