*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #f8f6f1;
  --surface: #ffffff;
  --text: #1c1b19;
  --text-muted: #8f8b82;
  --text-light: #b5b0a6;
  --border: #e4dfd7;
  --border-light: #efebe4;
  --accent: #1c1b19;
  --accent-hover: #0d0d0b;
  --gold: #c9a96e;
  --gold-light: #dfcba0;
  --gold-soft: rgba(201,169,110,.12);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow: 0 2px 8px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.1);
  --shadow-gold: 0 4px 20px rgba(201,169,110,.2);
  --transition: .45s cubic-bezier(.22,.61,.36,1);
  --announce-height: 40px;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: calc(64px + var(--announce-height));
  overflow-x: hidden;
}

/* ---- Announcement Bar ---- */
@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
.announce-bar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 200;
  height: var(--announce-height); overflow: hidden;
  background: var(--accent); color: #fff;
  font-size: 13px; font-weight: 500; letter-spacing: .3px;
}
.announce-bar .marquee-track {
  display: flex; align-items: center; height: 100%;
  animation: marquee 28s linear infinite;
  white-space: nowrap; width: max-content;
}
.announce-bar .marquee-track > * {
  display: inline-flex; align-items: center; gap: 6px;
  margin-right: 48px; flex-shrink: 0;
}
.announce-bar .marquee-track strong { color: var(--gold-light); font-weight: 600; }
.announce-bar .close-announce {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.3); border: none; color: rgba(255,255,255,.6); cursor: pointer;
  font-size: 14px; line-height: 1; padding: 4px 8px; transition: color var(--transition);
  border-radius: 100px; z-index: 3;
}
.announce-bar .close-announce:hover { color: #fff; background: rgba(0,0,0,.5); }
.announce-bar .highlight-tag {
  background: var(--gold); color: var(--accent); padding: 2px 10px;
  border-radius: 100px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
}

/* ---- Nav ---- */
nav {
  position: fixed; top: var(--announce-height); width: 100%; z-index: 100;
  background: rgba(248,246,241,.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
}
nav.scrolled { box-shadow: var(--shadow); }
nav .inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
nav .logo {
  font-size: 22px; font-weight: 500; letter-spacing: -.2px;
  text-decoration: none; color: var(--text); display: flex; align-items: center; gap: 6px;
}
nav .logo span { font-weight: 300; color: var(--text-muted); }
nav .logo .logo-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  display: inline-block;
}
nav ul { display: flex; gap: 32px; list-style: none; align-items: center; }
nav ul a {
  text-decoration: none; font-size: 13px; font-weight: 500;
  color: var(--text-muted); transition: color var(--transition);
  padding: 4px 0; position: relative; letter-spacing: .2px;
}
nav ul a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0;
  height: 1.5px; background: var(--gold);
  transition: width var(--transition);
}
nav ul a:hover, nav ul a.active { color: var(--text); }
nav ul a:hover::after, nav ul a.active::after { width: 100%; }
.cart-btn {
  position: relative; background: none; border: none; cursor: pointer;
  font-size: 18px; color: var(--text); padding: 4px;
}
.cart-count {
  position: absolute; top: -4px; right: -6px;
  background: var(--gold); color: var(--accent); font-size: 10px;
  font-weight: 700; width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition); transform: scale(0);
}
.cart-count.visible { transform: scale(1); }

/* ---- Buttons ---- */
.btn {
  display: inline-block; padding: 14px 36px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; text-decoration: none; cursor: pointer;
  border: none; transition: all var(--transition); letter-spacing: .3px;
  text-transform: uppercase;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-gold { background: var(--gold); color: var(--accent); }
.btn-gold:hover { background: #b8944c; transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--text); transform: translateY(-1px); }
.btn-block { width: 100%; text-align: center; }

/* ---- Animations ---- */
.animate-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.animate-in.visible { opacity: 1; transform: translateY(0); }
.animate-in-scale {
  opacity: 0; transform: scale(.95);
  transition: opacity .6s ease, transform .6s ease;
}
.animate-in-scale.visible { opacity: 1; transform: scale(1); }
.animate-stagger > * {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.animate-stagger > *.visible {
  opacity: 1; transform: translateY(0);
}

/* ---- Section ---- */
section { max-width: 1280px; margin: 0 auto; padding: 100px 32px; }
section h2 {
  font-size: 36px; font-weight: 400; letter-spacing: -.8px;
  margin-bottom: 8px; line-height: 1.2;
}
section .subtitle { color: var(--text-muted); margin-bottom: 48px; font-size: 15px; max-width: 560px; }
.section-gold-line {
  width: 40px; height: 2px; background: var(--gold);
  margin-bottom: 16px;
}

/* ---- Product Grid ---- */
.filters {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 40px;
}
.filters button {
  padding: 8px 22px; border-radius: 100px; border: 1.5px solid var(--border);
  background: transparent; font-size: 12px; font-weight: 600; cursor: pointer;
  transition: all var(--transition); color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .4px;
}
.filters button:hover { border-color: var(--gold); color: var(--text); }
.filters button.active { background: var(--accent); color: #fff; border-color: var(--accent); }

.grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.product {
  background: var(--surface); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border-light);
  transition: all var(--transition); cursor: pointer;
}
.product:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product figure {
  width: 100%; aspect-ratio: 4/3; overflow: hidden; background: #f0ede8;
  position: relative;
}
.product figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.product:hover figure img { transform: scale(1.06); }
.product figure .product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--surface); padding: 4px 12px; border-radius: 100px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .4px; color: var(--text-muted); border: 1px solid var(--border-light);
}
.product .body { padding: 24px; }
.product .body .tag {
  font-size: 10px; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: .8px;
}
.product .body h3 { font-size: 18px; font-weight: 500; margin: 4px 0 4px; }
.product .body .price-row {
  display: flex; align-items: center; gap: 8px; margin: 2px 0 6px;
}
.product .body .price { font-size: 17px; font-weight: 600; }
.product .body .price-original { font-size: 13px; color: var(--text-light); text-decoration: line-through; }
.product .body .desc-short {
  font-size: 13px; color: var(--text-muted); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; margin: 2px 0 12px;
}
.product .body .add-btn {
  margin-top: 6px; padding: 11px 0; width: 100%; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); background: transparent;
  font-size: 12px; font-weight: 600; cursor: pointer; transition: all var(--transition);
  text-transform: uppercase; letter-spacing: .4px;
}
.product .body .add-btn:hover {
  background: var(--accent); color: #fff; border-color: var(--accent);
}

/* ---- Quick View ---- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,.5); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalSlideUp { from { opacity: 0; transform: translateY(40px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-overlay.open { animation: modalFadeIn .3s ease; }
.modal {
  background: var(--surface); border-radius: var(--radius);
  max-width: 760px; width: 100%; max-height: 90vh; overflow-y: auto;
  display: flex; flex-wrap: wrap; animation: modalSlideUp .4s ease;
  box-shadow: var(--shadow-lg); position: relative;
}
.modal .img-col {
  flex: 1 1 320px; background: #f0ede8;
  min-height: 320px; display: flex; align-items: center; justify-content: center;
  overflow: hidden; border-radius: var(--radius) 0 0 var(--radius);
}
.modal .img-col img { width: 100%; height: 100%; object-fit: cover; }
.modal .info-col { flex: 1 1 320px; padding: 36px; }
.modal .info-col .tag {
  font-size: 10px; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: .8px;
}
.modal .info-col h2 { font-size: 26px; font-weight: 500; margin: 4px 0 4px; }
.modal .info-col .price-lg { font-size: 24px; font-weight: 600; color: var(--accent); }
.modal .info-col .price-original-lg { font-size: 16px; color: var(--text-light); text-decoration: line-through; margin-left: 8px; }
.modal .info-col .desc-long { margin: 16px 0; font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.modal .info-col .specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin: 16px 0; padding: 16px; background: var(--bg);
  border-radius: var(--radius-sm);
}
.modal .info-col .specs .spec-item { font-size: 12px; }
.modal .info-col .specs .spec-item strong { display: block; font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .4px; }
.modal .info-col .qty-row { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.modal .info-col .qty-row label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .4px; color: var(--text-muted); }
.modal .info-col .qty-row select {
  padding: 8px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-xs);
  font-size: 14px; background: var(--surface);
}
.modal .close-modal {
  position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,.9);
  border: none; width: 32px; height: 32px; border-radius: 50%;
  font-size: 18px; cursor: pointer; color: var(--text-muted); line-height: 1;
  transition: all var(--transition); z-index: 2; display: flex;
  align-items: center; justify-content: center;
}
.modal .close-modal:hover { background: var(--accent); color: #fff; }

/* ---- Toast ---- */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--accent); color: #fff; padding: 14px 32px;
  border-radius: 100px; font-size: 14px; font-weight: 500;
  opacity: 0; transition: all var(--transition) .2s; z-index: 400;
  box-shadow: var(--shadow-lg); pointer-events: none; white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); transition-delay: 0s; }

/* ---- Email Popup ---- */
.popup-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.5); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.popup-overlay.open { display: flex; }
.popup-overlay.open { animation: modalFadeIn .3s ease; }
.popup {
  background: var(--surface); border-radius: var(--radius);
  max-width: 520px; width: 100%; padding: 48px 40px 40px;
  text-align: center; position: relative; animation: modalSlideUp .4s ease;
  box-shadow: var(--shadow-lg);
}
.popup .popup-badge {
  display: inline-block; background: var(--gold-soft); color: var(--gold);
  padding: 4px 14px; border-radius: 100px; font-size: 11px;
  font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 16px;
}
.popup h2 { font-size: 28px; font-weight: 400; letter-spacing: -.5px; margin-bottom: 8px; }
.popup h2 strong { font-weight: 600; }
.popup p { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; line-height: 1.7; }
.popup .popup-offer {
  display: flex; justify-content: center; gap: 16px; margin-bottom: 24px;
}
.popup .popup-offer .offer-item {
  background: var(--bg); padding: 12px 20px; border-radius: var(--radius-sm);
  flex: 1; max-width: 160px;
}
.popup .popup-offer .offer-item .offer-pct {
  font-size: 24px; font-weight: 700; color: var(--gold);
}
.popup .popup-offer .offer-item .offer-label {
  font-size: 11px; color: var(--text-muted); margin-top: 2px;
}
.popup .popup-form { display: flex; gap: 8px; }
.popup .popup-form input {
  flex: 1; padding: 14px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 14px; background: var(--bg);
  font-family: inherit; transition: border-color var(--transition);
}
.popup .popup-form input:focus { outline: none; border-color: var(--gold); }
.popup .popup-form .btn { padding: 14px 28px; flex-shrink: 0; }
.popup .popup-no-thanks {
  margin-top: 16px; background: none; border: none;
  font-size: 12px; color: var(--text-light); cursor: pointer;
  text-decoration: underline; transition: color var(--transition);
}
.popup .popup-no-thanks:hover { color: var(--text); }
.popup .close-popup {
  position: absolute; top: 16px; right: 16px; background: none;
  border: none; width: 32px; height: 32px; border-radius: 50%;
  font-size: 20px; cursor: pointer; color: var(--text-light); line-height: 1;
  transition: all var(--transition); display: flex; align-items: center; justify-content: center;
}
.popup .close-popup:hover { background: var(--bg); color: var(--text); }

/* ---- Checkout ---- */
.checkout-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,.4); backdrop-filter: blur(6px);
  display: none;
}
.checkout-overlay.open { display: block; }
.checkout-panel {
  position: fixed; top: 0; right: 0; z-index: 301;
  width: 100%; max-width: 480px; height: 100vh;
  background: var(--surface); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform var(--transition);
  box-shadow: var(--shadow-lg);
}
.checkout-panel.open { transform: translateX(0); }
.checkout-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px; border-bottom: 1px solid var(--border-light);
}
.checkout-header h2 { font-size: 18px; font-weight: 500; }
.checkout-header button {
  background: none; border: none; font-size: 22px; cursor: pointer;
  color: var(--text-muted); transition: color var(--transition);
}
.checkout-header button:hover { color: var(--text); }
.steps {
  display: flex; padding: 0 28px; gap: 0; margin-top: 20px;
  position: relative;
}
.steps::after {
  content: ''; position: absolute; top: 14px; left: 44px; right: 44px;
  height: 2px; background: var(--border); z-index: 0;
}
.step { flex: 1; text-align: center; position: relative; z-index: 1; }
.step .circle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--border); color: #fff; font-size: 12px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--transition); margin-bottom: 4px;
}
.step.active .circle { background: var(--accent); }
.step.done .circle { background: var(--gold); }
.step .label { font-size: 10px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: .3px; }
.step.active .label { color: var(--text); }
.checkout-body { flex: 1; overflow-y: auto; padding: 24px 28px; }
.cart-item {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--border-light);
}
.cart-item img {
  width: 56px; height: 56px; border-radius: var(--radius-xs); object-fit: cover;
  background: #f0ede8;
}
.cart-item .info { flex: 1; }
.cart-item .info h4 { font-size: 14px; font-weight: 500; }
.cart-item .info .meta, .cart-item .info .line-price { font-size: 12px; color: var(--text-muted); }
.cart-item .info .line-price { font-weight: 600; color: var(--text); }
.cart-item .remove-btn {
  background: none; border: none; font-size: 18px; cursor: pointer;
  color: var(--text-light); transition: color var(--transition); padding: 4px;
}
.cart-item .remove-btn:hover { color: #c0392b; }
.cart-subtotal {
  display: flex; justify-content: space-between; padding: 12px 0 8px;
  font-size: 15px; font-weight: 500;
}
.cart-tax {
  display: flex; justify-content: space-between; padding: 4px 0 12px;
  font-size: 13px; color: var(--text-muted);
  border-bottom: 1.5px solid var(--text);
}
.cart-tax .tax-rate { font-size: 11px; }
.cart-total {
  display: flex; justify-content: space-between; padding: 16px 0 8px;
  font-size: 16px; font-weight: 600;
  margin-top: 0;
}
.empty-cart { text-align: center; padding: 40px 0; }
.empty-cart .empty-icon { font-size: 40px; margin-bottom: 12px; opacity: .3; }
.empty-cart p { font-size: 14px; color: var(--text-muted); }

/* ---- Form Steps ---- */
.form-step { display: none; }
.form-step.active { display: block; }
.form-step h3 { font-size: 16px; font-weight: 600; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 600; margin-bottom: 4px;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: .4px;
}
.form-group input, .form-group select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 14px; background: var(--bg);
  transition: border-color var(--transition); font-family: inherit;
}
.form-group input:focus, .form-group select:focus {
  outline: none; border-color: var(--gold);
}
.form-row { display: flex; gap: 12px; }
.form-row .form-group { flex: 1; }
.form-nav { display: flex; gap: 10px; margin-top: 24px; }
.form-nav .btn { flex: 1; }
.order-success { text-align: center; padding: 40px 0; }
.order-success .check-icon {
  width: 64px; height: 64px; border-radius: 50%; background: var(--gold);
  color: var(--accent); font-size: 28px; display: inline-flex; align-items: center;
  justify-content: center; margin-bottom: 16px;
}
.order-success h3 { font-size: 20px; margin-bottom: 8px; }
.order-success p { color: var(--text-muted); font-size: 14px; }

/* ---- Footer ---- */
footer { background: var(--accent); color: #fff; margin-top: 100px; }
footer .inner {
  max-width: 1280px; margin: 0 auto; padding: 72px 32px 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
footer h3 { font-size: 14px; font-weight: 600; margin-bottom: 16px; letter-spacing: .4px; text-transform: uppercase; }
footer p, footer a {
  font-size: 14px; color: rgba(255,255,255,.6); text-decoration: none;
  line-height: 2; display: block;
}
footer a:hover { color: #fff; }
footer .brand-desc { font-size: 13px; line-height: 1.8; margin-top: 8px; color: rgba(255,255,255,.45); }
footer .social { display: flex; gap: 12px; margin-top: 20px; }
footer .social a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.5); text-decoration: none;
}
footer .social a:hover { background: var(--gold); border-color: var(--gold); color: var(--accent); }
footer .bottom {
  max-width: 1280px; margin: 0 auto; padding: 24px 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px; color: rgba(255,255,255,.35);
  display: flex; justify-content: space-between;
}
footer .bottom a { display: inline; font-size: 13px; color: rgba(255,255,255,.35); }
footer .bottom a:hover { color: #fff; }

/* ---- Contact Page ---- */
.contact-hero {
  padding: 100px 32px 80px;
  background: linear-gradient(135deg, #f4f3ee 0%, #e8e5dd 100%);
  text-align: center;
}
.contact-hero h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 300; letter-spacing: -1.5px; }
.contact-hero h1 strong { font-weight: 600; }
.contact-hero .gold-line { width: 40px; height: 2px; background: var(--gold); margin: 12px auto 0; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  max-width: 960px; margin: -40px auto 0; padding: 0 32px 80px;
}
.contact-card {
  background: var(--surface); border-radius: var(--radius);
  padding: 36px; border: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow); }
.contact-card .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--gold-soft); display: flex;
  align-items: center; justify-content: center; margin-bottom: 20px;
  font-size: 20px; color: var(--gold);
}
.contact-card h3 { font-size: 18px; font-weight: 500; margin-bottom: 4px; }
.contact-card .detail { font-size: 15px; color: var(--text-muted); margin-top: 8px; }
.contact-card .detail strong { color: var(--text); font-weight: 500; }
.contact-form label {
  display: block; font-size: 11px; font-weight: 600; margin-bottom: 4px;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: .4px;
}
.contact-form input, .contact-form textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 14px; background: var(--bg);
  transition: border-color var(--transition); font-family: inherit;
  margin-bottom: 16px;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--gold);
}
.contact-form textarea { resize: vertical; min-height: 120px; }

/* ---- Collection Hero ---- */
.collection-hero {
  padding: 100px 32px 64px;
  background: linear-gradient(135deg, #f4f3ee 0%, #e8e5dd 100%);
  text-align: center;
}
.collection-hero h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 300; letter-spacing: -1.5px; }
.collection-hero h1 strong { font-weight: 600; }
.collection-hero .gold-line { width: 40px; height: 2px; background: var(--gold); margin: 12px auto 0; }
.collection-hero p { margin-top: 12px; color: var(--text-muted); max-width: 480px; margin-left: auto; margin-right: auto; }

/* ---- Home Hero ---- */
.hero {
  height: 80vh; min-height: 560px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
  position: relative; overflow: hidden;
  border-radius: 0 0 var(--radius) var(--radius);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-room.jpg') center/cover no-repeat;
  border-radius: 0 0 var(--radius) var(--radius);
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(248,246,241,.92) 0%, rgba(248,246,241,.4) 100%);
  border-radius: 0 0 var(--radius) var(--radius);
}
.hero .content { position: relative; z-index: 2; max-width: 720px; }
.hero .content .hero-badge {
  display: inline-block; background: var(--gold-soft); color: var(--gold);
  padding: 4px 14px; border-radius: 100px; font-size: 11px;
  font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 20px;
}
.hero h1 { font-size: clamp(40px, 6vw, 80px); font-weight: 300; letter-spacing: -2px; line-height: 1.05; }
.hero h1 em { font-style: normal; font-weight: 600; }
.hero p { margin-top: 16px; font-size: 17px; color: var(--text-muted); max-width: 520px; margin-left: auto; margin-right: auto; }
.hero .cta-group { margin-top: 36px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-bg-img {
  border-radius: var(--radius);
  width: 100%; height: 100%; object-fit: cover;
}

/* ---- Featured Grid ---- */
.featured-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.featured-item {
  background: var(--surface); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border-light);
  transition: all var(--transition); text-decoration: none; color: inherit;
}
.featured-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.featured-item figure {
  aspect-ratio: 1; overflow: hidden; background: #f0ede8;
}
.featured-item figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.featured-item:hover figure img { transform: scale(1.06); }
.featured-item .body { padding: 20px 24px; }
.featured-item .body h3 { font-size: 16px; font-weight: 500; }
.featured-item .body .featured-meta {
  display: flex; justify-content: space-between; align-items: center; margin-top: 4px;
}
.featured-item .body .featured-meta span { font-size: 13px; color: var(--text-muted); }
.featured-item .body .featured-meta .featured-price { font-weight: 600; color: var(--text); }

/* ---- Philosophy ---- */
.philosophy {
  text-align: center; max-width: 720px; padding: 100px 32px;
  position: relative;
}
.philosophy::before {
  content: ''; width: 60px; height: 2px; background: var(--gold);
  display: block; margin: 0 auto 24px;
}
.philosophy h2 { font-size: 32px; font-weight: 300; }
.philosophy h2 em { font-weight: 600; font-style: normal; }
.philosophy p { color: var(--text-muted); line-height: 1.8; font-size: 15px; }

/* ---- Reviews Carousel ---- */
.reviews-section { overflow: hidden; padding: 80px 0; }
.reviews-section .section-header { max-width: 1280px; margin: 0 auto 40px; padding: 0 32px; }
.reviews-track {
  display: flex; gap: 24px; padding: 0 32px;
  animation: reviewScroll 40s linear infinite;
  width: max-content;
}
@keyframes reviewScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-card {
  background: var(--surface); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 28px; min-width: 320px;
  max-width: 360px; flex-shrink: 0;
}
.review-card .stars {
  color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 10px;
}
.review-card .review-text {
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 16px; font-style: italic;
}
.review-card .review-author {
  display: flex; align-items: center; gap: 12px;
}
.review-card .review-author .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold-soft); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.review-card .review-author .info .name { font-size: 14px; font-weight: 600; }
.review-card .review-author .info .title { font-size: 12px; color: var(--text-muted); }
.legal-page { padding: 100px 32px 80px; max-width: 800px; margin: 0 auto; }
.legal-page h1 { font-size: 36px; font-weight: 300; letter-spacing: -1px; margin-bottom: 4px; }
.legal-page .gold-line { width: 40px; height: 2px; background: var(--gold); margin-bottom: 32px; }
.legal-page .last-updated { font-size: 13px; color: var(--text-muted); margin-bottom: 32px; }
.legal-page h2 { font-size: 20px; font-weight: 500; margin: 32px 0 12px; }
.legal-page h3 { font-size: 16px; font-weight: 500; margin: 24px 0 8px; }
.legal-page p { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.legal-page ul { padding-left: 24px; margin-bottom: 12px; }
.legal-page li { font-size: 14px; color: var(--text-muted); line-height: 1.8; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  footer .inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; margin-top: 0; }
  .featured-grid { grid-template-columns: 1fr; }
  nav ul li:nth-child(2), nav ul li:nth-child(3) { display: none; }
  .hero .cta-group { flex-direction: column; align-items: center; }
  .popup { padding: 36px 24px 28px; }
  .popup .popup-offer { gap: 10px; }
  .popup .popup-form { flex-direction: column; }
  .announce-bar .announce-text span { display: none; }
  footer .bottom { flex-direction: column; gap: 8px; }
}
@media (max-width: 640px) {
  section { padding: 60px 20px; }
  .grid { grid-template-columns: 1fr; }
  .modal { flex-direction: column; }
  .modal .img-col { min-height: 200px; border-radius: var(--radius) var(--radius) 0 0; }
  .form-row { flex-direction: column; gap: 0; }
  footer .inner { grid-template-columns: 1fr; }
  .legal-page { padding: 80px 20px 60px; }
  .modal .info-col .specs { grid-template-columns: 1fr; }
}
