/* ===== RKIANS FURNISHING — PREMIUM CSS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --charcoal: #1A1A1A;
  --ivory: #F5F0E8;
  --ivory-dark: #EDE7D9;
  --walnut: #8B6914;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --sage: #C4BFAA;
  --white: #FFFFFF;
  --text-dark: #2C2C2C;
  --text-mid: #5A5A5A;
  --ff-display: 'Playfair Display', serif;
  --ff-body: 'Inter', sans-serif;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--ivory); color: var(--text-dark); overflow-x: hidden; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26,26,26,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: var(--transition);
}
.nav.scrolled { background: rgba(26,26,26,0.99); }
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 72px;
}
.logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1; }
.logo-rk {
  font-family: var(--ff-display); font-size: 22px; font-weight: 700;
  letter-spacing: 4px; color: var(--white);
}
.logo-tag {
  font-size: 8px; letter-spacing: 6px; color: var(--gold);
  font-weight: 600; text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.75);
  font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.btn-nav {
  background: var(--gold) !important; color: var(--charcoal) !important;
  padding: 8px 20px; border-radius: 2px; font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.btn-nav:hover { background: var(--gold-light) !important; }
.hamburger {
  display: none; background: none; border: none;
  color: var(--white); font-size: 22px; cursor: pointer;
}
.mobile-menu {
  display: none; flex-direction: column; padding: 16px 32px 20px;
  border-top: 1px solid rgba(201,168,76,0.15); gap: 12px;
}
.mobile-menu a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 14px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  background: var(--charcoal); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 70% 50%, #3A2A12 0%, #1A1A1A 60%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  padding-top: 80px;
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: 4px; color: var(--gold);
  text-transform: uppercase; margin-bottom: 24px; font-weight: 600;
}
.hero-title {
  font-family: var(--ff-display); font-size: clamp(52px, 7vw, 96px);
  font-weight: 700; color: var(--white); line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.6); max-width: 520px;
  line-height: 1.7; margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-block; background: var(--gold); color: var(--charcoal);
  padding: 14px 32px; font-weight: 700; font-size: 13px;
  letter-spacing: 1px; text-decoration: none; text-transform: uppercase;
  border-radius: 2px; border: none; cursor: pointer;
  transition: all var(--transition);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,168,76,0.3); }
.btn-ghost {
  display: inline-block; color: rgba(255,255,255,0.8);
  padding: 14px 32px; font-weight: 500; font-size: 13px;
  letter-spacing: 1px; text-decoration: none; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 2px;
  transition: all var(--transition);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.hero-badge {
  position: absolute; right: 80px; bottom: 120px;
  width: 120px; height: 120px; border-radius: 50%;
  border: 1px solid var(--gold); display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: rgba(201,168,76,0.08);
  animation: rotate 20s linear infinite;
}
.hero-badge span { font-family: var(--ff-display); font-size: 28px; font-weight: 700; color: var(--gold); }
.hero-badge small { font-size: 9px; letter-spacing: 2px; color: var(--sage); text-transform: uppercase; text-align: center; }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ===== MARQUEE ===== */
.marquee-bar {
  background: var(--gold); overflow: hidden; padding: 14px 0;
}
.marquee-track {
  display: flex; gap: 40px; width: max-content;
  animation: marquee 25s linear infinite;
}
.marquee-track span {
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--charcoal); white-space: nowrap;
}
.marquee-track .dot { color: rgba(26,26,26,0.4) !important; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTION HELPERS ===== */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head.light h2 { color: var(--white); }
.section-head.light .eyebrow { color: var(--gold); }
.eyebrow {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--walnut); font-weight: 700; margin-bottom: 12px;
}
.section-head h2 {
  font-family: var(--ff-display); font-size: clamp(32px, 4vw, 52px);
  font-weight: 600; color: var(--charcoal); line-height: 1.15;
}

/* ===== CATEGORIES ===== */
.categories { padding: 100px 32px; max-width: 1280px; margin: 0 auto; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 20px;
}
.cat-card {
  text-decoration: none; color: inherit;
  border-radius: 4px; overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.14); }
.cat-card:hover .cat-link { color: var(--gold); letter-spacing: 3px; }
.cat-large { grid-row: span 2; }
.cat-wide { grid-column: span 2; }
.cat-img {
  flex: 1; min-height: 180px; display: flex;
  align-items: center; justify-content: center;
  position: relative;
}
.cat-large .cat-img { min-height: 280px; }
.cat-wide .cat-img { min-height: 160px; }
.cat-icon { font-size: 56px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)); }
.cat-info { padding: 24px 28px; }
.cat-info h3 {
  font-family: var(--ff-display); font-size: 20px; font-weight: 600;
  color: var(--charcoal); margin-bottom: 8px;
}
.cat-info p { font-size: 13px; color: var(--text-mid); line-height: 1.6; margin-bottom: 12px; }
.cat-link {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--walnut);
  transition: all var(--transition);
}

/* ===== WHY US ===== */
.why-us {
  background: var(--charcoal); padding: 100px 32px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; max-width: 1280px; margin: 0 auto;
}
.why-left { display: flex; flex-direction: column; justify-content: center; }
.why-left .eyebrow { color: var(--gold); }
.why-left h2 {
  font-family: var(--ff-display); font-size: clamp(36px, 4vw, 54px);
  color: var(--white); font-weight: 700; line-height: 1.1;
  margin-bottom: 20px; margin-top: 12px;
}
.why-left > p { color: rgba(255,255,255,0.6); line-height: 1.8; font-size: 15px; margin-bottom: 32px; }
.why-right {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; align-content: start;
}
.stat-card {
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px; padding: 28px; display: flex; flex-direction: column;
}
.stat-num {
  font-family: var(--ff-display); font-size: 48px; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 8px; letter-spacing: 1px; }
.feature-item {
  grid-column: span 2; display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fi-icon { color: var(--gold); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.feature-item h4 { color: var(--white); font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.feature-item p { color: rgba(255,255,255,0.5); font-size: 13px; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--charcoal); padding: 100px 32px; }
.testimonials .section-head { max-width: 1280px; margin: 0 auto 56px; }
.testi-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.testi-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px; padding: 36px;
}
.testi-featured {
  background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.3);
}
.stars { color: var(--gold); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card > p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.testi-author strong { display: block; color: var(--white); font-size: 14px; }
.testi-author small { color: rgba(255,255,255,0.4); font-size: 12px; }

/* ===== CONTACT ===== */
.contact { padding: 100px 32px; background: var(--ivory-dark); }
.contact-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px;
}
.contact-left .eyebrow { color: var(--walnut); }
.contact-left h2 {
  font-family: var(--ff-display); font-size: clamp(32px, 4vw, 48px);
  color: var(--charcoal); font-weight: 700; line-height: 1.1;
  margin-bottom: 20px; margin-top: 12px;
}
.contact-left > p { color: var(--text-mid); line-height: 1.8; margin-bottom: 36px; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.contact-detail span { font-size: 18px; }
.contact-detail p { color: var(--text-mid); font-size: 14px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 14px 18px; font-family: var(--ff-body); font-size: 14px;
  background: var(--white); border: 1px solid rgba(26,26,26,0.15);
  border-radius: 2px; color: var(--text-dark);
  transition: border-color var(--transition);
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; }
.btn-primary.full { width: 100%; text-align: center; }
.form-msg { font-size: 13px; color: #2D7A3C; text-align: center; min-height: 20px; }

/* ===== FOOTER ===== */
.footer { background: #111111; padding: 80px 32px 0; }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand > p { color: rgba(255,255,255,0.45); font-size: 13px; line-height: 1.7; margin-bottom: 24px; }
.social-links { display: flex; gap: 16px; }
.social-links a { color: rgba(255,255,255,0.5); font-size: 12px; text-decoration: none; letter-spacing: 1px; transition: color var(--transition); }
.social-links a:hover { color: var(--gold); }
.footer-links { display: flex; flex-direction: column; }
.footer-links h4 { color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 13px; margin-bottom: 10px; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; color: rgba(255,255,255,0.3); font-size: 12px;
}

/* ===== PRODUCT PAGE SHARED ===== */
.page-hero {
  padding: 140px 32px 80px; background: var(--charcoal);
  text-align: center;
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 {
  font-family: var(--ff-display); font-size: clamp(42px, 6vw, 80px);
  color: var(--white); font-weight: 700; margin-top: 12px;
}
.page-hero p { color: rgba(255,255,255,0.55); font-size: 16px; margin-top: 16px; }

.product-section { padding: 80px 32px; max-width: 1280px; margin: 0 auto; }
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.product-card {
  background: var(--white); border-radius: 4px;
  overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: all var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.prod-img {
  height: 240px; display: flex; align-items: center; justify-content: center;
  font-size: 72px; background: linear-gradient(135deg,#F0EBE0,#E5DDD0);
}
.prod-info { padding: 20px 24px; }
.prod-info h3 { font-family: var(--ff-display); font-size: 18px; color: var(--charcoal); margin-bottom: 6px; }
.prod-info p { font-size: 13px; color: var(--text-mid); line-height: 1.6; margin-bottom: 16px; }
.prod-price { display: flex; justify-content: space-between; align-items: center; }
.price { font-family: var(--ff-display); font-size: 22px; font-weight: 700; color: var(--walnut); }
.price span { font-size: 13px; font-weight: 400; color: var(--sage); text-decoration: line-through; margin-right: 6px; }
.btn-enquire {
  background: var(--charcoal); color: var(--white); border: none;
  padding: 8px 18px; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; border-radius: 2px;
  cursor: pointer; transition: background var(--transition);
}
.btn-enquire:hover { background: var(--gold); color: var(--charcoal); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-us { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .cat-large, .cat-wide { grid-row: auto; grid-column: auto; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero-badge { display: none; }
  .cat-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .why-right { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .why-right { grid-template-columns: 1fr 1fr; }
}
