:root {
  --bg: #f6f2ea;
  --surface: #ffffff;
  --surface-2: #f8f5ef;
  --text: #1f1f1f;
  --muted: #6e655f;
  --gold: #c8a96a;
  --gold-2: #e4bf74;
  --border: rgba(31, 31, 31, 0.08);
  --shadow: 0 18px 60px rgba(31, 31, 31, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fffdf9 0%, var(--bg) 100%);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { width: 100%; display: block; object-fit: cover; }
button, input, textarea { font: inherit; }
.container { width: min(1200px, calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 5rem 0; }
.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #fff;
  box-shadow: 0 12px 30px rgba(200, 169, 106, 0.28);
}
.btn-secondary {
  background: rgba(255,255,255,0.16);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}
.glass-card {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,250,245,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,169,106,0.2);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: white;
  font-size: 1.1rem;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; }
.brand-text small { color: var(--muted); font-size: 0.75rem; }
.site-nav { display: flex; gap: 1.5rem; }
.site-nav a { color: var(--muted); font-weight: 500; position: relative; }
.site-nav a.active, .site-nav a:hover { color: var(--text); }
.site-nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 2px;
  background: var(--gold);
}
.nav-cta {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(200,169,106,0.3);
  color: var(--gold);
  font-weight: 600;
}
.nav-toggle { display: none; background: transparent; border: none; padding: 0.4rem; }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
}
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: url('../images/hero-luxury-interior.jpg') center/cover;
  background-attachment: fixed;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 10, 10, 0.65), rgba(25, 25, 25, 0.25));
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(200,169,106,0.18), transparent 35%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 5rem 0;
}
.hero-copy {
  max-width: 680px;
  padding: 2rem;
  border-radius: 28px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
}
.hero-copy h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  margin: 0 0 1rem;
  line-height: 1.05;
  text-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.hero-copy p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
}
.hero-highlight {
  display: inline-block;
  margin: 0.6rem 0 0.8rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(200,169,106,0.4);
  color: #f7e7c2;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.hero-stats > div {
  padding: 0.8rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
}
.hero-stats strong { display: block; font-size: 1.1rem; }
.hero-stats span { color: rgba(255,255,255,0.72); font-size: 0.9rem; }
.intro-grid, .highlight-grid, .contact-grid { display: grid; gap: 2rem; grid-template-columns: 1.1fr 0.9fr; }
.intro-card, .contact-card, .form-card, .faq-card, .map-card, .service-card, .team-card, .stat-card, .product-card, .about-story {
  padding: 1.6rem;
}
.image-card img { border-radius: 24px; min-height: 320px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 2rem;
}
.text-link { color: var(--gold); font-weight: 600; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.product-card { display: flex; flex-direction: column; gap: 1rem; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(31,31,31,0.15); }
.product-card img { height: 220px; border-radius: 18px; }
.product-meta { display: flex; flex-direction: column; gap: 0.5rem; }
.product-title { font-size: 1.1rem; font-weight: 700; }
.product-id, .product-row, .product-desc, .product-features, .product-footer { font-size: 0.92rem; color: var(--muted); }
.product-short-details {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.5;
}
.price-row { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.price-row .price { font-weight: 700; color: var(--text); }
.price-row .discount { color: var(--gold); font-weight: 700; }
.offer-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: rgba(200,169,106,0.16);
  color: var(--gold);
  font-weight: 600;
}
.actions-row { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.action-btn {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  padding: 0.55rem 0.75rem;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.action-btn:hover { border-color: var(--gold); transform: translateY(-1px); }
.product-footer { margin-top: auto; display: flex; gap: 0.75rem; flex-wrap: wrap; }
.highlight-section { background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(248,245,239,0.95)); }
.highlight-points { display: grid; gap: 0.8rem; }
.highlight-points > div {
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(200,169,106,0.2);
}

/* Category Catalog Styles */
.category-section { margin-bottom: 2.5rem; }
.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: var(--shadow);
}
.category-header:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(31,31,31,0.12); }
.category-header h2 { margin: 0; font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; }
.category-header .cat-count { color: var(--muted); font-size: 0.9rem; }
.category-header .cat-toggle { font-size: 1.4rem; color: var(--gold); transition: transform 0.3s ease; }
.category-section.open .cat-toggle { transform: rotate(180deg); }
.category-items {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}
.category-section.open .category-items { display: grid; }
.furniture-item {
  padding: 1.2rem;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.furniture-item:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(31,31,31,0.1); }
.furniture-item img {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  object-fit: cover;
}
.furniture-item .item-name {
  font-weight: 700;
  font-size: 1rem;
}
.furniture-item .item-category {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.furniture-item .item-brief {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}
.furniture-item .item-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(200,169,106,0.12);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
}

/* Like Button */
.item-like-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,106,0.25);
  background: rgba(255,255,255,0.85);
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  align-self: flex-start;
  flex-shrink: 0;
}
.item-like-btn:hover {
  border-color: #e74c3c;
  color: #e74c3c;
  transform: scale(1.1);
}
.item-like-btn.liked {
  background: #e74c3c;
  border-color: #e74c3c;
  color: #fff;
}

/* Item Details Panel */
.item-details-panel {
  display: none;
  margin-top: 0.5rem;
  padding: 1.2rem;
  background: rgba(248,245,239,0.8);
  border-radius: 16px;
  border: 1px solid rgba(200,169,106,0.15);
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}
.furniture-item.expanded .item-details-panel { display: block; }
.item-details-panel strong { color: var(--text); display: inline-block; min-width: 100px; }
.item-details-panel .detail-row { padding: 0.3rem 0; }
.item-details-panel .detail-desc {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(31,31,31,0.06);
  color: var(--text);
  font-style: italic;
}
.item-details-panel .detail-cta {
  margin-top: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease;
}
.item-details-panel .detail-cta:hover { transform: translateY(-2px); }
.furniture-item .item-expand-icon {
  margin-left: auto;
  color: var(--gold);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}
.furniture-item.expanded .item-expand-icon { transform: rotate(180deg); }
.furniture-item .item-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.furniture-item .item-name-wrap { flex: 1; }

@media (max-width: 960px) {
  .category-items { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .category-items { grid-template-columns: 1fr; }
  .category-header { padding: 1.2rem 1.4rem; }
  .category-header h2 { font-size: 1.3rem; }
}
.site-footer { background: #161616; color: rgba(255,255,255,0.86); padding: 3rem 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; gap: 2rem; }
.site-footer h3 { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.site-footer a { color: rgba(255,255,255,0.82); }
.page-hero {
  padding: 6rem 0 3rem;
  background: linear-gradient(135deg, rgba(200,169,106,0.16), rgba(255,255,255,0.65));
}
.small-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  max-width: 700px;
}
.about-story { display: grid; gap: 1.2rem; }
.team-grid, .services-grid, .stats-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 30px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(200,169,106,0.18);
  box-shadow: 0 24px 60px rgba(31,31,31,0.08);
}
.stat-card strong {
  display: block;
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.65rem;
}
.stat-card span {
  color: #5a5046;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.gallery-grid img { border-radius: 20px; height: 260px; }
.service-card h3 { margin-bottom: 0.6rem; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-bottom: 1rem; }
.form-card input, .form-card textarea {
  width: 100%; border: 1px solid var(--border);
  border-radius: 14px; padding: 0.9rem 1rem; background: rgba(255,255,255,0.8);
}
.form-card textarea { margin-bottom: 1rem; resize: vertical; }
.contact-points { display: grid; gap: 0.6rem; margin: 1rem 0 1.4rem; }
.map-card iframe { width: 100%; min-height: 350px; border: none; border-radius: 18px; }
.faq-item { border-bottom: 1px solid rgba(31,31,31,0.08); padding: 1rem 0; }
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  font-size: 1rem; font-weight: 600; cursor: pointer; padding: 0;
}
.faq-answer { display: none; padding-top: 0.6rem; color: var(--muted); }
.faq-item.active .faq-answer { display: block; }
.back-to-top {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 100;
  border: none; width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: white; font-size: 1.3rem; cursor: pointer; box-shadow: var(--shadow); display: none;
}
.modal { position: fixed; inset: 0; background: rgba(17,17,17,0.76); display: none; align-items: center; justify-content: center; padding: 1rem; z-index: 1001; }
.modal.show { display: flex; }
.modal-content { width: min(1000px, 100%); max-height: 90vh; overflow: auto; background: #fff; border-radius: 28px; padding: 1.4rem; position: relative; }
.modal-close { position: absolute; top: 1rem; right: 1rem; border: none; background: #f6f2ea; width: 38px; height: 38px; border-radius: 50%; cursor: pointer; }
.modal-body { display: grid; gap: 1rem; }
.modal-gallery { display: grid; gap: 1rem; }
.address-highlight-card {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}
.address-highlight-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.address-highlight-card h2 {
  margin-bottom: 1.5rem;
}
.address-highlight-details .address-line {
  font-size: 1.1rem;
  margin: 0.5rem 0;
  color: var(--muted);
}
.address-highlight-details .address-line strong {
  color: var(--text);
}

.modal-gallery img { height: 360px; border-radius: 20px; }
.gallery-thumbs { display: flex; gap: 0.7rem; overflow: auto; }
.gallery-thumbs img { width: 88px; height: 70px; border-radius: 12px; cursor: pointer; border: 2px solid transparent; }
.gallery-thumbs img.active { border-color: var(--gold); }
.modal-specs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.9rem; }
.modal-specs div { padding: 0.8rem 0.9rem; border-radius: 14px; background: var(--surface-2); }
.modal-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.5rem; }
.page-loader {
  position: fixed; inset: 0; display: grid; place-items: center; background: #fffdf9; z-index: 9999; transition: opacity 0.35s ease; }
.page-loader.hidden { opacity: 0; pointer-events: none; }
.loader-card { text-align: center; }
.loader-ring {
  width: 70px; height: 70px; border-radius: 50%; border: 4px solid rgba(200,169,106,0.2); border-top-color: var(--gold); margin: 0 auto 1rem; animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 960px) {
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .intro-grid, .highlight-grid, .contact-grid, .team-grid, .services-grid, .stats-grid { grid-template-columns: 1fr; }
  .footer-grid, .gallery-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-nav { position: absolute; top: 74px; right: 1rem; display: none; flex-direction: column; background: #fff; padding: 1rem; border-radius: 18px; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .section { padding: 4rem 0; }
  .products-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .modal-specs { grid-template-columns: 1fr; }
}