/* ============================================
   Lisa Mona — Premium Minimal Design
   ============================================ */

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

:root {
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --mid: #6b6b6b;
  --light: #a0a0a0;
  --subtle: #e8e6e3;
  --cream: #f8f7f5;
  --white: #ffffff;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--sans);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  font-weight: 300;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- Navigation ---- */

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--black);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo-img {
  height: 28px;
  width: auto;
}

.nav-contact {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.nav-contact.active {
  color: var(--black);
}

.nav-contact:hover {
  color: var(--black);
}

/* ---- Hero ---- */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  background: var(--cream);
}

.hero-inner {
  max-width: 720px;
}

.hero-logo {
  width: 80px;
  height: auto;
  margin-bottom: 2.5rem;
}

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

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--mid);
  font-weight: 300;
}

/* ---- Manifesto ---- */

.manifesto {
  padding: 8rem 2rem;
  background: var(--white);
}

.manifesto-content {
  max-width: 680px;
  margin: 0 auto;
}

.manifesto-text {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 2rem;
}

.manifesto-text:last-child {
  margin-bottom: 0;
}

/* ---- Pillars ---- */

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--black);
}

.pillars {
  padding: 7rem 2rem;
  background: var(--cream);
}

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

.pillar {
  padding: 2.5rem;
  border: 1px solid var(--subtle);
  border-radius: 2px;
  background: var(--white);
  transition: border-color 0.3s ease;
}

.pillar:hover {
  border-color: var(--light);
}

.pillar-number {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--light);
  margin-bottom: 1rem;
}

.pillar h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.pillar p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ---- About ---- */

.about {
  padding: 7rem 2rem;
  background: var(--white);
}

.about-content {
  max-width: 680px;
  margin: 0 auto;
}

.about-text {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 400;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.about-text:last-child {
  margin-bottom: 0;
}

/* ---- CTA Section ---- */

.cta-section {
  padding: 7rem 2rem;
  background: var(--white);
}

.cta-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.cta-card {
  text-align: center;
  padding: 3.5rem 2.5rem;
  border: 1px solid var(--subtle);
  border-radius: 2px;
}

.cta-card h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--black);
}

.cta-card p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}

.btn:hover {
  background: var(--dark);
}

.btn-outline {
  background: transparent;
  color: var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

/* ---- Page Header ---- */

.page-header {
  padding: 10rem 2rem 4rem;
  text-align: center;
  background: var(--cream);
}

.page-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--black);
}

/* ---- Team ---- */

.team-section {
  padding: 5rem 2rem 8rem;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 700px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--subtle);
  border-radius: 2px;
}

.team-photo {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--subtle);
}

.team-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.4rem;
}

.team-role {
  font-size: 0.85rem;
  color: var(--mid);
  letter-spacing: 0.05em;
}

/* ---- Contact ---- */

.contact-section {
  padding: 5rem 2rem 8rem;
  background: var(--white);
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-text {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.7;
  color: var(--mid);
  margin-bottom: 2.5rem;
}

.contact-email {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 500;
  color: var(--black);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

/* ---- Contact Form ---- */

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--subtle);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b6b' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--mid);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--light);
  font-weight: 300;
}

.form-submit {
  display: inline-block;
  width: 100%;
  padding: 0.85rem 2.2rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--dark);
}

.form-message {
  text-align: center;
  padding: 2rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--dark);
  display: none;
}

.form-message.visible {
  display: block;
}

/* ---- Footer ---- */

.footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--subtle);
  background: var(--white);
}

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

.footer-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--black);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--light);
}

.footer-email {
  font-size: 0.8rem;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-email:hover {
  color: var(--black);
}

/* ---- Responsive ---- */

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

  .hero {
    padding: 7rem 1.5rem 5rem;
  }

  .manifesto {
    padding: 5rem 1.5rem;
  }

  .pillars {
    padding: 5rem 1.5rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about {
    padding: 5rem 1.5rem;
  }

  .cta-section {
    padding: 5rem 1.5rem;
  }

  .cta-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .contact-form {
    max-width: 100%;
  }
}
