@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Oswald:wght@500;600&display=swap');

:root{
  --cream:#f3eee4;
  --paper:#fffdf8;
  --ink:#1c1b18;
  --rust:#6f4430;
  --line:#cfc5b5;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:"DM Sans",Arial,sans-serif;
  line-height:1.6;
}
a{color:inherit}
.site-header{
  max-width:1280px;
  margin:auto;
  padding:22px 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  font-size:14px;
  letter-spacing:.08em;
}
.brand-text strong{display:block}
.logo-mark{
  border:2px solid var(--ink);
  width:46px;
  height:46px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font:600 18px "Oswald",sans-serif;
}
nav{
  display:flex;
  align-items:center;
  gap:24px;
}
nav a{
  text-decoration:none;
  font-weight:600;
  font-size:14px;
}
.shop-link{
  background:var(--ink);
  color:white;
  padding:10px 15px;
  border-radius:3px;
}
.hero{
  max-width:1280px;
  margin:auto;
  padding:45px 32px 90px;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:55px;
  align-items:center;
}
.eyebrow{
  font-weight:700;
  letter-spacing:.18em;
  font-size:12px;
  margin:0 0 14px;
}
h1,h2,h3{
  font-family:"Oswald",sans-serif;
  line-height:1.02;
  margin-top:0;
}
h1{
  font-size:clamp(58px,7vw,108px);
  letter-spacing:-.03em;
  margin-bottom:24px;
}
h2{
  font-size:clamp(40px,5vw,70px);
  letter-spacing:-.02em;
  margin-bottom:20px;
}
h3{
  font-size:26px;
  margin-bottom:10px;
}
.lead{
  font-size:20px;
  max-width:560px;
}
.buttons{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:28px;
}
.button{
  display:inline-block;
  border:2px solid var(--ink);
  padding:12px 20px;
  text-decoration:none;
  font-weight:700;
  border-radius:3px;
}
.primary{
  background:var(--ink);
  color:white;
}
.secondary{
  background:transparent;
}
.hero-photo-wrap{padding-right:12px}
.hero-photo{
  width:100%;
  height:620px;
  object-fit:cover;
  border-radius:4px;
  box-shadow:18px 18px 0 var(--ink);
}
.section{
  max-width:1280px;
  margin:auto;
  padding:95px 32px;
}
.section-heading{
  max-width:800px;
  margin-bottom:45px;
}
.section-heading p:last-child{font-size:18px}
.product-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:22px;
}
.product-card{
  background:var(--paper);
}
.product-card-large{
  grid-row:span 2;
}
.product-card img{
  display:block;
  width:100%;
  height:315px;
  object-fit:cover;
}
.product-card-large img{
  height:710px;
}
.product-copy{
  padding:20px;
}
.product-copy p{
  margin:0;
  opacity:.78;
}
.center{
  text-align:center;
  justify-content:center;
}
.product-grid + .center{
  margin-top:35px;
}
.about{
  border-top:1px solid var(--line);
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
}
.about-copy p{
  font-size:18px;
}
.feature{
  background:var(--ink);
  color:white;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  align-items:center;
}
.feature img{
  width:100%;
  height:580px;
  object-fit:cover;
}
.feature-copy{
  padding:60px;
}
.feature-copy p:last-child{
  font-size:18px;
  max-width:500px;
}
.mini-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
.mini-grid img{
  width:100%;
  height:420px;
  object-fit:cover;
}
.contact{
  text-align:center;
  max-width:850px;
}
.contact>p:not(.eyebrow):not(.email){
  font-size:19px;
}
.email{
  margin-top:25px;
  font-size:14px;
}
footer{
  max-width:1280px;
  margin:auto;
  border-top:1px solid var(--line);
  padding:30px 32px 45px;
  display:flex;
  justify-content:space-between;
  font-size:14px;
}
@media(max-width:800px){
  .site-header{align-items:flex-start}
  nav{display:none}
  .hero{
    grid-template-columns:1fr;
    padding-top:25px;
  }
  .hero-photo{
    height:440px;
    box-shadow:10px 10px 0 var(--ink);
  }
  .product-grid{grid-template-columns:1fr}
  .product-card-large{grid-row:auto}
  .product-card-large img,.product-card img{height:390px}
  .about{grid-template-columns:1fr;gap:20px}
  .feature{grid-template-columns:1fr}
  .feature img{height:420px}
  .feature-copy{padding:55px 28px}
  .mini-grid{grid-template-columns:1fr}
  .mini-grid img{height:360px}
  footer{flex-direction:column;gap:8px}
}

.brand-logo{
  width:64px;
  height:64px;
  object-fit:cover;
  border-radius:50%;
  display:block;
}
@media(max-width:800px){
  .brand-logo{width:56px;height:56px}
}
