:root {
  --cream: #fbf4eb;
  --rose: #e8b4a3;
  --plum: #4a2335;
  --sage: #a4b69a;
  --ink: #2d2427;
  --muted: #78666a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Trebuchet MS", Arial, sans-serif;
  line-height: 1.75;
}

a { color: inherit; }
.header {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  z-index: 10;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(251, 244, 235, 0.78);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 18px 60px rgba(74, 35, 53, 0.12);
}

.brand {
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  color: var(--plum);
}

.nav {
  display: flex;
  gap: 22px;
}

.nav a {
  text-decoration: none;
  font-weight: 800;
  color: var(--plum);
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--plum);
  color: white;
  border-radius: 999px;
  padding: 9px 14px;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 32%, rgba(232, 180, 163, 0.55), transparent 24rem),
    radial-gradient(circle at 80% 28%, rgba(164, 182, 154, 0.5), transparent 22rem);
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 560px;
  border-radius: 220px 220px 28px 28px;
  border: 1px solid rgba(74, 35, 53, 0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(232,180,163,0.18));
  right: 8vw;
  bottom: 7vh;
}

.hero-copy {
  max-width: 860px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 900;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 7.6rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  margin: 16px 0 24px;
  color: var(--plum);
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--plum);
}

.hero-copy p:last-child {
  max-width: 720px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1.18rem;
}

.floating-card {
  position: absolute;
  z-index: 2;
  padding: 18px 22px;
  border-radius: 999px;
  background: white;
  color: var(--plum);
  box-shadow: 0 18px 50px rgba(74, 35, 53, 0.14);
  font-weight: 900;
}

.card-one { left: 9vw; bottom: 24vh; }
.card-two { right: 19vw; top: 24vh; }

.manifest, .studio, .contact {
  max-width: 1120px;
  margin: auto;
  padding: 92px 24px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
}

.chapter {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--plum);
  color: var(--cream);
  font-size: 2rem;
  font-weight: 900;
}

.collections {
  max-width: 1120px;
  margin: auto;
  padding: 92px 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.section-title {
  grid-column: 1 / -1;
  max-width: 760px;
}

.collection {
  border-radius: 38px;
  padding: 34px;
  min-height: 320px;
  background: white;
  box-shadow: 0 20px 70px rgba(74, 35, 53, 0.1);
}

.collection:nth-of-type(2) { background: #f4d8ce; }
.collection:nth-of-type(3) { background: #e4eadf; }
.collection:nth-of-type(4) { background: #f9e4b7; }
.collection span {
  color: var(--plum);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.studio {
  grid-template-columns: 0.9fr 1.1fr;
}

.image-block {
  min-height: 620px;
  border-radius: 280px 280px 40px 40px;
  background:
    linear-gradient(180deg, rgba(74,35,53,0.04), rgba(74,35,53,0.24)),
    repeating-linear-gradient(45deg, #f1c5b7 0 18px, #f7dfd5 18px 36px);
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.steps div {
  padding: 20px;
  border-left: 5px solid var(--rose);
  background: rgba(255,255,255,0.56);
}

.steps b { display: block; color: var(--plum); }

.journal {
  padding: 92px 24px;
  background: var(--plum);
  color: var(--cream);
}

.journal h2, .journal-grid {
  max-width: 1120px;
  margin-inline: auto;
}

.journal h2 { color: var(--cream); }
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.journal-grid article {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 28px;
}

.quote {
  max-width: 1000px;
  margin: auto;
  padding: 110px 24px;
  text-align: center;
}

blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.12;
  color: var(--plum);
}

.contact {
  grid-template-columns: 1.2fr 0.8fr;
}

.contact-card {
  border-radius: 34px;
  padding: 34px;
  background: var(--plum);
  color: var(--cream);
  display: grid;
  gap: 12px;
  align-content: center;
}

.contact-card a { color: var(--cream); }
footer {
  padding: 34px 24px;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 820px) {
  .nav {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    padding: 20px;
    border-radius: 28px;
    background: var(--cream);
    flex-direction: column;
  }
  .nav.visible { display: flex; }
  .nav-toggle { display: block; }
  .hero::after { display: none; }
  .manifest, .studio, .contact, .collections, .journal-grid {
    grid-template-columns: 1fr;
  }
  .floating-card { display: none; }
  .image-block { min-height: 360px; }
}
