/* پوشاک لوک‌بوک — Cairo, black/white + blush */
:root {
  --ink: #111;
  --paper: #fafafa;
  --blush: #e8b4b8;
  --muted: #737373;
  --line: #e5e5e5;
}
body.clothing {
  font-family: "Cairo", Tahoma, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-weight: 400;
}
.c-top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
  width: min(1200px, 94%); margin-inline: auto;
}
.c-top .logo { font-weight: 800; font-size: 1.4rem; letter-spacing: -.03em; text-transform: uppercase; }
.c-top nav a { margin-right: 1.1rem; font-size: .88rem; font-weight: 600; }
.c-top nav a:hover { color: var(--blush); }
/* HERO: split — text right column, tall image left */
.c-hero {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 78vh;
  width: min(1200px, 94%); margin: 0 auto; gap: 0;
}
@media (max-width: 840px) {
  .c-hero { grid-template-columns: 1fr; min-height: auto; }
  .c-hero .visual { order: -1; min-height: 50vh; }
}
.c-hero .copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 3rem 2.5rem; background: #fff;
}
.c-hero .season { font-size: .75rem; font-weight: 700; letter-spacing: .2em; color: var(--blush); margin-bottom: 1rem; }
.c-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.15; margin-bottom: 1rem; }
.c-hero p { color: var(--muted); margin-bottom: 1.75rem; max-width: 28em; }
.c-hero .cta {
  display: inline-block; background: var(--ink); color: #fff; padding: .85rem 1.6rem;
  font-weight: 700; font-size: .9rem; letter-spacing: .04em;
}
.c-hero .cta:hover { background: #333; }
.c-hero .visual { background: #ddd; overflow: hidden; }
.c-hero .visual img { width: 100%; height: 100%; object-fit: cover; min-height: 100%; }
/* Section order: Lookbook masonry → Brand story → Shop CTA */
.c-section { padding: 4rem 0; width: min(1200px, 94%); margin-inline: auto; }
.c-section h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: .35rem; }
.c-section .sub { color: var(--muted); margin-bottom: 2rem; }
.c-lookbook {
  columns: 3 220px; column-gap: 1rem;
}
.c-lookbook figure { break-inside: avoid; margin-bottom: 1rem; position: relative; }
.c-lookbook img { width: 100%; display: block; }
.c-lookbook figcaption {
  position: absolute; bottom: 0; inset-inline: 0; padding: .75rem;
  background: linear-gradient(transparent, rgba(0,0,0,.65)); color: #fff;
  font-size: .8rem; font-weight: 600;
}
.c-story {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 2.5rem; align-items: center;
  padding: 3rem 0; border-top: 1px solid var(--line);
}
@media (max-width: 800px) { .c-story { grid-template-columns: 1fr; } }
.c-story blockquote {
  font-size: 1.35rem; font-weight: 600; line-height: 1.6; margin-bottom: 1rem;
}
.c-story p { color: var(--muted); }
.c-story .portrait { aspect-ratio: 3/4; object-fit: cover; width: 100%; filter: grayscale(20%); }
.c-shop-cta {
  background: var(--ink); color: #fff; text-align: center; padding: 3.5rem 1.5rem; margin-top: 1rem;
}
.c-shop-cta h2 { font-size: 2rem; font-weight: 800; margin-bottom: .5rem; }
.c-shop-cta p { opacity: .75; margin-bottom: 1.25rem; }
.c-shop-cta a {
  display: inline-block; background: var(--blush); color: var(--ink);
  padding: .8rem 1.5rem; font-weight: 800;
}
.c-footer {
  text-align: center; padding: 1.5rem; font-size: .85rem; color: var(--muted);
  border-top: 1px solid var(--line);
}
