:root{
  --bg:#f4efe9;
  --bg-2:#efe6dd;
  --bg-3:#fbf8f4;
  --card:rgba(255,255,255,.74);

  --text:#151515;
  --muted:#6e6a65;

  --accent:#8b6249;
  --accent-2:#b89576;
  --accent-dark:#201813;

  --line:rgba(20,20,20,.08);
  --line-strong:rgba(20,20,20,.14);

  --shadow:0 20px 60px rgba(20,14,10,.08);
  --shadow-strong:0 30px 80px rgba(20,14,10,.14);

  --radius:24px;
  --radius-lg:32px;
  --max:1180px;

  --sans:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif:"Cormorant Garamond", Georgia, "Times New Roman", serif;
}

*{box-sizing:border-box}
html{
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
  touch-action:pan-y;
}
html.lock-scroll,
html.lock-scroll body{
  overflow:hidden;
}
body{
  margin:0;
  min-height:100%;
  font-family:var(--sans);
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 10% 0%, rgba(255,255,255,.85), transparent 60%),
    radial-gradient(1000px 650px at 100% 15%, rgba(194,163,138,.18), transparent 55%),
    linear-gradient(180deg, var(--bg-3) 0%, var(--bg) 48%, var(--bg-2) 100%);
  overflow-x:hidden;
  user-select:none;
  -webkit-user-select:none;
  -webkit-touch-callout:none;
}
a{
  color:inherit;
  text-decoration:none;
  -webkit-tap-highlight-color:transparent;
}
button,input,textarea{
  font-family:inherit;
}
input,textarea{
  user-select:text;
  -webkit-user-select:text;
}
img{
  max-width:100%;
  display:block;
  pointer-events:none;
  user-drag:none;
  -webkit-user-drag:none;
}
::selection{
  background:rgba(0,0,0,.08);
}

.siteGlow{
  position:fixed;
  pointer-events:none;
  z-index:0;
  filter:blur(70px);
  opacity:.55;
}
.siteGlow--one{
  width:340px;
  height:340px;
  left:-80px;
  top:90px;
  border-radius:50%;
  background:rgba(184,149,118,.24);
}
.siteGlow--two{
  width:280px;
  height:280px;
  right:-60px;
  top:240px;
  border-radius:50%;
  background:rgba(255,255,255,.65);
}
.siteNoise{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;
  opacity:.045;
  background-image:
    radial-gradient(circle at 25% 25%, #000 0.7px, transparent 0.8px),
    radial-gradient(circle at 75% 75%, #000 0.7px, transparent 0.8px);
  background-size:22px 22px, 28px 28px;
}

main, header, footer, .drawer{
  position:relative;
  z-index:1;
}

.container{
  width:min(var(--max), calc(100% - 28px));
  margin:0 auto;
}

.grid{display:grid; gap:20px}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:42px;
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.54);
  backdrop-filter:blur(16px);
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}
.pill--soft{
  background:rgba(255,255,255,.46);
}

.kicker{
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:11px;
  color:var(--muted);
}
.eyebrow{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:12px;
}
.h1{
  font-family:var(--serif);
  font-weight:600;
  font-size:clamp(42px, 9vw, 76px);
  line-height:.96;
  margin:10px 0 16px;
  letter-spacing:-.035em;
}
.h2{
  font-family:var(--serif);
  font-weight:600;
  font-size:clamp(28px, 6vw, 42px);
  line-height:1;
  letter-spacing:-.02em;
  margin:0 0 10px;
}
.lead{
  font-size:clamp(16px, 2.6vw, 20px);
  line-height:1.65;
  color:#2d2a27;
  max-width:58ch;
}
.muted{color:var(--muted)}
.hr{
  height:1px;
  background:var(--line);
  border:0;
  margin:24px 0;
}
.small{
  font-size:13px;
  color:var(--muted);
  line-height:1.65;
}

header.site{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(250,247,242,.66);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(0,0,0,.05);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
}
.brand{
  display:flex;
  flex-direction:column;
  line-height:1;
}
.brand strong{
  font-weight:800;
  letter-spacing:.02em;
}
.brand span{
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--muted);
  margin-top:7px;
}

.navlinks{
  display:flex;
  align-items:center;
  gap:8px;
}
.navlinks a{
  height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 14px;
  border-radius:999px;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  transition:background .22s ease, transform .22s ease, color .22s ease;
}
.navlinks a:hover{
  background:rgba(255,255,255,.65);
  transform:translateY(-1px);
}

.iconbar{
  display:flex;
  align-items:center;
  gap:10px;
}
.iconbtn{
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid var(--line);
  display:grid;
  place-items:center;
  cursor:pointer;
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.iconbtn--glass{
  background:rgba(255,255,255,.58);
  backdrop-filter:blur(14px);
  box-shadow:0 10px 28px rgba(0,0,0,.04);
}
.iconbtn:hover{
  transform:translateY(-1px);
  background:#fff;
  box-shadow:0 16px 36px rgba(0,0,0,.08);
}
.badge{
  position:absolute;
  transform:translate(12px,-12px);
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  background:#111;
  color:#fff;
  font-size:11px;
  display:grid;
  place-items:center;
}
.iconwrap{position:relative}
.burger{display:grid}

.drawer{
  position:fixed;
  inset:0 0 0 auto;
  width:min(420px, 88vw);
  padding:18px;
  background:rgba(248,244,239,.84);
  backdrop-filter:blur(22px);
  border-left:1px solid rgba(0,0,0,.08);
  transform:translateX(110%);
  transition:transform .28s ease;
  z-index:80;
}
.drawer.open{transform:translateX(0)}
.drawer .top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:8px;
}
.drawer .x{
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
}
.drawer a{
  display:block;
  padding:14px 14px;
  border-radius:18px;
  border:1px solid rgba(0,0,0,.07);
  background:rgba(255,255,255,.54);
  margin:10px 0;
  font-size:13px;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.hero{
  padding:18px 0 8px;
}
.heroShell{
  --mx:0px;
  --my:0px;
  position:relative;
}
.heroGrid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}

.card{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(20,20,20,.08);
  background:var(--card);
  backdrop-filter:blur(18px);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.34), transparent 36%),
    radial-gradient(circle at 0% 0%, rgba(255,255,255,.22), transparent 38%);
  pointer-events:none;
}
.card:hover{
  box-shadow:var(--shadow-strong);
}

.card--hero{
  padding:22px 18px;
  border-radius:30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.62)),
    rgba(255,255,255,.66);
}
.heroDecor{
  position:absolute;
  border-radius:50%;
  filter:blur(18px);
  pointer-events:none;
}
.heroDecor--one{
  width:180px;
  height:180px;
  top:-48px;
  right:-24px;
  background:rgba(184,149,118,.18);
  transform:translate(var(--mx), var(--my));
}
.heroDecor--two{
  width:120px;
  height:120px;
  left:-24px;
  bottom:16px;
  background:rgba(255,255,255,.86);
  transform:translate(calc(var(--mx) * -.7), calc(var(--my) * -.7));
}

.heroTopline{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
  margin-bottom:16px;
}
.heroBadge{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(20,20,20,.08);
  background:rgba(255,255,255,.62);
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#2d2824;
}
.heroTitle{
  max-width:10.8ch;
}
.heroTitle span{
  display:block;
}
.heroLead{
  max-width:46ch;
}
.heroStats{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin-top:20px;
}
.heroStat{
  padding:12px 14px;
  border-radius:18px;
  background:rgba(255,255,255,.52);
  border:1px solid rgba(20,20,20,.07);
}
.heroStat strong{
  display:block;
  font-size:15px;
  margin-bottom:4px;
}
.heroStat span{
  display:block;
  font-size:13px;
  color:var(--muted);
}
.heroPoints{
  display:grid;
  gap:10px;
  margin-top:18px;
  margin-bottom:20px;
}
.heroPoint{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:13px 14px;
  border-radius:20px;
  background:rgba(255,255,255,.55);
  border:1px solid rgba(20,20,20,.07);
}
.heroPoint > div{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.heroPoint strong{
  font-size:14px;
  font-weight:700;
}
.heroPoint span{
  font-size:13px;
  color:var(--muted);
}
.heroIcon{
  width:32px;
  height:32px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:#111;
  color:#fff;
  font-size:15px;
  flex:0 0 auto;
}

.heroActions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.heroActions--main{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:52px;
  padding:0 20px;
  border-radius:16px;
  border:1px solid transparent;
  font-size:12px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:active{
  transform:scale(.985);
}
.btn:hover{
  transform:translateY(-1px);
}
.btn-dark{
  background:#111;
  color:#fff;
  box-shadow:0 18px 38px rgba(0,0,0,.16);
}
.btn-dark:hover{
  box-shadow:0 24px 48px rgba(0,0,0,.22);
}
.btn-ghost{
  background:rgba(255,255,255,.56);
  color:#171717;
  border-color:rgba(0,0,0,.08);
}
.btn-ghost:hover{
  background:#fff;
}

.heroSide{
  display:grid;
  gap:16px;
}
.sideCard{
  padding:20px;
  min-height:170px;
}
.sideCard--large{
  min-height:220px;
}
.sideCardLabel{
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:10px;
}
.sideCardTitle{
  font-family:var(--serif);
  font-size:34px;
  line-height:.98;
  margin-bottom:10px;
  letter-spacing:-.03em;
}
.sideStack{
  display:grid;
  gap:16px;
}
.miniCard{
  padding:18px;
  min-height:150px;
}
.miniCardTitle{
  font-family:var(--serif);
  font-size:28px;
  line-height:1;
  letter-spacing:-.02em;
  margin:8px 0 8px;
}

.section{
  padding:22px 0;
}
.sectionTitle{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
  margin-bottom:16px;
}
.sectionTitle p{
  margin:0;
  max-width:60ch;
}

.offersSection{
  padding-top:6px;
}
.offersRail{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:minmax(270px, 84vw);
  gap:14px;
  overflow-x:auto;
  padding-bottom:8px;
  scroll-snap-type:x proximity;
  -webkit-overflow-scrolling:touch;
}
.offersRail::-webkit-scrollbar{
  height:7px;
}
.offersRail::-webkit-scrollbar-thumb{
  background:rgba(0,0,0,.16);
  border-radius:999px;
}

.offerCard{
  scroll-snap-align:start;
  min-height:290px;
  padding:20px;
  border-radius:28px;
  display:flex;
  flex-direction:column;
  gap:14px;
  justify-content:flex-start;
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.66)),
    rgba(255,255,255,.7);
}
.offerShine{
  position:absolute;
  inset:auto -40% 18% auto;
  width:180px;
  height:180px;
  border-radius:50%;
  background:rgba(255,255,255,.4);
  filter:blur(10px);
  pointer-events:none;
}
.offerCardTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
.offerBadge{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:8px 12px;
  border-radius:999px;
  font-size:10px;
  letter-spacing:.16em;
  text-transform:uppercase;
  border:1px solid rgba(0,0,0,.08);
}
.offerBadge--active{
  background:#111;
  color:#fff;
  border-color:#111;
}
.offerBadge--soon{
  background:rgba(255,255,255,.58);
  color:#111;
}
.offerDates{
  font-size:12px;
  color:var(--muted);
}
.offerTitle{
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--muted);
}
.offerSubtitle{
  font-family:var(--serif);
  font-size:29px;
  line-height:1;
  letter-spacing:-.03em;
}
.offerValue{
  font-size:28px;
  line-height:1;
  font-weight:800;
}
.offerNote{
  margin:0;
  font-size:14px;
  line-height:1.6;
  color:#2d2a27;
}
.offerCard--active{
  border-color:rgba(0,0,0,.14);
  box-shadow:0 24px 68px rgba(0,0,0,.12);
}

.cards{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}
.product{
  position:relative;
  display:block;
  padding:14px;
  border-radius:26px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 18px 48px rgba(0,0,0,.07);
  overflow:hidden;
  transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.product:hover{
  transform:translateY(-4px);
  box-shadow:0 28px 64px rgba(0,0,0,.12);
}
.productGlow{
  position:absolute;
  width:150px;
  height:150px;
  top:-28px;
  right:-30px;
  border-radius:50%;
  background:rgba(184,149,118,.12);
  filter:blur(20px);
  pointer-events:none;
}
.product .img{
  height:240px;
  border-radius:18px;
  border:1px solid rgba(0,0,0,.08);
  overflow:hidden;
  background:linear-gradient(135deg, rgba(0,0,0,.06), rgba(0,0,0,.02));
}
.product .img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s ease;
}
.product:hover .img img{
  transform:scale(1.03);
}
.product .meta{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  margin-top:14px;
}
.product h3{
  margin:0;
  font-family:var(--serif);
  font-size:24px;
  line-height:.98;
  letter-spacing:-.02em;
}
.product p{
  margin:8px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

.like{
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background:rgba(255,255,255,.9);
  display:grid;
  place-items:center;
  cursor:pointer;
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
  flex:0 0 auto;
}
.like:hover{
  transform:translateY(-1px);
  background:#fff;
}
.like[aria-pressed="true"]{
  background:#111;
  border-color:#111;
}
.like svg{
  width:18px;
  height:18px;
}
.like[aria-pressed="true"] svg path{
  fill:#fff;
  stroke:#fff;
}
.like-burst{
  animation:likeBurst .35s ease;
}
@keyframes likeBurst{
  0%{transform:scale(1)}
  40%{transform:scale(1.12)}
  100%{transform:scale(1)}
}

.note{
  padding:18px;
  border:1px solid rgba(0,0,0,.08);
  border-radius:24px;
  background:rgba(255,255,255,.62);
  box-shadow:var(--shadow);
}

.ctaPanel{
  padding:22px 18px;
  border-radius:30px;
  display:grid;
  gap:18px;
}
.ctaText{
  max-width:60ch;
}

.pageHead{
  padding:18px 0 8px;
}
.pageHead .card{
  padding:20px 18px;
  border-radius:28px;
}

.detailGridWrap{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  padding:18px;
}
.detailImage{
  height:360px;
  border-radius:22px;
  border:1px solid rgba(0,0,0,.08);
  overflow:hidden;
  background:linear-gradient(135deg, rgba(0,0,0,.06), rgba(0,0,0,.02));
}
.detailMeta{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.detailActions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:6px;
}

.form{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}
.field{
  display:flex;
  flex-direction:column;
  gap:8px;
}
label{
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
}
input,textarea{
  border:1px solid rgba(0,0,0,.12);
  border-radius:16px;
  padding:14px 14px;
  background:rgba(255,255,255,.88);
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
textarea{
  min-height:140px;
  resize:vertical;
}
input:focus,textarea:focus{
  border-color:rgba(0,0,0,.28);
  box-shadow:0 14px 32px rgba(0,0,0,.08);
  background:#fff;
}
.formActions{
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:stretch;
}

.toast{
  position:fixed;
  right:12px;
  bottom:12px;
  max-width:min(390px, calc(100% - 24px));
  padding:14px 16px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(18,18,18,.96), rgba(28,28,28,.92));
  color:#fff;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 20px 60px rgba(0,0,0,.28);
  transform:translateY(20px);
  opacity:0;
  pointer-events:none;
  transition:transform .22s ease, opacity .22s ease;
  z-index:120;
  font-size:14px;
  line-height:1.5;
  backdrop-filter:blur(14px);
}
.toast.show{
  transform:translateY(0);
  opacity:1;
}

.footer{
  padding:30px 0 38px;
  border-top:1px solid rgba(0,0,0,.06);
  background:rgba(255,255,255,.26);
  backdrop-filter:blur(14px);
}
.footer .cols{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}
.footer a{
  color:var(--muted);
}
.footer a:hover{
  color:#111;
}

.reveal{
  opacity:0;
  transform:translateY(24px) scale(.985);
  transition:
    opacity .75s cubic-bezier(.2,.7,.2,1),
    transform .75s cubic-bezier(.2,.7,.2,1);
}
.reveal.revealed{
  opacity:1;
  transform:none;
}
.reveal-delay-1{transition-delay:.06s}
.reveal-delay-2{transition-delay:.12s}
.reveal-delay-3{transition-delay:.18s}

@media (min-width: 760px){
  .container{
    width:min(var(--max), calc(100% - 40px));
  }

  .navlinks{
    display:flex;
  }
  .burger{
    display:grid;
  }

  .heroGrid{
    grid-template-columns:1.18fr .82fr;
    gap:18px;
  }

  .heroTopline{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
  }

  .heroStats{
    grid-template-columns:repeat(3, 1fr);
  }

  .sectionTitle{
    flex-direction:row;
    align-items:flex-end;
    justify-content:space-between;
  }

  .cards{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .footer .cols{
    grid-template-columns:1.1fr .9fr .9fr;
  }

  .form{
    grid-template-columns:1fr 1fr;
  }
  .formActions{
    grid-column:1 / -1;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
  }
}

@media (min-width: 1024px){
  .burger{display:none}

  .container{
    width:min(var(--max), calc(100% - 56px));
  }

  .cards{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }

  .offersRail{
    grid-auto-flow:unset;
    grid-template-columns:repeat(5, minmax(0, 1fr));
    overflow:visible;
  }

  .detailGridWrap{
    grid-template-columns:1.1fr .9fr;
    align-items:center;
  }

  .detailImage{
    height:420px;
  }
}

@media (max-width: 719px){
  .navlinks{display:none}

  .h1{
    font-size:clamp(40px, 11vw, 58px);
  }

  .heroTitle{
    max-width:none;
  }

  .sideCardTitle{
    font-size:30px;
  }

  .miniCardTitle{
    font-size:24px;
  }

  .offerSubtitle{
    font-size:26px;
  }

  .offerValue{
    font-size:24px;
  }

  .btn,
  .iconbtn{
    min-height:48px;
  }
}

@media (prefers-reduced-motion: reduce){
  *{
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }
  .reveal{
    opacity:1 !important;
    transform:none !important;
  }
}