:root {
  --gold: #c9a96e;
  --gold-light: #e8d5a8;
  --gold-dark: #a07d3f;
  --cream: #faf6f0;
  --warm-white: #fffdf9;
  --charcoal: #2c2c2c;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --border: #e8e2d8;
  --sand: #f0e8d8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--charcoal);
  background: var(--warm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(255,253,249,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700; color: var(--ink);
  text-decoration: none; letter-spacing: -0.5px;
  display: flex; align-items: center;
}
.logo span { color: var(--gold); }
.logo-img {
  height: 40px;
  width: auto;
}
.logo-img-footer {
  height: 35px;
  width: auto;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 14px; font-weight: 500; letter-spacing: 0.5px;
  text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-cta {
  background: var(--ink); color: var(--cream) !important;
  padding: 10px 24px; border-radius: 4px;
  text-transform: uppercase !important; font-size: 13px !important;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-dark) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 40px 80px;
  max-width: 1400px; margin: 0 auto;
  gap: 60px;
}
.hero-text h1 {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-text h1 em {
  font-style: italic; color: var(--gold-dark);
}
.hero-text p {
  font-size: 18px; color: var(--muted);
  max-width: 480px; margin-bottom: 40px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: white;
  padding: 16px 40px; border: none; border-radius: 4px;
  font-size: 15px; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--ink);
  padding: 16px 40px; border: 1.5px solid var(--ink);
  border-radius: 4px; font-size: 15px; font-weight: 500;
  letter-spacing: 0.5px; text-transform: uppercase;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

.hero-image {
  position: relative;
  border-radius: 8px; overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #e8d5a8 0%, #d4b97a 30%, #c9a96e 60%, #b8944d 100%);
  display: flex; align-items: center; justify-content: center;
}
.hero-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.15));
}
.hero-furniture {
  position: relative; z-index: 1;
  text-align: center; color: white;
  padding: 40px;
}
.hero-furniture .room-icon {
  font-size: 100px; margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}
.hero-furniture p {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-style: italic;
  opacity: 0.9;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 40px;
}
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-around; align-items: center;
  flex-wrap: wrap; gap: 24px;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  color: var(--muted); font-size: 14px; font-weight: 500;
}
.trust-icon { font-size: 24px; }

/* ── CATEGORIES ── */
.categories {
  padding: 100px 40px;
  max-width: 1280px; margin: 0 auto;
}
.section-header {
  text-align: center; margin-bottom: 60px;
}
.section-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--ink); margin-bottom: 16px;
}
.section-header p {
  font-size: 16px; color: var(--muted);
  max-width: 560px; margin: 0 auto;
}
.section-line {
  width: 60px; height: 2px;
  background: var(--gold); margin: 20px auto 0;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cat-card {
  position: relative;
  border-radius: 8px; overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 0.3s;
}
.cat-card:hover { transform: translateY(-4px); }

.cat-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 24px;
  background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, transparent 100%);
  color: white;
}
.cat-content h3 {
  font-size: 22px; margin-bottom: 6px;
}
.cat-content p {
  font-size: 14px; opacity: 0.8;
}
.cat-emoji {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  font-size: 72px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.2));
}

/* ── FEATURED PRODUCTS ── */
.featured {
  background: var(--cream);
  padding: 100px 40px;
}
.featured-inner {
  max-width: 1280px; margin: 0 auto;
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.prod-card {
  background: white;
  border-radius: 8px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.prod-img {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  position: relative;
  background: linear-gradient(135deg, #f5e6d0, #e8d5b8);
}
.prod-img::after {
  content: 'NEW';
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: white;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  padding: 4px 12px; border-radius: 3px;
  letter-spacing: 1px;
}

.prod-info { padding: 20px 24px 24px; }
.prod-info h4 {
  font-size: 18px; color: var(--ink);
  margin-bottom: 4px; font-family: 'Playfair Display', serif;
}
.prod-info .prod-cat {
  font-size: 12px; color: var(--gold-dark);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 8px;
}
.prod-info .prod-price {
  font-size: 18px; font-weight: 600; color: var(--ink);
}

/* ── STORY ── */
.story {
  padding: 100px 40px;
  max-width: 1100px; margin: 0 auto;
}
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.story-visual {
  aspect-ratio: 1;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--sand), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 120px;
  position: relative;
}
.story-visual::before {
  content: '';
  position: absolute; inset: -12px;
  border: 1.5px solid var(--gold-light);
  border-radius: 12px;
  z-index: -1;
}
.story-text h2 {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--ink); margin-bottom: 24px;
}
.story-text p {
  font-size: 16px; color: var(--muted);
  margin-bottom: 16px; line-height: 1.8;
}
.story-text .signature {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 20px;
  color: var(--gold-dark); margin-top: 24px;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 40px;
}
.test-inner { max-width: 1100px; margin: 0 auto; }
.test-inner .section-header h2 { color: var(--cream); }
.test-inner .section-header p { color: rgba(255,255,255,0.5); }
.test-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 48px;
}
.test-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 32px;
}
.test-stars { color: var(--gold); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.test-card blockquote {
  font-size: 15px; line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  font-style: italic;
}
.test-author {
  font-size: 14px; font-weight: 600; color: var(--gold-light);
}
.test-author span {
  display: block; font-weight: 400;
  font-size: 13px; color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 80px 40px;
  text-align: center;
  color: white;
}
.cta-banner h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 17px; opacity: 0.9;
  max-width: 500px; margin: 0 auto 32px;
}
.cta-banner .btn-primary {
  background: white; color: var(--gold-dark);
}
.cta-banner .btn-primary:hover {
  background: var(--cream);
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 60px 40px 32px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo { color: white; font-size: 22px; }
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { margin-top: 12px; font-size: 14px; line-height: 1.7; }
.footer-col h4 {
  color: white; font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.5);
  text-decoration: none; font-size: 14px;
  margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between;
  font-size: 13px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .test-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; text-align: center; }
  .hero-text p { margin: 0 auto 40px; }
  .hero-btns { justify-content: center; }
  .hero-image { max-height: 400px; }
  .nav-links { display: none; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .trust-inner { justify-content: center; }
  .nav-inner { padding: 14px 24px; }
  .categories, .featured, .story, .testimonials { padding: 60px 24px; }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}
.fade-up:nth-child(2) { animation-delay: 0.1s; }
.fade-up:nth-child(3) { animation-delay: 0.2s; }
.fade-up:nth-child(4) { animation-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { animation: none; opacity: 1; }
}
