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

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  background: #f7f4ef;
}

a {
  color: inherit;
}

/* HEADER */
header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: minmax(0, 1fr);
  height: min(100vh, 700px);
  overflow: hidden;
}

.header-text {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid #d8d3cb;
  overflow: hidden;
}

.header-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 24px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 48px;
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: #999;
  transition: color 0.2s;
}

nav a:hover {
  color: #1a1a1a;
}

.header-image {
  display: block;
  overflow: hidden;
  min-height: 0;
}

.header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* SECTIONS */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}

section {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  padding: 80px 0;
  border-bottom: 1px solid #d8d3cb;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #999;
  padding-top: 6px;
  font-weight: 500;
}

.section-content p {
  margin-bottom: 16px;
}

.section-content a {
  text-decoration: underline;
  text-decoration-color: #c5bdb2;
  text-underline-offset: 3px;
}

.lead {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 24px !important;
}

/* RESUME */
.job {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e8e3db;
}

.job:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.job-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}

.job-company {
  font-weight: 500;
  font-size: 1rem;
}

.job-date {
  font-size: 0.8rem;
  color: #999;
}

.job-title {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 12px;
}

.job ul {
  padding-left: 16px;
}

.job ul li {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #444;
}

/* PRESS */
.press-item {
  display: grid;
  grid-template-columns: 200px 1fr 60px;
  gap: 16px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid #e8e3db;
}

.press-item:last-child {
  border-bottom: none;
}

.press-outlet {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #999;
}

.press-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  text-decoration: none;
}

a.press-title:hover {
  text-decoration: underline;
  text-decoration-color: #c5bdb2;
}

.press-year {
  font-size: 0.75rem;
  color: #999;
  text-align: right;
}

/* CONTACT */
.contact-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-intro {
  color: #666;
  font-size: 0.95rem;
}

.contact-link {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: #999;
}

.contact-link:hover {
  color: #1a1a1a;
}

/* CONTACT FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
}

.form-group input,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #1a1a1a;
  background: transparent;
  border: none;
  border-bottom: 1px solid #d8d3cb;
  padding: 8px 0;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: #1a1a1a;
}

.form-group textarea {
  resize: none;
}

.contact-form button {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f7f4ef;
  background: #1a1a1a;
  border: none;
  padding: 14px 32px;
  cursor: pointer;
  width: fit-content;
  transition: background 0.2s;
}

.contact-form button:hover {
  background: #444;
}

.form-success {
  display: none;
  font-size: 0.9rem;
  color: #888;
  font-style: italic;
}

/* FOOTER */
footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 60px;
  font-size: 0.75rem;
  color: #bbb;
  letter-spacing: 1px;
}

/* MOBILE */
@media (max-width: 768px) {
  header {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .header-image {
    width: 100%;
    height: 90vw;
    order: 1;
    flex-shrink: 0;
  }

  .header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
  }

  .header-text {
    padding: 40px 24px;
    order: 2;
    border-right: none;
    border-top: 1px solid #d8d3cb;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
  }

  main {
    padding: 0 24px;
  }

  section {
    display: block;
    padding: 48px 0;
  }

  .section-label {
    margin-bottom: 20px;
  }

  .press-item {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid #e8e3db;
  }

  .press-year {
    display: block;
    margin-top: 4px;
  }

  footer {
    padding: 40px 24px;
  }
}
