:root {
  --bg: #ffffff;
  --text: #2f2d2a;
  --muted: #77716a;
  --line: #e6e0d8;
  --silver: #c9c9c7;
  --gold: #d8c394;
  --soft: #faf8f5;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 7vw;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.22em;
  font-size: 24px;
  color: var(--text);
  text-decoration: none;
}

nav { display: flex; gap: 34px; }

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
}

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

.hero {
  max-width: 920px;
  margin: 0 auto;
  padding: 130px 28px 110px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  margin: 0;
}

h1 {
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.intro {
  max-width: 560px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.button {
  display: inline-block;
  margin-top: 42px;
  padding: 14px 24px;
  border: 1px solid var(--silver);
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: border-color 180ms ease, background 180ms ease;
}

.button:hover {
  border-color: var(--gold);
  background: var(--soft);
}

.collection {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 28px;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 34px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.section-title h2, .contact h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.photo-placeholder {
  height: 360px;
  background: linear-gradient(135deg, #f7f5f1, #ffffff);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa39b;
  font-size: 13px;
  margin-bottom: 24px;
}

.product-card h3 {
  font-size: 28px;
}

.product-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 12px 0 0;
}

.story {
  max-width: 760px;
  margin: 70px auto;
  padding: 0 28px;
  text-align: center;
}

.story p {
  margin: 34px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.25;
  color: var(--text);
}

.line {
  width: 90px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact {
  max-width: 760px;
  margin: 0 auto;
  padding: 110px 28px 120px;
  text-align: center;
}

.contact p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
  margin: 24px auto 0;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 7vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 760px) {
  .site-header {
    padding: 22px 24px;
  }

  nav { display: none; }

  .hero {
    padding: 100px 24px 80px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .photo-placeholder {
    height: 300px;
  }

  .section-title {
    display: block;
  }

  footer {
    display: block;
    text-align: center;
  }
}
