:root {
  --bg: #0f1216;
  --surface: #171a20;
  --surface-2: #1b1f26;
  --border: #2a2f36;
  --text: #e6e6e6;
  --muted: #a4a8ae;
  --accent: #d8a24d;
  --accent-2: #ffcf6a;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

* { box-sizing: border-box }
html, body { height: 100% }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
  padding-top: 80px;
}

.container { width: 1200px; max-width: 92%; margin: 0 auto }

a { color: inherit; text-decoration: none }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.2rem;
  border-radius: .4rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px) }
.btn-primary {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #141414;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(216,162,77,.25);
  border-color: transparent;
}
.btn-primary:hover { box-shadow: 0 14px 26px rgba(216,162,77,.35) }
.btn-outline { background: transparent }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-2) }

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  letter-spacing: .2px;
}
.brand-accent { color: var(--accent) }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(15,18,22,.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 0;
}
.nav {
  display: flex;
  gap: 2rem;
}
.nav a {
  font-weight: 500;
  color: var(--muted);
}
.nav a:hover { color: var(--text) }

.hero {
  position: relative;
  min-height: 88vh;
  background-image: url('https://images.unsplash.com/photo-1512436991641-6745cdb1723f?q=80&w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,18,22,.55), rgba(15,18,22,.30) 55%, rgba(15,18,22,0));
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  min-height: 88vh;
}
.hero-content { max-width: 680px }
.eyebrow {
  color: var(--accent);
  letter-spacing: .25rem;
  font-size: .85rem;
  margin: 0 0 .8rem;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}
.hero-title .accent { color: var(--accent) }
.hero-subtitle {
  color: var(--muted);
  margin: 0 0 1.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap }

.section { padding: 5rem 0 }
.section-eyebrow {
  color: var(--muted);
  letter-spacing: .35rem;
  font-size: .8rem;
  text-align: center;
  margin: 0 0 .6rem;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin: 0 0 .6rem;
}
.section-title .accent { color: var(--accent) }
.section-subtitle {
  text-align: center;
  color: var(--muted);
  margin: 0 0 2rem;
}

.grid { display: grid; gap: 1.2rem }
.cards-4 { grid-template-columns: repeat(4, 1fr) }

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 1rem;
}
.collection-item { display: block }
.item-card {
  background: #ffffff;
  border-radius: .8rem;
  box-shadow: 0 14px 24px rgba(0,0,0,.25);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.item-card:hover { transform: translateY(-4px); box-shadow: 0 18px 30px rgba(0,0,0,.35) }
.item-preview { height: 240px; background: #f5f6f8 }
.item-preview img { width: 100%; height: 100%; object-fit: cover; display: block }
.item-title {
  text-align: center;
  margin-top: .6rem;
  font-weight: 600;
  color: var(--text);
}

.collection-card {
  position: relative;
  height: 300px;
  border-radius: .6rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
}
.collection-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.6));
}
.collection-card .card-body {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  right: 1.2rem;
  z-index: 1;
}
.collection-card h3 {
  font-family: "Playfair Display", serif;
  margin: 0 0 .2rem;
}
.collection-card p { color: #c9c9c9; margin: 0 }
.collection-card:hover { transform: translateY(-2px); box-shadow: var(--shadow) }

.section-split { background: linear-gradient(180deg, transparent, rgba(26,29,35,.35)) }
.split-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: start }
.features-2x2 { grid-template-columns: repeat(2, 1fr); gap: 1rem }
.feature-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: .6rem;
}
.feature-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(255,207,106,.35), rgba(216,162,77,.15));
}
.feature-card svg { width: 24px; height: 24px; fill: none; stroke: #e6e6e6; stroke-width: 1.6 }
.feature-card h4 { margin: 0 0 .2rem }
.feature-card p { margin: 0; color: var(--muted) }

.contact .center { display: grid; place-items: center; margin-top: 2rem }
.contact-wrapper { display: grid; grid-template-columns: 1.6fr 1fr; gap: 2rem; align-items: start }
.contact-form {
  padding: 1.2rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: .6rem;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 1rem }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: .9rem 1rem;
  border-radius: .4rem;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted) }
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--accent) }

.contact-info { display: flex; flex-direction: column; gap: 1rem }
.info-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: .8rem;
  align-items: start;
}
.info-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(255,207,106,.35), rgba(216,162,77,.15));
}
.info-icon svg { width: 24px; height: 24px; fill: none; stroke: #e6e6e6; stroke-width: 1.6 }
.info-body h4 { margin: 0 0 .25rem }
.info-body p { margin: 0; color: var(--muted) }
.info-social h4 { margin: .5rem 0 .5rem }

.site-footer {
  margin-top: 3rem;
  background: #0c0f13;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, .8fr);
  gap: 2rem;
  padding: 2.5rem 0;
}
.footer-brand .footer-desc {
  color: var(--muted);
  margin: .6rem 0 1rem;
}
.socials { display: flex; gap: .8rem }
.socials a {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
}
.socials a:hover { color: var(--accent); border-color: var(--accent) }
.footer-col h5 { margin: 0 0 .8rem; font-weight: 600 }
.footer-col a { display: block; color: var(--muted); margin: .35rem 0 }
.footer-col a:hover { color: var(--text) }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0 2rem;
  color: var(--muted);
  font-size: .9rem;
}

@media (max-width: 1024px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr) }
  .collection-grid { grid-template-columns: repeat(2, 1fr) }
  .contact-wrapper { grid-template-columns: 1fr }
  .split-inner { grid-template-columns: 1fr }
  .footer-inner { grid-template-columns: 1fr 1fr }
}
@media (max-width: 640px) {
  .header-inner { grid-template-columns: 1fr auto; gap: .8rem }
  .nav { display: none }
  .cards-4 { grid-template-columns: 1fr }
  .collection-grid { grid-template-columns: 1fr }
  .footer-inner { grid-template-columns: 1fr }
  .hero { min-height: 72vh }
  body { padding-top: 72px }
}
