/* =========================================
   VelvetNotes — Brand Stylesheet
   ========================================= */

:root {
  --bg: #FBF7F4;
  --bg-warm: #F5EDE8;
  --surface: #EDE4DF;
  --rose: #C4878A;
  --rose-light: #E8C4C4;
  --rose-dark: #9A6065;
  --ink: #2D2926;
  --ink-muted: #7A706A;
  --cream: #FBF7F4;
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--rose); color: var(--white); }

/* ---- NAV ---- */
.nav {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 2rem 4rem;
  border-bottom: 1px solid rgba(196, 135, 138, 0.2);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.nav-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 400;
}

/* ---- HERO ---- */
.hero {
  padding: 6rem 4rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 196, 196, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-text { position: relative; z-index: 1; }

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--rose);
  margin-bottom: 2.5rem;
}

.hero-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-muted);
  max-width: 460px;
  margin-bottom: 1rem;
}

.hero-rule {
  max-width: 1200px;
  margin: 4rem auto 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rose-light), transparent);
}

/* ---- HERO VISUAL ---- */
.hero-visual { position: relative; }

.shelf-illustration {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.2;
  max-width: 480px;
  margin: 0 auto;
}

/* Books */
.book {
  position: absolute;
  display: flex;
  align-items: flex-end;
}

.book-1 {
  bottom: 38%;
  left: 8%;
  width: 60px;
  height: 160px;
}

.book-2 {
  bottom: 38%;
  left: calc(8% + 65px);
  width: 50px;
  height: 130px;
}

.book-3 {
  bottom: 38%;
  left: calc(8% + 120px);
  width: 70px;
  height: 180px;
}

.book-spine {
  width: 8px;
  height: 100%;
  border-radius: 2px 0 0 2px;
  flex-shrink: 0;
}

.book-spine-1 { background: #9A6065; }
.book-spine-2 { background: #C4878A; }
.book-spine-3 { background: #E8C4C4; }

.book-body {
  flex: 1;
  height: 100%;
  border-radius: 0 3px 3px 0;
}

.book-body-1 { background: linear-gradient(135deg, #C4878A 0%, #9A6065 100%); }
.book-body-2 { background: linear-gradient(135deg, #E8C4C4 0%, #C4878A 100%); }
.book-body-3 { background: linear-gradient(135deg, #F5EDE8 0%, #E8C4C4 100%); border: 1px solid #E8C4C4; }

/* Desk lamp */
.desk-lamp {
  position: absolute;
  bottom: 38%;
  right: 5%;
  width: 80px;
  height: 160px;
}

.lamp-shade {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 40px;
  background: linear-gradient(135deg, #C4878A 0%, #9A6065 100%);
  border-radius: 50% 50% 0 0;
  clip-path: polygon(15% 100%, 85% 100%, 100% 0%, 0% 0%);
}

.lamp-glow {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 80px;
  background: radial-gradient(ellipse at top, rgba(255, 230, 200, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.lamp-stand {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 90px;
  background: #9A6065;
  border-radius: 2px;
}

.lamp-base {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 10px;
  background: #9A6065;
  border-radius: 3px;
}

/* Coffee cup */
.coffee-cup {
  position: absolute;
  bottom: 38%;
  right: calc(5% + 90px);
  width: 50px;
  height: 55px;
}

.cup-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 42px;
  background: linear-gradient(135deg, #F5EDE8 0%, #E8C4C4 100%);
  border-radius: 3px 3px 8px 8px;
  border: 1px solid rgba(196, 135, 138, 0.3);
}

.cup-handle {
  position: absolute;
  bottom: 10px;
  right: 0;
  width: 16px;
  height: 22px;
  border: 2px solid rgba(196, 135, 138, 0.4);
  border-left: none;
  border-radius: 0 12px 12px 0;
}

.cup-steam {
  position: absolute;
  width: 2px;
  height: 20px;
  background: rgba(196, 135, 138, 0.25);
  border-radius: 2px;
  animation: steam 2.5s ease-in-out infinite;
}

.steam-1 { left: 10px; bottom: 42px; animation-delay: 0s; }
.steam-2 { left: 20px; bottom: 42px; animation-delay: 0.8s; }
.steam-3 { left: 30px; bottom: 42px; animation-delay: 1.6s; }

@keyframes steam {
  0%, 100% { opacity: 0; transform: translateY(0) scaleX(1); }
  20% { opacity: 0.6; }
  80% { opacity: 0.3; transform: translateY(-15px) scaleX(1.5); }
}

/* Plant */
.plant {
  position: absolute;
  bottom: 38%;
  left: calc(8% + 195px);
  width: 60px;
  height: 120px;
}

.plant-pot {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 28px;
  background: linear-gradient(135deg, #C4878A 0%, #9A6065 100%);
  border-radius: 2px 2px 6px 6px;
}

.leaf {
  position: absolute;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, #8FB87F 0%, #5E8A4F 100%);
}

.leaf-1 { width: 24px; height: 40px; bottom: 24px; left: 15px; transform: rotate(-30deg); }
.leaf-2 { width: 20px; height: 35px; bottom: 26px; left: 28px; transform: rotate(10deg); background: linear-gradient(135deg, #A8CC9A 0%, #6EA85B 100%); }
.leaf-3 { width: 18px; height: 32px; bottom: 28px; left: 8px; transform: rotate(-50deg); }
.leaf-4 { width: 16px; height: 28px; bottom: 22px; left: 22px; transform: rotate(40deg); background: linear-gradient(135deg, #A8CC9A 0%, #6EA85B 100%); }
.leaf-5 { width: 22px; height: 38px; bottom: 30px; left: 12px; transform: rotate(-10deg); }

/* Sticky notes */
.sticky-note {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 1px;
  transform: rotate(-3deg);
}

.note-1 {
  bottom: calc(38% + 185px);
  right: 20%;
  background: rgba(255, 240, 200, 0.8);
  transform: rotate(5deg);
  box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.note-2 {
  bottom: calc(38% + 165px);
  right: 30%;
  background: rgba(200, 232, 200, 0.8);
  transform: rotate(-4deg);
  box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.note-3 {
  bottom: calc(38% + 150px);
  right: 15%;
  background: rgba(232, 196, 196, 0.8);
  transform: rotate(3deg);
  box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

/* Pencils */
.pencil {
  position: absolute;
  width: 6px;
  height: 70px;
  border-radius: 1px;
  transform-origin: bottom center;
}

.pencil-1 {
  bottom: 36%;
  right: 40%;
  background: linear-gradient(to top, #F5EDE8 85%, #E8C4C4 85%, #9A6065 95%, #C4878A 100%);
  transform: rotate(15deg);
  border-radius: 1px 1px 0 0;
}

.pencil-2 {
  bottom: 36%;
  right: 38%;
  background: linear-gradient(to top, #F5EDE8 85%, #E8C4C4 85%, #9A6065 95%, #C4878A 100%);
  transform: rotate(-10deg);
  border-radius: 1px 1px 0 0;
  width: 5px;
  height: 55px;
}

/* ---- SECTION SHARED ---- */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* ---- THE VISION ---- */
.vision {
  padding: 6rem 4rem;
  background: var(--bg-warm);
}

.vision-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.pull-quote {
  position: relative;
  padding: 2rem 0 2rem 2rem;
  border-left: 2px solid var(--rose-light);
}

.pull-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--rose-light);
  line-height: 0.5;
  margin-bottom: 0.5rem;
}

.pull-quote-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink-muted);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.vision-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.vision-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
  max-width: 520px;
}

.vision-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(196, 135, 138, 0.2);
}

.stat {}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.stat-desc {
  font-size: 0.8rem;
  color: var(--ink-muted);
  opacity: 0.7;
}

/* ---- PILLARS ---- */
.pillars {
  padding: 6rem 4rem;
}

.pillars-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pillars-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 3rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: var(--white);
  border: 1px solid rgba(196, 135, 138, 0.15);
  border-radius: 4px;
  padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pillar-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 135, 138, 0.12);
}

.pillar-icon {
  margin-bottom: 1.25rem;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.pillar-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

/* ---- MANIFESTO ---- */
.manifesto {
  padding: 6rem 4rem;
  background: var(--ink);
  color: var(--cream);
}

.manifesto-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.manifesto .section-label { color: var(--rose); }

.manifesto-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--cream);
}

.manifesto-body {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(251, 247, 244, 0.65);
  margin-bottom: 1.5rem;
}

.manifesto-divider {
  width: 40px;
  height: 1px;
  background: var(--rose);
  margin: 2rem 0;
}

.manifesto-signature {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--rose);
}

/* ---- CLOSING ---- */
.closing {
  padding: 8rem 4rem 6rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}

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

.closing-ornament { margin-bottom: 2.5rem; }

.closing-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--rose-dark);
  margin-bottom: 1rem;
}

.closing-body {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 400;
}

/* ---- FOOTER ---- */
.footer {
  padding: 3rem 4rem 2rem;
  border-top: 1px solid rgba(196, 135, 138, 0.2);
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

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

.footer-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-link {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196, 135, 138, 0.15);
}

.footer-copy, .footer-origin {
  font-size: 0.75rem;
  color: var(--ink-muted);
  opacity: 0.6;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav { padding: 1.5rem 2rem; }
  .hero { padding: 4rem 2rem 3rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { display: none; }
  .vision-inner { grid-template-columns: 1fr; gap: 2rem; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .pillars { padding: 4rem 2rem; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .vision { padding: 4rem 2rem; }
  .manifesto { padding: 4rem 2rem; }
  .closing { padding: 5rem 2rem 4rem; }
  .footer { padding: 2rem; }
}

@media (max-width: 600px) {
  .nav { padding: 1rem 1.5rem; }
  .hero { padding: 3rem 1.5rem 2rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .vision-stats { gap: 1.5rem; }
  .footer-top { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
}
