
:root{
  --purple:#2a0f2d;
  --purple2:#3a173d;
  --cream:#fbf3e7;
  --paper:#fff8ee;
  --gold:#b99846;
  --text:#281229;
  --muted:#5d425b;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:Inter, sans-serif;background:var(--cream);color:var(--text)}
a{text-decoration:none;color:inherit}

.announcement{
  background:var(--purple);
  color:#efd884;
  text-align:center;
  letter-spacing:4px;
  font-size:13px;
  padding:11px 10px;
  text-transform:uppercase;
}

.header{
  height:100px;
  background:rgba(255,248,238,.96);
  display:grid;
  grid-template-columns:430px 1fr 160px;
  align-items:center;
  padding:0 50px;
  border-bottom:1px solid #e7d9c8;
  position:sticky;
  top:0;
  z-index:10;
}

.logo{
  width:390px;
  max-height:86px;
  object-fit:contain;
  height:auto;
  display:block;
}

.nav{
  display:flex;
  justify-content:center;
  gap:42px;
  text-transform:uppercase;
  letter-spacing:1.7px;
  font-size:13px;
}

.header-icons{
  display:flex;
  justify-content:flex-end;
  gap:26px;
  font-size:28px;
  color:#9b7b31;
}

.hero{
  min-height:548px;
  display:grid;
  grid-template-columns:44% 56%;
  background:
    radial-gradient(circle at 69% 50%, rgba(255,255,255,.65), transparent 32%),
    linear-gradient(90deg,#fbf3e7 0%,#fbf3e7 42%,#f7ebda 100%);
  overflow:hidden;
}

.hero-copy{
  padding:78px 0 50px 58px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
}

.hero h1{
  font-family:"Cormorant Garamond",serif;
  font-weight:700;
  font-size:58px;
  line-height:.98;
  letter-spacing:.5px;
  color:var(--purple);
  margin-bottom:24px;
}

.hero p{
  font-family:"Cormorant Garamond",serif;
  font-size:21px;
  line-height:1.45;
  max-width:420px;
  margin-bottom:28px;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 34px;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:13px;
  font-weight:700;
}

.primary{background:var(--purple);color:white}
.gold{border:1px solid #efd884;color:#efd884}
.outline-light{border:1px solid #efd884;color:#efd884}

.hero-image{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:548px;
  overflow:hidden;
}

.hero-image:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 87% 42%, rgba(93,48,79,.38), transparent 10%),
    radial-gradient(circle at 93% 35%, rgba(91,38,72,.3), transparent 16%);
  opacity:.55;
}

.hero-image img{
  width:480px;
  border-radius:8px;
  position:relative;
  z-index:2;
  filter:drop-shadow(0 26px 38px rgba(0,0,0,.2));
}

.aubergine-bowl{
  position:absolute;
  right:30px;
  top:80px;
  width:320px;
  height:210px;
  border-radius:50%;
  background:
    radial-gradient(circle at 62% 45%, #53224d 0 18%, transparent 19%),
    radial-gradient(circle at 48% 50%, #7d456c 0 20%, transparent 21%),
    #d1b27c;
  opacity:.75;
  transform:rotate(-8deg);
}

.cloth{
  position:absolute;
  right:20px;
  bottom:40px;
  width:360px;
  height:150px;
  background:linear-gradient(135deg,#3a173d,#261027);
  filter:blur(1px);
  border-radius:46% 54% 40% 45%;
  opacity:.55;
}

.values{
  background:linear-gradient(135deg,#2a0f2d,#3a173d);
  color:white;
  padding:22px 58px 32px;
  text-align:center;
}

.values h2{
  font-family:"Cormorant Garamond",serif;
  font-weight:500;
  font-size:24px;
  letter-spacing:2px;
  margin-bottom:22px;
}

.values-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.values .icon{
  color:#e2c15f;
  font-size:36px;
  display:block;
  margin-bottom:8px;
}

.values h3{
  font-family:"Cormorant Garamond",serif;
  font-size:18px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  margin-bottom:5px;
}

.values p{
  font-family:"Cormorant Garamond",serif;
  font-size:17px;
}

.shop{
  padding:28px 40px 30px;
  background:#fff9ef;
  text-align:center;
}

.shop h2{
  font-family:"Cormorant Garamond",serif;
  font-size:29px;
  letter-spacing:2px;
}

.underline{
  width:86px;
  height:1px;
  background:#b99846;
  margin:9px auto 26px;
}

.product-row{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}

.product img{
  width:100%;
  height:165px;
  object-fit:cover;
  display:block;
}

.product h3{
  font-family:"Cormorant Garamond",serif;
  font-size:17px;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-top:12px;
}

.product p{
  font-family:"Cormorant Garamond",serif;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:1px;
  margin-top:3px;
}

.product span{
  display:inline-block;
  margin-top:8px;
  text-transform:uppercase;
  border-bottom:1px solid var(--text);
  font-size:11px;
  letter-spacing:1px;
  font-weight:700;
}

.product.available span{
  color:#7b5e16;
  border-color:#7b5e16;
}

.available-now{
  display:grid;
  grid-template-columns:44% 56%;
  background:var(--purple);
  color:white;
  min-height:520px;
}

.available-copy{
  padding:70px 58px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.kicker{
  color:#e0bf61;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:13px;
  font-weight:700;
  margin-bottom:13px;
}

.available-copy h2,
.comfort-copy h2,
.story-text h2,
.coming-soon h2,
.recipes h2,
.journal h2,
.signup h2{
  font-family:"Cormorant Garamond",serif;
  font-size:46px;
  line-height:1;
  margin-bottom:18px;
}

.available-copy p,
.comfort-copy p,
.story-text p,
.coming-soon p,
.journal p{
  font-size:18px;
  line-height:1.7;
  margin-bottom:24px;
}

.available-photo{
  display:flex;
  justify-content:center;
  align-items:center;
  background:#f4ead9;
}

.available-photo img{
  width:430px;
  max-width:85%;
  border-radius:12px;
  box-shadow:0 24px 60px rgba(0,0,0,.18);
}

.comfort{
  display:grid;
  grid-template-columns:37% 63%;
  background:linear-gradient(135deg,#2a0f2d,#3d1741);
  color:white;
}

.comfort-copy{
  padding:52px 58px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.comfort img{
  width:100%;
  height:360px;
  object-fit:cover;
}

.service-strip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  padding:22px 8%;
  background:#fff9ef;
  border-bottom:1px solid #d5c8b8;
}

.service-strip div{
  border-right:1px solid #cfc1af;
  padding-left:55px;
}

.service-strip div:last-child{border-right:0}
.service-strip strong{
  display:block;
  text-transform:uppercase;
  letter-spacing:1.5px;
  font-size:13px;
}
.service-strip span{
  font-size:13px;
  color:#5f4b5d;
}

.story{
  background:#fff9ef;
  display:grid;
  grid-template-columns:48% 52%;
  gap:0;
}

.story-images{
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-auto-rows:220px;
}

.story-images img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.story-text{
  padding:70px 70px;
}

.story-text h2{
  color:var(--purple);
}

.story-text p{
  color:#4f394e;
  margin-bottom:17px;
}

.coming-soon,
.recipes,
.journal,
.signup{
  padding:70px 8%;
  text-align:center;
}

.coming-soon{
  background:#f5e7d4;
}

.recipes{
  background:#fbf3e7;
}

.recipe-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:34px;
}

.recipe-grid div{
  background:#fff9ef;
  padding:30px;
  border:1px solid #eadbc6;
}

.recipe-grid h3{
  font-family:"Cormorant Garamond",serif;
  font-size:28px;
  margin-bottom:10px;
}

.journal{
  background:#301233;
  color:white;
}

.signup{
  background:#fff9ef;
}

.signup form{
  display:flex;
  max-width:560px;
  margin:30px auto 0;
  border:1px solid var(--purple);
  background:white;
}

.signup input{
  flex:1;
  border:0;
  padding:18px;
  font-size:16px;
  outline:none;
}

.signup button{
  background:var(--purple);
  color:white;
  border:0;
  padding:0 28px;
  text-transform:uppercase;
  letter-spacing:1.5px;
  font-weight:700;
}

.footer{
  background:#1d0b20;
  color:white;
  padding:50px 8%;
  text-align:center;
}

.footer img{
  width:390px;
  max-width:90%;
  background:transparent;
  padding:0;
  margin-bottom:18px;
}

.footer p{
  margin-bottom:10px;
  color:rgba(255,255,255,.8);
}

@media(max-width:900px){
  .header{
    grid-template-columns:1fr auto;
    padding:18px 22px;
    height:auto;
  }
  .logo{
    width:260px;
    max-height:72px;
  }
  .nav,.header-icons{display:none}
  .hero,.available-now,.comfort,.story{
    grid-template-columns:1fr;
  }
  .hero-copy{padding:50px 28px}
  .hero h1{font-size:46px}
  .values-grid,.product-row,.recipe-grid,.service-strip{
    grid-template-columns:1fr;
  }
  .product img{height:230px}
  .story-images{grid-template-columns:1fr 1fr}
  .story-text{padding:45px 28px}
  .service-strip div{border:0;padding:15px 0;text-align:center}
}
