:root{
  --bg:#FAF7F2;
  --card:#E8D5C4;
  --text:#6B4226;
  --gold:#C9A84C;
  --shadow:0 18px 40px rgba(107,66,38,.14);
  --radius:18px;
  --radius-sm:14px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.55;
}

.container{
  width:min(1100px,92vw);
  margin-inline:auto;
}

.top{
  padding:44px 0 18px;
}

.hero{
  text-align:center;
  padding:18px 0 10px;
}

.brand{
  margin:0 0 10px;
  font-family:"Playfair Display",serif;
  font-weight:700;
  letter-spacing:.02em;
  color:var(--gold);
  font-size:clamp(26px,4vw,40px);
}

.tagline{
  margin:0 0 14px;
  font-weight:400;
  font-size:clamp(14px,2.2vw,16px);
}

.page-title{
  margin:0 0 22px;
  font-family:"Playfair Display",serif;
  color:var(--text);
  font-weight:600;
  font-size:clamp(20px,3.4vw,28px);
}

.hero-cta{display:flex;justify-content:center}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:999px;
  background:var(--gold);
  color:var(--bg);
  text-decoration:none;
  font-weight:600;
  letter-spacing:.01em;
  box-shadow:0 14px 30px rgba(201,168,76,.28);
  transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn:focus-visible{outline:3px solid rgba(201,168,76,.55);outline-offset:3px}
.btn:hover{transform:translateY(-1px);box-shadow:0 18px 44px rgba(201,168,76,.35);filter:saturate(1.03)}

.quicknav{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(250,247,242,.86);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(107,66,38,.10);
}

.pillbar{
  display:flex;
  gap:10px;
  padding:12px 0;
  overflow:auto;
  scrollbar-width:none;
}
.pillbar::-webkit-scrollbar{display:none}

.pill{
  flex:0 0 auto;
  border:1px solid rgba(201,168,76,.35);
  background:var(--card);
  color:var(--text);
  padding:10px 14px;
  border-radius:999px;
  font-weight:600;
  font-size:13px;
  letter-spacing:.01em;
  cursor:pointer;
  transition:background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.pill:focus-visible{outline:3px solid rgba(201,168,76,.55);outline-offset:3px}
.pill:hover{transform:translateY(-1px);box-shadow:0 12px 26px rgba(107,66,38,.10)}
.pill.is-active{
  background:var(--gold);
  color:var(--bg);
  border-color:rgba(201,168,76,.6);
  box-shadow:0 14px 30px rgba(201,168,76,.22);
}

.main{padding:18px 0 84px}
.section{padding:14px 0}

.card{
  background:var(--card);
  border-radius:var(--radius);
  border:1px solid rgba(201,168,76,.38);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.card-summary{
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:18px 18px;
  cursor:pointer;
  user-select:none;
}
.card summary::-webkit-details-marker{display:none}

.summary-left{display:flex;align-items:flex-start;gap:12px;min-width:0}

.icon{
  width:22px;
  height:22px;
  color:var(--gold);
  flex:0 0 auto;
  margin-top:2px;
}

.card-title{
  margin:0;
  font-family:"Playfair Display",serif;
  color:var(--text);
  font-weight:700;
  font-size:18px;
  letter-spacing:.01em;
}

.card-intro{margin:6px 0 0;font-size:13.5px;opacity:.92}

.chev{width:18px;height:18px;color:rgba(107,66,38,.85);flex:0 0 auto;transition:transform .25s ease}

details[open] .chev{transform:rotate(180deg)}

.card-body{padding:4px 18px 18px}

.subcat{padding:14px 0}

.subhead{
  margin:0;
  font-weight:600;
  font-size:14.5px;
  letter-spacing:.01em;
}

.divider{
  height:2px;
  width:52px;
  background:var(--gold);
  border-radius:999px;
  margin:10px 0 10px;
  opacity:.9;
}

.rows{display:flex;flex-direction:column;gap:10px}

.row{
  display:grid;
  grid-template-columns:minmax(0,1fr) 1fr auto;
  align-items:baseline;
  gap:10px;
  padding:10px 12px;
  border-radius:var(--radius-sm);
  background:rgba(250,247,242,.48);
  border:1px solid rgba(107,66,38,.08);
}

.name{font-size:13.5px;min-width:0}
.price{font-size:13.5px;font-weight:600;white-space:nowrap;text-align:right}

.dots{
  height:1px;
  align-self:center;
  background:repeating-linear-gradient(
    to right,
    rgba(107,66,38,.36) 0,
    rgba(107,66,38,.36) 2px,
    transparent 2px,
    transparent 7px
  );
  transform:translateY(-1px);
  opacity:.65;
}

.row-desc{
  grid-column:1 / -1;
  font-size:12px;
  font-weight:400;
  opacity:.78;
  margin-top:2px;
  line-height:1.45;
}

.note{margin:10px 0 0;font-size:12.5px;opacity:.92}

.mini-notes{margin-top:10px}
.mini-notes p{margin:6px 0;font-size:12.5px;opacity:.92}

.special{
  border:1px solid rgba(201,168,76,.62);
  border-radius:var(--radius);
  padding:14px 14px;
  background:rgba(250,247,242,.58);
  box-shadow:0 14px 32px rgba(201,168,76,.12);
}

.special-head{display:flex;align-items:center;gap:10px}
.spark{width:18px;height:18px;color:var(--gold)}

.policy{padding:16px 0 10px}
.policy-card{
  background:rgba(232,213,196,.72);
  border:1px solid rgba(201,168,76,.45);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}
.policy-head{display:flex;align-items:center;gap:12px;margin-bottom:8px}
.policy-icon{width:20px;height:20px;color:var(--gold)}
.policy-title{margin:0;font-family:"Playfair Display",serif;font-size:18px;color:var(--text);font-weight:700}
.policy-list{margin:10px 0 0;padding-left:18px}
.policy-list li{margin:8px 0;font-size:13.5px}

.footer{
  padding:18px 0 28px;
  border-top:1px solid rgba(107,66,38,.10);
  background:var(--bg);
}
.footer p{margin:0;text-align:center;color:var(--text);font-size:13.5px}

.floating-cta{
  position:fixed;
  left:50%;
  bottom:14px;
  transform:translateX(-50%);
  z-index:50;
  display:none;
  padding:12px 18px;
  border-radius:999px;
  background:var(--gold);
  color:var(--bg);
  text-decoration:none;
  font-weight:700;
  box-shadow:0 16px 38px rgba(107,66,38,.18), 0 16px 34px rgba(201,168,76,.25);
}
.floating-cta:focus-visible{outline:3px solid rgba(201,168,76,.55);outline-offset:3px}

@media (max-width: 820px){
  .floating-cta{display:inline-flex;align-items:center;justify-content:center;min-width:180px}
}

@media (max-width: 520px){
  .row{grid-template-columns:minmax(0,1fr) 1fr auto; padding:10px 10px}
  .name{font-size:13.25px}
  .price{font-size:13.25px}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .btn,.pill,.chev{transition:none}
}

.reveal{
  opacity:0;
  transform:translateY(10px);
  transition:opacity .55s ease, transform .55s ease;
}
.reveal.is-visible{opacity:1;transform:none}

@media (min-width: 900px){
  details.card{scroll-margin-top:88px}
}
@media (max-width: 899px){
  details.card{scroll-margin-top:120px}
}
