:root {
  color-scheme: light;
  --bg: #fff7f2;
  --bg-2: #fff0ea;
  --ink: #2a1a1a;
  --ink-soft: rgba(42, 26, 26, 0.7);
  --accent: #c43d4f;
  --accent-2: #9c6b4a;
  --accent-3: #f5c2c2;
  --stroke: rgba(42, 26, 26, 0.12);
  --font-display: "Spectral", serif;
  --font-body: "Manrope", sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: linear-gradient(180deg, #fff7f2 0%, #ffe9e1 55%, #fff7f2 100%);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
}

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

.silk {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 20%, rgba(196, 61, 79, 0.12), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(245, 194, 194, 0.2), transparent 45%);
  z-index: 0;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 8vw;
  background: rgba(255, 247, 242, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--stroke);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff6f3;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.brand__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.brand__sub {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.nav__links {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

.nav__cta {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
}

.hero--center {
  padding: 90px 10vw 60px;
  text-align: center;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  justify-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent-2);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  line-height: 1.1;
}

.hero h1 span {
  color: var(--accent);
  display: block;
}

.lead {
  color: var(--ink-soft);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn {
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: var(--accent);
  color: #fff7f2;
  box-shadow: 0 14px 28px rgba(196, 61, 79, 0.3);
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--stroke);
  color: var(--ink);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero__image {
  width: min(720px, 100%);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(42, 26, 26, 0.2);
}

.hero__image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  width: min(520px, 100%);
}

.hero__stats h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.section__head {
  display: grid;
  gap: 12px;
  max-width: 560px;
  margin-bottom: 28px;
}

.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.collection,
.craft,
.story {
  padding: 80px 8vw 40px;
  position: relative;
  z-index: 1;
}

.collection__rows {
  display: grid;
  gap: 22px;
}

.row-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: #fff8f5;
  box-shadow: 0 12px 30px rgba(42, 26, 26, 0.08);
}

.row-card--reverse {
  direction: rtl;
}

.row-card--reverse > * {
  direction: ltr;
}

.row-card__image {
  min-height: 200px;
  border-radius: 18px;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
}

.row-card span {
  display: inline-flex;
  margin-top: 8px;
  color: var(--accent);
  font-weight: 600;
}

.craft--steps {
  background: linear-gradient(120deg, #fff2eb 0%, #ffe3d7 100%);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  display: grid;
  gap: 24px;
}

.craft__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.craft__steps div {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--stroke);
}

.story--split {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.story__image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(42, 26, 26, 0.2);
}

.story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story__highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.story__highlights h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.cta {
  margin: 80px 8vw;
  padding: 36px;
  border-radius: 28px;
  background: var(--accent-3);
  color: #3b1f21;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.cta__form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.cta__form input {
  flex: 1;
  min-width: 160px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(59, 31, 33, 0.2);
  font-family: inherit;
}

.footer {
  padding: 40px 8vw 60px;
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--stroke);
}

.footer__links {
  display: flex;
  gap: 16px;
}

.footer__note {
  color: var(--ink-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav__links {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 700px) {
  .nav__links {
    display: none;
  }

  .cta {
    margin: 60px 6vw;
  }
}
