/* Design DNA: Mosaic collage hero of fashion look tiles; blush rose + ink black; Sheinkin boutique mood */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,600;0,6..96,700;1,6..96,400&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --st-blush: #E8A0A0;
  --st-ink: #111111;
  --st-ivory: #FAF7F2;
  --st-sage: #8FA38A;
  --st-white: #FFFFFF;
  --st-text: #2A2A2A;
  --st-text-light: #6B6560;
  --st-border: rgba(17, 17, 17, 0.1);
  --st-shadow: 0 8px 32px rgba(17, 17, 17, 0.08);
  --st-radius: 2px;
  --st-font-display: 'Bodoni Moda', Georgia, serif;
  --st-font-body: 'Manrope', system-ui, sans-serif;
  --st-max: 1200px;
  --st-header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--st-font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--st-text);
  background: var(--st-ivory);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--st-ink); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--st-blush); }

h1, h2, h3, h4 {
  font-family: var(--st-font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--st-ink);
}

h1 { font-size: clamp(2.2rem, 5.5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.st-container {
  width: 100%;
  max-width: var(--st-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Header ── */
.st-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--st-white);
  border-bottom: 1px solid var(--st-border);
  height: var(--st-header-h);
}

.st-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--st-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.st-logo {
  font-family: var(--st-font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--st-ink);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.st-logo span { color: var(--st-blush); }

.st-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.st-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--st-text);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s, color 0.25s;
}

.st-nav a:hover,
.st-nav a.st-nav--active {
  color: var(--st-ink);
  border-bottom-color: var(--st-blush);
}

.st-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.st-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--st-ink);
  transition: transform 0.3s, opacity 0.3s;
}

.st-burger.st-burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.st-burger.st-burger--open span:nth-child(2) { opacity: 0; }
.st-burger.st-burger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mosaic Hero ── */
.st-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  background: var(--st-ink);
}

.st-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem clamp(1.5rem, 5vw, 5rem);
  position: relative;
  z-index: 2;
}

.st-hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--st-blush);
  margin-bottom: 1.25rem;
}

.st-hero h1 {
  color: var(--st-ivory);
  margin-bottom: 1.25rem;
}

.st-hero__text {
  color: rgba(250, 247, 242, 0.72);
  font-size: 1.05rem;
  max-width: 400px;
  margin-bottom: 2rem;
}

.st-hero__mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  min-height: 88vh;
}

.st-hero__tile {
  overflow: hidden;
  position: relative;
}

.st-hero__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.st-hero__tile:hover img { transform: scale(1.05); }

.st-hero__tile--wide {
  grid-column: span 2;
  max-height: 40%;
}

.st-hero__mosaic .st-hero__tile:nth-child(1) { grid-row: span 1; }
.st-hero__mosaic .st-hero__tile:nth-child(2) { grid-row: span 1; }
.st-hero__mosaic .st-hero__tile:nth-child(3) { grid-row: span 1; }
.st-hero__mosaic .st-hero__tile:nth-child(4) { grid-row: span 1; }

/* ── Buttons ── */
.st-btn {
  display: inline-block;
  font-family: var(--st-font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.15s;
}

.st-btn--primary {
  background: var(--st-blush);
  color: var(--st-ink);
}

.st-btn--primary:hover {
  background: #d88e8e;
  color: var(--st-ink);
  transform: translateY(-1px);
}

.st-btn--outline {
  background: transparent;
  color: var(--st-ivory);
  border: 1.5px solid rgba(250, 247, 242, 0.35);
}

.st-btn--outline:hover {
  border-color: var(--st-blush);
  color: var(--st-blush);
}

.st-btn--dark {
  background: var(--st-ink);
  color: var(--st-ivory);
}

.st-btn--dark:hover {
  background: #2a2a2a;
  color: var(--st-ivory);
}

.st-btn--sage {
  background: var(--st-sage);
  color: var(--st-white);
}

.st-btn--sage:hover {
  background: #7d9178;
  color: var(--st-white);
}

.st-btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Page hero (inner pages) ── */
.st-page-hero {
  padding: 4rem 0 3rem;
  background: var(--st-white);
  border-bottom: 1px solid var(--st-border);
}

.st-page-hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--st-sage);
  margin-bottom: 0.75rem;
}

.st-page-hero p {
  max-width: 560px;
  color: var(--st-text-light);
  font-size: 1.05rem;
}

/* ── Sections ── */
.st-section {
  padding: 5rem 0;
}

.st-section--alt { background: var(--st-white); }
.st-section--ink { background: var(--st-ink); color: var(--st-ivory); }
.st-section--ink h2, .st-section--ink h3 { color: var(--st-ivory); }

.st-section__header {
  margin-bottom: 3rem;
  max-width: 600px;
}

.st-section__header p {
  color: var(--st-text-light);
  margin-top: 0.75rem;
}

.st-section--ink .st-section__header p { color: rgba(250, 247, 242, 0.65); }

.st-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--st-sage);
  margin-bottom: 0.5rem;
}

.st-section--ink .st-eyebrow { color: var(--st-blush); }

/* ── Feature grid ── */
.st-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.st-feature {
  padding: 2rem;
  background: var(--st-white);
  border: 1px solid var(--st-border);
  position: relative;
}

.st-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--st-blush);
}

.st-feature h3 { margin-bottom: 0.75rem; }
.st-feature p { color: var(--st-text-light); font-size: 0.925rem; }

/* ── Product cards ── */
.st-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.st-product {
  background: var(--st-white);
  border: 1px solid var(--st-border);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.st-product:hover {
  box-shadow: var(--st-shadow);
  transform: translateY(-4px);
}

.st-product__img {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.st-product__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.st-product:hover .st-product__img img { transform: scale(1.04); }

.st-product__body { padding: 1.5rem; }

.st-product__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--st-sage);
  margin-bottom: 0.5rem;
}

.st-product__price {
  font-family: var(--st-font-display);
  font-size: 1.15rem;
  color: var(--st-blush);
  margin-top: 0.75rem;
}

/* ── Lookbook gallery ── */
.st-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.st-gallery__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.st-gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.st-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s, filter 0.4s;
  filter: grayscale(10%);
}

.st-gallery__item:hover img {
  transform: scale(1.03);
  filter: grayscale(0%);
}

.st-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(17, 17, 17, 0.75));
  color: var(--st-ivory);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}

.st-gallery__item:hover .st-gallery__caption { opacity: 1; }

/* ── Split layout ── */
.st-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.st-split__img {
  position: relative;
  overflow: hidden;
}

.st-split__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.st-split__img::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 72px;
  height: 72px;
  background: var(--st-blush);
  opacity: 0.25;
  z-index: -1;
}

.st-split__text p { color: var(--st-text-light); }

.st-split__text ul {
  list-style: none;
  margin: 1.5rem 0;
}

.st-split__text li {
  padding: 0.5rem 0;
  padding-left: 1.25rem;
  position: relative;
  color: var(--st-text-light);
  font-size: 0.925rem;
}

.st-split__text li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--st-blush);
}

/* ── Values strip ── */
.st-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.st-value {
  padding: 2rem 1rem;
  border: 1px solid var(--st-border);
  background: var(--st-ivory);
}

.st-value__num {
  font-family: var(--st-font-display);
  font-size: 2rem;
  color: var(--st-blush);
  margin-bottom: 0.5rem;
}

.st-value p {
  font-size: 0.85rem;
  color: var(--st-text-light);
}

/* ── CTA banner ── */
.st-cta {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.st-cta__bg {
  position: absolute;
  inset: 0;
}

.st-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.st-cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(17, 17, 17, 0.9) 40%, rgba(17, 17, 17, 0.4));
}

.st-cta__content {
  position: relative;
  z-index: 2;
  padding: 4rem 1.5rem;
  max-width: var(--st-max);
  margin: 0 auto;
  width: 100%;
}

.st-cta h2 { color: var(--st-ivory); margin-bottom: 1rem; }
.st-cta p { color: rgba(250, 247, 242, 0.78); max-width: 480px; margin-bottom: 1.5rem; }

/* ── Contact form ── */
.st-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.st-contact-info h3 { margin-bottom: 1.5rem; }

.st-contact-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--st-border);
}

.st-contact-item:last-child { border-bottom: none; }

.st-contact-item__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--st-sage);
  margin-bottom: 0.35rem;
}

.st-contact-item a { color: var(--st-blush); }

.st-form { display: flex; flex-direction: column; gap: 1.25rem; }

.st-form__group { display: flex; flex-direction: column; gap: 0.4rem; }

.st-form label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--st-text-light);
}

.st-form input,
.st-form textarea,
.st-form select {
  font-family: var(--st-font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--st-border);
  background: var(--st-white);
  color: var(--st-text);
  border-radius: var(--st-radius);
  transition: border-color 0.2s;
}

.st-form input:focus,
.st-form textarea:focus,
.st-form select:focus {
  outline: none;
  border-color: var(--st-blush);
}

.st-form textarea { resize: vertical; min-height: 140px; }

/* ── Privacy content ── */
.st-legal { max-width: 760px; }

.st-legal h2 {
  font-size: 1.35rem;
  margin: 2.5rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--st-border);
}

.st-legal h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.st-legal p, .st-legal li {
  color: var(--st-text-light);
  font-size: 0.925rem;
}

.st-legal ul {
  margin: 0.75rem 0 1rem 1.5rem;
}

.st-legal .st-legal__updated {
  font-size: 0.8rem;
  color: var(--st-sage);
  margin-bottom: 2rem;
}

/* ── Shop bar ── */
.st-shop-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--st-border);
}

.st-shop-bar__count {
  font-size: 0.85rem;
  color: var(--st-text-light);
}

.st-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.st-filter {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid var(--st-border);
  background: var(--st-white);
  color: var(--st-text-light);
  cursor: pointer;
  transition: all 0.2s;
}

.st-filter:hover,
.st-filter.st-filter--active {
  border-color: var(--st-blush);
  color: var(--st-blush);
  background: rgba(232, 160, 160, 0.08);
}

/* ── Footer ── */
.st-footer {
  background: var(--st-ink);
  color: rgba(250, 247, 242, 0.7);
  padding: 4rem 0 2rem;
}

.st-footer a { color: rgba(250, 247, 242, 0.7); }
.st-footer a:hover { color: var(--st-blush); }

.st-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.st-footer__col h4 {
  font-family: var(--st-font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--st-blush);
  margin-bottom: 1.25rem;
}

.st-footer__col p,
.st-footer__col li {
  font-size: 0.85rem;
  line-height: 1.7;
}

.st-footer__col ul { list-style: none; }
.st-footer__col li { margin-bottom: 0.5rem; }

.st-footer__brand {
  font-family: var(--st-font-display);
  font-size: 1.25rem;
  color: var(--st-ivory);
  margin-bottom: 0.75rem;
}

.st-footer__brand span { color: var(--st-blush); }

.st-footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* ── Cookie pill (bottom) ── */
.st-cookie {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: var(--st-ink);
  color: var(--st-ivory);
  max-width: 640px;
  width: calc(100% - 2rem);
  padding: 1rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(17, 17, 17, 0.25);
  align-items: center;
  gap: 1.25rem;
}

.st-cookie.st-cookie--visible {
  display: flex;
}

.st-cookie__text {
  flex: 1;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(250, 247, 242, 0.85);
}

.st-cookie__text a {
  color: var(--st-blush);
  text-decoration: underline;
}

.st-cookie__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.st-cookie__actions .st-btn {
  font-size: 0.65rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
}

/* ── Responsive: 900px ── */
@media (max-width: 900px) {
  .st-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .st-hero__content {
    padding: 3rem 1.5rem;
    order: 2;
  }

  .st-hero__mosaic {
    order: 1;
    min-height: 50vh;
  }

  .st-features,
  .st-products,
  .st-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .st-gallery__item--wide {
    grid-column: span 2;
  }

  .st-split,
  .st-contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .st-values {
    grid-template-columns: repeat(2, 1fr);
  }

  .st-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Responsive: 560px ── */
@media (max-width: 560px) {
  :root { --st-header-h: 60px; }

  .st-burger { display: flex; }

  .st-nav {
    display: none;
    position: fixed;
    top: var(--st-header-h);
    left: 0;
    right: 0;
    background: var(--st-white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--st-border);
    box-shadow: var(--st-shadow);
  }

  .st-nav.st-nav--open { display: flex; }

  .st-nav li { width: 100%; }

  .st-nav a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--st-border);
  }

  .st-features,
  .st-products,
  .st-gallery,
  .st-values {
    grid-template-columns: 1fr;
  }

  .st-gallery__item--wide {
    grid-column: span 1;
    aspect-ratio: 3/4;
  }

  .st-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .st-footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .st-section { padding: 3rem 0; }

  .st-btn-group { flex-direction: column; }
  .st-btn-group .st-btn { text-align: center; }

  .st-shop-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .st-cookie {
    flex-direction: column;
    border-radius: 20px;
    padding: 1.25rem;
    text-align: center;
  }

  .st-cookie__actions {
    width: 100%;
    justify-content: center;
  }
}
