:root{
  --accent:#A98A5C;
  --ivory:#FAF8F3;
  --cream:#F4EEE3;
  --beige:#EAE0CC;
  --stone:#CFC3AE;
  --charcoal:#2B2823;
  --charcoal-soft:#6B6355;
  --line:#DFD4BE;
}
* { box-sizing: border-box; }
html,body { margin:0; padding:0; }
body{ background: var(--ivory); color: var(--charcoal); font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif; overflow-x: hidden; }
#page a { color: var(--accent); text-decoration:none; }
#page a:hover { color: var(--charcoal); }
#page ::selection { background: var(--beige); }

@keyframes fadeUp { from { opacity:0; transform: translateY(16px); } to { opacity:1; transform: translateY(0); } }
@keyframes spin { to { transform: rotate(360deg); } }
.reveal-1{ animation: fadeUp .8s ease both; animation-delay:.02s; }
.reveal-2{ animation: fadeUp .8s ease both; animation-delay:.14s; }
.reveal-3{ animation: fadeUp .8s ease both; animation-delay:.26s; }
.reveal-4{ animation: fadeUp .8s ease both; animation-delay:.38s; }
.reveal-5{ animation: fadeUp .9s ease both; animation-delay:.18s; }

.hover-zoom{ overflow:hidden; }
.hover-zoom img{ transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.hover-zoom:hover img{ transform: scale(1.06); }

#page .btn-outline{ color: var(--charcoal); transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease; cursor:pointer; }
#page .btn-outline:hover{ background: var(--charcoal); color: var(--ivory); transform: translateY(-3px); box-shadow: 0 14px 28px -16px rgba(43,40,35,.45); }
#page .btn-outline:active{ transform: translateY(-1px); }
#page .btn-outline:disabled, #page .btn-outline.is-disabled{ opacity:.4; cursor:not-allowed; }
#page .btn-outline:disabled:hover, #page .btn-outline.is-disabled:hover{ background:transparent; color:var(--charcoal); transform:none; box-shadow:none; }

.btn-solid{ transition: background .25s ease, transform .25s ease, box-shadow .25s ease; cursor:pointer; border:none; font-family:inherit; }
.btn-solid:hover{ background: var(--accent); transform: translateY(-3px); box-shadow: 0 14px 28px -16px rgba(43,40,35,.4); }
.btn-solid:active{ transform: translateY(-1px); }
.btn-solid:disabled{ opacity:.45; cursor:not-allowed; }
.btn-solid:disabled:hover{ background:var(--charcoal); transform:none; box-shadow:none; }

.arrow-link{ display:inline-flex; align-items:center; gap:6px; }
.arrow-link .arr{ display:inline-block; transition: transform .25s ease; }
.arrow-link:hover .arr{ transform: translateX(5px); }

.nav-link{ position:relative; padding-bottom:4px; }
.nav-link::after{ content:''; position:absolute; left:0; right:100%; bottom:0; height:1px; background: var(--accent); transition: right .28s ease; }
.nav-link:hover::after{ right:0; }

.cart-icon{ transition: transform .25s ease; }
.cart-icon:hover{ transform: scale(1.15) rotate(-6deg); }
.cart-badge{ position:absolute; top:-8px; right:-10px; min-width:16px; height:16px; padding:0 4px; border-radius:999px; background:var(--charcoal); color:var(--ivory); font-size:10px; line-height:16px; text-align:center; font-family:'Jost',sans-serif; }

.fam-card{ transition: transform .3s ease; }
.fam-card:hover{ transform: translateY(-8px); }

.swatch-wrap{ transition: transform .2s ease; }
.swatch-wrap:hover{ transform: translateY(-3px); }
.swatch{ transition: box-shadow .2s ease, transform .2s ease; box-shadow:0 0 0 2px var(--ivory), 0 0 0 3px transparent; }
.swatch.is-active{ box-shadow:0 0 0 2px var(--ivory), 0 0 0 3px var(--accent); transform: scale(1.1); }

.bubble{ position:absolute; border-radius:50%; filter: blur(46px); pointer-events:none; z-index:0; }

details.faq-item summary{ cursor:pointer; list-style:none; }
details.faq-item summary::-webkit-details-marker{ display:none; }
details.faq-item summary::marker{ content:''; }
.faq-chevron{ transition: transform .3s ease, border-color .3s ease; }
details.faq-item[open] .faq-chevron{ transform: rotate(45deg); border-color: var(--accent); }
.faq-wrap{ display:grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
details.faq-item[open] .faq-wrap{ grid-template-rows: 1fr; }

.spin-badge{ animation: spin 30s linear infinite; }

.reveal-on-scroll{ opacity:0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.9,.32,1); }
.reveal-on-scroll.is-visible{ opacity:1; transform: translateY(0); }
.fam-card.reveal-on-scroll:nth-child(1){ transition-delay:.02s; }
.fam-card.reveal-on-scroll:nth-child(2){ transition-delay:.09s; }
.fam-card.reveal-on-scroll:nth-child(3){ transition-delay:.16s; }
.fam-card.reveal-on-scroll:nth-child(4){ transition-delay:.23s; }
.fam-card.reveal-on-scroll:nth-child(5){ transition-delay:.30s; }
details.faq-item.reveal-on-scroll:nth-of-type(1){ transition-delay:.02s; }
details.faq-item.reveal-on-scroll:nth-of-type(2){ transition-delay:.1s; }
details.faq-item.reveal-on-scroll:nth-of-type(3){ transition-delay:.18s; }
details.faq-item.reveal-on-scroll:nth-of-type(4){ transition-delay:.26s; }
details.faq-item.reveal-on-scroll:nth-of-type(5){ transition-delay:.34s; }

.shop-pill{ position:fixed; right:26px; bottom:26px; z-index:40; display:flex; align-items:center; gap:10px; padding:14px 22px; background:var(--charcoal); color:var(--ivory); border-radius:999px; box-shadow:0 16px 32px -14px rgba(43,40,35,.5); opacity:0; transform: translateY(14px) scale(.94); pointer-events:none; transition: opacity .35s ease, transform .35s cubic-bezier(.22,.9,.32,1), background .25s ease; }
.shop-pill.show{ opacity:1; transform: translateY(0) scale(1); pointer-events:auto; }
.shop-pill:hover{ background: var(--accent); }
.shop-pill .dot{ width:6px; height:6px; border-radius:50%; background:var(--accent); flex-shrink:0; }

.mini-badge{ animation: spin 22s linear infinite; }

.bundle-row{ cursor:pointer; position:relative; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:16px 18px; transition: border-color .2s ease, background .2s ease; border:1px solid var(--line); background:transparent; }
.bundle-row.is-active{ border:1px solid var(--accent); background:var(--cream); }
.bundle-row .dot-fill{ width:8px; height:8px; border-radius:50%; background:transparent; }
.bundle-row.is-active .dot-fill{ background:var(--accent); }

/* Interior page header (non-homepage pages) */
.page-header{ position:relative; max-width:1240px; margin:0 auto; padding:90px 40px 60px; text-align:center; }
.page-header .eyebrow{ font-size:12px; letter-spacing:0.22em; color:var(--charcoal-soft); margin-bottom:18px; }
.page-header h1{ font-family:'Cormorant Garamond', serif; font-weight:500; font-style:italic; font-size:clamp(32px,4.2vw,48px); margin:0 0 18px; color:var(--charcoal); }
.page-header p{ font-family:'Cormorant Garamond', serif; font-style:italic; font-size:19px; color:var(--charcoal-soft); max-width:560px; margin:0 auto; }

/* Forms */
.field{ margin-bottom:22px; }
.field label{ display:block; font-size:11px; letter-spacing:0.14em; color:var(--charcoal-soft); margin-bottom:8px; }
.field input, .field textarea, .field select{
  width:100%; padding:13px 16px; border:1px solid var(--line); background:var(--ivory);
  font-family:'Jost',sans-serif; font-size:14px; color:var(--charcoal); outline:none;
  transition: border-color .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus{ border-color: var(--accent); }
.field textarea{ resize:vertical; min-height:120px; }

/* Cart */
.cart-line{ display:grid; grid-template-columns: 84px 1fr auto; gap:20px; align-items:center; padding:22px 0; border-bottom:1px solid var(--line); }
.cart-line img{ width:84px; height:84px; object-fit:cover; border:1px solid var(--line); }
.qty-control{ display:inline-flex; align-items:center; border:1px solid var(--line); }
.qty-control button{ width:30px; height:30px; background:none; border:none; font-size:14px; color:var(--charcoal); cursor:pointer; font-family:'Jost',sans-serif; }
.qty-control button:hover{ background:var(--cream); }
.qty-control span{ width:28px; text-align:center; font-size:13px; }
.remove-link{ font-size:11px; letter-spacing:0.08em; color:var(--charcoal-soft); text-decoration:underline; cursor:pointer; background:none; border:none; font-family:'Jost',sans-serif; padding:0; margin-top:6px; }
.remove-link:hover{ color:var(--charcoal); }

.notice-box{ background:var(--cream); border:1px solid var(--line); padding:18px 22px; font-size:13px; line-height:1.7; color:var(--charcoal-soft); margin-bottom:34px; }
