:root {
  --bg: #161012;
  --surface: #24191c;
  --surface-soft: #2f2226;
  --text: #f4e7df;
  --muted: #d0beb4;
  --gold: #d9a789;
  --gold-deep: #a86e52;
  --line: #5e4540;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #2c1f23 0%, var(--bg) 45%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 6vw;
  background: rgba(19, 14, 16, 0.84);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #4c3733;
}

.brand {
  text-decoration: none;
  color: var(--gold);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

nav {
  display: flex;
  gap: 0.8rem;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
}

nav a:hover {
  color: var(--gold);
  background: #36272b;
}

.hero {
  padding: 4.5rem 6vw 2rem;
}

.hero-content {
  max-width: 930px;
}

.hero-logo {
  width: 180px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 0.8rem;
}

.eyebrow {
  margin: 0;
  display: inline-block;
  color: #f3d2c1;
  border: 1px solid #7c5a4f;
  border-radius: 999px;
  padding: 0.34rem 0.75rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.06;
  margin-top: 0;
}

h1 {
  margin-top: 0.9rem;
  font-size: clamp(2.1rem, 4.6vw, 4rem);
  max-width: 860px;
  color: #f6dbcd;
}

.hero p {
  max-width: 780px;
  font-size: 1.06rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.btn {
  text-decoration: none;
  padding: 0.75rem 1.1rem;
  border-radius: 10px;
  font-weight: 700;
}

.btn-primary {
  color: #211417;
  background: linear-gradient(135deg, #d9a789, #e7c1ab);
}

.btn-outline {
  border: 1px solid #8a665a;
  color: #f2e2d7;
}

.services {
  padding: 0 6vw;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
}

.service-card {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface), var(--surface-soft));
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.service-card h2 {
  color: #f3d0bc;
  margin-bottom: 0.45rem;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.collections {
  margin: 3rem 6vw;
  border-radius: 22px;
  border: 1px solid #5f453f;
  padding: 1.4rem;
  background: #201618;
}

.collections h3 {
  color: #f4d7c8;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.tags span {
  padding: 0.46rem 0.8rem;
  border-radius: 999px;
  border: 1px solid #7a5a50;
  color: #e7c3b1;
  font-weight: 600;
}

.cta {
  margin: 0 6vw 3rem;
  border-radius: 22px;
  background: linear-gradient(135deg, #3a292d, #291d20);
  border: 1px solid #6f5148;
  padding: 1.7rem;
}

.cta h3 {
  color: #f7d7c6;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.cta p {
  color: var(--muted);
}

.contact-grid {
  margin-top: 1rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.contact-grid a {
  text-decoration: none;
  color: #211417;
  background: #e0b295;
  padding: 0.66rem 1rem;
  border-radius: 10px;
  font-weight: 700;
}

footer {
  text-align: center;
  padding: 0 1rem 1.8rem;
  color: #c2ada3;
}

@media (max-width: 860px) {
  .services {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    gap: 0.6rem;
  }
}
