* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #29231f;
  --brown: #66554a;
  --muted: #877a70;
  --rose: #b98e87;
  --cream: #f6f0e9;
  --blush: #eee0dc;
  --paper: #fbf9f6;
  --line: #ded4cc;
  --white: #fff;
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.announcement {
  background: var(--ink);
  color: white;
  text-align: center;
  padding: 9px 20px;
  font-size: 9px;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.site-header {
  height: 88px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(251,249,246,.96);
  position: sticky;
  top: 0;
  z-index: 20;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  letter-spacing: .18em;
}
.logo span { font-family: "Cormorant Garamond", serif; font-size: 27px; font-weight: 600; }
.logo small { font-size: 7px; letter-spacing: .48em; margin: 7px 0 0 4px; }

nav { display: flex; gap: 34px; }
nav a, .header-actions button {
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: none;
  border: 0;
  cursor: pointer;
}
nav a:hover, .header-actions button:hover, .text-link:hover { opacity: .55; }

.header-actions { display: flex; gap: 17px; align-items: center; }

.hero {
  min-height: calc(100vh - 130px);
  display: grid;
  grid-template-columns: 46% 54%;
}

.hero-copy {
  padding: 8vw 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 19px;
}

h1, h2, blockquote, .journal h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(58px, 7vw, 105px);
  line-height: .82;
  letter-spacing: -.045em;
}

em { font-style: italic; }

.lead {
  max-width: 440px;
  color: var(--muted);
  font-size: 13px;
  margin: 32px 0;
}

.button {
  background: var(--ink);
  color: white;
  padding: 16px 23px;
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.button span { margin-left: 30px; }
.button:hover { background: var(--rose); }

.hero-note {
  margin-top: 30px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-visual {
  min-height: 680px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(74,52,44,.07), rgba(74,52,44,.07)),
    url("https://images.unsplash.com/photo-1496747611176-843222e1e57c?auto=format&fit=crop&w=1600&q=90")
    center/cover;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(30,20,16,.38));
}

.flower {
  position: absolute;
  color: rgba(255,255,255,.75);
  font-family: Georgia, serif;
  z-index: 2;
}
.flower-one { top: 12%; left: 12%; font-size: 45px; transform: rotate(12deg); }
.flower-two { top: 31%; right: 9%; font-size: 26px; transform: rotate(-18deg); }

.hero-caption {
  position: absolute;
  bottom: 25px;
  left: 30px;
  right: 30px;
  z-index: 3;
  color: white;
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  letter-spacing: .22em;
}

.manifesto {
  padding: 145px 25px;
  max-width: 850px;
  margin: auto;
  text-align: center;
}

.manifesto h2 { font-size: clamp(52px, 6vw, 82px); line-height: .9; }
.manifesto > p:last-child {
  max-width: 590px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 13px;
}

.shop { padding: 0 5vw 140px; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 43px;
}
.section-head h2 { font-size: 54px; line-height: .85; }
.section-head > a, .text-link {
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-image {
  aspect-ratio: 3 / 4;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: transform .4s ease;
}
.product:hover .product-image { transform: translateY(-4px); }

.dress { background-image: url("https://images.unsplash.com/photo-1594633312681-425c7b97ccd1?auto=format&fit=crop&w=900&q=90"); }
.blazer { background-image: url("https://images.unsplash.com/photo-1591369822096-ffd140ec948f?auto=format&fit=crop&w=900&q=90"); }
.knit { background-image: url("https://images.unsplash.com/photo-1608234807905-4466023792f5?auto=format&fit=crop&w=900&q=90"); }
.trouser { background-image: url("https://images.unsplash.com/photo-1594633312681-425c7b97ccd1?auto=format&fit=crop&w=900&q=90"); }

.label {
  position: absolute;
  top: 14px;
  left: 14px;
  background: white;
  padding: 6px 9px;
  font-size: 7px;
  letter-spacing: .16em;
}

.wish {
  position: absolute;
  top: 8px;
  right: 12px;
  color: white;
  background: none;
  border: 0;
  font-size: 26px;
  cursor: pointer;
  text-shadow: 0 1px 5px rgba(0,0,0,.35);
}

.product-info {
  display: flex;
  justify-content: space-between;
  padding: 15px 2px;
}
.product-info h3 { font-size: 11px; font-weight: 500; }
.product-info p { color: var(--muted); font-size: 9px; margin-top: 3px; }
.product-info strong { font-size: 10px; font-weight: 500; }

.quote {
  background: var(--blush);
  text-align: center;
  padding: 130px 25px;
}
.quote-flower {
  font-family: Georgia, serif;
  font-size: 34px;
  color: var(--rose);
  margin-bottom: 20px;
}
blockquote {
  max-width: 900px;
  margin: auto;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: .98;
}
.quote p {
  margin-top: 22px;
  color: var(--brown);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.feature {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 700px;
}
.feature-image {
  background:
    linear-gradient(rgba(72,49,42,.06), rgba(72,49,42,.06)),
    url("https://images.unsplash.com/photo-1551488831-00ddcb6c6bd3?auto=format&fit=crop&w=1400&q=90")
    center/cover;
}
.feature-copy {
  background: var(--cream);
  padding: 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-copy h2 { font-size: clamp(56px, 6vw, 82px); line-height: .84; }
.feature-copy > p:not(.eyebrow) {
  max-width: 360px;
  color: var(--muted);
  font-size: 13px;
  margin: 28px 0;
}

.journal {
  padding: 130px 5vw;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 45px;
  border-bottom: 1px solid var(--line);
}
.journal h2 { font-size: 58px; line-height: .85; }
.journal-card {
  border-top: 1px solid var(--ink);
  padding-top: 17px;
}
.journal-card span {
  font-size: 8px;
  letter-spacing: .14em;
}
.journal-card h3 { font-size: 30px; line-height: 1; margin: 35px 0 55px; }
.journal-card a {
  font-size: 8px;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.newsletter {
  text-align: center;
  padding: 125px 20px;
}
.newsletter h2 { font-size: clamp(48px, 6vw, 72px); line-height: .9; }
.newsletter > p:nth-of-type(2) {
  color: var(--muted);
  font-size: 12px;
  margin: 20px 0 34px;
}
.newsletter form {
  width: min(460px, 90vw);
  margin: auto;
  display: flex;
  border-bottom: 1px solid var(--ink);
}
.newsletter input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 13px 0;
  font-size: 11px;
}
.newsletter button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

footer { padding: 65px 5vw 25px; }
.footer-main {
  display: flex;
  justify-content: space-between;
  padding-bottom: 65px;
}
.footer-logo { display: inline-flex; }
.footer-main > div:first-child > p { color: var(--muted); font-size: 10px; margin-top: 15px; }
.footer-links { display: flex; gap: 90px; }
.footer-links div { display: flex; flex-direction: column; gap: 8px; }
.footer-links h4 {
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer-links a { color: var(--muted); font-size: 9px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 19px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 520px; padding: 80px 8vw; }
  .hero-visual { min-height: 600px; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .feature, .journal { grid-template-columns: 1fr; }
  .feature-image { min-height: 650px; }
  .feature-copy { min-height: 520px; }
  .journal-card h3 { margin-bottom: 35px; }
  .footer-main { flex-direction: column; gap: 50px; }
}

@media (max-width: 520px) {
  .site-header { height: 70px; padding: 0 20px; }
  .logo span { font-size: 22px; }
  .header-actions { gap: 9px; }
  .header-actions button { font-size: 8px; }
  .hero-copy { min-height: 450px; padding: 70px 25px; }
  .hero-visual { min-height: 500px; }
  .manifesto { padding: 100px 25px; }
  .shop { padding: 0 20px 100px; }
  .section-head { align-items: start; gap: 20px; }
  .section-head h2 { font-size: 43px; }
  .products { gap: 12px; }
  .product-info { display: block; }
  .product-info strong { display: block; margin-top: 6px; }
  .quote { padding: 100px 20px; }
  .feature-copy { padding: 80px 25px; }
  .journal { padding: 100px 20px; }
  .journal h2 { font-size: 48px; }
  .footer-main { padding-bottom: 45px; }
  .footer-links { gap: 35px; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}


/* SELAH BLOOM — clothing-only image treatment */
.hero-visual,
.feature-image,
.product-image {
  background-color: #eee7df;
  background-repeat: no-repeat;
}

.hero-visual {
  background-position: center;
}

.feature-image {
  background-position: center;
}

.product-image {
  background-position: center;
}

/* Prevent the old floral overlay from looking like a person-focused hero */
.hero-visual::after {
  background: linear-gradient(180deg, transparent 55%, rgba(30,20,16,.24));
}


/* SELAH BLOOM — expanded clothing photo collection */
.photo-collection {
  padding: 130px 5vw;
  background: #f3eee8;
}

.collection-intro {
  max-width: 620px;
  margin: 0 auto 60px;
  text-align: center;
}

.collection-intro h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 6vw, 82px);
  line-height: .85;
  font-weight: 500;
}

.collection-intro > p:last-child {
  color: var(--muted);
  font-size: 12px;
  margin-top: 22px;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}

.lookbook-item {
  margin: 0;
}

.lookbook-item:nth-child(2),
.lookbook-item:nth-child(5),
.lookbook-item:nth-child(7) {
  margin-top: 70px;
}

.lookbook-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.lookbook-item:hover img {
  transform: scale(1.025);
}

.lookbook-item figcaption {
  padding-top: 12px;
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brown);
}

@media (max-width: 900px) {
  .lookbook-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lookbook-item:nth-child(2),
  .lookbook-item:nth-child(5),
  .lookbook-item:nth-child(7) {
    margin-top: 0;
  }

  .lookbook-item:nth-child(even) {
    margin-top: 45px;
  }
}

@media (max-width: 520px) {
  .photo-collection {
    padding: 100px 20px;
  }

  .lookbook-grid {
    gap: 12px;
  }

  .lookbook-item:nth-child(even) {
    margin-top: 25px;
  }

  .lookbook-item figcaption {
    font-size: 7px;
  }
}
/* =========================
   JOURNAL
========================= */

.journal {
  padding: 130px 5vw;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  border-bottom: 1px solid var(--line);
}

.journal-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.journal-intro h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 6vw, 78px);
  line-height: .85;
  font-weight: 500;
}

.journal-intro > p:last-child {
  max-width: 300px;
  color: var(--muted);
  font-size: 12px;
  margin-top: 25px;
}

.journal-categories {
  display: flex;
  flex-direction: column;
}

.journal-category {
  border-top: 1px solid var(--line);
  padding: 28px 0 32px;
  transition: padding-left .3s ease;
}

.journal-category:last-child {
  border-bottom: 1px solid var(--line);
}

.journal-category:hover {
  padding-left: 15px;
}

.journal-category span {
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brown);
}

.journal-category h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 500;
  line-height: 1;
  max-width: 650px;
  margin: 18px 0 12px;
}

.journal-category p {
  color: var(--muted);
  font-size: 11px;
  max-width: 500px;
  margin-bottom: 18px;
}

.journal-category strong {
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
}


/* =========================
   JOURNAL MOBILE
========================= */

@media (max-width: 900px) {

  .journal {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 100px 5vw;
  }

  .journal-intro {
    position: static;
  }

}

@media (max-width: 520px) {

  .journal {
    padding: 90px 20px;
    gap: 45px;
  }

  .journal-intro h2 {
    font-size: 48px;
  }

  .journal-category {
    padding: 23px 0 28px;
  }

  .journal-category h3 {
    font-size: 29px;
  }

}