:root {
  --bg-dark: #111111;
  --text: #111111;
  --text-light: #f3f4f6;
  --muted: #666666;
  --card: #ffffff;
  --surface: #f8f8f8;
  --accent: #C5A059;
  --accent-hover: #b08d4b;
  --border: #e5e5e5;
  --gold-gradient: linear-gradient(135deg, #C5A059 0%, #E5C575 100%);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--surface);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--bg-dark);
  text-transform: uppercase;
}
.nav a {
  color: var(--text);
  text-decoration: none;
  margin: 0 14px;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}
.nav a:hover { color: var(--accent); }
.nav a.active { color: var(--accent); }

.cta-phone {
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  color: #000;
  background: var(--accent);
  font-weight: 700;
  transition: background 0.2s;
}
.cta-phone:hover { background: var(--accent-hover); }

/* Hamburger Menu */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  z-index: 30;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--bg-dark);
  transition: all 0.3s;
}

.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-dark);
  z-index: 15;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}
.mobile-nav a:hover { color: var(--accent); border-color: var(--accent); }

/* Hide desktop nav on mobile */
@media (max-width: 900px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .cta-phone { display: none; } /* Hide phone button in header on mobile to save space, rely on menu or footer */
  .header-actions { display: none; }
  .header-wrap {
    justify-content: space-between;
  }
}

.hero {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #3a2e18 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-wrap {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero h1 {
  margin: 0 0 16px;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(to right, #ffffff, #e5e5e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 600px) {
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
}

.hero p {
  margin: 0 auto 32px;
  max-width: 700px;
  color: #cccccc;
  font-size: 20px;
  line-height: 1.5;
}
.hero-actions { display: inline-flex; gap: 16px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  padding: 14px 24px;
  transition: all 0.2s ease;
  cursor: pointer;
  font-size: 16px;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--accent);
  color: #000;
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.3);
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 24px rgba(197, 160, 89, 0.4);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.section {
  padding: 64px 0;
  background: var(--surface);
}
@media (max-width: 600px) {
  .section { padding: 40px 0; }
  .container { padding:30px 16px; }
  .section-head { text-align: center;align-items: flex-end;}
  
}
.section.alt {
  background: #fff;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.section-head h2 {
  margin: 0;
  font-size: 32px;
  color: var(--bg-dark);
}
.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
}
@media (max-width: 700px) {
  .section-head { flex-direction: column; align-items: flex-start; gap: 8px; }
}

.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
@media (max-width: 600px) {
  .filters { justify-content: center; }
}
.filter {
  appearance: none;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  padding: 10px 20px;
  border-radius: 99px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.filter:hover { border-color: var(--accent); color: var(--accent); }
.filter.active {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
  color: var(--accent);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid { grid-template-columns: 1fr; }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--accent);
}
.card-media {
  height: 160px;
  border-radius: 8px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  opacity: 0.1;
}
.card h3 {
  margin: 8px 0 4px;
  font-size: 20px;
  color: var(--bg-dark);
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}
.card-actions {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.price {
  font-weight: 700;
  color: var(--bg-dark);
  font-size: 16px;
  order: -1; /* Move price above button */
}
.btn-small {
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--bg-dark);
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
  width: 100%;
  text-align: center;
}
.btn-small:hover { background: #000; }

.products-grid .product { transition: opacity .2s ease, transform .2s ease; }
.products-grid .product.hidden { opacity: 0.2; transform: scale(0.95); pointer-events: none; }

.contact {
  background: #111111;
  color: #fff;
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 16px; }
}

.contact-card {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 40px;
}
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row:nth-child(5) { grid-column: 1 / -1; }
label {
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
input, textarea {
  appearance: none;
  background: #222;
  border: 1px solid #333;
  color: #fff;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 16px;
  transition: border-color 0.2s;
  width: 100%;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
}
textarea { resize: vertical; min-height: 120px; }
.form button {
  grid-column: 1 / -1;
  margin-top: 16px;
  width: 100%;
  background: var(--gold-gradient);
  color: #000;
  border: none;
  padding: 16px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.form button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-box {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: border-color 0.2s;
}
.contact-box:hover {
  border-color: var(--accent);
}
.contact-box .label {
  font-size: 14px;
  color: #888;
  font-weight: 500;
}
.contact-box .value {
  margin: 0;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  font-size: 18px;
  text-align: right;
}
.contact-box .value:hover { color: var(--accent); }

.site-footer {
  background: #000;
  color: #888;
  border-top: 1px solid #222;
  font-size: 14px;
}
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
@media (max-width: 600px) {
  .footer-wrap { flex-direction: column; gap: 16px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

.footer-links a {
  color: #888;
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

/* Icons / Visuals */
.icon {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(135deg, #111 0%, #222 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 24px;
  font-weight: 700;
  border: 1px solid #333;
}
.icon::after {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--accent);
  position: absolute;
  bottom: 20px;
  left: 20px;
}
