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

/* ── Tokens ─────────────────────────────── */
:root {
  --cream:    #faf7f4;
  --blush:    #e8c4b8;
  --rose:     #c0776a;
  --deep:     #3b2a2a;
  --mid:      #7a5c5c;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Jost', system-ui, sans-serif;
}

/* ── Base ───────────────────────────────── */
html { font-size: 16px; scroll-behavior: smooth; }

body {
  background-color: var(--cream);
  color: var(--deep);
  font-family: var(--sans);
  font-weight: 300;
  min-height: 100vh;
  overflow-x: hidden;
}

/* subtle grain overlay */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.035;
  z-index: 100;
}

/* ── Layout ─────────────────────────────── */
.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Header ─────────────────────────────── */
.header {
  padding: 2.5rem 0 1rem;
  text-align: center;
}

.tagline {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rose);
}

/* ── Hero ───────────────────────────────── */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: 3rem 0 4rem;
}

/* ── Photo ──────────────────────────────── */
.photo-wrap {
  flex-shrink: 0;
  position: relative;
  width: 360px;
}

.photo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 2px;
  display: block;
  filter: contrast(1.02) brightness(1.02);
}

/* decorative accent block behind the photo */
.photo-accent {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--blush);
  border-radius: 2px;
  z-index: 1;
}

/* ── Bio ────────────────────────────────── */
.bio {
  flex: 1;
}

.name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 1.05;
  color: var(--deep);
  letter-spacing: 0.01em;
}

.name em {
  font-style: italic;
  color: var(--rose);
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--blush);
  margin: 1.75rem 0;
}

.bio-text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--mid);
  max-width: 480px;
}

.bio-text + .bio-text {
  margin-top: 1.1rem;
}

/* ── Contact ────────────────────────────── */
.contact {
  padding: 4rem 0 5rem;
  text-align: center;
  border-top: 1px solid #ede5e0;
}

.contact-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rose);
}

.contact-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.25rem, 4vw, 3rem);
  margin-top: 0.75rem;
  color: var(--deep);
}

.contact-title em {
  font-style: italic;
  color: var(--rose);
}

.divider-center {
  margin: 1.75rem auto;
}

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

.form-row {
  display: flex;
  gap: 1.25rem;
}

.form-row .form-field {
  flex: 1;
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.5rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--deep);
  background: #fff;
  border: 1px solid #e5d9d2;
  border-radius: 2px;
  transition: border-color 0.2s ease;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--rose);
}

.form-submit {
  display: block;
  margin: 0.5rem auto 0;
  padding: 0.85rem 2.75rem;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--rose);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s ease;
}

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

/* ── Footer ─────────────────────────────── */
.footer {
  padding: 2rem 0;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--blush);
  text-transform: uppercase;
  border-top: 1px solid #ede5e0;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
    padding: 2rem 0 3rem;
  }

  .photo-wrap {
    width: min(280px, 80vw);
  }

  .divider {
    margin: 1.5rem auto;
  }

  .bio-text {
    margin-left: auto;
    margin-right: auto;
  }

  .name {
    font-size: clamp(3rem, 12vw, 4rem);
  }
}

@media (max-width: 480px) {
  .page { padding: 0 1.25rem; }

  .form-row {
    flex-direction: column;
    gap: 0;
  }
}
