:root{
  --bg:#fff8ef;
  --ink:#24312b;
  --green:#009fa3;
  --orange:#ff8200;
  --soft:#ffffff;
  --line:#eadfce;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  background:var(--bg);
  color:var(--ink);
}

a{
  text-decoration:none;
  color:inherit;
}

.topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 6vw;
  background:#fff;
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:2;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:26px;
  font-weight:900;
}

.site-logo{
  width:76px;
  height:76px;
  object-fit:contain;
  border-radius:16px;
  background:#fff;
}

.paw{
  color:var(--orange);
  font-size:18px;
  margin-right:8px;
}

nav{
  display:flex;
  gap:18px;
  font-weight:700;
}

nav a:hover{
  color:var(--green);
}

.launch{
  text-align:center;
  background:#24312b;
  color:#fff;
  padding:10px;
  font-weight:700;
}

.hero{
  display:grid;
  grid-template-columns:1.6fr .8fr;
  gap:28px;
  padding:70px 6vw;
  align-items:center;
}

.hero h1{
  font-size:54px;
  line-height:1;
  margin:10px 0;
}

.hero p{
  font-size:18px;
  max-width:680px;
}

.eyebrow{
  color:var(--green);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.btn{
  display:inline-block;
  background:var(--green);
  color:#fff;
  padding:14px 22px;
  border-radius:14px;
  font-weight:900;
  margin:12px 10px 0 0;
  border:none;
  cursor:pointer;
}

.btn.secondary{
  background:var(--orange);
}

.hero-card,
.formbox,
.product-detail{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:28px;
  box-shadow:0 10px 30px rgba(42,36,25,.08);
}

.section{
  padding:40px 6vw;
}

.section h1,
.section h2{
  font-size:36px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:18px;
}

.product{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height:260px;
  transition:.2s;
}

.product:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 24px rgba(42,36,25,.1);
}

.product img,
.product-detail img{
  width:100%;
  height:170px;
  object-fit:cover;
  border-radius:16px;
}

.product span{
  font-size:22px;
  font-weight:900;
  color:var(--green);
}

.placeholder{
  height:170px;
  border-radius:16px;
  background:linear-gradient(135deg,#fff2d9,#dff4e9);
  display:grid;
  place-items:center;
  font-weight:900;
  color:var(--green);
}

.placeholder.big{
  height:360px;
}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:24px;
}

.chips a{
  background:#fff;
  border:1px solid var(--line);
  padding:10px 14px;
  border-radius:999px;
  font-weight:800;
}

.product-detail{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
  margin:50px 6vw;
}

.notice{
  background:#fff2d9;
  border-left:5px solid var(--orange);
  padding:14px;
  border-radius:12px;
}

.formbox{
  max-width:620px;
  margin:50px auto;
}

.formbox input{
  width:100%;
  padding:12px;
  border:1px solid var(--line);
  border-radius:12px;
}

footer{
  margin-top:60px;
  padding:30px 6vw;
  background:#fff;
  border-top:1px solid var(--line);
}

@media(max-width:800px){
  .topbar{
    display:block;
  }

  .brand{
    justify-content:center;
  }

  .site-logo{
    width:88px;
    height:88px;
  }

  nav{
    margin-top:14px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero,
  .product-detail{
    display:block;
  }

  .hero h1{
    font-size:38px;
  }

  .hero-card{
    margin-top:24px;
  }
}