:root{
  --bg:#ffffff;
  --text:#1d1b18;
  --muted:#6d6760;
  --line:#e8e0d7;
  --soft:#f8f3ed;
  --accent:#8d5d4b;
  --accent-dark:#513629;
  --rose:#d8aaa0;
  --sage:#74816e;
  --shadow:0 18px 50px rgba(42,34,28,.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  background:var(--bg);
  font-family:Arial,"Helvetica Neue",sans-serif;
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.top-note{
  background:var(--accent-dark);
  color:#fff;
  text-align:center;
  padding:9px 16px;
  font-size:13px;
  letter-spacing:.02em;
}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:22px;
  min-height:76px;
  padding:0 42px;
  background:rgba(255,255,255,.94);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(12px);
}
.brand{
  font-family:Georgia,serif;
  font-size:31px;
  letter-spacing:.06em;
}
.main-nav{
  display:flex;
  justify-content:center;
  gap:24px;
  font-size:14px;
}
.main-nav a{padding:26px 0;border-bottom:2px solid transparent}
.main-nav a:hover,.main-nav a.active{border-color:var(--accent)}
.header-actions{display:flex;align-items:center;gap:14px}
.country-select{display:flex;align-items:center;gap:8px;font-size:12px;color:var(--muted)}
.country-select select{
  border:1px solid var(--line);
  border-radius:0;
  background:#fff;
  padding:8px 28px 8px 10px;
  color:var(--text);
}
.cart-button,.primary-link,.subscribe-form button{
  border:1px solid var(--accent-dark);
  background:var(--accent-dark);
  color:#fff;
  padding:11px 18px;
  cursor:pointer;
  font-size:14px;
}
.menu-toggle{
  display:none;
  width:42px;
  height:42px;
  border:0;
  background:transparent;
  padding:10px;
}
.menu-toggle span{display:block;height:2px;background:var(--text);margin:6px 0}

.hero{
  min-height:610px;
  display:grid;
  grid-template-columns:1fr;
  align-items:end;
  position:relative;
  overflow:hidden;
}
.hero-media{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(255,255,255,.42),rgba(255,255,255,.08) 56%),
    url("assets/hero/hero-2222.png") center/cover;
}
.hero-copy{
  position:relative;
  max-width:720px;
  padding:0 42px 88px;
  color:var(--accent-dark);
}
.hero-copy p,.section-heading p,.category-hero p,.story-copy>p:first-child{
  margin:0 0 10px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
}
.hero-copy h1{
  margin:0 0 24px;
  max-width:680px;
  font-family:Georgia,serif;
  font-size:58px;
  line-height:1.08;
  font-weight:400;
}
.primary-link{display:inline-block;min-width:150px;text-align:center}

.info-strip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--line);
  border-bottom:1px solid var(--line);
}
.info-strip span{
  background:var(--soft);
  padding:18px 20px;
  text-align:center;
  font-size:14px;
}

.section{
  max-width:1240px;
  margin:0 auto;
  padding:72px 42px;
}
.section-heading{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:28px;
  margin-bottom:30px;
}
.section-heading h2,.story-copy h2,.category-hero h1{
  margin:0;
  font-family:Georgia,serif;
  font-size:38px;
  font-weight:400;
  line-height:1.18;
}

.collection-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.collection-card,.product-card{
  display:block;
  background:#fff;
}
.collection-card figure,.product-card figure{
  margin:0;
  overflow:hidden;
  background:var(--soft);
}
.collection-card figure{aspect-ratio:4/5}
.product-card figure{aspect-ratio:3/4}
.collection-card img,.product-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}
.collection-card:hover img,.product-media:hover img{transform:scale(1.04)}
.product-media{position:relative}
.collection-card h3,.product-card h3{
  margin:13px 0 2px;
  font-size:17px;
  font-weight:400;
}
.collection-card p,.product-card p{margin:0;color:var(--muted);font-size:14px}
.product-specs{
  margin:8px 0 0;
  padding:0;
  list-style:none;
  color:var(--muted);
  font-size:13px;
  line-height:1.55;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px 22px;
}
.price{margin-top:8px;color:var(--accent-dark);font-weight:700}

.story-band{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:540px;
  background:var(--soft);
}
.story-image{
  background:url("assets/hero/story-1115.png") center/cover;
}
.story-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:74px;
}
.story-copy p{color:var(--muted)}
.text-link{
  width:max-content;
  margin-top:12px;
  border-bottom:1px solid var(--accent-dark);
  color:var(--accent-dark);
}

.faq-section{max-width:900px}
.faq-list details{
  border-top:1px solid var(--line);
  padding:20px 0;
}
.faq-list details:last-child{border-bottom:1px solid var(--line)}
.faq-list summary{
  cursor:pointer;
  font-size:18px;
  list-style:none;
}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list p{color:var(--muted);margin:12px 0 0}

.category-hero{
  padding:78px 42px;
  background:var(--soft);
  text-align:center;
}
.category-hero p:last-child{
  max-width:660px;
  margin:16px auto 0;
  text-transform:none;
  letter-spacing:0;
  font-size:16px;
  color:var(--muted);
}
.category-layout{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:38px;
}
.filter-panel{
  align-self:start;
  position:sticky;
  top:104px;
  border:1px solid var(--line);
  padding:22px;
}
.filter-panel h2{
  margin:0 0 16px;
  font-size:16px;
  font-weight:600;
}
.filter-panel a{
  display:block;
  padding:9px 0;
  color:var(--muted);
}
.filter-panel a.active{color:var(--accent-dark);font-weight:700}

.contact-hero{
  padding:86px 42px;
  background:var(--soft);
  text-align:center;
}
.contact-hero p:first-child{
  margin:0 0 10px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
}
.contact-hero h1{
  margin:0;
  font-family:Georgia,serif;
  font-size:44px;
  font-weight:400;
  line-height:1.15;
}
.contact-hero p:last-child{
  max-width:680px;
  margin:18px auto 0;
  color:var(--muted);
}
.contact-layout{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:24px;
}
.contact-card{
  border:1px solid var(--line);
  padding:32px;
  background:#fff;
}
.contact-card>p{
  margin:0 0 16px;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-size:12px;
  color:var(--muted);
}
.contact-email{
  font-size:24px;
  color:var(--accent-dark);
  overflow-wrap:anywhere;
}
.wear-steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.wear-steps article{
  border-top:1px solid var(--line);
  padding-top:24px;
}
.wear-steps span{
  display:block;
  margin-bottom:16px;
  color:var(--accent);
  font-family:Georgia,serif;
  font-size:28px;
}
.wear-steps h2{
  margin:0 0 10px;
  font-size:20px;
  font-weight:500;
}
.wear-steps p{
  margin:0;
  color:var(--muted);
}
.wear-guide{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.wear-guide-card{
  border:1px solid var(--line);
  background:#fff;
  padding:28px;
}
.wear-guide-card>p{
  margin:0 0 8px;
  color:var(--accent);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
}
.wear-guide-card h2{
  margin:0 0 18px;
  font-family:Georgia,serif;
  font-size:28px;
  font-weight:400;
}
.wear-guide-card ol{
  margin:0;
  padding-left:20px;
  color:var(--muted);
}
.wear-guide-card li+li{margin-top:9px}
.wear-reference{padding-top:20px}
.wear-reference figure{
  margin:0;
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
}
.wear-reference img{
  width:100%;
  display:block;
  max-width:100%;
  height:auto;
}

.site-footer{
  display:grid;
  grid-template-columns:1fr 1.1fr .6fr;
  gap:18px 34px;
  padding:54px 42px;
  background:var(--accent-dark);
  color:#fff;
}
.site-footer>div:first-child{grid-column:1;grid-row:1 / span 2}
.subscribe-form{grid-column:2;grid-row:1}
.footer-links{grid-column:3;grid-row:1 / span 2}
.site-footer h2{
  margin:0 0 10px;
  font-family:Georgia,serif;
  font-weight:400;
  letter-spacing:.06em;
}
.site-footer p{margin:0;color:rgba(255,255,255,.78)}
.subscribe-form label{display:block;margin-bottom:12px}
.subscribe-form div{display:flex}
.subscribe-form input{
  width:100%;
  min-width:0;
  border:1px solid rgba(255,255,255,.45);
  background:transparent;
  color:#fff;
  padding:12px;
}
.subscribe-form input::placeholder{color:rgba(255,255,255,.62)}
.subscribe-form button{
  border-color:#fff;
  background:#fff;
  color:var(--accent-dark);
}
.footer-links{display:flex;flex-direction:column;gap:8px;color:rgba(255,255,255,.82)}
.social-list{
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:10px;
  min-width:0;
}
.site-footer>.social-list{
  grid-column:2;
  grid-row:2;
  justify-self:center;
  margin-top:-8px;
}
.social-list a{
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(255,255,255,.88);
  font-size:14px;
  line-height:1.35;
  overflow-wrap:anywhere;
}
.social-list.light{
  flex-direction:column;
  align-items:flex-start;
  gap:9px;
}
.social-list.light a{
  justify-content:flex-start;
  gap:10px;
  color:var(--text);
  font-size:17px;
}
.social-icon{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:22px;
  border-radius:4px;
  color:#fff;
  font-size:10px;
  font-weight:700;
  line-height:1;
}
.tiktok,.x-icon{background:#050505}
.line{background:#06c755;font-size:7px}
.youtube{background:#ff0000}
.instagram{background:linear-gradient(135deg,#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5)}
.facebook{background:#1877f2;font-family:Georgia,serif;font-size:15px}
.site-footer>.social-list .social-icon{
  width:30px;
  height:30px;
}
.site-footer>.social-list .line{font-size:9px}
.site-footer>.social-list .facebook{font-size:18px}

@media (max-width:980px){
  .site-header{
    grid-template-columns:auto auto;
    padding:0 20px;
    min-height:66px;
  }
  .brand{font-size:26px}
  .menu-toggle{display:block;justify-self:end}
  .main-nav{
    display:none;
    grid-column:1/-1;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    border-top:1px solid var(--line);
    padding:8px 0 16px;
  }
  .main-nav.open{display:flex}
  .main-nav a{padding:10px 0}
  .header-actions{
    grid-column:1/-1;
    justify-content:space-between;
    padding-bottom:14px;
  }
  .hero{min-height:560px}
  .hero-copy{padding:0 24px 54px}
  .hero-copy h1{font-size:40px}
  .info-strip{grid-template-columns:1fr}
  .section{padding:54px 20px}
  .section-heading{display:block}
  .section-heading h2,.story-copy h2,.category-hero h1{font-size:31px}
  .collection-grid{grid-template-columns:repeat(2,1fr);gap:18px}
  .product-grid{grid-template-columns:repeat(2,1fr);gap:26px 16px}
  .story-band{grid-template-columns:1fr}
  .story-image{min-height:360px}
  .story-copy{padding:46px 24px}
  .category-layout{grid-template-columns:1fr}
  .contact-layout{grid-template-columns:1fr}
  .wear-steps{grid-template-columns:1fr}
  .wear-guide{grid-template-columns:1fr}
  .wear-reference img{max-width:100%}
  .filter-panel{position:static}
  .site-footer{grid-template-columns:1fr;padding:42px 24px}
  .site-footer>div:first-child,
  .subscribe-form,
  .footer-links,
  .site-footer>.social-list{
    grid-column:auto;
    grid-row:auto;
    justify-self:start;
    margin-top:0;
  }
}

@media (max-width:560px){
  .hero-copy h1{font-size:34px}
  .collection-grid,.product-grid{grid-template-columns:1fr}
  .collection-card figure{aspect-ratio:1/1}
  .product-card figure{aspect-ratio:4/5}
  .subscribe-form div{display:grid;gap:10px}
}
