header {
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding-top: 30px;
  padding-bottom: 24px;
}

.brand {
  width: 100%;
  grid-template-columns: max-content max-content max-content;
  grid-template-rows: 82px 24px;
  column-gap: 22px;
  align-items: center;
  justify-content: center;
}

.brand .read {
  grid-column: 1;
  grid-row: 1;
  font-size: 48px;
  white-space: nowrap;
}

.brand .between {
  grid-column: 2;
  grid-row: 1;
  font-size: 57px;
  line-height: 1;
  white-space: nowrap;
}

.brand .designs {
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  margin: 0;
  font-size: 88px;
  line-height: 1;
  white-space: nowrap;
}

.brand small {
  grid-column: 1 / 4;
  grid-row: 2;
  text-align: center;
  font-size: 18px;
}

nav {
  width: 100%;
  justify-content: center;
  padding-top: 18px;
  border-top: 1px solid rgba(185, 133, 34, .35);
}

.hero {
  padding-top: 76px;
}

.feature-row {
  grid-template-rows: auto minmax(280px, 1fr);
  align-items: stretch;
}

.coming {
  grid-column: 1;
  grid-row: 1 / 3;
}

.category-heading {
  grid-column: 2 / 5;
  grid-row: 1;
  margin: 0;
  padding: 4px 0 14px;
  color: var(--navy);
  text-align: center;
  font: 500 38px "Cormorant Garamond";
}

.feature {
  grid-row: 2;
}

@media (max-width: 850px) {
  header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 18px;
    min-height: 112px;
    padding: 18px 22px;
  }

  .brand {
    width: 100%;
    margin: 0;
    transform: none;
    grid-template-columns: auto auto minmax(150px, 1fr);
    grid-template-rows: 58px 20px;
    column-gap: 14px;
    align-items: center;
  }

  .brand .read {
    grid-column: 1;
    grid-row: 1;
    font-size: 30px;
    letter-spacing: .1em;
    white-space: nowrap;
  }

  .brand .between {
    grid-column: 2;
    grid-row: 1;
    font-size: 34px;
    line-height: 1;
    white-space: nowrap;
  }

  .brand .designs {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    margin: 0;
    font-size: 56px;
    line-height: 1;
    white-space: nowrap;
  }

  .brand small {
    grid-column: 1 / 4;
    grid-row: 2;
    text-align: center;
    font-size: 15px;
  }

  .menu-toggle {
    justify-self: end;
  }

  .hero {
    padding-top: 64px;
  }

  .feature-row {
    grid-template-rows: auto;
  }

  .coming,
  .category-heading,
  .feature {
    grid-column: auto;
    grid-row: auto;
  }

  .category-heading {
    grid-column: 1 / 3;
    order: 2;
  }

  .coming {
    order: 1;
  }

  .feature {
    order: 3;
  }
}

@media (max-width: 560px) {
  header {
    padding: 14px 16px;
    column-gap: 10px;
  }

  .brand {
    grid-template-columns: auto auto minmax(105px, 1fr);
    grid-template-rows: 48px 18px;
    column-gap: 8px;
  }

  .brand .read {
    font-size: 22px;
  }

  .brand .between {
    font-size: 27px;
  }

  .brand .designs {
    font-size: 43px;
  }

  .brand small {
    font-size: 12px;
    letter-spacing: .08em;
  }

  .hero {
    padding-top: 56px;
  }

  .category-heading {
    grid-column: 1;
    font-size: 34px;
  }
}
.hero {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  left: -8%;
  top: 8%;
  width: 34%;
  height: 58%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(189,139,43,.14), transparent 68%);
  filter: blur(12px);
}

.hero-copy {
  max-width: 860px;
  padding: 78px 30px 88px;
}

.hero h1 {
  max-width: 780px;
  margin: 15px auto 24px;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 0 auto 32px;
}

.hero-actions { justify-content: center; }
.collection { padding-top: 58px; }
.collection .grid {
  max-width: 700px;
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(0, 220px));
  justify-content: center;
  gap: 20px;
}
.collection .card { padding: 10px 10px 18px; }
.collection .card img { aspect-ratio: 4 / 3; }
.collection .card small { margin: 14px 6px 5px; font-size: 10px; }
.collection .card h3 { margin-inline: 6px; font-size: 24px; }
.collection .card p { min-height: 42px; margin: 6px; font-size: 13px; }
.collection .card a span { margin: 5px 6px 0; font-size: 12px; }

@media (max-width: 980px) {
  .collection .grid { grid-template-columns: repeat(2, minmax(0, 220px)); }
}

@media (max-width: 760px) {
  .hero { min-height: 520px; }
  .hero-copy { padding: 70px 24px; }
}

@media (max-width: 560px) {
  .collection .grid {
    max-width: 230px;
    grid-template-columns: minmax(0, 230px);
    gap: 18px;
  }
}

.maker {
  max-width: 980px;
  text-align: center;
}

.maker-copy {
  margin-top: 30px;
  padding: 42px 54px;
  background: rgba(255, 253, 247, .82);
  border: 1px solid rgba(189, 139, 43, .35);
  box-shadow: 0 10px 28px rgba(81, 66, 57, .08);
}

.maker-copy p {
  margin: 0 auto 20px;
  color: var(--brown);
  font-size: 16px;
  line-height: 1.85;
}

.maker-copy p:last-child { margin-bottom: 0; }

.whats-new {
  position: relative;
  overflow: hidden;
  padding: 82px max(28px, calc((100vw - 1340px) / 2)) 88px;
  background:
    radial-gradient(circle at 5% 12%, rgba(239, 166, 76, .24), transparent 24%),
    radial-gradient(circle at 95% 88%, rgba(147, 68, 24, .36), transparent 28%),
    #273b2a;
  color: white;
}

.whats-new::before {
  content: "❦";
  position: absolute;
  top: 22px;
  right: 5%;
  color: rgba(239, 166, 76, .42);
  font-size: 74px;
}

.whats-new-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.whats-new-heading .chapter { color: #f2b56d; }

.whats-new-heading h1 {
  margin: 12px 0 15px;
  color: white;
  font: 500 clamp(44px, 5vw, 66px)/1 "Cormorant Garamond";
}

.whats-new-heading > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  line-height: 1.7;
}

.cozy-feature {
  display: grid;
  max-width: 1040px;
  margin: auto;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid rgba(239, 166, 76, .6);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .25);
}

.cozy-feature img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.cozy-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 64px);
}

.cozy-feature small {
  color: #a94d19;
  font: 12px "Special Elite";
  letter-spacing: .13em;
  text-transform: uppercase;
}

.cozy-feature h2 {
  margin: 12px 0 10px;
  color: var(--navy);
  font: 600 clamp(38px, 4vw, 52px)/1 "Cormorant Garamond";
}

.cozy-feature p {
  margin: 0 0 24px;
  color: var(--brown);
  font-size: 16px;
  line-height: 1.7;
}

.cozy-feature .cozy-tagline {
  margin-bottom: 12px;
  color: #a94d19;
  font: 25px Allura;
}

.cozy-button {
  width: fit-content;
  background: #a94d19;
}

@media (max-width: 760px) {
  .whats-new { padding: 68px 22px 72px; }
  .cozy-feature { grid-template-columns: 1fr; }
  .cozy-feature img { min-height: 0; aspect-ratio: 1; }
}

@media (max-width: 560px) {
  .maker-copy { padding: 30px 24px; }
  .cozy-feature-copy { padding: 32px 24px 38px; }
}
