@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root{
  --ink:#111; --muted:#70706b; --bg:#f8f7f3; --cream:#eeeae1; --line:#e2e1da; --line2:#ecebe4;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--bg);color:var(--ink);font-family:"DM Sans",Helvetica,Arial,sans-serif;-webkit-font-smoothing:antialiased}
img{display:block;max-width:100%}
a{color:var(--ink);text-decoration:none}
a:hover{color:#4a4a44}
button,input,select{font:inherit}
button{cursor:pointer}
::selection{background:#111;color:#fff}
.h1-font{font-family:"Space Grotesk",sans-serif}

/* Announcement bar */
.announce{background:#111;color:#f4f3ef;font-size:11.5px;letter-spacing:.06em;padding:9px 5vw;display:flex;justify-content:center;gap:28px;flex-wrap:wrap;text-align:center}
.announce span.muted{opacity:.55}

/* Header */
.site-header{position:sticky;top:0;z-index:40;background:rgba(248,247,243,.94);backdrop-filter:blur(10px);border-bottom:1px solid var(--line)}
.header-row{max-width:1500px;margin:0 auto;height:76px;padding:0 4vw;display:flex;align-items:center;gap:24px}
.brand{display:flex;align-items:center;gap:10px;flex:0 0 auto}
.brand img{width:38px;height:38px;object-fit:contain}
.brand-name{font-family:"Space Grotesk",sans-serif;font-weight:700;font-size:21px;letter-spacing:-.045em;line-height:1}
.brand-tag{display:block;font-family:"DM Sans",sans-serif;font-size:7.5px;font-weight:500;letter-spacing:.26em;color:#6a6a63;margin-top:3px}
.nav{display:flex;gap:26px;font-size:14px;margin-left:auto}
.nav a{padding:6px 0;border-bottom:1px solid transparent}
.nav a:hover{border-bottom:1px solid #111}
.header-actions{display:flex;align-items:center;gap:10px;margin-left:auto}
.search-box{display:flex;align-items:center;gap:8px;border:1px solid #d6d5cd;background:#fff;border-radius:3px;padding:0 10px;height:38px}
.search-box span{color:#8a8a82;font-size:14px}
.search-box input{border:0;outline:none;width:170px;height:36px;background:transparent;font-size:13px}
.icon-btn{position:relative;border:1px solid #d6d5cd;background:#fff;border-radius:3px;width:38px;height:38px;display:grid;place-items:center;font-size:15px}
.icon-btn:hover{border-color:#111}
.cart-badge{position:absolute;right:-7px;top:-7px;background:#111;color:#fff;border-radius:99px;min-width:18px;height:18px;padding:0 5px;font-size:10px;font-weight:600;display:grid;place-items:center}
.burger{display:none}
.mobile-nav{border-top:1px solid var(--line);background:var(--bg);padding:14px 5vw;display:flex;flex-direction:column;gap:2px}
.mobile-nav a{padding:11px 0;font-size:15px;border-bottom:1px solid var(--line2)}
.mobile-nav a:last-child{border-bottom:0}

/* Hero */
.hero{max-width:1500px;margin:0 auto;position:relative;background:var(--cream);overflow:hidden}
.hero-img{width:100%;height:auto;display:block;min-height:460px;object-fit:cover;transform:scale(1.1);animation:cfZoom 1.6s ease-out forwards}
.hero-scrim{position:absolute;inset:0;background:linear-gradient(90deg,rgba(238,234,225,.9) 0%,rgba(238,234,225,.55) 32%,rgba(0,0,0,0) 55%)}
.hero-copy{position:absolute;left:0;top:0;bottom:0;display:flex;flex-direction:column;justify-content:center;padding:clamp(28px,6vw,88px) clamp(20px,5vw,60px);max-width:560px}
.hero-eyebrow{text-transform:uppercase;letter-spacing:.26em;font-size:11px;color:#4f5960;font-weight:600;opacity:0;animation:cfUp .7s ease .05s forwards}
.hero-copy h1{font-family:"Space Grotesk",sans-serif;font-weight:700;font-size:clamp(42px,6vw,92px);line-height:.86;letter-spacing:-.06em;margin:18px 0 16px;color:#111;text-wrap:balance;opacity:0;animation:cfUp .7s ease .15s forwards}
.hero-copy p{font-size:15px;line-height:1.6;max-width:360px;color:#33332e;margin:0 0 24px;text-wrap:pretty;font-weight:500;opacity:0;animation:cfUp .7s ease .3s forwards}
.hero-cta{display:flex;gap:10px;flex-wrap:wrap;opacity:0;animation:cfUp .7s ease .4s forwards}
.btn{border-radius:3px;font-weight:600;font-size:13px;letter-spacing:.02em;padding:14px 24px;display:inline-block;border:1px solid #111}
.btn-dark{background:#111;color:#fff}
.btn-dark:hover{background:#2d2d2d}
.btn-outline{background:rgba(238,234,225,.5);backdrop-filter:blur(4px);color:#111}
.btn-outline:hover{background:#111;color:#fff}
.hero-feats{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:36px;max-width:340px;opacity:0;animation:cfUp .7s ease .5s forwards}
.hero-feats div{border-left:1px solid #a9a49640;padding-left:12px;font-size:10px;letter-spacing:.12em;color:#4f5960;line-height:1.5;font-weight:600}
.hero-caption{position:absolute;right:0;bottom:0;padding:22px;color:#fff;text-align:right;font-size:12px;letter-spacing:.1em;line-height:1.5;text-shadow:0 1px 6px rgba(0,0,0,.45);opacity:0;animation:cfUp .7s ease .6s forwards}
.hero-caption b{font-size:13px}

@keyframes cfUp{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}
@keyframes cfZoom{from{transform:scale(1.12)}to{transform:scale(1)}}

/* Generic section */
.section{max-width:1500px;margin:0 auto;padding:clamp(48px,6vw,76px) 4vw}
.section-tight{padding:clamp(40px,5vw,60px) 4vw}
.section-head{display:flex;justify-content:space-between;align-items:flex-end;gap:16px;flex-wrap:wrap;margin-bottom:24px}
.section-head h2{font-family:"Space Grotesk",sans-serif;font-weight:600;font-size:clamp(28px,3.4vw,38px);letter-spacing:-.05em;margin:0}
.section-head p{margin:0;color:var(--muted);font-size:13px}

/* Category tiles */
.cat-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.cat-tile{position:relative;display:block;min-height:380px;overflow:hidden;background:#dedcd5}
.cat-tile img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.cat-scrim{position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,0) 38%,rgba(0,0,0,.72) 100%)}
.cat-content{position:absolute;left:26px;right:26px;bottom:24px;color:#fff}
.cat-content h3{font-family:"Space Grotesk",sans-serif;font-weight:600;font-size:38px;letter-spacing:-.05em;margin:0 0 4px}
.cat-content p{margin:0 0 14px;font-size:13px;color:#e6e5df}
.cat-link{display:inline-block;border-bottom:1px solid #fff;font-size:12px;font-weight:600;letter-spacing:.08em;padding-bottom:3px}

/* Filters */
.filter-bar{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:26px}
.filter-chip{border:1px solid #d6d5cd;background:transparent;color:#44443f;padding:9px 18px;border-radius:99px;font-size:12.5px;font-weight:600;letter-spacing:.04em}
.filter-chip.active{border-color:#111;background:#111;color:#fff}

/* Product grid */
.product-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.product-card{background:#fff;border:1px solid var(--line);display:flex;flex-direction:column;transition:transform .18s ease,box-shadow .18s ease}
.product-card:hover{transform:translateY(-3px);box-shadow:0 12px 30px rgba(17,17,17,.08)}
.product-imgbtn{border:0;padding:0;background:#f1f0ea;display:block;width:100%;cursor:pointer}
.product-imgbtn img{width:100%;aspect-ratio:4/5;object-fit:cover}
.product-info{padding:14px;display:flex;flex-direction:column;gap:5px;flex:1}
.product-cat{font-size:10.5px;letter-spacing:.14em;color:#8a8a82;text-transform:uppercase}
.product-name{font-weight:600;font-size:14px;line-height:1.35}
.product-price{font-weight:700;font-size:15px;margin-top:2px}
.add-btn{margin-top:auto;width:100%;padding:11px;background:#111;color:#fff;border:1px solid #111;border-radius:2px;font-size:12px;font-weight:600;letter-spacing:.06em}
.add-btn:hover{background:#fff;color:#111}
.empty-state{padding:56px 0;text-align:center;color:var(--muted)}
.empty-state button{border:1px solid #111;background:transparent;padding:11px 20px;border-radius:3px;font-size:13px;font-weight:600}

/* Story */
.story{background:#111;color:#fff;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));align-items:center;scroll-margin-top:80px}
.story-copy{padding:clamp(44px,5vw,72px) clamp(24px,6vw,80px)}
.story-copy img{width:64px;height:64px;object-fit:contain;filter:invert(1);margin-bottom:18px}
.story-copy h2{font-family:"Space Grotesk",sans-serif;font-weight:600;font-size:clamp(32px,4.4vw,62px);line-height:.95;letter-spacing:-.055em;margin:0 0 20px;text-wrap:balance}
.story-copy p{color:#b9b9b2;line-height:1.7;max-width:520px;margin:0 0 14px;font-size:15px;text-wrap:pretty}
.story-photo{width:100%;height:100%;min-height:460px;object-fit:cover;object-position:center 30%}

/* Details */
.details-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.detail-figure{margin:0;background:var(--cream)}
.detail-figure img{width:100%;aspect-ratio:3/4;object-fit:cover}
.detail-figure figcaption{padding:10px 12px;font-size:12px;color:#55554f}

/* Feature bar */
.feat-bar{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));border-bottom:1px solid var(--line);background:var(--bg)}
.feat-item{padding:24px 18px;text-align:center;border-right:1px solid var(--line)}
.feat-item:last-child{border-right:0}
.feat-item b{display:block;font-size:13px;margin-bottom:4px}
.feat-item span{font-size:11.5px;color:var(--muted)}

/* Help / FAQ / size guide */
.help-grid{display:grid;grid-template-columns:minmax(0,1.4fr) minmax(0,1fr);gap:clamp(28px,5vw,64px)}
.help-grid h2{font-family:"Space Grotesk",sans-serif;font-weight:600;font-size:clamp(26px,3.2vw,34px);letter-spacing:-.05em;margin:0 0 22px}
.faq-list{display:flex;flex-direction:column;border-top:1px solid var(--line)}
.faq-item{border-bottom:1px solid var(--line)}
.faq-q{width:100%;display:flex;justify-content:space-between;align-items:center;gap:16px;background:none;border:0;padding:18px 0;text-align:left;font-size:15px;font-weight:600}
.faq-q span{font-size:18px;color:#8a8a82;flex:0 0 auto}
.faq-a{margin:0;padding:0 0 20px;color:#55554f;font-size:14px;line-height:1.7;max-width:640px;text-wrap:pretty}
.size-box{background:var(--cream);padding:clamp(24px,3vw,34px);align-self:start}
.size-box h3{font-family:"Space Grotesk",sans-serif;font-weight:600;font-size:22px;letter-spacing:-.03em;margin:0 0 6px}
.size-box>p{margin:0 0 18px;color:#5c5c55;font-size:13px}
.size-table{display:grid;grid-template-columns:1fr 1fr 1fr;font-size:13px}
.size-table .th{font-weight:700;padding:9px 0;border-bottom:1px solid #d6d2c6}
.size-table div{padding:9px 0;border-bottom:1px solid #e0dccf}
.size-cell-muted{color:#55554f}
.size-help{margin-top:22px;padding-top:18px;border-top:1px solid #d6d2c6}
.size-help h4{margin:0 0 8px;font-size:14px}
.size-help p{margin:0 0 14px;color:#5c5c55;font-size:13px;line-height:1.6}
.wa-link{display:inline-block;background:#111;color:#fff;padding:12px 20px;border-radius:3px;font-size:13px;font-weight:600}
.wa-link:hover{background:#2d2d2d}

/* Footer */
.site-footer{border-top:1px solid var(--line);background:#f4f3ee}
.footer-grid{max-width:1500px;margin:0 auto;padding:clamp(38px,5vw,56px) 4vw 28px;display:grid;grid-template-columns:1.6fr 1fr 1fr 1.4fr;gap:32px}
.footer-brand{display:flex;align-items:center;gap:10px;margin-bottom:12px}
.footer-brand img{width:34px;height:34px;object-fit:contain}
.footer-brand span{font-family:"Space Grotesk",sans-serif;font-weight:700;font-size:19px;letter-spacing:-.045em}
.footer-grid p{margin:0 0 14px;color:var(--muted);font-size:12.5px;line-height:1.7;max-width:280px}
.footer-col h4{margin:0 0 14px;font-size:13px;letter-spacing:.1em;text-transform:uppercase}
.footer-col a{display:block;color:var(--muted);font-size:12.5px;margin:9px 0}
.footer-col a:hover{color:#111}
.newsletter{display:flex;gap:0;max-width:320px}
.newsletter input{flex:1;min-width:0;padding:11px;border:1px solid #d6d5cd;border-right:0;background:#fff;font-size:13px;outline:none}
.newsletter button{background:#111;color:#fff;border:1px solid #111;padding:0 18px;font-size:13px;font-weight:600}
.sub-msg{margin:10px 0 0;color:#8a8a82;font-size:11.5px}
.footer-bottom{border-top:1px solid var(--line)}
.footer-bottom-row{max-width:1500px;margin:0 auto;padding:16px 4vw;display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;color:#8a8a82;font-size:11.5px}

/* Overlay / drawer / modal / toast */
.overlay-backdrop{position:fixed;inset:0;background:rgba(0,0,0,.45);z-index:60;display:none}
.overlay-backdrop.show{display:block}
.drawer{position:fixed;top:0;right:0;height:100vh;width:min(420px,100%);background:#fff;z-index:80;box-shadow:-10px 0 40px rgba(0,0,0,.12);padding:22px;display:flex;flex-direction:column;transition:transform .28s ease;transform:translateX(105%)}
.drawer.open{transform:translateX(0)}
.drawer-head{display:flex;justify-content:space-between;align-items:center;padding-bottom:14px;border-bottom:1px solid var(--line)}
.drawer-head button{border:0;background:none;font-size:24px;line-height:1;color:#55554f}
.ship-note{background:#f1f0ea;padding:11px 13px;margin-top:14px;font-size:12px;color:#44443f}
.cart-items{flex:1;overflow:auto;padding:6px 0}
.cart-empty{padding:48px 0;text-align:center}
.cart-empty p{color:#8a8a82;font-size:14px;margin:0 0 16px}
.cart-empty button{border:1px solid #111;background:transparent;padding:11px 20px;border-radius:3px;font-size:13px;font-weight:600}
.cart-row{display:grid;grid-template-columns:66px minmax(0,1fr) auto;gap:12px;padding:14px 0;border-bottom:1px solid var(--line2);align-items:start}
.cart-row img{width:66px;height:80px;object-fit:cover;background:#f1f0ea}
.cart-row b{font-size:13.5px;display:block;line-height:1.35}
.cart-size{font-size:11.5px;color:#8a8a82;margin:4px 0 9px}
.qty-ctrl{display:flex;align-items:center;gap:0;border:1px solid #ddddd5;width:fit-content}
.qty-ctrl button{border:0;background:none;width:28px;height:28px;font-size:15px}
.qty-ctrl span{min-width:26px;text-align:center;font-size:13px;font-weight:600}
.cart-line-text{font-weight:700;font-size:13.5px;text-align:right}
.remove-btn{border:0;background:none;color:#8a8a82;font-size:11.5px;text-decoration:underline;margin-top:8px;padding:0;display:block}
.drawer-footer{border-top:1px solid var(--line);padding-top:14px}
.checkout-row{display:flex;justify-content:space-between;margin:7px 0;font-size:13.5px}
.checkout-row.total{margin:12px 0 14px;font-size:16px}
.checkout-btn{width:100%;padding:14px;background:#111;color:#fff;border:1px solid #111;font-size:13px;font-weight:600;letter-spacing:.06em}
.checkout-btn:hover{background:#2d2d2d}
.checkout-note{margin:10px 0 0;text-align:center;color:#8a8a82;font-size:11px}

.modal{position:fixed;inset:0;z-index:70;display:none;align-items:center;justify-content:center;padding:18px}
.modal.show{display:flex}
.modal-card{background:#fff;max-width:820px;width:100%;max-height:90vh;overflow:auto;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));box-shadow:0 30px 80px rgba(0,0,0,.3)}
.modal-card img{width:100%;height:100%;min-height:280px;object-fit:cover;background:#f1f0ea}
.modal-body{padding:clamp(22px,3vw,34px);display:flex;flex-direction:column}
.modal-close{align-self:flex-end;border:0;background:none;font-size:24px;line-height:1;color:#55554f;margin:-8px -6px 0 0}
.modal-cat{font-size:10.5px;letter-spacing:.14em;color:#8a8a82;text-transform:uppercase}
.modal-body h2{font-family:"Space Grotesk",sans-serif;font-weight:600;font-size:28px;letter-spacing:-.04em;margin:8px 0 6px;line-height:1.15}
.modal-price{font-weight:700;font-size:20px;margin-bottom:12px}
.modal-desc{color:#55554f;line-height:1.65;font-size:14px;margin:0 0 18px;text-wrap:pretty}
.size-label{font-size:11.5px;letter-spacing:.1em;color:#55554f;margin-bottom:8px}
.size-opts{display:flex;gap:7px;flex-wrap:wrap;margin-bottom:8px}
.size-btn{border:1px solid #ddddd5;background:#fff;color:#44443f;min-width:46px;padding:10px 12px;font-size:13px;font-weight:600;border-radius:2px}
.size-btn.active{border-color:#111;background:#111;color:#fff}
.size-hint{margin:0 0 18px;font-size:11.5px;color:#8a8a82}
.modal-foot-note{margin:12px 0 0;font-size:11.5px;color:#8a8a82;line-height:1.6}

.toast{position:fixed;bottom:24px;left:50%;transform:translateX(-50%);background:#111;color:#fff;padding:12px 20px;border-radius:3px;font-size:13px;z-index:90;box-shadow:0 10px 30px rgba(0,0,0,.25);opacity:0;pointer-events:none;transition:opacity .2s ease}
.toast.show{opacity:1}

/* Responsive */
@media (max-width:980px){
  .cat-grid{grid-template-columns:1fr 1fr}
  .details-grid{grid-template-columns:1fr 1fr}
  .product-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .story{grid-template-columns:1fr}
  .help-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .nav{display:none}
  .burger{display:grid;place-items:center}
}
@media (max-width:720px){
  .hero-copy{max-width:100% !important;background:linear-gradient(90deg,rgba(238,234,225,.94) 0%,rgba(238,234,225,.8) 70%,rgba(238,234,225,.2) 100%)}
  .search-box{display:none}
  .product-grid{grid-template-columns:1fr 1fr}
  .cat-grid{grid-template-columns:1fr}
  .feat-bar{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr}
  .modal-card{grid-template-columns:1fr}
  .modal-card img{max-height:260px;min-height:0}
}
