:root {
  --ink: #2d2a26;        /* warm charcoal */
  --muted: #6b635a;
  --accent: #c4683f;     /* terracotta */
  --accent-dark: #a8542f;
  --cream: #faf6f0;
  --line: #e7ddd0;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

.container { width: min(900px, 90%); margin: 0 auto; }

a { color: var(--accent); }
a:hover { color: var(--accent-dark); }

/* Header */
.site-header { background: var(--cream); border-bottom: 1px solid var(--line); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0; flex-wrap: wrap; gap: 0.5rem;
}
.brand { text-decoration: none; color: var(--ink); display: flex; flex-direction: column; }
.brand-name { font-weight: 700; font-size: 1.3rem; letter-spacing: 0.01em; }
.brand-tagline { color: var(--muted); font-size: 0.85rem; }
.main-nav a {
  margin-left: 1.25rem; text-decoration: none; color: var(--muted); font-weight: 500;
}
.main-nav a.active, .main-nav a:hover { color: var(--accent); }

/* Hero */
.hero { padding: 5rem 0 2.5rem; }
.hero h1 { font-size: 2.6rem; margin: 0 0 0.75rem; line-height: 1.15; }
.lead { font-size: 1.3rem; color: var(--ink); margin: 0 0 1.75rem; max-width: 34rem; }

/* About */
.about { width: min(860px, 90%); margin: 0 auto; padding-bottom: 3.5rem; }
.about-inner { display: flex; gap: 2.2rem; align-items: flex-start; }
.portrait { flex: 0 0 190px; margin: 0; text-align: center; }
.portrait img {
  width: 190px; height: 190px; object-fit: cover; object-position: top center;
  border-radius: 14px; display: block; box-shadow: 0 2px 12px rgba(45, 42, 38, 0.08);
}
.portrait figcaption { margin-top: 0.7rem; font-weight: 600; line-height: 1.3; }
.portrait figcaption span { display: block; font-weight: 400; color: var(--muted); font-size: 0.9rem; }
.about-text p { margin: 0 0 1.15rem; font-size: 1.07rem; }
.about-text p:last-child { margin-bottom: 0; }

@media (max-width: 620px) {
  .about-inner { flex-direction: column; align-items: center; }
  .portrait { align-self: center; }
}

/* Buttons — rounded, warm */
.btn {
  display: inline-block; padding: 0.7rem 1.5rem; border-radius: 999px;
  text-decoration: none; font-weight: 600; cursor: pointer; border: none;
  transition: background 0.15s ease;
}
.btn.primary { background: var(--accent); color: #fff; }
.btn.primary:hover { background: var(--accent-dark); color: #fff; }

/* Contact */
.contact { padding: 3.5rem 0; }
.contact h1 { font-size: 2rem; margin: 0 0 0.5rem; }
.contact-form {
  display: flex; flex-direction: column; gap: 1rem; max-width: 32rem;
  background: #fff; padding: 1.75rem; border: 1px solid var(--line);
  border-radius: 14px; box-shadow: 0 2px 12px rgba(45, 42, 38, 0.05);
}
.contact-form label { display: flex; flex-direction: column; font-weight: 600; gap: 0.35rem; }
.contact-form input, .contact-form textarea {
  padding: 0.65rem; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; font-weight: 400; background: var(--cream);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent;
}
.contact-form .trap { display: none; }
.status { color: var(--muted); min-height: 1.2em; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: #fff; margin-top: 2rem; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 1.5rem; padding: 2rem 0; color: var(--muted); }
.footer-inner a { color: var(--accent); }
.copyright { width: 100%; font-size: 0.85rem; }
