@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --paper:#F2F0EB;
  --paper-2:#E7E3DA;
  --ink:#232321;
  --ink-soft:#4A4A46;
  --stone:#8C8A83;
  --silver:#B8B6AE;
  --silver-light:#DEDBD2;
  --line:#D8D5CC;
  --accent:#8B3A2B;
  --radius:2px;
  --serif:'Fraunces', serif;
  --sans:'Inter', sans-serif;
}
*{box-sizing:border-box; margin:0; padding:0;}
body{
  font-family:var(--sans);
  background:var(--paper);
  color:var(--ink);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
.wrap{max-width:1240px; margin:0 auto; padding:0 32px;}
h1,h2,h3{font-family:var(--serif); font-weight:500; letter-spacing:-0.01em; line-height:1.05;}
.eyebrow{
  font-size:12px; text-transform:uppercase; letter-spacing:0.16em;
  color:var(--stone); font-weight:600;
}
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:15px 30px; font-size:13px; font-weight:600;
  text-transform:uppercase; letter-spacing:0.08em;
  border-radius:var(--radius); border:1px solid var(--ink);
  cursor:pointer; transition:all .25s ease;
}
.btn-fill{background:var(--ink); color:var(--paper);}
.btn-fill:hover{background:transparent; color:var(--ink);}
.btn-line{background:transparent; color:var(--ink); border-color:var(--ink);}
.btn-line:hover{background:var(--ink); color:var(--paper);}
.btn-white{border-color:var(--paper); color:var(--paper);}
.btn-white:hover{background:var(--paper); color:var(--ink);}

/* placeholder image blocks - swap for real photography */
.ph{
  position:relative; overflow:hidden; background:var(--paper-2);
  display:flex; align-items:center; justify-content:center;
  color:var(--stone); text-align:center;
}
.ph::before{
  content:''; position:absolute; inset:0;
  background-image: repeating-linear-gradient(135deg, rgba(140,138,131,0.08) 0px, rgba(140,138,131,0.08) 1px, transparent 1px, transparent 22px);
}
.ph span{position:relative; font-size:11px; letter-spacing:0.1em; text-transform:uppercase; padding:0 20px;}

/* announcement bar */
.announce{
  background:var(--ink); color:var(--silver-light);
  font-size:12px; letter-spacing:0.06em; text-align:center;
  padding:9px 20px;
}

/* ============================================
   NAV / HEADER
   ============================================ */
header{
  position:sticky !important; top:0 !important; z-index:50 !important;
  width:100% !important;
  background:rgba(242,240,235,0.92) !important; backdrop-filter:blur(8px) !important;
  border-bottom:1px solid var(--line) !important;
}
header nav{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  width:100% !important;
  max-width:none !important;
  padding:18px 48px !important;
  margin:0 !important;
}
header .logo-mark{
  font-family:var(--serif) !important; font-size:24px !important; font-weight:600 !important;
  letter-spacing:0.02em !important;
  flex-shrink:0 !important;
  margin-right:0 !important;
}
header .nav-links{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex:1 !important;
  gap:34px !important;
  font-size:13px !important; font-weight:500 !important; letter-spacing:0.03em !important;
}
header .nav-links a{position:relative; padding:4px 0; white-space:nowrap;}
header .nav-links a::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:1px;
  background:var(--ink); transition:width .25s ease;
}
header .nav-links a:hover::after{width:100%;}
header .nav-right{
  display:flex !important;
  flex-wrap:nowrap !important;
  align-items:center !important;
  gap:14px !important;
  flex-shrink:0 !important;
  margin-left:auto !important;
}
header .nav-right a[href="/cart"]{
  position:relative;
  padding-left:20px;
}
header .nav-right a[href="/cart"]::before{
  content:'';
  position:absolute; left:0; top:50%;
  transform:translateY(-50%);
  width:1px; height:14px;
  background:var(--line);
}

.wp-block-group.alignfull:has(header){
  max-width:none !important;
  padding-left:0 !important;
  padding-right:0 !important;
  margin-left:0 !important;
  margin-right:0 !important;
  --wp--style--root--padding-left:0px;
  --wp--style--root--padding-right:0px;
}

/* ===== Nav icons: search, account, bag — sizing + alignment ===== */
header .nav-search,
header .nav-icon-link{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  height:17px !important;
  line-height:0 !important;
}
header .nav-icon-link{
  color:var(--ink) !important;
  flex-shrink:0 !important;
  position:relative !important;
}
header .search-icon-label,
header .nav-icon-link svg{
  display:flex !important;
  align-items:center !important;
}
header .nav-icon-link svg,
header .search-icon-label svg{
  display:block !important;
  vertical-align:middle !important;
  flex-shrink:0 !important;
  width:17px !important;
  height:17px !important;
  min-width:17px !important;
  min-height:17px !important;
}

header .bag-count{
  position:absolute !important;
  top:-7px !important; right:-8px !important;
  background:var(--ink) !important; color:var(--paper) !important;
  font-size:9.5px !important; font-weight:600 !important;
  line-height:1 !important;
  width:15px !important; height:15px !important;
  border-radius:50% !important;
  display:flex !important; align-items:center !important; justify-content:center !important;
  font-family:var(--sans) !important;
}

header .nav-right a[href="/cart"]{
  padding-left:20px !important;
}

/* ===== Nav search — expanding icon (pure CSS checkbox toggle) ===== */
header .nav-search{
  position:relative !important;
}
header input.search-toggle-input{
  position:absolute !important;
  height:1px !important; width:1px !important;
  overflow:hidden !important;
  clip:rect(0 0 0 0) !important;
  clip-path:inset(50%) !important;
  white-space:nowrap !important;
  border:0 !important; padding:0 !important; margin:-1px !important;
}
header .search-icon-label{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  cursor:pointer !important;
  color:var(--ink) !important;
  padding:2px !important;
  flex-shrink:0 !important;
}
header .search-expand-form{
  display:flex !important;
  align-items:center !important;
  overflow:hidden !important;
  width:0 !important;
  max-width:0 !important;
  opacity:0 !important;
  height:17px !important;
  margin-left:0 !important;
  transition:width .3s ease, max-width .3s ease, opacity .25s ease, margin-left .3s ease !important;
}
header .search-expand-input{
  width:170px !important;
  border:none !important;
  border-bottom:1px solid var(--ink) !important;
  background:transparent !important;
  font-family:var(--sans) !important;
  font-size:13px !important;
  padding:4px 2px !important;
  color:var(--ink) !important;
  outline:none !important;
}
header .search-expand-input::placeholder{color:var(--stone) !important;}
header input.search-toggle-input:checked ~ .search-expand-form{
  width:170px !important;
  max-width:170px !important;
  opacity:1 !important;
  margin-left:12px !important;
}

@media (max-width:900px){
  header .search-expand-input{width:120px !important;}
  header input.search-toggle-input:checked ~ .search-expand-form{width:120px !important; max-width:120px !important;}
}

/* ===== Safety net: hide Astra's native account icon, if any ===== */
.ast-header-account,
.astra-cart-drawer-account,
#ast-account-icon,
.ast-header-woo-cart + .ast-header-account,
.ast-site-header-cart .ast-account-icon{
  display:none !important;
}

/* hero */
.hero{
  position:relative;
  display:grid; grid-template-columns:1.1fr 0.9fr;
  min-height:640px; border-bottom:1px solid var(--line);
}
.hero-copy{
  display:flex; flex-direction:column; justify-content:center;
  padding:60px 64px; gap:26px; background:var(--paper);
}
.hero-copy h1{font-size:clamp(38px,4.6vw,64px); max-width:560px;}
.hero-copy p{font-size:16px; color:var(--ink-soft); max-width:420px;}
.hero-ctas{display:flex; gap:14px; flex-wrap:wrap; margin-top:6px;}
.hero-img{min-height:420px; overflow:hidden;}
.river-line{position:absolute; left:0; right:0; bottom:-1px; height:26px; pointer-events:none;}

/* trust strip */
.trust{
  border-bottom:1px solid var(--line);
  display:grid; grid-template-columns:repeat(4,1fr);
}
.trust-item{
  padding:22px 20px; text-align:center; font-size:12.5px; font-weight:500;
  color:var(--ink-soft); border-left:1px solid var(--line);
  display:flex; flex-direction:column; gap:4px; align-items:center;
}
.trust-item:first-child{border-left:none;}
.trust-item b{font-family:var(--serif); font-size:15px; font-weight:500; color:var(--ink);}

/* section shell */
section{padding:96px 0;}
.section-head{
  display:flex; justify-content:space-between; align-items:flex-end;
  margin-bottom:44px; gap:24px; flex-wrap:wrap;
}
.section-head h2{font-size:clamp(26px,3vw,38px);}
.section-head p{color:var(--ink-soft); max-width:420px; font-size:14.5px;}

/* category split */
.category-split{display:grid; grid-template-columns:1fr 1fr; gap:24px;}
.cat-card{
  position:relative; height:560px; overflow:hidden;
  display:flex; align-items:flex-end; padding:36px;
}
.cat-card .ph{position:absolute; inset:0;}
.cat-card-content{position:relative; color:var(--paper); z-index:2; width:100%;}
.cat-card::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(35,35,33,0) 40%, rgba(35,35,33,0.72) 100%);
  z-index:1;
}
.cat-card-content .eyebrow{color:var(--silver-light);}
.cat-card-content h3{font-size:30px; color:var(--paper); margin:6px 0 16px;}

/* product grid */
.product-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:26px;}
.product-card .ph{aspect-ratio:3/4; margin-bottom:14px;}
.badge{
  position:absolute; top:14px; left:14px; z-index:2;
  background:var(--ink); color:var(--paper); font-size:10.5px;
  padding:5px 10px; letter-spacing:0.06em; text-transform:uppercase;
  border-radius:var(--radius);
}
.badge-low{background:var(--accent);}
.product-title{font-size:14.5px; font-weight:600;}
.product-meta{font-size:13px; color:var(--stone); margin-top:2px;}
.product-price{font-size:14px; margin-top:6px; font-weight:500;}
.stars{color:var(--ink); font-size:12px; letter-spacing:2px;}

/* USP / modesty band */
.usp-band{background:var(--ink); color:var(--paper);}
.usp-band .eyebrow{color:var(--silver);}
.usp-band h2{color:var(--paper);}
.usp-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(255,255,255,0.14); margin-top:48px;}
.usp-item{background:var(--ink); padding:36px 30px; display:flex; flex-direction:column; gap:14px;}
.usp-num{font-family:var(--serif); font-size:14px; color:var(--silver);}
.usp-item h3{color:var(--paper); font-size:19px; font-weight:500;}
.usp-item p{color:var(--silver-light); font-size:13.5px; line-height:1.6;}

/* editorial fabric section */
.editorial{display:grid; grid-template-columns:0.9fr 1.1fr; gap:60px; align-items:center;}
.editorial-img{height:520px;}
.editorial-copy h2{font-size:clamp(28px,3.4vw,42px); margin-bottom:22px;}
.editorial-copy p{color:var(--ink-soft); font-size:15.5px; max-width:480px; margin-bottom:16px;}
.spec-list{list-style:none; margin-top:28px; display:flex; flex-direction:column; gap:14px;}
.spec-list li{
  display:flex; justify-content:space-between; padding-bottom:14px;
  border-bottom:1px solid var(--line); font-size:13.5px; max-width:480px;
}
.spec-list li b{font-weight:600;}
.spec-list li span{color:var(--stone);}

/* testimonials */
.testimonials{background:var(--paper-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
.testi-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:30px;}
.testi-card{background:var(--paper); padding:32px; border-radius:var(--radius); border:1px solid var(--line);}
.testi-card .stars{margin-bottom:14px;}
.testi-card p{font-size:14.5px; color:var(--ink-soft); margin-bottom:20px; line-height:1.65;}
.testi-name{font-size:13px; font-weight:600;}
.testi-loc{font-size:12px; color:var(--stone);}

/* UGC strip */
.ugc-grid{display:grid; grid-template-columns:repeat(5,1fr); gap:8px;}
.ugc-grid .ph{aspect-ratio:1/1;}

/* email capture */
.capture{
  background:var(--ink); color:var(--paper); text-align:center;
  padding:90px 32px;
}
.capture .eyebrow{color:var(--silver); justify-content:center; display:flex;}
.capture h2{color:var(--paper); font-size:clamp(28px,3.6vw,44px); max-width:620px; margin:14px auto 12px;}
.capture p{color:var(--silver-light); max-width:460px; margin:0 auto 32px; font-size:15px;}
.capture-form{display:flex; justify-content:center; gap:0; max-width:440px; margin:0 auto;}
.capture-form input{
  flex:1; padding:15px 18px; border:1px solid var(--silver);
  background:transparent; color:var(--paper); font-size:14px; border-right:none;
}
.capture-form input::placeholder{color:var(--silver);}
.capture-form button{
  padding:15px 26px; background:var(--paper); color:var(--ink);
  border:1px solid var(--paper); font-size:13px; font-weight:600;
  text-transform:uppercase; letter-spacing:0.06em; cursor:pointer;
}

/* ===== About page "Join the list" WS Form styling ===== */
.capture-ws-form{
  max-width:440px;
  margin:0 auto;
  text-align:left;
}
.capture-ws-form label{
  color:var(--silver-light) !important;
  font-size:12px !important;
  text-transform:uppercase;
  letter-spacing:0.06em;
  font-family:var(--sans) !important;
}
.capture-ws-form input[type="text"],
.capture-ws-form input[type="email"],
.capture-ws-form input[type="tel"],
.capture-ws-form textarea,
.capture-ws-form select{
  background:transparent !important;
  border:1px solid var(--silver) !important;
  color:var(--paper) !important;
  font-family:var(--sans) !important;
  font-size:14px !important;
  padding:14px 16px !important;
  border-radius:2px !important;
  width:100% !important;
  box-shadow:none !important;
}
.capture-ws-form input::placeholder,
.capture-ws-form textarea::placeholder{
  color:var(--silver) !important; opacity:1;
}
.capture-ws-form input:focus,
.capture-ws-form textarea:focus,
.capture-ws-form select:focus{
  border-color:var(--paper) !important; outline:none !important; box-shadow:none !important;
}
.capture-ws-form button,
.capture-ws-form input[type="submit"]{
  background:var(--paper) !important; color:var(--ink) !important;
  border:1px solid var(--paper) !important;
  font-weight:600 !important; text-transform:uppercase; letter-spacing:0.06em;
  font-size:13px !important; padding:14px 26px !important; border-radius:2px !important;
  cursor:pointer; width:100%; font-family:var(--sans) !important;
}
.capture-ws-form button:hover,
.capture-ws-form input[type="submit"]:hover{
  background:transparent !important; color:var(--paper) !important;
}
.capture-ws-form .wsf-row,
.capture-ws-form .wsf-field{
  margin-bottom:14px;
}

/* footer */
footer{padding:70px 0 30px;}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:50px; border-bottom:1px solid var(--line);}
.footer-col h4{font-size:12.5px; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:18px; color:var(--stone);}
.footer-col a{display:block; font-size:14px; margin-bottom:11px; color:var(--ink-soft);}
.footer-col a:hover{color:var(--ink);}
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding-top:26px; font-size:12.5px; color:var(--stone); flex-wrap:wrap; gap:12px;
}

@media (max-width:900px){
  .hero{grid-template-columns:1fr;}
  .hero-img{min-height:320px; order:-1;}
  .hero-copy{padding:44px 24px;}
  .trust{grid-template-columns:repeat(2,1fr);}
  .trust-item:nth-child(3){border-left:none;}
  .category-split{grid-template-columns:1fr;}
  .product-grid{grid-template-columns:repeat(2,1fr);}
  .usp-grid{grid-template-columns:repeat(2,1fr);}
  .editorial{grid-template-columns:1fr; gap:30px;}
  .editorial-img{height:340px;}
  .testi-grid{grid-template-columns:1fr;}
  .ugc-grid{grid-template-columns:repeat(3,1fr);}
  .footer-grid{grid-template-columns:1fr 1fr;}
  header .nav-links{display:none !important;}
  .wrap{padding:0 20px;}
}

/* ===== About page ===== */

.about-hero{position:relative; border-bottom:1px solid var(--line); padding:0;}
.about-hero-img{width:100%; height:520px; object-fit:cover; object-position:center 20%; display:block;}
.about-hero .wrap{
  position:absolute; left:50%; bottom:40px; transform:translateX(-50%);
  width:100%; color:var(--paper); text-align:center;
}
.about-hero .eyebrow{color:var(--silver-light); justify-content:center; display:flex;}
.about-hero h1{
  color:var(--paper); font-size:clamp(28px,4vw,46px);
  max-width:760px; margin:10px auto 0;
}
.about-hero::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(35,35,33,0) 30%, rgba(35,35,33,0.75) 100%);
}

.editorial.reverse{grid-template-columns:1.1fr 0.9fr;}
.editorial.reverse .editorial-copy{order:1;}
.editorial.reverse .editorial-img{order:2;}

.founder-note{padding-top:0;}
.founder-quote{
  max-width:760px; margin:0 auto; text-align:center;
  padding:60px 40px; border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}
.founder-quote p{
  font-family:var(--serif); font-style:italic; font-size:clamp(20px,2.6vw,28px);
  color:var(--ink); line-height:1.5; margin-bottom:20px;
}
.founder-attribution .testi-name{font-family:var(--sans); font-style:normal;}

@media (max-width:900px){
  .editorial.reverse .editorial-copy{order:2;}
  .editorial.reverse .editorial-img{order:1;}
  .about-hero-img{height:320px;}
}

/* ===== Coming Soon page ===== */

.soon-page{
  position:relative; min-height:100vh; width:100%;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  overflow:hidden; background:var(--ink);
  padding-bottom:70px;
}
.soon-bg{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:center 25%;
}
.soon-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(35,35,33,0.55) 0%, rgba(35,35,33,0.72) 55%, rgba(35,35,33,0.88) 100%);
}
.soon-content{
  position:relative; z-index:2; text-align:center; color:var(--paper);
  max-width:640px; padding:40px 24px; display:flex; flex-direction:column; align-items:center;
}
.soon-logo{
  font-family:var(--serif); font-size:26px; font-weight:600; letter-spacing:0.02em;
  margin-bottom:36px; color:var(--paper);
}
.soon-logo span{font-size:16px; letter-spacing:0.14em; margin-left:6px;}
.soon-eyebrow{color:var(--silver-light); margin-bottom:14px;}
.soon-headline{
  font-size:clamp(28px,4.4vw,48px); line-height:1.15; color:var(--paper);
  margin-bottom:20px;
}
.soon-sub{
  font-size:15.5px; color:var(--silver-light); line-height:1.6;
  max-width:460px; margin-bottom:34px;
}
.soon-form{width:100%; max-width:420px;}
.soon-social{display:flex; gap:24px; margin-top:30px;}
.soon-social a{
  font-size:12.5px; text-transform:uppercase; letter-spacing:0.08em;
  color:var(--silver-light); border-bottom:1px solid rgba(222,219,210,0.4); padding-bottom:3px;
}
.soon-social a:hover{color:var(--paper); border-color:var(--paper);}

.soon-form label{
  color:var(--silver-light) !important; font-size:12px !important;
  text-transform:uppercase; letter-spacing:0.06em; font-family:var(--sans) !important;
}
.soon-form input[type="text"],
.soon-form input[type="email"],
.soon-form input[type="tel"],
.soon-form textarea,
.soon-form select{
  background:transparent !important;
  border:1px solid var(--silver) !important;
  color:var(--paper) !important;
  font-family:var(--sans) !important;
  font-size:14px !important;
  padding:14px 16px !important;
  border-radius:2px !important;
  width:100% !important;
  box-shadow:none !important;
}
.soon-form input::placeholder,
.soon-form textarea::placeholder{color:var(--silver) !important; opacity:1;}
.soon-form input:focus,
.soon-form textarea:focus,
.soon-form select:focus{
  border-color:var(--paper) !important; outline:none !important; box-shadow:none !important;
}
.soon-form button,
.soon-form input[type="submit"]{
  background:var(--paper) !important; color:var(--ink) !important;
  border:1px solid var(--paper) !important;
  font-weight:600 !important; text-transform:uppercase; letter-spacing:0.06em;
  font-size:13px !important; padding:14px 26px !important; border-radius:2px !important;
  cursor:pointer; width:100%; font-family:var(--sans) !important;
}
.soon-form button:hover,
.soon-form input[type="submit"]:hover{
  background:transparent !important; color:var(--paper) !important;
}
.soon-footer{
  position:absolute; bottom:22px; left:0; right:0; z-index:1;
  text-align:center; font-size:11.5px; color:var(--silver);
}

@media (max-width:600px){
  .soon-logo{font-size:22px;}
  .soon-headline br{display:none;}
}

.soon-form .ws-form-container {
  max-width: 420px;
  margin: 24px auto 0;
}
.soon-form label,
.soon-form .wsf-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.85;
  margin-bottom: 6px;
}
.soon-form .wsf-row,
.soon-form .wsf-field {
  margin-bottom: 14px;
}

/* ============================================
   FABRIC TABLE — "How we test it" on Our Fabric page
   ============================================ */
.fabric-table{
  width:100%;
  border-collapse:collapse;
  margin-top:32px;
}
.fabric-table thead th{
  text-align:left;
  font-family:var(--sans);
  font-size:11.5px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:var(--stone);
  padding:0 20px 16px 0;
  border-bottom:1px solid var(--ink);
}
.fabric-table tbody td{
  text-align:left;
  vertical-align:top;
  font-size:14.5px;
  color:var(--ink-soft);
  padding:22px 20px 22px 0;
  border-bottom:1px solid var(--line);
  line-height:1.6;
}
.fabric-table tbody tr:last-child td{
  border-bottom:none;
}
.fabric-table tbody td:first-child{
  font-family:var(--sans);
  font-weight:600;
  color:var(--ink);
  white-space:nowrap;
  width:1%;
}
.fabric-table tbody td:nth-child(3){
  color:var(--ink);
}

@media (max-width:900px){
  .fabric-table{font-size:13.5px;}
  .fabric-table thead{display:none;}
  .fabric-table tbody tr{
    display:block;
    padding:20px 0;
    border-bottom:1px solid var(--line);
  }
  .fabric-table tbody td{
    display:block;
    border-bottom:none;
    padding:4px 0;
    width:auto !important;
    white-space:normal;
  }
  .fabric-table tbody td:first-child{
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:0.06em;
    color:var(--stone);
  }
  .fabric-table tbody td:nth-child(2){
    font-weight:500;
    color:var(--ink);
  }
}

/* ============================================
   FAQ ACCORDION — "Fabric questions" section
   ============================================ */
.faq-list{
  max-width:760px;
  margin:0 auto;
}
.faq-item{
  border-bottom:1px solid var(--line);
}
.faq-item:first-child{
  border-top:1px solid var(--line);
}
.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:20px 34px 20px 0;
  position:relative;
  font-family:var(--serif);
  font-size:19px;
  font-weight:500;
  color:var(--ink);
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{
  content:'+';
  position:absolute;
  right:0; top:18px;
  font-family:var(--sans);
  font-size:22px;
  font-weight:400;
  color:var(--stone);
  line-height:1;
}
.faq-item[open] summary::after{
  content:'−';
}
.faq-item[open] summary{
  padding-bottom:8px;
}
.faq-answer{
  padding:0 34px 22px 0;
  font-size:14.5px;
  color:var(--ink-soft);
  line-height:1.6;
  max-width:640px;
}
.faq-answer p{margin:0;}

/* ============================================
   CARE SECTION — dark background (fabric care block)
   ============================================ */
.care-section{
  background:var(--ink);
  padding:96px 32px;
}
.care-section .eyebrow{color:rgba(242,240,235,0.7);}
.care-section h2{color:var(--paper);}
.care-section .editorial-copy p{color:rgba(242,240,235,0.82);}
.care-section .spec-list li{
  border-bottom:1px solid rgba(242,240,235,0.22);
}
.care-section .spec-list li b{color:var(--paper);}
.care-section .spec-list li span{color:rgba(242,240,235,0.65);}
.care-section .editorial-img.ph{
  background:rgba(242,240,235,0.08);
}
.care-section .editorial-img.ph::before{
  background-image: repeating-linear-gradient(135deg, rgba(242,240,235,0.06) 0px, rgba(242,240,235,0.06) 1px, transparent 1px, transparent 22px);
}
.care-section .editorial-img.ph span{color:rgba(242,240,235,0.5);}

/* ============================================
   CATEGORY HERO — Women, Men, and future category
   archive pages. Text overlays the image directly
   (same pattern as .about-hero), so there's one
   hero moment instead of a title block + separate
   image. Sits immediately below the header, with
   the product grid starting right after.
   ============================================ */
.category-hero{
  position:relative;
  border-bottom:1px solid var(--line);
  margin-bottom:0;
}
.category-hero-img{
  width:100% !important;
  height:420px !important;
  max-height:420px !important;
  object-fit:cover !important;
  object-position:center 30% !important;
  display:block !important;
}
.category-hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(35,35,33,0) 35%, rgba(35,35,33,0.75) 100%);
}
.category-hero-content{
  position:absolute; left:50%; bottom:36px; transform:translateX(-50%);
  width:100%; color:var(--paper); text-align:center;
}
.category-hero-content .eyebrow{color:var(--silver-light); justify-content:center; display:flex;}
.category-hero-content h1{
  color:var(--paper);
  font-size:clamp(30px,4vw,48px);
  margin-top:10px;
}

@media (max-width:900px){
  .category-hero-img{height:300px;}
}

/* Hide default WooCommerce/theme archive header on category pages —
   safety net in case the PHP hook removal doesn't catch every theme hook */
.woocommerce-products-header,
.woocommerce-breadcrumb,
.term-description,
.page-header,
.ast-woo-shop-title-wrap,
nav.woocommerce-breadcrumb{
  display:none !important;
}

/* Restyle the result-count + sort dropdown bar to match brand */
.woocommerce-result-count,
.woocommerce-ordering{
  font-family:var(--sans) !important;
  font-size:12.5px !important;
  color:var(--stone) !important;
  margin:28px 0 0 !important;
}
.woocommerce-ordering select{
  border:1px solid var(--line) !important;
  border-radius:var(--radius) !important;
  background:var(--paper) !important;
  font-family:var(--sans) !important;
  font-size:12.5px !important;
  color:var(--ink) !important;
  padding:10px 14px !important;
}

/* ============================================
   SIZE GUIDE PAGE
   ============================================ */
.size-guide{padding:96px 0;}
.size-guide .section-head{
  display:block;
  text-align:center;
  max-width:640px;
  margin:0 auto 48px;
}
.size-guide .section-head h1{
  font-size:clamp(30px,4vw,44px);
  margin-bottom:14px;
}
.size-guide .section-head p{
  color:var(--ink-soft);
  font-size:15px;
  max-width:520px;
  margin:0 auto;
}

/* toggle buttons — pure CSS radio-based tab switch */
.size-toggle{
  max-width:760px;
  margin:0 auto;
}
.size-toggle-input{
  position:absolute !important;
  height:1px !important; width:1px !important;
  overflow:hidden !important;
  clip:rect(0 0 0 0) !important;
  clip-path:inset(50%) !important;
  white-space:nowrap !important;
  border:0 !important; padding:0 !important; margin:-1px !important;
}
.size-toggle-buttons{
  display:flex;
  gap:0;
  border:1px solid var(--ink);
  border-radius:var(--radius);
  overflow:hidden;
  width:fit-content;
  margin:0 auto 40px;
}
.size-toggle-btn{
  padding:12px 32px;
  font-size:13px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.06em;
  cursor:pointer;
  color:var(--ink);
  background:transparent;
  transition:background .2s ease, color .2s ease;
}
.size-toggle-buttons .size-toggle-btn + .size-toggle-btn{
  border-left:1px solid var(--ink);
}

.size-panel{display:none;}
#size-women:checked ~ .size-panel-women{display:block;}
#size-men:checked ~ .size-panel-men{display:block;}

#size-women:checked ~ .size-toggle-buttons label[for="size-women"],
#size-men:checked ~ .size-toggle-buttons label[for="size-men"]{
  background:var(--ink);
  color:var(--paper);
}

/* size table — reuses fabric-table styling pattern */
.size-table{
  width:100%;
  border-collapse:collapse;
}
.size-table thead th{
  text-align:center;
  font-family:var(--sans);
  font-size:11.5px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:var(--stone);
  padding:0 16px 14px 16px;
  border-bottom:1px solid var(--ink);
}
.size-table tbody td{
  text-align:center;
  font-size:14.5px;
  color:var(--ink-soft);
  padding:16px;
  border-bottom:1px solid var(--line);
}
.size-table tbody tr:last-child td{border-bottom:none;}
.size-table thead th:first-child,
.size-table tbody td:first-child{
  text-align:left;
  font-weight:600;
  color:var(--ink);
  padding-left:0;
}

/* how to measure */
.size-guide-how{
  max-width:640px;
  margin:64px auto 0;
}
.size-guide-how h2{
  font-size:clamp(22px,2.6vw,28px);
  margin-bottom:24px;
  text-align:center;
}
.size-guide-how .spec-list{margin-top:0;}
.size-guide-how .spec-list li{
  display:block;
  max-width:none;
}
.size-guide-how .spec-list li b{
  display:block;
  margin-bottom:6px;
  font-size:14.5px;
}
.size-guide-how .spec-list li span{
  display:block;
  color:var(--ink-soft);
  line-height:1.6;
}
.size-guide-note{
  margin-top:24px;
  font-size:13px;
  color:var(--stone);
  line-height:1.6;
  text-align:center;
}

@media (max-width:600px){
  .size-table{font-size:13px;}
  .size-toggle-btn{padding:10px 22px; font-size:12px;}
}

/* ============================================
   PRODUCT PAGE — title sizing (hardened, covers
   both classic WooCommerce and WooCommerce Blocks
   template class names)
   ============================================ */
.product_title.entry-title,
.woocommerce div.product .product_title,
.wp-block-post-title,
h1.wp-block-woocommerce-product-title,
.woocommerce-product-details__short-description + h1,
.product .entry-title{
  font-family:var(--serif) !important;
  font-size:clamp(26px,2.8vw,36px) !important;
  font-weight:500 !important;
  line-height:1.15 !important;
  letter-spacing:-0.01em !important;
  margin-bottom:16px !important;
  max-width:520px !important;
}

/* ============================================
   PRODUCT GALLERY — stop the main image cropping
   ============================================ */
.woocommerce-product-gallery__image img,
.wp-block-woocommerce-product-image img,
.product-gallery img,
figure.woocommerce-product-gallery__wrapper img{
  height:auto !important;
  max-height:none !important;
  object-fit:contain !important;
  object-position:center !important;
}

/* ============================================
   PRODUCT GALLERY — corrected class names
   (confirmed via Inspector: real prefix is
   "wc-block-woocommerce-product-gallery-...",
   not "wc-block-product-gallery-...")
   ============================================ */
.wc-block-woocommerce-product-gallery-large-image__image,
.woocommerce-product-gallery__image img,
.wp-block-woocommerce-product-image img,
figure.woocommerce-product-gallery__wrapper img{
  object-fit:contain !important;
  aspect-ratio:auto !important;
  height:auto !important;
  max-height:none !important;
}

.wc-block-woocommerce-product-gallery-thumbnails__thumbnail,
.wc-block-woocommerce-product-gallery-thumbnails__thumbnail__image,
.flex-control-thumbs li{
  width:100px !important;
  margin-bottom:14px !important;
}

.wc-block-woocommerce-product-gallery-thumbnails__thumbnail img,
.wc-block-woocommerce-product-gallery-thumbnails__thumbnail__image,
.flex-control-thumbs img{
  width:100px !important;
  height:auto !important;
  aspect-ratio:3/4 !important;
  object-fit:cover !important;
  border:1px solid var(--line) !important;
  border-radius:var(--radius) !important;
  opacity:1 !important;
  transition:border-color .2s ease, opacity .2s ease !important;
}

.wc-block-woocommerce-product-gallery-thumbnails__thumbnail img:hover,
.wc-block-woocommerce-product-gallery-thumbnails__thumbnail__image:hover{
  opacity:0.75 !important;
}

.wc-block-woocommerce-product-gallery-thumbnails__thumbnail--active img,
.wc-block-woocommerce-product-gallery-thumbnails__thumbnail[aria-current="true"] img{
  border:2px solid var(--ink) !important;
  opacity:1 !important;
}

@media (max-width:900px){
  .wc-block-woocommerce-product-gallery-thumbnails{
    display:flex !important;
    flex-direction:row !important;
    overflow-x:auto !important;
    gap:10px !important;
  }
  .wc-block-woocommerce-product-gallery-thumbnails__thumbnail{
    width:70px !important;
    flex-shrink:0 !important;
  }
  .wc-block-woocommerce-product-gallery-thumbnails__thumbnail img,
  .wc-block-woocommerce-product-gallery-thumbnails__thumbnail__image{
    width:70px !important;
  }
}

/* ============================================
   HOME HERO — full-width image/video, content + CTAs
   overlaid at the bottom (same pattern as
   .about-hero / .category-hero, with buttons added)
   ============================================ */

/* Kill WordPress's default block spacing / theme content
   padding above the hero — same root cause as the earlier
   header issue: global-styles-inline-css injects margin/padding
   on the content wrapper and/or the first block inside it. */
.entry-content,
.site-content,
.ast-container,
#content,
.ast-separate-container .ast-article-single,
main{
  padding-top:0 !important;
  margin-top:0 !important;
}
.entry-content > *:first-child,
.wp-block-post-content > *:first-child,
.wp-block-group.is-layout-constrained > *:first-child,
.entry-content > .wp-block-html:first-child,
.wp-block-html:first-child{
  margin-top:0 !important;
  margin-block-start:0 !important;
  padding-top:0 !important;
}
/* Gutenberg applies block-gap as margin-top on every block
   after the first via a CSS custom property — zero it out
   at the content root so it can't push the hero down */
.entry-content,
.wp-block-post-content{
  --wp--style--block-gap:0px !important;
}
/* Astra sometimes renders an empty page-header/title area
   above the content even when no title is shown */
.ast-archive-title-wrap,
.page-header,
.entry-header,
.ast-container > .ast-row > .ast-col-* > .ast-post-header{
  display:none !important;
}
.home-hero{
  margin-top:0 !important;
}
/* wpautop (or a content filter) is injecting stray <p> tags
   directly before .home-hero and inside it — even when the
   source HTML is clean. Target them structurally rather than
   relying on :empty, since WordPress sometimes fills them with
   a non-breaking space which defeats the :empty selector. Our
   real content never places a <p> as a direct child of
   entry-content or .home-hero, so this is safe to hide
   unconditionally. */
.entry-content > p,
.wp-block-post-content > p,
.home-hero > p{
  display:none !important;
  margin:0 !important;
  padding:0 !important;
  height:0 !important;
  line-height:0 !important;
  font-size:0 !important;
}

.home-hero{
  position:relative;
  width:100%;
  border-bottom:1px solid var(--line);
  overflow:hidden;
  padding:0 !important;
}
.home-hero > *:first-child{
  margin-top:0 !important;
}

/* Static image version — kept for reference / fallback if the
   hero ever reverts from video back to a photo. Currently unused
   now that .home-hero-video-wrap is the active hero background. */
.home-hero-img{
  width:100% !important;
  height:78vh !important;
  min-height:560px !important;
  max-height:820px !important;
  object-fit:cover !important;
  object-position:center 8% !important;
  display:block !important;
}

/* Vimeo background video — active hero background.
   Iframes don't reliably respect object-fit for what's playing
   inside them, so this uses the standard "oversize + center"
   trick instead: make the iframe always wider/taller than the
   container regardless of viewport shape, then crop via
   overflow:hidden on the wrapper. */
.home-hero-video-wrap{
  position:relative;
  width:100%;
  height:78vh;
  min-height:560px;
  max-height:820px;
  overflow:hidden;
}
.home-hero-video-wrap iframe{
  position:absolute;
  top:50%;
  left:50%;
  width:100vw;
  height:56.25vw;      /* 16:9 based on viewport width */
  min-height:100%;
  min-width:177.78vh;  /* 16:9 based on container height */
  transform:translate(-50%, -50%);
  pointer-events:none; /* decorative background — no click/hover cursor */
  border:0;
}

.home-hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(35,35,33,0.10) 0%, rgba(35,35,33,0.05) 30%, rgba(35,35,33,0.78) 100%);
}
.home-hero-content{
  position:absolute; left:50%; bottom:64px; transform:translateX(-50%);
  width:100%; max-width:680px; padding:0 24px;
  color:var(--paper); text-align:center; z-index:2;
}
.home-hero-content .eyebrow{
  color:var(--silver-light); justify-content:center; display:flex;
}
.home-hero-content h1{
  color:var(--paper);
  font-size:clamp(34px,5vw,58px);
  margin:12px 0 16px;
}
.home-hero-content p{
  color:var(--silver-light);
  font-size:16px;
  max-width:520px;
  margin:0 auto 28px;
}
.home-hero-ctas{
  display:flex; gap:14px; justify-content:center; flex-wrap:wrap;
}

/* filled white button — for CTAs sitting on top of dark hero imagery */
.btn-fill-white{
  background:var(--paper); color:var(--ink); border:1px solid var(--paper);
}
.btn-fill-white:hover{
  background:transparent; color:var(--paper);
}

@media (max-width:900px){
  .home-hero-img{height:64vh !important; min-height:460px !important; object-position:center 12% !important;}
  .home-hero-video-wrap{height:64vh; min-height:460px;}
  .home-hero-content{bottom:40px; padding:0 20px;}
}

/* Real photos inside category-split cards — same absolute-cover
   behavior the .ph placeholder had */
.cat-card-img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover; object-position:center 20%;
  z-index:0;
}

/* Real photo tile inside the UGC grid — matches the square
   aspect ratio the .ph placeholders use */
.ugc-item{
  position:relative;
  aspect-ratio:1/1;
  overflow:hidden;
}

/* Rotating announcement bar — pairs with the WPCode footer
   script (announce-bar-rotator.html). Fades the message text
   in/out on each rotation instead of an abrupt swap. */
.announce-text{
  display:inline-block;
  transition:opacity .4s ease;
}