/* ==========================================================
   Sew Fresh N Sew Clean — base styles
   Minimal monochrome fashion-store layout (GAZU-inspired)
   ========================================================== */

:root{
  --black:#111111;
  --white:#ffffff;
  --grey-50:#f7f7f6;
  --grey-100:#efeeec;
  --grey-300:#d9d6d2;
  --grey-500:#8a8580;
  --max-w:1240px;
  --gap:24px;
  --sans:"Helvetica Neue", Arial, "Segoe UI", sans-serif;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--black);
  background:var(--white);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}
.wrap{max-width:var(--max-w);margin:0 auto;padding:0 24px;}

/* ---------- announcement bar ---------- */
.announce-bar{background:var(--grey-50);border-bottom:1px solid var(--grey-300);}
.announce-inner{
  display:flex;justify-content:space-between;align-items:center;
  padding:9px 0;
  font-size:11px;letter-spacing:0.5px;text-transform:uppercase;color:#555;
  gap:16px;flex-wrap:wrap;
}
.announce-inner a:hover{text-decoration:underline;}

/* ---------- wordmark / logo ---------- */
.wordmark{display:flex;align-items:center;}
.wordmark-logo{height:46px;width:46px;object-fit:cover;}
.footer-logo{height:56px;width:56px;object-fit:cover;margin-bottom:14px;}

/* ---------- header ---------- */
.site-header{
  position:sticky;top:0;z-index:30;
  background:var(--white);
  border-bottom:1px solid var(--black);
}
.header-inner{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  min-height:76px;
  gap:16px;
}
.main-nav{display:flex;gap:28px;justify-self:start;}
.main-nav a{
  font-size:12px;font-weight:700;letter-spacing:0.8px;text-transform:uppercase;
  padding:8px 0;border-bottom:2px solid transparent;
  transition:border-color .15s ease;
}
.main-nav a:hover{border-color:var(--black);}

.header-right{justify-self:end;display:flex;align-items:center;gap:14px;}
.header-icon{width:22px;height:22px;color:var(--black);}
.header-icon svg{width:100%;height:100%;}

.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  width:40px;height:40px;
  background:transparent;
  border:1px solid var(--grey-300);
  cursor:pointer;
  flex-shrink:0;
}
.nav-toggle span{
  display:block;width:18px;height:2px;background:var(--black);
  transition:transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0;}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* ---------- buttons ---------- */
.btn{
  display:inline-block;
  padding:14px 30px;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.8px;
  text-transform:uppercase;
  border:1px solid var(--black);
  cursor:pointer;
  transition:opacity .15s ease, background .15s ease, color .15s ease;
}
.btn-dark{background:var(--black);color:var(--white);}
.btn-dark:hover{opacity:0.82;}
.btn-outline{background:transparent;color:var(--black);}
.btn-outline:hover{background:var(--black);color:var(--white);}
.btn-light{background:var(--white);color:var(--black);border-color:var(--white);}
.btn-light:hover{opacity:0.82;}
.btn-buy{width:100%;text-align:center;}
.btn-link{
  font-size:12px;font-weight:700;letter-spacing:0.8px;text-transform:uppercase;
  text-decoration:underline;text-underline-offset:4px;
  align-self:center;
}

/* ---------- eyebrow / rules ---------- */
.eyebrow{
  display:inline-block;
  font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;
  color:var(--black);margin:0 0 16px;
  padding-bottom:8px;
  border-bottom:2px solid var(--black);
}
.rule-accent{
  display:block;width:56px;height:2px;margin:0 auto 24px;
  background:var(--black);
}

/* ---------- hero ---------- */
.hero{padding:48px 0 0;}
.hero-title-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  margin:0 0 28px;
}
.hero-title{
  font-size:clamp(40px, 9vw, 108px);
  font-weight:900;
  letter-spacing:-1px;
  line-height:0.96;
  margin:0;
  text-transform:uppercase;
}
.hero-title-logo{
  height:clamp(76px, 17.3vw, 208px);
  width:clamp(76px, 17.3vw, 208px);
  object-fit:cover;
  flex-shrink:0;
  margin-left:auto;
}
.hero-photo{
  aspect-ratio:16/9;
  background:var(--grey-100);
  display:flex;align-items:center;justify-content:center;
  background-size:cover;background-position:center;
}
.hero-footer-row{
  display:flex;justify-content:space-between;align-items:flex-end;
  gap:20px;flex-wrap:wrap;
  padding:24px 0 48px;
  border-bottom:1px solid var(--grey-300);
}
.hero-actions{display:flex;align-items:center;gap:24px;flex-wrap:wrap;}
.hero-label{
  text-align:right;
  font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;
  line-height:1.8;
  border-bottom:2px solid var(--black);
  padding-bottom:6px;
}
.hero-label span{display:block;}

/* ---------- category band ---------- */
.category-band{background:var(--black);color:var(--white);padding:0;}
.category-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
}
.category-item{
  display:flex;align-items:center;gap:18px;
  padding:32px 28px;
  border-left:1px solid #2b2b2b;
}
.category-item:first-child{border-left:none;}
.category-thumb{
  width:76px;height:76px;flex-shrink:0;
  background:#1c1c1c;
  background-size:cover;background-position:center;
  display:flex;align-items:center;justify-content:center;
}
.category-thumb .ph-label{color:#888;font-size:9px;padding:6px;}
.category-thumb .ph-label code{background:#2a2a2a;color:#ccc;}
.category-copy h3{
  font-size:16px;font-weight:800;letter-spacing:0.5px;margin:0 0 4px;
}
.category-copy p{font-size:12px;color:#bbb;margin:0 0 8px;line-height:1.4;}
.category-link{
  font-size:11px;font-weight:700;letter-spacing:0.5px;text-transform:uppercase;
  border-bottom:1px solid var(--white);padding-bottom:2px;
}

/* ---------- feature / process ---------- */
.feature{background:var(--grey-50);padding:88px 0;}
.feature-inner{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:56px;
  align-items:center;
}
.feature-copy h2{
  font-size:clamp(28px,4vw,44px);
  font-weight:900;
  line-height:1.08;
  letter-spacing:-0.5px;
  margin:0 0 20px;
  text-transform:uppercase;
}
.feature-copy p{color:#444;font-size:15px;max-width:420px;}
.turnaround{margin-top:20px;font-weight:600;}
.feature-photo{
  aspect-ratio:4/5;
  background:var(--grey-100);
  display:flex;align-items:center;justify-content:center;
  background-size:cover;background-position:center;
}

/* ---------- trust strip ---------- */
.trust-strip{border-top:1px solid var(--grey-300);border-bottom:1px solid var(--grey-300);padding:44px 0;}
.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  text-align:center;
}
.trust-icon{width:26px;height:26px;margin:0 auto 14px;color:var(--black);}
.trust-item h4{font-size:13px;font-weight:800;letter-spacing:0.4px;text-transform:uppercase;margin:0 0 6px;}
.trust-item p{font-size:12px;color:#666;margin:0;line-height:1.5;}

/* ---------- manifesto ---------- */
.manifesto{padding:72px 0;text-align:center;}
.manifesto-text{
  font-size:clamp(18px, 2.2vw, 26px);
  font-weight:700;
  letter-spacing:-0.2px;
  line-height:1.55;
  max-width:740px;
  margin:0 auto;
  color:var(--black);
}

/* ---------- shop ---------- */
.shop{padding:88px 0;}
.shop-head{
  display:flex;justify-content:space-between;align-items:baseline;
  margin-bottom:44px;
  border-bottom:1px solid var(--black);
  padding-bottom:20px;
}
.shop-head h2{
  font-size:clamp(26px,4vw,38px);
  font-weight:900;
  letter-spacing:-0.5px;
  margin:0;
  text-transform:uppercase;
}
.shop-count{font-size:12px;font-weight:700;letter-spacing:0.5px;text-transform:uppercase;color:var(--grey-500);}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:32px;
}
.product-card{display:flex;flex-direction:column;}
.product-image{
  position:relative;
  aspect-ratio:4/5;
  background:var(--grey-100);
  display:flex;align-items:center;justify-content:center;
  background-size:cover;
  background-position:center;
  margin-bottom:16px;
}
.product-badge{
  position:absolute;top:12px;left:12px;
  background:var(--white);color:var(--black);
  border:1px solid var(--black);
  font-size:9px;font-weight:700;letter-spacing:1px;text-transform:uppercase;
  padding:5px 10px;
  z-index:2;
}
.ph-label{
  text-align:center;font-size:11px;color:var(--grey-500);
  padding:16px;line-height:1.6;
}
.ph-label code{
  display:inline-block;margin-top:4px;font-size:10px;
  background:var(--grey-300);padding:2px 6px;
}
[data-placeholder][style*="background-image"] .ph-label{display:none;}
.product-body{display:flex;flex-direction:column;flex:1;}
.product-body h3{font-size:14px;font-weight:700;margin:0 0 6px;line-height:1.35;}
.product-desc{font-size:12px;color:#666;margin:0 0 8px;line-height:1.45;}
.product-meta{font-size:11px;color:var(--grey-500);margin:0 0 8px;text-transform:uppercase;letter-spacing:0.4px;}
.product-price{font-size:16px;font-weight:800;margin:0 0 14px;}
.product-body .btn-buy{margin-top:auto;}
.shop-note{margin-top:44px;font-size:12px;color:var(--grey-500);text-align:center;}

/* ---------- custom requests cta ---------- */
.custom-cta{background:var(--black);color:var(--white);padding:72px 0;text-align:center;}
.custom-cta .eyebrow{color:var(--white);border-bottom-color:var(--white);}
.custom-cta h2{
  font-size:clamp(26px,4vw,38px);
  font-weight:900;
  letter-spacing:-0.5px;
  text-transform:uppercase;
  margin:0 0 16px;
}
.custom-cta-text{
  font-size:15px;color:#c9c9c9;line-height:1.6;
  max-width:520px;margin:0 auto 32px;
}

/* ---------- footer ---------- */
.site-footer{background:var(--grey-50);border-top:1px solid var(--black);padding:64px 0 24px;}
.footer-inner{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:32px;
  padding-bottom:40px;
}
.footer-copy{font-size:13px;color:#555;margin-top:12px;max-width:320px;}
.footer-links p{font-size:13px;margin:0 0 8px;color:#333;}
.footer-links a:hover{text-decoration:underline;}
.footer-bottom{
  font-size:12px;color:var(--grey-500);
  border-top:1px solid var(--grey-300);padding-top:20px;
}

/* ==========================================================
   Responsive
   ========================================================== */

@media (max-width:900px){
  .product-grid{grid-template-columns:repeat(2,1fr);}
  .footer-inner{grid-template-columns:1fr;text-align:left;}
  .category-grid{grid-template-columns:1fr;}
  .category-item{border-left:none;border-top:1px solid #2b2b2b;}
  .category-item:first-child{border-top:none;}
  .feature-inner{grid-template-columns:1fr;}
  .feature-photo{order:-1;}
}

@media (max-width:760px){
  .header-inner{min-height:64px;}
  .wordmark-logo{height:38px;width:38px;}
  .nav-toggle{display:flex;}
  .main-nav{
    position:absolute;
    top:100%;left:0;right:0;
    background:var(--white);
    border-bottom:1px solid var(--grey-300);
    flex-direction:column;
    gap:0;
    max-height:0;
    overflow:hidden;
    transition:max-height .25s ease;
    justify-self:auto;
  }
  .main-nav.is-open{max-height:260px;}
  .main-nav a{
    padding:16px 24px;
    width:100%;
    border-bottom:1px solid var(--grey-100);
  }
  .hero-footer-row{align-items:flex-start;flex-direction:column;}
  .hero-label{text-align:left;}
}

@media (max-width:600px){
  .announce-inner{flex-direction:column;gap:4px;text-align:center;}
  .hero{padding:32px 0 0;}
  .hero-photo{aspect-ratio:4/5;}
  .hero-actions{width:100%;flex-direction:column;align-items:stretch;}
  .hero-actions .btn{width:100%;text-align:center;}
  .trust-grid{grid-template-columns:repeat(2,1fr);gap:28px;}
  .manifesto{padding:48px 0;}
  .shop{padding:56px 0;}
  .product-grid{grid-template-columns:1fr;gap:28px;}
  .feature{padding:56px 0;}
  .footer-logo{height:48px;width:48px;}
}
