/* ---------- Reset & base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-dark: #0b0a09;
  --bg-panel: #161412;
  --gold: #c9a961;
  --gold-soft: rgba(201, 169, 97, 0.35);
  --text-light: #f5f2ec;
  --text-soft: #e7dcc0;
  --text-muted: #a39d92;
  --border: rgba(201, 169, 97, 0.2);
  --max-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Jost', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 10, 9, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
  gap: 24px;
  flex-wrap: wrap;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  letter-spacing: 4px;
  color: var(--text-light);
}

.nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav a:hover { color: var(--gold); }

.header-call {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  padding: 10px 18px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.header-call:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

.call-icon { margin-right: 6px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,10,9,0.55) 0%, rgba(11,10,9,0.35) 45%, rgba(11,10,9,0.9) 100%);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 0 24px;
}

.hero-content .eyebrow { margin-bottom: 18px; }

.hero-content h1 {
  font-family: 'Big Shoulders Inline Display', 'Playfair Display', Georgia, serif;
  font-optical-sizing: auto;
  font-size: clamp(44px, 9vw, 84px);
  font-weight: 500;
  letter-spacing: 6px;
  color: var(--text-soft);
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
  opacity: 0.4;
  transform: scaleX(1.8);
  transform-origin: center;
}

.hero-sub {
  margin-top: 18px;
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* ---------- Collections ---------- */
.collections {
  padding: 96px 0;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 44px;
}

.section-head h2 {
  font-size: 32px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.collection-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.collection-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-soft);
}

.card-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.collection-card:hover .card-media img {
  transform: scale(1.05);
}

.collections-note {
  max-width: 560px;
  margin: 56px auto 0;
  text-align: center;
}

.collections-note p {
  color: var(--text-muted);
  font-size: 15px;
}

.card-label {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  text-align: center;
  margin-top: 22px;
}

.collection-card h3 {
  text-align: center;
  font-size: 21px;
  margin: 8px 0 24px;
}

/* ---------- About ---------- */
.about {
  background: var(--bg-panel);
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  max-width: 720px;
  text-align: center;
}

.about h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.35;
  margin-bottom: 26px;
}

.about p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--gold-soft);
  margin: 40px auto 0;
}

/* ---------- Contact ---------- */
.contact {
  padding: 100px 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.map-block {
  display: flex;
  flex-direction: column;
  background: var(--bg-panel);
  border: 1px solid var(--border);
}

.map-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.map-link {
  display: block;
  padding: 16px 20px;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--gold);
  border-top: 1px solid var(--border);
  transition: background 0.2s ease;
}

.map-link:hover { background: rgba(201, 169, 97, 0.06); }

.contact-info {
  padding: 8px 8px 8px 8px;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 32px;
}

.info-list {
  list-style: none;
}

.info-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.info-list li:first-child { padding-top: 0; }

.info-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.info-value {
  font-size: 17px;
  color: var(--text-light);
}

.info-link:hover { color: var(--gold); }

.contact-actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  font-size: 12px;
  letter-spacing: 2px;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-dark);
}

.btn-primary:hover { background: #dcbf82; }

.btn-secondary {
  border: 1px solid var(--gold-soft);
  color: var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  letter-spacing: 4px;
  margin-bottom: 14px;
}

.footer-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.footer-copy {
  font-size: 12px;
  color: #6b665e;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .header-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .nav { gap: 18px; }
  .collection-grid { grid-template-columns: 1fr; }
  .contact-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }

  .header-call { display: none; }

  .hero-content h1 {
    font-size: clamp(32px, 11vw, 48px);
    letter-spacing: 2px;
    transform: scaleX(1.15);
  }
}
