/* ==========================================
   GLOSSED — COQUETTE BEAUTY BOX
   Typography: Playfair Display + DM Sans
   Palette: blush cream → dusty rose → deep mauve
   ========================================== */

:root {
  --cream: #FFF5F3;
  --cream-dark: #F5E0DE;
  --blush: #F5C4C4;
  --rose: #E8A0A0;
  --mauve: #C4969A;
  --deep: #A7757C;
  --deep-dark: #8B6267;
  --warm-white: #FFFAF9;
  --bg: #FFF5F3;
  --text: #4A3538;
  --text-light: #8B6267;
  --text-muted: #C4969A;
}

/* ---- RESET & BASE ---- */
*, *::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: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 3px; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.15;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 1.5rem;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 6rem 8vw 4rem;
  position: relative;
  overflow: hidden;
}

.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 540px;
  padding-right: 4rem;
}

.hero__label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 2rem;
}

.hero__label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
}

.hero__title-main {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 9vw, 9rem);
  font-weight: 500;
  font-style: italic;
  color: var(--deep);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.hero__title-sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--mauve);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.hero__body {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mauve);
  border: 1px solid var(--blush);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}

/* ---- HERO VISUAL ---- */
.hero__visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}
.hero__orb--1 { width: 320px; height: 320px; background: #F5C4C4; top: 10%; right: 10%; }
.hero__orb--2 { width: 200px; height: 200px; background: #E8A0A0; bottom: 15%; left: 5%; }
.hero__orb--3 { width: 160px; height: 160px; background: #C4969A; top: 40%; right: 30%; }

/* Bottles */
.hero__bottle {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: float-bottle 4s ease-in-out infinite;
}
.hero__bottle--1 { right: 15%; top: 10%; animation-delay: 0s; }
.hero__bottle--2 { left: 20%; top: 25%; animation-delay: 1s; }
.hero__bottle--3 { right: 5%; bottom: 20%; animation-delay: 2s; }

@keyframes float-bottle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.bottle__cap {
  width: 18px;
  height: 35px;
  background: linear-gradient(180deg, var(--rose) 0%, var(--mauve) 100%);
  border-radius: 3px 3px 0 0;
  position: relative;
}
.bottle__cap::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 8px; height: 8px;
  background: var(--deep);
  border-radius: 50%;
}
.bottle__cap--small { width: 14px; height: 28px; }

.bottle__body {
  width: 36px;
  height: 70px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(245,196,196,0.6) 100%);
  border: 1px solid var(--blush);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.bottle__body--small { width: 28px; height: 55px; }
.bottle__body--tall { width: 30px; height: 80px; }

.bottle__label {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.35rem;
  color: var(--mauve);
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
}

/* Nail box */
.hero__nail-box {
  position: absolute;
  bottom: 25%;
  left: 15%;
  animation: float-bottle 5s ease-in-out infinite;
  animation-delay: 0.5s;
}
.nail-box__lid {
  width: 80px; height: 12px;
  background: var(--blush);
  border-radius: 3px 3px 0 0;
}
.nail-box__body {
  width: 80px; height: 50px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--blush);
  border-top: none;
  border-radius: 0 0 4px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px;
}
.nail-strip {
  width: 60px; height: 8px;
  background: linear-gradient(90deg, var(--rose), var(--blush), var(--rose));
  border-radius: 4px;
  opacity: 0.8;
}

/* Hair clip */
.hero__clip {
  position: absolute;
  top: 15%;
  left: 30%;
  animation: float-bottle 4.5s ease-in-out infinite;
  animation-delay: 1.5s;
}
.clip__bow {
  width: 30px; height: 20px;
  background: var(--rose);
  border-radius: 50%;
  position: relative;
}
.clip__bow::before, .clip__bow::after {
  content: '';
  position: absolute;
  width: 15px; height: 15px;
  background: var(--rose);
  border-radius: 50% 50% 50% 0;
  top: 2px;
}
.clip__bow::before { left: -5px; transform: rotate(-20deg); }
.clip__bow::after { right: -5px; transform: rotate(20deg) scaleX(-1); }
.clip__stem {
  width: 4px; height: 25px;
  background: var(--mauve);
  margin: 0 auto;
  border-radius: 2px;
}

/* Face mask */
.hero__mask {
  position: absolute;
  bottom: 35%;
  right: 25%;
  animation: float-bottle 3.5s ease-in-out infinite;
  animation-delay: 0.8s;
}
.mask__circle {
  width: 45px; height: 55px;
  background: rgba(245,196,196,0.5);
  border: 1px solid var(--blush);
  border-radius: 0 0 22px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mask__sheet {
  width: 30px; height: 40px;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--blush);
  border-radius: 0 0 15px 15px;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fade-in-up 2s ease 1s both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, var(--mauve));
  animation: scroll-grow 2s ease-in-out infinite;
}
@keyframes scroll-grow {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ==========================================
   MANIFESTO
   ========================================== */
.manifesto {
  padding: 8rem 8vw;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  text-align: center;
}
.manifesto__inner { max-width: 680px; margin: 0 auto; }

.manifesto__quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--deep);
  line-height: 1.4;
  margin: 1rem 0 2.5rem;
}

.manifesto__body {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

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

.manifesto__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.stat { text-align: center; }
.stat__number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--deep);
  line-height: 1;
}
.stat__label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
}
.stat__divider {
  width: 1px; height: 40px;
  background: var(--blush);
}

/* ==========================================
   BOX CONTENTS
   ========================================== */
.box-contents {
  padding: 7rem 8vw;
  background: var(--warm-white);
}
.box-contents__header {
  max-width: 600px;
  margin-bottom: 5rem;
}
.box-contents__title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 500;
  color: var(--deep);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.box-contents__sub {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Items grid */
.items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.item {
  background: white;
  border: 1px solid var(--cream-dark);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(196, 150, 154, 0.15);
}
.item--tall { grid-row: span 2; }
.item--wide { grid-column: span 2; }

.item__visual {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Lips visual */
.item__visual--lips { gap: 0.75rem; }
.lip-product { display: flex; align-items: center; gap: 0.5rem; }
.lip-wand {
  width: 6px; height: 45px;
  background: var(--rose);
  border-radius: 3px;
}
.lip-tube {
  width: 28px; height: 45px;
  background: linear-gradient(135deg, var(--blush), var(--rose));
  border-radius: 3px 3px 6px 6px;
  position: relative;
}
.lip-tube::after {
  content: '';
  position: absolute;
  top: -8px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 12px;
  background: var(--deep);
  border-radius: 2px;
}

/* Nails visual */
.nail-row { display: flex; gap: 0.5rem; }
.nail-set {
  width: 30px; height: 40px;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(135deg, var(--blush), var(--rose));
  position: relative;
  border: 1px solid rgba(255,255,255,0.4);
}
.nail-set:nth-child(2) { background: linear-gradient(135deg, var(--rose), var(--mauve)); }
.nail-set:nth-child(3) { background: linear-gradient(135deg, var(--cream-dark), var(--blush)); }
.nail-set:nth-child(4) { background: linear-gradient(135deg, var(--blush), var(--rose)); }
.nail-set:nth-child(5) { background: linear-gradient(135deg, var(--rose), var(--deep)); }

/* Clips visual */
.clip-row { display: flex; gap: 1rem; }
.hair-clip { position: relative; }
.clip-bow {
  width: 24px; height: 16px;
  background: var(--rose);
  border-radius: 50%;
  position: relative;
}
.clip-bow::before, .clip-bow::after {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  background: var(--rose);
  border-radius: 50% 50% 50% 0;
  top: 1px;
}
.clip-bow::before { left: -4px; transform: rotate(-20deg); }
.clip-bow::after { right: -4px; transform: rotate(20deg) scaleX(-1); }
.hair-clip--1 .clip-bow { background: var(--rose); }
.hair-clip--2 .clip-bow { background: var(--blush); }
.hair-clip--3 .clip-bow { background: var(--deep); }

/* Masks visual */
.mask-row { display: flex; gap: 0.75rem; }
.sheet-mask {
  width: 30px; height: 40px;
  background: rgba(245,196,196,0.4);
  border: 1px solid var(--blush);
  border-radius: 4px;
}

/* Tools visual */
.tool-item { display: flex; }
.glow-tool {
  width: 50px; height: 50px;
  background: radial-gradient(circle, var(--blush) 30%, transparent 70%);
  border-radius: 50%;
  border: 1px solid var(--rose);
}

/* Stationery visual */
.notebook-item { display: flex; }
.notebook-cover {
  width: 50px; height: 65px;
  background: linear-gradient(135deg, var(--blush), var(--rose));
  border-radius: 3px 6px 6px 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.notebook-spine {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: rgba(0,0,0,0.1);
  border-radius: 3px 0 0 3px;
}
.notebook-label {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.4rem;
  color: white;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
}

.item__label {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--deep);
  font-weight: 500;
}
.item__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================
   WHAT'S INSIDE (unboxing)
   ========================================== */
.whats-inside {
  padding: 7rem 8vw;
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}
.whats-inside__inner { max-width: 700px; margin: 0 auto; text-align: center; }

.whats-inside__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mauve);
  border: 1px solid var(--rose);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 2.5rem;
}

.whats-inside__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--deep);
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.15;
}
.whats-inside__body {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.themes-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 4rem;
}
.theme-pill {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--deep);
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--blush);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

/* Unboxing visual */
.unboxing-visual {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
}
.unbox-lid {
  width: 120px; height: 20px;
  background: var(--blush);
  border-radius: 6px 6px 0 0;
  z-index: 3;
  position: relative;
}
.unbox-body {
  width: 120px; height: 80px;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--blush);
  border-top: none;
  border-radius: 0 0 6px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  position: relative;
  z-index: 2;
}
.unbox-item {
  border-radius: 3px;
  flex-shrink: 0;
}
.unbox-item--1 { width: 20px; height: 45px; background: linear-gradient(var(--rose), var(--mauve)); }
.unbox-item--2 { width: 35px; height: 12px; background: var(--blush); border-radius: 4px; }
.unbox-item--3 { width: 15px; height: 50px; background: var(--rose); border-radius: 4px; }
.unbox-item--4 { width: 25px; height: 25px; background: rgba(245,196,196,0.5); border: 1px solid var(--blush); border-radius: 50%; }

.unbox-tissue {
  display: flex;
  gap: 4px;
  margin-top: -2px;
  z-index: 1;
  position: relative;
}
.tissue-fold {
  width: 20px; height: 30px;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--cream-dark);
  border-radius: 0 0 4px 4px;
  border-top: none;
  transform: scaleY(0.6);
}

/* ==========================================
   AESTHETIC
   ========================================== */
.aesthetic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}
.aesthetic__left {
  padding: 7rem 6vw 7rem 8vw;
  background: var(--deep);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.aesthetic__left .section-label { color: rgba(255,245,243,0.5); }
.aesthetic__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--cream);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.aesthetic__body {
  font-size: 0.95rem;
  color: rgba(255,245,243,0.75);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.aesthetic__signs {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.sign {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255,245,243,0.8);
}
.sign__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
}

.aesthetic__right {
  padding: 7rem 8vw 7rem 6vw;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
}

.palette-block { }
.palette-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.palette-swatches {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.swatch {
  flex: 1;
  height: 60px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
  border: 1px solid rgba(0,0,0,0.05);
}
.swatch:hover { transform: scaleY(1.1); }
.swatch--cream { background: #FFF5F3; }
.swatch--blush { background: #F5C4C4; }
.swatch--rose { background: #E8A0A0; }
.swatch--mauve { background: #C4969A; }
.swatch--deep { background: #A7757C; }

.palette-names {
  display: flex;
  gap: 0.5rem;
}
.palette-names span {
  flex: 1;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-align: center;
}

.aesthetic__mood {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.mood-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--deep);
  background: white;
  border: 1px solid var(--cream-dark);
  padding: 0.45rem 1rem;
  border-radius: 100px;
}

/* ==========================================
   CLOSING
   ========================================== */
.closing {
  padding: 8rem 8vw;
  background: var(--warm-white);
  text-align: center;
}
.closing__inner { max-width: 640px; margin: 0 auto; }

.closing__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.ornament-line {
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
}
.ornament-bow {
  display: flex;
  align-items: center;
  position: relative;
}
.bow-left, .bow-right {
  width: 28px; height: 20px;
  background: var(--rose);
  border-radius: 50% 50% 50% 0;
}
.bow-left { transform: rotate(-20deg); }
.bow-right { transform: rotate(20deg) scaleX(-1); }
.bow-center {
  width: 12px; height: 12px;
  background: var(--deep);
  border-radius: 50%;
}

.closing__headline {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  font-style: italic;
  color: var(--deep);
  line-height: 1.2;
  margin-bottom: 1.75rem;
}
.closing__body {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.closing__perks {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.perk {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}
.perk__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}
.perk__icon::before {
  content: '';
  width: 16px; height: 16px;
  border: 2px solid white;
  border-radius: 4px;
}
.perk__icon--box::before {
  border-radius: 2px;
  background: none;
}
.perk__icon--swap::before {
  border-radius: 50%;
  background: none;
}
.perk__icon--val::before {
  font-size: 14px;
  background: none;
  border: none;
  font-family: 'Playfair Display', serif;
  color: white;
}

.closing__cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.closing__cta-btn {
  display: inline-block;
  background: var(--deep);
  color: white;
  padding: 1rem 3rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.closing__cta-btn:hover {
  background: var(--deep-dark);
  transform: translateY(-2px);
}
.closing__cta-note {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.closing__brand {
  padding-top: 3rem;
  border-top: 1px solid var(--cream-dark);
}
.closing__brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--mauve);
  letter-spacing: 0.1em;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  padding: 3rem 8vw;
  background: var(--cream-dark);
  text-align: center;
  border-top: 1px solid var(--blush);
}
.footer__wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--deep);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}
.footer__tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.footer__meta {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 5rem 6vw 4rem;
    min-height: auto;
  }
  .hero__visual { display: none; }
  .hero__content { padding-right: 0; }
  .items-grid { grid-template-columns: 1fr 1fr; }
  .item--wide { grid-column: span 2; }
  .item--tall { grid-row: span 1; }
  .aesthetic { grid-template-columns: 1fr; }
  .aesthetic__right { padding: 4rem 6vw; }
}
@media (max-width: 600px) {
  .items-grid { grid-template-columns: 1fr; }
  .item--wide { grid-column: span 1; }
  .manifesto__stats { gap: 1.5rem; }
  .closing__perks { gap: 1.5rem; }
  h1, h2 { text-align: center; }
}