:root {
  --paper: #f3efe6;
  --paper-deep: #e7e0d3;
  --ink: #24211d;
  --muted: #6d675f;
  --line: rgba(36, 33, 29, 0.18);
  --radius: 38px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 16px;
  background: #ddd8cf;
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 16px;
}

a {
  color: inherit;
}

.site-shell {
  max-width: 1500px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(33, 28, 22, 0.08);
}

.site-header {
  min-height: 86px;
  padding: 0 5.5%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(36, 33, 29, 0.07);
}

.nav {
  display: flex;
  gap: 30px;
}

.nav-right {
  justify-content: flex-end;
}

.nav a,
.wordmark {
  text-decoration: none;
}

.nav a {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
}

.wordmark {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 2.25vw, 38px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 790px;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(680px, 80%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 5.3vw, 78px);
  line-height: 0.98;
  font-weight: 400;
}

.flower-mark {
  margin-top: 42px;
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
}

.artifact {
  position: absolute;
  overflow: hidden;
  padding: 9px;
  background: #e8e1d2;
  box-shadow: 0 12px 38px rgba(34, 29, 24, 0.14);
  transition: transform 450ms ease, box-shadow 450ms ease;
}

.collage-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(.96);
}

.artifact-one {
  top: 52px;
  left: 13%;
  width: 170px;
  height: 220px;
  transform: rotate(-1.5deg);
}

.artifact-one .collage-photo {
  object-position: center center;
}

.artifact-two {
  top: 280px;
  left: 3%;
  width: 132px;
  height: 180px;
  padding: 7px;
  background: #c6b89e;
  transform: rotate(1.5deg);
}

.artifact-two .collage-photo {
  object-position: center 58%;
}

.artifact-three {
  right: 4%;
  top: 420px;
  width: 140px;
  height: 165px;
  padding: 7px;
  background: #2d2a26;
  transform: rotate(1deg);
}

.artifact-three .collage-photo {
  object-position: 58% center;
}

.artifact-four {
  right: 15%;
  bottom: 20px;
  width: 190px;
  height: 160px;
  padding: 8px;
  background: #b8a285;
  transform: rotate(1deg);
}

.artifact-four .collage-photo {
  object-position: center 62%;
}

@media (hover: hover) {
  .artifact:hover {
    box-shadow: 0 18px 48px rgba(34, 29, 24, 0.2);
  }

  .artifact-one:hover {
    transform: rotate(-.5deg) translateY(-5px);
  }

  .artifact-two:hover {
    transform: rotate(.5deg) translateY(-5px);
  }

  .artifact-three:hover,
  .artifact-four:hover {
    transform: rotate(0deg) translateY(-5px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .artifact {
    transition: none;
  }
}

.content-grid {
  padding: 110px 7% 120px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 70px 110px;
}

.panel {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.about-panel {
  grid-row: span 2;
}

.lead {
  max-width: 760px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 3.3vw, 50px);
  line-height: 1.08;
}

.book-list {
  display: grid;
  gap: 18px;
}

.book,
.feature-link {
  position: relative;
  display: block;
  text-decoration: none;
}

.book {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.book-title,
.feature-title {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
}

.book-meta,
.feature-description {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.6;
}

.feature-link {
  padding-right: 48px;
}

.arrow {
  position: absolute;
  top: 3px;
  right: 0;
  font-size: 25px;
}

.email {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(27px, 3vw, 42px);
  text-underline-offset: 5px;
}

footer {
  padding: 28px 7%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  body {
    padding: 0;
  }

  .site-shell {
    border-radius: 0;
  }

  .site-header {
    padding: 28px 7%;
    grid-template-columns: 1fr auto;
    gap: 22px;
  }

  .wordmark {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: center;
  }

  .nav {
    grid-row: 2;
    gap: 18px;
  }

  .nav-right {
    justify-self: end;
  }

  .hero {
    min-height: 700px;
  }

  .artifact-one {
    left: 7%;
  }

  .artifact-two {
    left: 0;
  }

  .artifact-three {
    right: 0;
  }

  .artifact-four {
    right: 7%;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 58px;
    padding-top: 78px;
  }

  .about-panel {
    grid-row: auto;
  }
}

@media (max-width: 600px) {
  .site-header {
    display: block;
    text-align: center;
  }

  .nav {
    justify-content: center;
    margin-top: 18px;
  }

  .nav a {
    font-size: 15px;
  }

  .nav-left {
    display: none;
  }

  .hero {
    min-height: 630px;
  }

  .hero-copy {
    width: 88%;
  }

  .artifact-one {
    top: 35px;
    left: 7%;
    transform: scale(.72);
    transform-origin: top left;
  }

  .artifact-two {
    top: 225px;
    transform: scale(.7);
    transform-origin: left center;
  }

  .artifact-three {
    top: 390px;
    transform: scale(.66);
    transform-origin: right center;
  }

  .artifact-four {
    bottom: 8px;
    right: 5%;
    transform: scale(.72);
    transform-origin: bottom right;
  }

  .content-grid {
    padding: 64px 7% 80px;
  }

  footer {
    display: block;
  }

  footer span {
    display: block;
    margin-top: 7px;
  }
}
