@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@400;500&display=swap');

:root {
  --paper: #f4f0e7;
  --ink: #29251f;
  --muted: #766e62;
  --line: #cfc6b6;
  --gold: #9b6f2e;
  --dark: #29251f;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
.site-header {
  height: 96px; padding: 16px 4vw; display: grid;
  grid-template-columns: 1fr auto 1fr; align-items: center;
  border-bottom: 1px solid var(--line); gap: 24px;
}
.brand img { width: 155px; height: auto; display: block; }
nav { display: flex; gap: 30px; text-transform: uppercase; letter-spacing: .14em; font-size: 10px; }
nav a:hover, .instagram:hover { opacity: .55; }
.instagram { justify-self: end; text-transform: uppercase; letter-spacing: .12em; font-size: 10px; }

.hero {
  min-height: 76vh; display: flex; flex-direction: column; justify-content: center;
  align-items: center; text-align: center; padding: 90px 6vw;
  border-bottom: 1px solid var(--line);
}
.eyebrow { margin: 0 0 15px; text-transform: uppercase; letter-spacing: .22em; font-size: 10px; color: var(--gold); }
h1, h2, h3 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 500; line-height: .98; margin: 0; }
h1 { font-size: clamp(58px, 9vw, 126px); max-width: 1050px; letter-spacing: -.035em; }
h1 em { font-weight: 400; }
.hero-copy { max-width: 520px; margin: 28px auto 34px; color: var(--muted); }
.button {
  display: inline-block; padding: 12px 21px; border: 1px solid var(--ink);
  text-transform: uppercase; letter-spacing: .13em; font-size: 10px;
}
.button:hover { background: var(--ink); color: var(--paper); }
.button.dark { background: var(--dark); color: var(--paper); border-color: var(--dark); }

.intro { max-width: 1050px; margin: 0 auto; padding: 120px 6vw; display: grid; grid-template-columns: 1.2fr .8fr; gap: 8vw; align-items: end; }
.intro h2, .section-heading h2, .story h2, .markets h2, .contact h2 { font-size: clamp(48px, 6vw, 82px); }
.intro > p:last-child { color: var(--muted); max-width: 420px; }

.collection { padding: 90px 4vw 130px; border-top: 1px solid var(--line); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 45px; }
.section-heading > p { max-width: 280px; color: var(--muted); margin: 0; }
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-image { aspect-ratio: 4/5; background: #e7e1d5; display: grid; place-items: center; overflow: hidden; }
.placeholder { color: #9b9285; text-transform: uppercase; letter-spacing: .18em; font-size: 9px; }
.product-meta { display: flex; justify-content: space-between; gap: 15px; padding: 15px 2px 0; }
.product-meta h3 { font-size: 25px; line-height: 1.05; }
.product-meta p { margin: 6px 0 0; color: var(--muted); font-size: 11px; }
.product-meta strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 23px; font-weight: 500; white-space: nowrap; }

.story { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.story-image { min-height: 620px; display: grid; place-items: center; border-right: 1px solid var(--line); padding: 8vw; }
.story-image img { width: min(80%, 460px); mix-blend-mode: multiply; }
.story-copy { padding: 10vw 8vw; align-self: center; }
.story-copy p:not(.eyebrow) { max-width: 480px; color: var(--muted); margin-top: 25px; }

.markets { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; padding: 110px 8vw; border-top: 1px solid var(--line); }
.markets h2 span { color: var(--gold); }
.markets > p { max-width: 480px; color: var(--muted); align-self: end; }

.contact { text-align: center; padding: 130px 6vw; border-top: 1px solid var(--line); }
.contact h2 { max-width: 850px; margin: 0 auto; }
.contact p:not(.eyebrow) { color: var(--muted); margin: 25px auto 10px; max-width: 470px; }
.email { display: block; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(25px, 4vw, 42px); margin: 15px 0 35px; }
footer { display: flex; justify-content: space-between; padding: 25px 4vw; border-top: 1px solid var(--line); color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: 9px; }

@media (max-width: 800px) {
  .site-header { grid-template-columns: 1fr auto; height: 80px; }
  nav { display: none; }
  .instagram { grid-column: 2; }
  .brand img { width: 125px; }
  .hero { min-height: 72vh; padding-top: 70px; }
  .intro, .story, .markets { grid-template-columns: 1fr; }
  .intro { padding: 80px 7vw; gap: 35px; }
  .products { grid-template-columns: 1fr 1fr; }
  .story-image { min-height: 380px; border-right: 0; border-bottom: 1px solid var(--line); }
  .story-copy { padding: 75px 7vw; }
  .markets { padding: 80px 7vw; gap: 35px; }
  .section-heading { align-items: start; flex-direction: column; }
  footer { flex-direction: column; gap: 8px; }
}
@media (max-width: 500px) {
  .products { grid-template-columns: 1fr; }
  h1 { font-size: 55px; }
}

/* Featured product gallery */
.product-gallery { min-width: 0; }
.product-gallery .product-image { aspect-ratio: 7/10; }
.product-gallery .product-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; margin-top: 6px; }
.thumb { padding: 0; border: 1px solid transparent; background: transparent; cursor: pointer; overflow: hidden; aspect-ratio: 1; }
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb:hover, .thumb.active { border-color: var(--gold); }
@media (max-width: 500px) {
  .gallery-thumbs { gap: 5px; }
}
