:root {
  --bg: #0f0e0d;
  --bg-card: #161412;
  --fg: #f5f0e8;
  --fg-muted: #9a9088;
  --accent: #c9a96e;
  --accent-dim: #8a7348;
  --border: rgba(245, 240, 232, 0.08);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 64px;
  border-bottom: 1px solid var(--border);
}

.nav__brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: 40px;
  font-size: 0.78rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 80px 64px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--fg);
  margin-bottom: 36px;
}

.hero__headline em {
  font-style: italic;
  color: var(--accent);
}

.hero__sub {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero__sub p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.6;
}

.hero__specs {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent-dim);
  flex-shrink: 0;
}

.hero__image-wrap {
  grid-column: 1 / -1;
  margin-top: 48px;
  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 560px;
  object-position: center;
}

/* Section Label */
.section-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* Collection */
.collection {
  padding: 96px 64px;
  background: var(--bg);
}

.collection__header {
  margin-bottom: 56px;
}

.collection__sub {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--fg);
  margin-top: 12px;
}

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

.edition {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.edition__image-wrap {
  overflow: hidden;
  background: var(--bg-card);
  aspect-ratio: 4/5;
}

.edition__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.edition:hover .edition__image {
  transform: scale(1.03);
}

.edition__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.edition__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
}

.edition__desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.edition__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.edition__count {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.edition__price {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 400;
}

/* Promises */
.promises {
  padding: 96px 64px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, #131110 100%);
}

.promises__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
}

.promise {
  padding: 40px 40px 40px 0;
  border-right: 1px solid var(--border);
  padding-right: 48px;
}

.promise:first-child {
  padding-left: 0;
}

.promise:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 48px;
}

.promise:not(:first-child):not(:last-child) {
  padding-left: 48px;
}

.promise__number {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--accent);
  font-style: italic;
  margin-bottom: 20px;
  font-weight: 300;
}

.promise__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.2;
}

.promise__body {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* Closing */
.closing {
  padding: 112px 64px;
  border-top: 1px solid var(--border);
  background: var(--bg);
  text-align: center;
}

.closing__inner {
  max-width: 640px;
  margin: 0 auto;
}

.closing__statement {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 32px;
}

.closing__sub {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

/* Footer */
.footer {
  padding: 40px 64px;
  border-top: 1px solid var(--border);
  background: #0f0e0d;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__tagline {
  font-size: 0.72rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
}

.footer__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.footer__email {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__email:hover {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 900px) {
  .nav { padding: 24px 32px; }
  .nav__links { gap: 24px; }

  .hero { grid-template-columns: 1fr; padding: 60px 32px 0; gap: 32px; }
  .hero__image-wrap { grid-column: 1; margin-top: 40px; }

  .collection { padding: 64px 32px; }
  .collection__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }

  .promises { padding: 64px 32px; }
  .promises__grid { grid-template-columns: 1fr; gap: 0; }
  .promise { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 0; }
  .promise:last-child { border-bottom: none; padding-left: 0; }
  .promise:not(:first-child):not(:last-child) { padding-left: 0; }

  .closing { padding: 80px 32px; }

  .footer { padding: 32px; }
  .footer__top { flex-direction: column; gap: 20px; align-items: flex-start; }
  .footer__meta { flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .collection__grid { grid-template-columns: 1fr; }
  .nav__links { display: none; }
}