/* ========================================
   Victoria Vallejo Fuccella — Portfolio
   Modern, artsy, pastel aesthetic
   ======================================== */

:root {
  --butter: #fef7cd;
  --sage: #c4d4c8;
  --sky: #c8dce8;
  --blush: #f4d0d0;
  --black: #111111;
  --white: #ffffff;
  --cream: #faf8f3;
  --text: #1a1a1a;
  --text-light: #555555;
  --font-display: 'Space Grotesk', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ========================================
   NAVIGATION
   ======================================== */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: background 0.35s ease;
}

nav.scrolled {
  background: var(--cream);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding-bottom: 0.25rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text);
  transition: width 0.4s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ========================================
   HERO HEADER — Sustainability × Fashion
   ======================================== */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--butter);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.7;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: var(--sage);
  top: -10%;
  left: -5%;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--sky);
  bottom: -10%;
  right: -5%;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: var(--blush);
  top: 40%;
  right: 15%;
}

.shape-4 {
  width: 250px;
  height: 250px;
  background: var(--white);
  bottom: 20%;
  left: 10%;
  opacity: 0.5;
}

/* Fashion illustration SVG */
.hero-illustration {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 400;
  color: var(--text-light);
  max-width: 550px;
  margin: 0 auto 2.5rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  background: #333;
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
  padding: 8rem 3rem;
  position: relative;
}

.section-sage { background: var(--sage); }
.section-sky { background: var(--sky); }
.section-blush { background: var(--blush); }
.section-butter { background: var(--butter); }
.section-cream { background: var(--cream); }
.section-black { background: var(--black); color: var(--white); }

.section-content {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1.5rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
}

.section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 650px;
}

/* ========================================
   CARDS & GRIDS
   ======================================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ========================================
   TIMELINE
   ======================================== */

.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--black);
  opacity: 0.15;
}

.timeline-item {
  position: relative;
  padding-bottom: 4rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -3rem;
  top: 0.3rem;
  width: 12px;
  height: 12px;
  background: var(--black);
  border-radius: 50%;
  margin-left: -5px;
}

.timeline-item .year {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.timeline-item h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.timeline-item p {
  font-size: 0.95rem;
  max-width: 550px;
}

/* ========================================
   QUOTES
   ======================================== */

.quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 2rem;
}

.quote-author {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ========================================
   STATS
   ======================================== */

.stats-row {
  display: flex;
  gap: 4rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.stat {
  flex: 1;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ========================================
   CONTACT
   ======================================== */

.contact-email {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 2rem;
  display: inline-block;
  border-bottom: 2px solid currentColor;
  padding-bottom: 0.25rem;
  transition: opacity 0.3s;
}

.contact-email:hover {
  opacity: 0.7;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
  padding: 3rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
}

/* ========================================
   MOBILE MENU
   ======================================== */

.mobile-menu {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
  nav {
    padding: 1.2rem 1.5rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    display: none;
    z-index: 99;
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu a {
    color: var(--text);
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 0;
    text-decoration: none;
    position: relative;
  }

  .mobile-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text);
    transition: width 0.4s ease;
  }

  .mobile-menu a:hover::after {
    width: 100%;
  }

  .section {
    padding: 5rem 1.5rem;
  }

  .stats-row {
    flex-direction: column;
    gap: 2rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    padding-left: 2rem;
  }

  .timeline-item::before {
    left: -2rem;
  }
}
