:root {
  --cream: #f6f1e8;
  --paper: #fffaf3;
  --ink: #2f2923;
  --muted: #6f6458;
  --line: #d9cbb8;
  --wood: #8c5a38;
  --wood-hover: #73482c;
  --gold: #c4a574;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 3rem));
  margin-inline: auto;
}

.site-header {
  padding: 1.1rem 0 0.9rem;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-decoration: none;
  text-transform: uppercase;
}

.product {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 3rem;
  align-items: center;
  padding: 2.25rem 0 2.5rem;
  min-height: calc(100vh - 5.5rem);
}

.product figure {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
}

.product img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.offer {
  max-width: 26rem;
}

.mark-line {
  margin: 0 0 0.65rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.product h1 {
  margin: 0 0 0.85rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.55rem);
  font-weight: 500;
  line-height: 1.15;
}

.lede {
  margin: 0 0 1.35rem;
  color: var(--muted);
}

.price {
  margin: 0 0 1.15rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.15rem;
  font-weight: 500;
}

.price span {
  margin-left: 0.35rem;
  font-family: "Figtree", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--muted);
  vertical-align: middle;
}

.buy {
  display: inline-block;
  padding: 0.85rem 1.7rem;
  background: var(--wood);
  color: #fffaf3;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.buy:hover,
.buy:focus-visible {
  background: var(--wood-hover);
}

.ship-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 3.5rem 0;
}

.section h2 {
  margin: 0 0 1.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.85rem;
  font-weight: 500;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.gallery img,
.seasonal img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.about p,
.shipping p,
.legal p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 38rem;
}

.seasonal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.site-footer {
  padding: 2rem 0 2.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 0.75rem;
}

.site-footer a {
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.legal-page {
  padding: 3rem 0 4rem;
}

.legal-page h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 2.4rem;
}

@media (max-width: 880px) {
  .wrap {
    width: min(var(--max), calc(100% - 2rem));
  }

  .product {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 1.5rem;
    padding-top: 1.5rem;
  }

  .offer {
    max-width: none;
  }

  .gallery,
  .seasonal,
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .gallery,
  .seasonal,
  .about-grid {
    grid-template-columns: 1fr;
  }
}
