:root{
  --bg:#f4eee7;
  --surface:#fffaf4;
  --surface-2:#efe4d8;
  --ink:#231d18;
  --muted:#71665d;
  --line:rgba(35,29,24,.08);
  --gold:#c79552;
  --gold-dark:#a97635;
  --brown:#6d4d32;
  --shadow:0 20px 60px rgba(30,22,16,.08);
  --radius:8px;
  --radius-sm:6px;
}

html{
  scroll-behavior:smooth;
}

body.home-page{
  background:
    radial-gradient(circle at top left, rgba(201,149,82,.10), transparent 24%),
    linear-gradient(180deg, #fcf7f1 0%, var(--bg) 18%, #fffdf9 58%, var(--bg) 100%);
  color:var(--ink);
}

.home-page .container{
  max-width:1240px;
}

.home-page .header{
  background:rgba(252,248,242,.84);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(35,29,24,.06);
  box-shadow:0 1px 0 rgba(255,255,255,.65) inset;
}

.home-page .header .container{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:16px;
  padding:16px 20px;
}

.home-page .logo{
  font-family:"Playfair Display", Georgia, serif;
  font-size:28px;
  line-height:1;
  color:var(--ink);
}

.header-actions{
  display:flex;
  justify-content:flex-end;
}

.header-cart{
  position:relative;
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  border:0;
  background:transparent;
  padding:4px 2px;
  color:var(--ink);
  cursor:pointer;
}

.header-cart__icon{
  position:relative;
  display:grid;
  place-items:center;
  width:50px;
  height:50px;
  border-radius:16px;
  background:rgba(255,255,255,.65);
  box-shadow:0 10px 22px rgba(30,22,16,.06);
}

.header-cart__icon i{
  font-size:20px;
}

.header-cart__badge{
  position:absolute;
  top:-8px;
  right:-8px;
  min-width:22px;
  height:22px;
  padding:0 5px;
  border-radius:999px;
  background:var(--ink);
  color:#fff;
  font-size:12px;
  font-weight:700;
  display:grid;
  place-items:center;
  box-shadow:0 8px 18px rgba(0,0,0,.18);
}

.header-cart__label{
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--muted);
}

.home-page .nav{
  display:flex;
  gap:22px;
  align-items:center;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.home-page .nav a{
  opacity:.75;
}

.home-page .nav a:hover,
.home-page .nav a[aria-current="page"]{
  opacity:1;
}

.hero{
  position:relative;
  overflow:hidden;
  min-height:680px;
  background:
    linear-gradient(90deg, rgba(19,14,11,.76) 0%, rgba(19,14,11,.58) 26%, rgba(19,14,11,.22) 56%, rgba(19,14,11,.03) 100%),
    url('https://images.unsplash.com/photo-1555507036-ab1f4038808a?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  color:#fff;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02) 0%, rgba(29,18,12,.08) 100%);
}

.hero .container{
  position:relative;
  z-index:1;
  min-height:680px;
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(280px,.85fr);
  align-items:end;
  gap:28px;
  padding:92px 20px 72px;
}

.hero-copy{
  max-width:620px;
}

.eyebrow{
  margin:0 0 14px;
  font-size:12px;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:#f6d8b6;
}

.hero-copy h1{
  margin:0 0 18px;
  font-family:"Playfair Display", Georgia, serif;
  font-size:clamp(52px, 7vw, 92px);
  line-height:.92;
  max-width:8.5ch;
  letter-spacing:-.02em;
}

.hero-lede{
  max-width:42ch;
  margin:0 0 30px;
  font-size:17px;
  line-height:1.9;
  color:rgba(255,255,255,.86);
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 20px;
  border-radius:0;
  border:1px solid transparent;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
  transition:transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-dark{
  background:#1c1714;
  color:#fff;
}

.btn-dark:hover{
  background:#000;
}

.btn-light{
  background:rgba(255,255,255,.12);
  color:#fff;
  border-color:rgba(255,255,255,.18);
  backdrop-filter:blur(8px);
}

.btn-light:hover{
  background:rgba(255,255,255,.18);
}

.btn-light--dark{
  background:#fff;
  color:var(--ink);
  border-color:var(--line);
}

.btn-light--dark:hover{
  background:#f6f0ea;
}

.hero-card{
  justify-self:end;
  width:min(350px,100%);
  background:rgba(248,239,231,.92);
  backdrop-filter:blur(10px);
  color:var(--ink);
  padding:22px;
  box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,.45);
}

.hero-card__eyebrow{
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--gold-dark);
  margin-bottom:12px;
}

.hero-card h2{
  margin:0 0 10px;
  font-size:30px;
  line-height:1;
  font-family:"Playfair Display", Georgia, serif;
}

.hero-card p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  font-size:14px;
}

.hero-card__line{
  height:1px;
  background:rgba(35,29,24,.12);
  margin:18px 0;
}

.hero-card__meta{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
}

.hero-card__meta span{
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
}

.hero-card__meta strong{
  font-size:18px;
  color:var(--brown);
}

.section{
  padding:70px 0;
}

.section--cream{
  background:
    linear-gradient(180deg, rgba(255,255,255,.4), rgba(244,238,231,.88));
}

.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:22px;
}

.section-head h2{
  margin:0;
  font-family:"Playfair Display", Georgia, serif;
  font-size:30px;
  line-height:1.05;
  letter-spacing:-.01em;
}

.section-head span{
  color:var(--muted);
  font-size:14px;
}

.section-kicker{
  margin:0;
  color:var(--muted);
  font-size:13px;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.text-link,
.menu-link{
  appearance:none;
  border:0;
  background:none;
  padding:0;
  font:inherit;
  text-decoration:none;
  color:var(--gold-dark);
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:12px;
  cursor:pointer;
}

.edit-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

.edit-card{
  position:relative;
  min-height:320px;
  overflow:hidden;
  border-radius:var(--radius);
  cursor:pointer;
  box-shadow:0 14px 34px rgba(32,22,15,.06);
  background:#ddd;
}

.edit-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(20,13,9,.04) 0%, rgba(20,13,9,.44) 100%);
}

.edit-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s ease;
}

.edit-card:hover img{
  transform:scale(1.03);
}

.edit-card__content{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  min-height:320px;
  padding:22px;
  color:#fff;
}

.edit-card__content .eyebrow{
  color:#f6dcb9;
  margin-bottom:10px;
}

.edit-card__content h3{
  margin:0 0 8px;
  font-size:28px;
  line-height:1;
  font-family:"Playfair Display", Georgia, serif;
}

.edit-card__content p{
  margin:0 0 16px;
  color:rgba(255,255,255,.88);
  line-height:1.7;
  font-size:14px;
}

.edit-card__cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:fit-content;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#fff;
}

.featured-layout{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(0,.85fr);
  gap:24px;
  align-items:stretch;
}

.featured-spotlight{
  background:#fff;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.featured-spotlight__image{
  display:block;
  min-height:380px;
  overflow:hidden;
}

.featured-spotlight__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.featured-spotlight__content{
  padding:22px;
}

.featured-spotlight__content h3{
  margin:0 0 10px;
  font-family:"Playfair Display", Georgia, serif;
  font-size:34px;
  line-height:1;
}

.featured-spotlight__content p{
  margin:0;
  color:var(--muted);
  line-height:1.9;
  max-width:48ch;
}

.featured-spotlight__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:22px;
}

.featured-stack{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  align-content:start;
}

.featured-card{
  background:#fff;
  box-shadow:0 12px 26px rgba(32,22,15,.05);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.featured-card__image{
  position:relative;
  min-height:180px;
  overflow:hidden;
  background:#eee;
}

.featured-card__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s ease;
}

.featured-card:hover .featured-card__image img{
  transform:scale(1.03);
}

.featured-card__body{
  padding:16px;
  display:grid;
  gap:12px;
}

.card-meta{
  display:flex;
  justify-content:space-between;
  gap:12px;
  color:var(--gold-dark);
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.featured-card__body h4{
  margin:0;
  font-size:18px;
  line-height:1.2;
}

.featured-card__body p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  font-size:14px;
}

.card-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.card-actions .btn{
  padding:11px 14px;
  font-size:11px;
}

.menu-link-row{
  margin-top:22px;
  display:flex;
  justify-content:flex-end;
}

.menu-link{
  color:var(--ink);
  border-bottom:1px solid rgba(35,29,24,.35);
  padding-bottom:3px;
}

.reviews-section{
  background:#f8efe6;
}

.notes-shell{
  position:relative;
}

.review-track{
  display:flex;
  gap:16px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:6px 6px 16px;
  scrollbar-width:none;
}

.review-track::-webkit-scrollbar{
  display:none;
}

.review-card{
  flex:0 0 min(360px, 88vw);
  scroll-snap-align:start;
  background:rgba(255,255,255,.6);
  backdrop-filter:blur(8px);
  box-shadow:0 14px 30px rgba(35,25,18,.05);
  padding:24px;
  position:relative;
}

.review-card::before{
  content:"“";
  position:absolute;
  top:16px;
  right:18px;
  font-family:"Playfair Display", Georgia, serif;
  font-size:60px;
  line-height:1;
  color:rgba(199,149,82,.18);
}

.review-card__quote{
  margin:0 0 18px;
  font-size:16px;
  line-height:1.95;
  color:#3d332d;
}

.review-card__name{
  font-weight:700;
  margin:0;
  color:var(--brown);
}

.review-card__meta{
  margin:5px 0 0;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
}

.carousel-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:2;
  width:42px;
  height:42px;
  border:0;
  border-radius:999px;
  background:#fff;
  box-shadow:0 10px 24px rgba(35,25,18,.12);
  display:grid;
  place-items:center;
  cursor:pointer;
}

.carousel-arrow--left{
  left:-8px;
}

.carousel-arrow--right{
  right:-8px;
}

.carousel-arrow:disabled{
  opacity:.38;
  cursor:default;
}

.recent-grid{
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  gap:18px;
}

.image-card{
  position:relative;
  overflow:hidden;
  background:#efe8df;
  box-shadow:0 12px 28px rgba(35,25,18,.04);
  min-height:260px;
}

.image-card:nth-child(1){
  grid-column:span 7;
  min-height:360px;
}

.image-card:nth-child(2){
  grid-column:span 5;
  min-height:360px;
}

.image-card:nth-child(3){
  grid-column:span 5;
}

.image-card:nth-child(4){
  grid-column:span 7;
}

.image-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .45s ease;
}

.image-card:hover img{
  transform:scale(1.03);
}

.image-card__caption{
  position:absolute;
  left:16px;
  bottom:16px;
  padding:10px 12px;
  background:rgba(255,248,240,.86);
  backdrop-filter:blur(8px);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--ink);
}

.footer.home-footer{
  margin-top:0;
  background:#15110f;
}

.modal-message{
  position:fixed;
  left:50%;
  bottom:28px;
  transform:translateX(-50%);
  z-index:110;
  background:#1c1714;
  color:#fff;
  padding:12px 16px;
  box-shadow:0 16px 32px rgba(0,0,0,.18);
  font-size:13px;
  letter-spacing:.03em;
}

.backdrop{
  position:fixed;
  inset:0;
  z-index:90;
  background:rgba(20,14,10,.45);
  backdrop-filter:blur(3px);
}

.cart-drawer{
  position:fixed;
  inset:0 0 0 auto;
  width:min(480px, 100%);
  z-index:100;
  transform:translateX(104%);
  transition:transform .34s ease;
}

.cart-drawer.open{
  transform:translateX(0);
}

.cart-drawer__panel{
  height:100%;
  display:flex;
  flex-direction:column;
  background:
    linear-gradient(180deg, rgba(255,250,244,.98), rgba(246,236,226,.98));
  box-shadow:-30px 0 60px rgba(0,0,0,.16);
  border-left:1px solid rgba(35,29,24,.08);
}

.cart-drawer__head,
.cart-drawer__footer{
  padding:20px;
}

.cart-drawer__head{
  display:flex;
  align-items:start;
  justify-content:space-between;
  gap:16px;
  border-bottom:1px solid rgba(35,29,24,.08);
}

.cart-drawer__head h2{
  margin:2px 0 0;
  font-family:"Playfair Display", Georgia, serif;
  font-size:34px;
  line-height:1;
}

.icon-button{
  border:0;
  width:42px;
  height:42px;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.cart-drawer__body{
  flex:1;
  overflow:auto;
  padding:18px 20px;
  display:grid;
  gap:14px;
}

.cart-empty{
  display:grid;
  gap:10px;
  align-content:start;
  min-height:100%;
  padding-top:18px;
}

.cart-empty h3{
  margin:0;
  font-family:"Playfair Display", Georgia, serif;
  font-size:28px;
}

.cart-empty p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}

.cart-item{
  background:rgba(255,255,255,.74);
  backdrop-filter:blur(8px);
  padding:14px;
  display:grid;
  grid-template-columns:86px 1fr;
  gap:14px;
  box-shadow:0 10px 22px rgba(35,25,18,.05);
}

.cart-item__image{
  width:86px;
  height:86px;
  overflow:hidden;
  background:#eee;
}

.cart-item__image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.cart-item__body{
  display:grid;
  gap:8px;
}

.cart-item__top{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:start;
}

.cart-item__top h4{
  margin:0;
  font-size:16px;
  line-height:1.25;
}

.cart-item__top strong{
  color:var(--brown);
}

.cart-item__meta{
  color:var(--muted);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.qty-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.qty-stepper{
  display:inline-flex;
  align-items:center;
  background:#fff;
  box-shadow:0 8px 18px rgba(35,25,18,.04);
}

.qty-stepper button{
  width:34px;
  height:34px;
  border:0;
  background:transparent;
  cursor:pointer;
}

.qty-stepper span{
  width:30px;
  text-align:center;
  font-weight:700;
}

.remove-btn{
  border:0;
  background:none;
  color:var(--gold-dark);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  cursor:pointer;
  padding:0;
}

.cart-summary{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
}

.cart-summary span{
  color:var(--muted);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.cart-summary strong{
  font-size:26px;
  font-family:"Playfair Display", Georgia, serif;
}

.cart-drawer__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.modal{
  position:fixed;
  inset:0;
  z-index:105;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(20,14,10,.48);
  backdrop-filter:blur(4px);
}

.modal.open{
  display:flex;
}

.modal__panel{
  position:relative;
  width:min(980px, 100%);
  background:linear-gradient(180deg, rgba(255,250,244,.98), rgba(246,236,226,.98));
  box-shadow:0 30px 80px rgba(0,0,0,.22);
  overflow:hidden;
}

.modal__panel--editorial{
  display:grid;
  grid-template-columns:1.02fr .98fr;
}

.modal__panel--review{
  width:min(620px, 100%);
}

.modal__close{
  position:absolute;
  top:16px;
  right:16px;
  z-index:2;
}

.modal__image{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
}

.modal__content{
  padding:28px;
}

.modal__content h3{
  margin:0 0 14px;
  font-family:"Playfair Display", Georgia, serif;
  font-size:40px;
  line-height:1;
}

.modal__content p{
  margin:0;
  color:var(--muted);
  line-height:1.9;
}

.pill-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:20px 0 22px;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding:10px 12px;
  background:rgba(255,255,255,.76);
  box-shadow:0 8px 18px rgba(35,25,18,.04);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.modal__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}

.review-form{
  display:grid;
  gap:14px;
  margin-top:18px;
}

.review-form label{
  display:grid;
  gap:8px;
}

.review-form span{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
}

.review-form input,
.review-form textarea{
  width:100%;
  border:1px solid rgba(35,29,24,.10);
  background:#fff;
  padding:14px 15px;
  font:inherit;
  outline:none;
  resize:vertical;
}

.review-form input:focus,
.review-form textarea:focus{
  border-color:rgba(201,149,82,.55);
  box-shadow:0 0 0 4px rgba(201,149,82,.12);
}

.recent-section{
  padding-top:64px;
}

@media (max-width:1100px){
  .home-page .header .container{
    grid-template-columns:1fr auto;
  }

  .home-page .nav{
    display:none;
  }

  .hero-grid,
  .featured-layout,
  .modal__panel--editorial{
    grid-template-columns:1fr;
  }

  .hero-grid{
    padding:80px 20px 54px;
  }

  .edit-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .featured-stack{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .recent-grid{
    grid-template-columns:repeat(6,minmax(0,1fr));
  }

  .image-card:nth-child(1),
  .image-card:nth-child(2),
  .image-card:nth-child(3),
  .image-card:nth-child(4){
    grid-column:span 3;
    min-height:280px;
  }

  .modal__image{
    min-height:300px;
  }

  .carousel-arrow--left{
    left:2px;
  }

  .carousel-arrow--right{
    right:2px;
  }
}

@media (max-width:720px){
  .hero{
    min-height:auto;
  }

  .hero .container{
    min-height:auto;
  }

  .hero-grid{
    padding:70px 16px 36px;
  }

  .hero-copy h1{
    font-size:clamp(42px, 12vw, 60px);
    max-width:none;
  }

  .hero-card{
    justify-self:stretch;
  }

  .section{
    padding:54px 0;
  }

  .section-head{
    flex-direction:column;
    align-items:start;
  }

  .edit-grid,
  .featured-stack,
  .recent-grid{
    grid-template-columns:1fr;
  }

  .image-card:nth-child(1),
  .image-card:nth-child(2),
  .image-card:nth-child(3),
  .image-card:nth-child(4){
    grid-column:span 1;
    min-height:240px;
  }

  .review-card{
    flex-basis:84vw;
  }

  .notes-shell{
    padding:0 8px;
  }

  .carousel-arrow{
    width:38px;
    height:38px;
  }

  .carousel-arrow--left{
    left:-2px;
  }

  .carousel-arrow--right{
    right:-2px;
  }

  .cart-drawer{
    width:100%;
  }

  .modal{
    padding:14px;
  }

  .modal__content{
    padding:22px;
  }

  .modal__content h3{
    font-size:34px;
  }

  .cart-item{
    grid-template-columns:74px 1fr;
  }
}


/* --- Homepage refresh overrides --- */
body.is-layer-open{
  overflow:hidden;
}

.home-page .header{
  min-height:64px;
}

.home-page .header .container{
  grid-template-columns:auto 1fr auto;
  padding:10px 20px;
  gap:14px;
}

.header-start{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.home-page .logo{
  font-size:24px;
  letter-spacing:-.02em;
  justify-self:center;
}

.header-actions{
  justify-self:end;
}

.header-cart{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:2px;
  padding:0;
  min-width:56px;
  background:none;
  border:0;
  color:var(--ink);
}

.header-cart:hover{
  transform:none;
}

.header-cart__icon{
  position:relative;
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  border-radius:0;
  background:none;
  box-shadow:none;
}

.header-cart__icon i{
  font-size:20px;
  color:var(--ink);
}

.header-cart__badge{
  position:absolute;
  top:-5px;
  right:-6px;
  min-width:18px;
  height:18px;
  padding:0 4px;
  border-radius:999px;
  background:var(--gold-dark);
  color:#fff;
  font-size:10px;
  line-height:18px;
  font-weight:700;
  box-shadow:0 6px 14px rgba(167,118,53,.3);
}

.header-cart__label{
  font-size:10px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
}

.menu-toggle{
  display:none;
  align-items:center;
  gap:8px;
  padding:0;
  border:0;
  background:none;
  color:var(--ink);
  font:inherit;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:11px;
  cursor:pointer;
}

.menu-toggle i{
  font-size:18px;
}

.mobile-menu{
  position:fixed;
  inset:0;
  z-index:95;
  display:none;
  pointer-events:none;
}

.mobile-menu.open{
  display:block;
  pointer-events:auto;
}

.mobile-menu__panel{
  position:absolute;
  top:0;
  left:0;
  width:min(360px, 88vw);
  height:100%;
  background:rgba(252,247,241,.98);
  backdrop-filter:blur(18px);
  border-right:1px solid rgba(35,29,24,.08);
  box-shadow:20px 0 50px rgba(0,0,0,.12);
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:24px;
  transform:translateX(-102%);
  transition:transform .34s ease;
}

.mobile-menu.open .mobile-menu__panel{
  transform:translateX(0);
}

.mobile-menu__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}

.mobile-menu__head h2{
  margin:6px 0 0;
  font-family:"Playfair Display", Georgia, serif;
  font-size:34px;
  line-height:1;
}

.mobile-menu__nav{
  display:grid;
  gap:10px;
}

.mobile-menu__nav a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  border-bottom:1px solid rgba(35,29,24,.08);
  color:var(--ink);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:12px;
}

.mobile-menu__nav a::after{
  content:"›";
  color:var(--gold-dark);
  font-size:18px;
}

.mobile-menu__note{
  margin-top:auto;
  padding:16px;
  background:rgba(255,255,255,.7);
  border:1px solid rgba(35,29,24,.06);
}

.mobile-menu__note p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}

.featured-masonry{
  column-count:3;
  column-gap:16px;
  column-fill:balance;
}

.featured-card{
  break-inside:avoid;
  display:inline-block;
  width:100%;
  margin:0 0 16px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 12px 26px rgba(32,22,15,.05);
}

.featured-card--lead .featured-card__image{
  min-height:290px;
}

.featured-card__image{
  display:block;
  min-height:220px;
  overflow:hidden;
  background:#eee;
}

.featured-card__image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .45s ease;
}

.featured-card:hover .featured-card__image img{
  transform:scale(1.03);
}

.featured-card__body{
  padding:16px;
  display:grid;
  gap:12px;
}

.card-meta{
  display:flex;
  justify-content:space-between;
  gap:12px;
  color:var(--gold-dark);
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.featured-card__body h4{
  margin:0;
  font-size:18px;
  line-height:1.2;
}

.featured-card__body p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  font-size:14px;
}

.card-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.card-actions .btn{
  padding:11px 14px;
  font-size:11px;
}

.reviews-section{
  background:#f8efe6;
}

.notes-shell{
  position:relative;
}

.review-track{
  display:flex;
  gap:16px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:6px 6px 16px;
  scrollbar-width:none;
}

.review-track::-webkit-scrollbar{
  display:none;
}

.review-card{
  flex:0 0 min(360px, 88vw);
  scroll-snap-align:start;
  background:rgba(255,255,255,.7);
  border:1px solid rgba(35,29,24,.05);
  box-shadow:0 14px 30px rgba(35,25,18,.05);
  padding:24px;
  position:relative;
}

.review-card::before{
  content:"“";
  position:absolute;
  top:16px;
  right:18px;
  font-family:"Playfair Display", Georgia, serif;
  font-size:60px;
  line-height:1;
  color:rgba(199,149,82,.18);
}

.review-card__quote{
  margin:0 0 18px;
  font-size:16px;
  line-height:1.95;
  color:#3d332d;
}

.review-card__name{
  font-weight:700;
  margin:0;
  color:var(--brown);
}

.review-card__meta{
  margin:5px 0 0;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
}

.carousel-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:2;
  width:42px;
  height:42px;
  border:0;
  border-radius:999px;
  background:#fff;
  box-shadow:0 10px 24px rgba(35,25,18,.12);
  display:grid;
  place-items:center;
  cursor:pointer;
}

.carousel-arrow--left{
  left:-8px;
}

.carousel-arrow--right{
  right:-8px;
}

.carousel-arrow:disabled{
  opacity:.38;
  cursor:default;
}

.recent-grid{
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  gap:18px;
}

.image-card{
  position:relative;
  overflow:hidden;
  background:#efe8df;
  box-shadow:0 12px 28px rgba(35,25,18,.04);
  min-height:260px;
}

.image-card:nth-child(1){
  grid-column:span 7;
  min-height:360px;
}

.image-card:nth-child(2){
  grid-column:span 5;
  min-height:360px;
}

.image-card:nth-child(3){
  grid-column:span 5;
}

.image-card:nth-child(4){
  grid-column:span 7;
}

.image-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .45s ease;
}

.image-card:hover img{
  transform:scale(1.03);
}

.image-card__caption{
  position:absolute;
  left:16px;
  bottom:16px;
  padding:10px 12px;
  background:rgba(255,248,240,.88);
  backdrop-filter:blur(8px);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--ink);
}

.footer.home-footer{
  margin-top:0;
  background:#15110f;
}

.footer-grid{
  gap:22px;
}

.footer.home-footer a,
.footer.home-footer p,
.footer.home-footer .brand,
.footer.home-footer h4,
.footer.home-footer li,
.footer.home-footer .footer-bottom{
  color:#f4e8db;
}

.footer.home-footer a{
  opacity:.82;
}

.footer.home-footer a:hover{
  opacity:1;
}

.cart-drawer{
  position:fixed;
  inset:0 0 0 auto;
  width:min(520px, 100%);
  z-index:100;
  transform:translateX(104%);
  transition:transform .34s ease;
}

.cart-drawer.open{
  transform:translateX(0);
}

.cart-drawer__panel{
  height:100%;
  display:flex;
  flex-direction:column;
  background:linear-gradient(180deg, #fffaf4 0%, #f6eee4 100%);
  box-shadow:-18px 0 48px rgba(0,0,0,.14);
}

.cart-drawer__head,
.cart-drawer__footer{
  padding:20px;
  border-color:rgba(35,29,24,.08);
}

.cart-drawer__head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  border-bottom:1px solid rgba(35,29,24,.08);
}

.cart-drawer__head h2{
  margin:6px 0 0;
  font-family:"Playfair Display", Georgia, serif;
  font-size:42px;
  line-height:1;
}

.cart-drawer__body{
  flex:1;
  overflow:auto;
  padding:16px 20px 10px;
}

.cart-overview{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:12px;
  margin-bottom:16px;
}

.cart-overview__count,
.cart-overview__note{
  background:rgba(255,255,255,.7);
  border:1px solid rgba(35,29,24,.06);
  padding:16px;
}

.cart-overview__count span{
  display:block;
  font-family:"Playfair Display", Georgia, serif;
  font-size:40px;
  line-height:1;
  color:var(--gold-dark);
}

.cart-overview__count p,
.cart-overview__note span{
  margin:8px 0 0;
  color:var(--muted);
  line-height:1.7;
}

.cart-items{
  display:grid;
  gap:12px;
}

.cart-item{
  display:grid;
  grid-template-columns:84px 1fr;
  gap:14px;
  padding:12px;
  background:rgba(255,255,255,.74);
  border:1px solid rgba(35,29,24,.06);
}

.cart-item__image{
  overflow:hidden;
  background:#efe8df;
}

.cart-item__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.cart-item__top h4{
  margin:0;
  font-size:18px;
  line-height:1.15;
}

.cart-item__meta{
  margin-top:6px;
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold-dark);
}

.cart-item__top{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
}

.qty-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:14px;
}

.qty-stepper{
  display:inline-flex;
  align-items:center;
  gap:12px;
  background:#fff;
  border:1px solid rgba(35,29,24,.08);
  padding:6px 10px;
}

.qty-stepper button{
  width:28px;
  height:28px;
  border:0;
  background:transparent;
  font-size:20px;
  cursor:pointer;
}

.remove-btn{
  border:0;
  background:none;
  padding:0;
  font:inherit;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:11px;
  cursor:pointer;
}

.cart-empty{
  display:grid;
  gap:14px;
  padding:20px;
  background:rgba(255,255,255,.8);
  border:1px solid rgba(35,29,24,.06);
}

.cart-empty h3{
  margin:0;
  font-family:"Playfair Display", Georgia, serif;
  font-size:34px;
  line-height:1;
}

.cart-drawer__footer{
  border-top:1px solid rgba(35,29,24,.08);
  background:rgba(255,255,255,.5);
}

.cart-summary{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  margin-bottom:14px;
  font-size:18px;
}

.cart-drawer__actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.menu-link-row{
  margin-top:22px;
  display:flex;
  justify-content:flex-end;
}

.menu-link{
  color:var(--ink);
  border-bottom:1px solid rgba(35,29,24,.35);
  padding-bottom:3px;
}

.recent-section{
  padding-top:64px;
}

@media (max-width:1100px){
  .home-page .header .container{
    grid-template-columns:auto 1fr auto;
  }

  .home-page .nav{
    display:none;
  }

  .menu-toggle{
    display:inline-flex;
  }

  .hero-grid,
  .modal__panel--editorial{
    grid-template-columns:1fr;
  }

  .hero-grid{
    padding:80px 20px 54px;
  }

  .edit-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .featured-masonry{
    column-count:2;
  }

  .recent-grid{
    grid-template-columns:repeat(6,minmax(0,1fr));
  }

  .image-card:nth-child(1),
  .image-card:nth-child(2),
  .image-card:nth-child(3),
  .image-card:nth-child(4){
    grid-column:span 3;
    min-height:280px;
  }

  .modal__image{
    min-height:300px;
  }

  .carousel-arrow--left{
    left:2px;
  }

  .carousel-arrow--right{
    right:2px;
  }
}

@media (max-width:720px){
  .home-page .header .container{
    padding:10px 14px;
    gap:10px;
  }

  .home-page .logo{
    font-size:20px;
  }

  .header-cart{
    min-width:48px;
  }

  .header-cart__label{
    font-size:9px;
  }

  .hero{
    min-height:auto;
  }

  .hero .container{
    min-height:auto;
  }

  .hero-grid{
    padding:66px 16px 30px;
  }

  .hero-copy .eyebrow,
  .hero-lede,
  .hero-card{
    display:none;
  }

  .hero-copy h1{
    font-size:clamp(40px, 13vw, 58px);
    max-width:10ch;
  }

  .hero-actions{
    margin-top:18px;
  }

  .section{
    padding:54px 0;
  }

  .section-head{
    flex-direction:column;
    align-items:start;
  }

  .edit-grid{
    display:flex;
    gap:12px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    padding-bottom:8px;
    -webkit-overflow-scrolling:touch;
  }

  .edit-card{
    flex:0 0 min(84vw, 340px);
    scroll-snap-align:start;
    min-height:280px;
  }

  .featured-masonry{
    column-count:2;
    column-gap:12px;
  }

  .featured-card{
    margin-bottom:12px;
  }

  .featured-card--lead .featured-card__image{
    min-height:220px;
  }

  .featured-card__image{
    min-height:180px;
  }

  .featured-card__body{
    padding:14px;
  }

  .featured-card__body h4{
    font-size:16px;
  }

  .card-actions .btn{
    flex:1 1 100%;
    justify-content:center;
  }

  .recent-grid{
    display:flex;
    gap:12px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    padding-bottom:8px;
    -webkit-overflow-scrolling:touch;
  }

  .image-card{
    flex:0 0 min(76vw, 290px);
    min-height:240px;
    scroll-snap-align:start;
  }

  .image-card:nth-child(1),
  .image-card:nth-child(2),
  .image-card:nth-child(3),
  .image-card:nth-child(4){
    grid-column:span 1;
    min-height:240px;
  }

  .notes-shell{
    padding:0 8px;
  }

  .carousel-arrow{
    width:38px;
    height:38px;
  }

  .carousel-arrow--left{
    left:-2px;
  }

  .carousel-arrow--right{
    right:-2px;
  }

  .cart-drawer{
    width:100%;
  }

  .cart-drawer__head h2{
    font-size:34px;
  }

  .cart-overview{
    grid-template-columns:1fr;
  }

  .cart-item{
    grid-template-columns:74px 1fr;
  }

  .footer-grid{
    display:flex;
    overflow-x:auto;
    gap:12px;
    padding-bottom:8px;
    -webkit-overflow-scrolling:touch;
  }

  .footer-grid > div{
    flex:0 0 min(72vw, 260px);
    background:rgba(255,255,255,.03);
    padding:14px;
    border:1px solid rgba(255,255,255,.06);
  }

  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .modal{
    padding:14px;
  }

  .modal__content{
    padding:22px;
  }

  .modal__content h3{
    font-size:34px;
  }
}

/* =========================================
   Homepage mobile layout refinements
   Paste at the end of home.css
========================================= */

/* Reduce Atelier edits card size on mobile */
@media (max-width: 768px) {
  .edit-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .edit-card {
    flex: 0 0 min(74vw, 300px);
    min-height: 250px;
    scroll-snap-align: start;
  }

  .edit-card__content {
    min-height: 250px;
    padding: 18px;
  }

  .edit-card__content h3 {
    font-size: 22px;
  }

  .edit-card__content p {
    font-size: 13px;
  }
}

/* Remove horizontal scrolling from Recent images and make it a grid */
@media (max-width: 768px) {
  .recent-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    overflow: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .image-card {
    width: 100%;
    min-width: 0;
    min-height: 190px;
  }
}

@media (max-width: 480px) {
  .recent-grid {
    grid-template-columns: 1fr;
  }

  .image-card {
    min-height: 210px;
  }
}

/* Remove horizontal scrolling from Footer and make it a grid */
@media (max-width: 768px) {
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    overflow: visible;
    padding-bottom: 0;
  }

  .footer-grid > div {
    min-width: 0;
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   FORCE product images to fill their container on mobile
   Paste at the end of your stylesheet
========================================================= */

@media (max-width: 768px) {
  /* Make the card behave nicely if the image sits above text */
  .product-card,
  .product-item,
  .shop-card,
  .featured-product-card {
    display: flex;
    flex-direction: column;
  }

  /* Common image wrapper names */
  .product-card__image,
  .product-image,
  .product-media,
  .product-thumb,
  .card-image,
  .shop-card__image,
  .featured-product-card__image,
  .product-card > a:first-child,
  .product-item > a:first-child {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    background: #f4efe8;
    line-height: 0;
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
  }

  /* The actual image must fill the wrapper completely */
  .product-card__image img,
  .product-image img,
  .product-media img,
  .product-thumb img,
  .card-image img,
  .shop-card__image img,
  .featured-product-card__image img,
  .product-card img,
  .product-item img,
  .shop-card img,
  .featured-product-card img {
    width: 100% !important;
    height: 100% !important;
    min-width: 100%;
    min-height: 100%;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center;
    display: block;
  }

  /* Remove any accidental spacing around the media area */
  .product-card__image *,
  .product-image *,
  .product-media *,
  .product-thumb *,
  .card-image *,
  .shop-card__image *,
  .featured-product-card__image * {
    margin: 0;
  }
}


/* --- Homepage refresh overrides --- */
.home-page .header{
  min-height:64px;
}

.home-page .header .container{
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:14px;
  padding:12px 20px;
}

.home-page .logo{
  display:flex;
  align-items:center;
  gap:12px;
  justify-self:center;
  font-family:"Playfair Display", Georgia, serif;
  font-size:24px;
  line-height:1;
  letter-spacing:-.02em;
  color:var(--ink);
}

.logo__image{
  width:auto;
  height:42px;
  display:block;
  object-fit:contain;
}

.header-actions{
  justify-self:end;
}

.header-cart{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:2px;
  min-width:56px;
  padding:0;
  border:0;
  background:none;
  color:var(--ink);
  cursor:pointer;
}

.header-cart:hover{
  transform:none;
}

.header-cart__icon{
  position:relative;
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  border-radius:0;
  background:none;
  box-shadow:none;
}

.header-cart__icon i{
  font-size:20px;
}

.header-cart__badge{
  position:absolute;
  top:-5px;
  right:-6px;
  min-width:18px;
  height:18px;
  padding:0 4px;
  border-radius:999px;
  background:var(--gold-dark);
  color:#fff;
  font-size:10px;
  line-height:18px;
  font-weight:700;
  box-shadow:0 6px 14px rgba(167,118,53,.3);
}

.header-cart__label{
  font-size:10px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
}

.menu-toggle{
  display:flex;
  align-items:center;
  gap:8px;
  padding:0;
  border:0;
  background:none;
  color:var(--ink);
  font:inherit;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:11px;
  cursor:pointer;
}

.menu-toggle i{
  font-size:20px;
}

.hero{
  min-height:520px;
  background:
    linear-gradient(90deg, rgba(19,14,11,.74) 0%, rgba(19,14,11,.52) 30%, rgba(19,14,11,.18) 62%, rgba(19,14,11,.03) 100%),
    url('https://images.unsplash.com/photo-1555507036-ab1f4038808a?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}

.hero .container{
  min-height:520px;
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr);
  align-items:center;
  min-height:520px;
  padding:86px 20px 64px;
}

.hero-copy{
  max-width:640px;
}

.hero-copy h1{
  max-width:11ch;
}

.hero-lede{
  max-width:44ch;
}

.hero-actions{
  margin-top:4px;
}

.section-head--home h2{
  font-family:"Playfair Display", Georgia, serif;
  font-size:clamp(28px, 3vw, 44px);
  line-height:1.02;
  margin:0;
}

.section-head--home span,
.section-kicker{
  color:var(--muted);
}

.section-kicker{
  max-width:24ch;
  text-align:right;
  line-height:1.7;
}

.fresh-section{
  overflow:hidden;
}

.fresh-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.fresh-card{
  display:block;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(35,29,24,.08);
  box-shadow:0 14px 34px rgba(30,20,14,.06);
  transition:transform .2s ease, box-shadow .2s ease;
  color:inherit;
}

.fresh-card:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 42px rgba(30,20,14,.09);
}

.fresh-card__image{
  aspect-ratio:4 / 3;
  overflow:hidden;
}

.fresh-card__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .45s ease;
}

.fresh-card:hover .fresh-card__image img{
  transform:scale(1.03);
}

.fresh-card__body{
  padding:18px 18px 20px;
  display:grid;
  gap:10px;
}

.fresh-card__body h3{
  margin:0;
  font-family:"Playfair Display", Georgia, serif;
  font-size:24px;
  line-height:1.08;
}

.fresh-card__body p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}

.fresh-card__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  padding:10px 14px;
  background:#171311;
  color:#fff;
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.story-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,.95fr);
  gap:30px;
  align-items:center;
}

.story-media{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(220px,.8fr);
  gap:16px;
  align-items:stretch;
}

.story-media__frame{
  position:relative;
  overflow:hidden;
  background:#efe7dd;
  border:1px solid rgba(35,29,24,.08);
  box-shadow:0 18px 44px rgba(30,20,14,.08);
  min-height:220px;
}

.story-media__frame--large{
  min-height:540px;
}

.story-media__frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.story-media__stack{
  display:grid;
  gap:16px;
}

.story-media__note{
  display:grid;
  align-content:end;
  padding:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.9), rgba(244,236,227,.92));
  border:1px solid rgba(35,29,24,.08);
  box-shadow:0 18px 44px rgba(30,20,14,.06);
}

.story-media__note p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}

.story-copy h2{
  margin:0 0 14px;
  font-family:"Playfair Display", Georgia, serif;
  font-size:clamp(34px, 4vw, 56px);
  line-height:1.02;
  max-width:10ch;
}

.story-copy p{
  color:var(--muted);
  line-height:1.9;
  margin:0 0 16px;
  max-width:60ch;
}

.story-highlights{
  display:grid;
  gap:12px;
  margin:26px 0 28px;
}

.story-highlights div{
  padding:14px 16px;
  background:rgba(255,255,255,.76);
  border:1px solid rgba(35,29,24,.08);
}

.story-highlights strong{
  display:block;
  margin-bottom:6px;
  font-size:14px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.story-highlights span{
  color:var(--muted);
  line-height:1.7;
}

.notes-shell{
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  gap:14px;
  align-items:center;
}

.review-track{
  scroll-padding:16px;
}

.instagram-shell{
  padding:18px;
  background:rgba(255,255,255,.74);
  border:1px solid rgba(35,29,24,.08);
  box-shadow:0 18px 44px rgba(30,20,14,.06);
  overflow:hidden;
}

.footer.home-footer{
  margin-top:0;
  background:#15110f;
}

.footer.home-footer a,
.footer.home-footer p,
.footer.home-footer .brand,
.footer.home-footer h4,
.footer.home-footer li,
.footer.home-footer .footer-bottom{
  color:#f4e8db;
}

.footer.home-footer a{
  opacity:.82;
}

.footer.home-footer a:hover{
  opacity:1;
}

.footer-logo{
  justify-self:start;
  margin-bottom:14px;
  font-size:22px;
}

.footer-brand{
  display:grid;
  gap:0;
}

.footer-brand p{
  margin:0 0 12px;
  line-height:1.8;
}

.footer-grid{
  gap:24px;
}

.footer-bottom{
  align-items:center;
}

.cart-drawer{
  width:min(480px, 100%);
}

.cart-drawer__panel{
  background:linear-gradient(180deg, #fffaf4 0%, #f6eee4 100%);
}

.cart-drawer__head h2{
  font-size:40px;
}

.cart-drawer__body{
  padding:18px 20px;
}

.cart-empty{
  padding:18px;
}

.cart-empty h3{
  font-size:28px;
}

.cart-item{
  background:rgba(255,255,255,.74);
  border:1px solid rgba(35,29,24,.06);
}

.cart-drawer__footer{
  background:rgba(255,255,255,.5);
}

.modal-message{
  position:fixed;
  left:50%;
  bottom:28px;
  transform:translateX(-50%);
  z-index:110;
  background:#1c1714;
  color:#fff;
  padding:12px 16px;
  box-shadow:0 16px 32px rgba(0,0,0,.18);
  font-size:13px;
  letter-spacing:.03em;
}

@media (max-width: 1120px){
  .fresh-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .story-grid{
    grid-template-columns:1fr;
  }

  .story-media{
    grid-template-columns:1fr 1fr;
  }

  .story-media__frame--large{
    min-height:460px;
  }
}

@media (max-width: 760px){
  .home-page .header .container{
    padding:12px 16px;
    gap:10px;
  }

  .home-page .logo{
    font-size:20px;
  }

  .logo__image{
  width:auto;
  height:42px;
  display:block;
  object-fit:contain;
}

  .menu-toggle{
    font-size:10px;
  }

  .menu-toggle i{
    font-size:22px;
  }

  .hero{
    min-height:460px;
  }

  .hero .container{
    min-height:460px;
  }

  .hero-grid{
    min-height:460px;
    padding:72px 16px 52px;
  }

  .hero-copy h1{
    max-width:11ch;
    font-size:clamp(40px, 10vw, 60px);
  }

  .hero-lede{
    font-size:16px;
  }

  .fresh-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .story-media{
    grid-template-columns:1fr;
  }

  .story-media__frame--large{
    min-height:320px;
  }

  .story-media__stack{
    grid-template-columns:1fr 1fr;
  }

  .section-head--home{
    gap:12px;
  }

  .section-kicker{
    text-align:left;
    max-width:none;
  }

  .notes-shell{
    grid-template-columns:1fr;
  }

  .carousel-arrow{
    display:none;
  }

  .instagram-shell{
    padding:12px;
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
    gap:18px;
  }

  .footer-grid > div:first-child{
    grid-column:1 / -1;
  }

  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .cart-drawer{
    width:min(100%, 100%);
  }

  .cart-drawer__head h2{
    font-size:34px;
  }
}


@media (min-width: 761px){
  .home-page .menu-toggle{display:none !important;}
}
