:root {
  --bg: #fdf2f4;
  --bg-warm: #fffafb;
  --blush: #f8e1e4;
  --rose: #c4787a;
  --rose-light: #e8b4b7;
  --rose-dark: #a85d61;
  --white: #ffffff;
  --text: #2d2426;
  --text-light: #6b5b5d;
  --cream: #f9ede9;
  --gold: #b8967a;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ─────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 242, 244, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 120, 122, 0.12);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.instagram-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--rose);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.instagram-link:hover { color: var(--rose-dark); }

.brand-mark {
  display: flex;
  align-items: center;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--text);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-nav a {
  text-decoration: none;
  color: var(--text-light);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.header-nav a:hover { color: var(--rose); }

/* ── HERO ───────────────────────────────────── */
.hero {
  padding: 120px 0 0;
  background: var(--bg);
}

.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.hero-sub {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 320px;
}

.hero-image-grid {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.hero-img {
  overflow: hidden;
  border-radius: 4px;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-img--tall {
  width: 55%;
  height: 520px;
}

.hero-img-stack {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-img--short {
  height: 254px;
}

/* ── PHILOSOPHY ─────────────────────────────── */
.philosophy {
  background: var(--bg-warm);
  padding: 6rem 0;
  border-top: 1px solid rgba(196, 120, 122, 0.1);
  border-bottom: 1px solid rgba(196, 120, 122, 0.1);
}

.philosophy-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.philosophy-label {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.label-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--rose);
}

.label-text {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
}

.philosophy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.philosophy-headline {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text);
  letter-spacing: -0.01em;
}

.philosophy-body {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 480px;
  padding-top: 0.5rem;
}

.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(196, 120, 122, 0.15);
  padding-top: 3rem;
}

.pillar {}

.pillar-num {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--rose-light);
  margin-bottom: 0.75rem;
}

.pillar h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.pillar p {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── COLLECTIONS ─────────────────────────────── */
.collections {
  padding: 6rem 0 5rem;
  background: var(--bg);
}

.collections-header {
  max-width: 1400px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.collections-title {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text);
}

.collections-sub {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--rose);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: var(--blush);
  aspect-ratio: 3/4;
  margin-bottom: 1rem;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.03);
}

.product-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--rose);
  color: white;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 2px;
}

.product-info {}

.product-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.product-detail {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.product-price {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--rose-dark);
  letter-spacing: 0.02em;
}

.collections-footer {
  max-width: 1400px;
  margin: 3rem auto 0;
  padding: 0 2rem;
  text-align: center;
}

.collections-note {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-light);
  font-style: italic;
}

/* ── MANIFESTO ────────────────────────────────── */
.manifesto {
  background: var(--cream);
  padding: 5rem 0;
  border-top: 1px solid rgba(196, 120, 122, 0.1);
  border-bottom: 1px solid rgba(196, 120, 122, 0.1);
}

.manifesto-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.manifesto-quote blockquote p {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.3;
}

.manifesto-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}

/* ── CLOSING ──────────────────────────────────── */
.closing {
  padding: 8rem 0;
  background: var(--bg);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}

.closing-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.closing-body {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.closing-rule {
  width: 60px;
  height: 1px;
  background: var(--rose);
  margin: 0 auto 2rem;
}

.closing-tagline {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--rose-light);
  letter-spacing: 0.05em;
}

/* ── FOOTER ──────────────────────────────────── */
.site-footer {
  background: var(--text);
  color: var(--blush);
  padding: 3rem 0 2rem;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(248, 225, 228, 0.1);
  margin-bottom: 1.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-name {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--bg);
}

.footer-tagline {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--rose-light);
  text-transform: uppercase;
}

.footer-social {}

.footer-instagram {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--blush);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.footer-instagram:hover { color: var(--rose-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(248, 225, 228, 0.5);
}

.footer-note {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(248, 225, 228, 0.35);
  letter-spacing: 0.05em;
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-text { order: 1; }
  .hero-image-grid { order: 2; }
  .philosophy-content { grid-template-columns: 1fr; gap: 2rem; }
  .manifesto-inner { grid-template-columns: 1fr; }
  .manifesto-image { order: 1; }
  .manifesto-quote { order: 2; }
}

@media (max-width: 700px) {
  .header-inner { padding: 0 1.25rem; }
  .header-nav { display: none; }
  .brand-name { font-size: 1.25rem; }
  .hero { padding: 90px 0 0; }
  .hero-inner { padding: 0 1.25rem 3rem; }
  .hero-headline { font-size: 3.5rem; }
  .hero-img--tall { height: 360px; }
  .hero-img--short { height: 172px; }
  .philosophy { padding: 4rem 0; }
  .philosophy-pillars { grid-template-columns: 1fr; gap: 1.5rem; }
  .collections-header { flex-direction: column; gap: 0.5rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .collections { padding: 4rem 0 3rem; }
  .manifesto { padding: 3rem 0; }
  .closing { padding: 5rem 0; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .instagram-link span { display: none; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-img-wrap { aspect-ratio: 2/3; }
}