:root {
  --black: #0A0A0A;
  --ink: #000000;
  --cream: #F5F1E8;
  --white: #FFFFFF;
  --orange: #FF5B1F;
  --mint: #3BFFB0;
  --muted: #8A8A8A;
  --rule: rgba(245, 241, 232, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

/* ---------- Hero ---------- */
.hero {
  padding: 4.5rem 0 3rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 4.5rem;
}

h1 {
  font-family: 'Anton', 'Archivo Black', Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(4.5rem, 14vw, 11rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--orange);
  text-transform: uppercase;
}

.tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--cream);
  margin-top: 1.75rem;
  letter-spacing: 0.01em;
  max-width: 540px;
}

/* ---------- Bio ---------- */
.bio {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  margin-bottom: 5.5rem;
  align-items: start;
}

.portrait {
  position: relative;
}

.portrait img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.bio-text p {
  margin-bottom: 1.3rem;
  font-size: 1.02rem;
  color: var(--cream);
  opacity: 0.92;
}

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

.bio-text a {
  color: var(--mint);
  text-decoration: none;
  border-bottom: 1px solid rgba(59, 255, 176, 0.35);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.bio-text a:hover {
  color: var(--orange);
  border-color: var(--orange);
}

/* ---------- Companies ---------- */
.companies {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.company-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem 2.25rem 2rem;
  min-height: 280px;
  text-decoration: none;
  border-radius: 3px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.company-card:hover {
  transform: translateY(-4px);
}

.company-card.eleanor {
  background: var(--orange);
  color: var(--ink);
}

.company-card.della {
  background: var(--mint);
  color: var(--ink);
}

.card-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 2rem;
}

.company-card h2 {
  font-family: 'Anton', 'Archivo Black', Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(2.75rem, 5vw, 3.75rem);
  line-height: 0.95;
  margin-bottom: 1rem;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

.company-card p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 2rem;
  line-height: 1.5;
  max-width: 420px;
}

.link-arrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: transform 0.25s ease;
  display: inline-block;
}

.company-card:hover .link-arrow {
  transform: translateX(6px);
}

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  padding: 4rem 0 5rem;
  border-top: 1px solid var(--rule);
  margin-bottom: 2rem;
  align-items: start;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 1.25rem;
}

.contact-intro h2 {
  font-family: 'Anton', 'Archivo Black', Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 0.95;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 1.25rem;
}

.contact-intro p {
  color: var(--cream);
  opacity: 0.75;
  font-size: 1rem;
  max-width: 340px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--cream);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 0.75rem 0;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
  resize: vertical;
}

.field textarea {
  min-height: 120px;
  line-height: 1.5;
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--mint);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
}

.contact-form button {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--mint);
  color: var(--ink);
  border: none;
  padding: 1.1rem 2rem;
  border-radius: 2px;
  cursor: pointer;
  margin-top: 1rem;
  align-self: flex-start;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-form button:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

/* ---------- Footer ---------- */
footer {
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

footer a:hover {
  color: var(--mint);
}

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  main {
    padding: 2rem 1.25rem 3rem;
  }

  .hero {
    padding: 2.5rem 0 2rem;
    margin-bottom: 3rem;
  }

  .bio {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3.5rem;
  }

  .portrait {
    max-width: 400px;
  }

  .companies {
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
  }

  .company-card {
    min-height: 240px;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 0 3.5rem;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-right {
    flex-direction: column;
    gap: 0.5rem;
  }
}
