/* Maxine Allison Vande Vaarst — site styles */
:root {
  --cream: #faf6f0;
  --ink: #2b2620;
  --ink-soft: #5c544a;
  --terracotta: #b4552d;
  --terracotta-dark: #8f4223;
  --line: #e5dccf;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Source Sans 3", -apple-system, "Segoe UI", sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--terracotta); text-decoration: none; }
a:hover { color: var(--terracotta-dark); text-decoration: underline; }

/* Header */
header {
  border-bottom: 1px solid var(--line);
  padding: 1.4rem 1.5rem;
}
.header-inner {
  max-width: 1060px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 1rem 2rem;
  justify-content: space-between;
}
.site-title {
  font-family: var(--serif);
  font-size: 1.35rem; font-weight: 600; letter-spacing: 0.01em;
  color: var(--ink);
}
.site-title:hover { text-decoration: none; color: var(--terracotta); }
nav ul { list-style: none; display: flex; flex-wrap: wrap; gap: 1.4rem; }
nav a {
  color: var(--ink-soft); font-size: 0.98rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
}
nav a:hover { color: var(--terracotta); text-decoration: none; }
nav a[aria-current="page"] { color: var(--terracotta); }

/* Layout */
main { max-width: 1060px; margin: 0 auto; padding: 3rem 1.5rem 4rem; }
.page-title {
  font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 600; line-height: 1.15; margin-bottom: 1.8rem;
}
.eyebrow {
  color: var(--terracotta); font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.6rem;
}

/* Home hero */
.hero { display: grid; grid-template-columns: 5fr 4fr; gap: 3rem; align-items: center; }
.hero h1 {
  font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 600; line-height: 1.1; margin-bottom: 1rem;
}
.hero .role { font-size: 1.3rem; color: var(--ink-soft); margin-bottom: 1.4rem; }
.hero p { margin-bottom: 1.1rem; }
.hero img {
  width: 100%; height: auto; border-radius: 6px; display: block;
  box-shadow: 0 14px 40px rgba(43, 38, 32, 0.18);
}
.btn {
  display: inline-block; background: var(--terracotta); color: #fff;
  padding: 0.7rem 1.5rem; border-radius: 4px; font-weight: 600; margin-top: 0.5rem;
}
.btn:hover { background: var(--terracotta-dark); color: #fff; text-decoration: none; }

/* Sections */
section { margin-bottom: 2.8rem; }
h2 {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 600;
  margin-bottom: 1rem; padding-bottom: 0.4rem; border-bottom: 2px solid var(--line);
}
h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; margin-bottom: 0.3rem; }
.muted { color: var(--ink-soft); }
ul.plain { list-style: none; }
ul.plain li { padding: 0.35rem 0; border-bottom: 1px solid var(--line); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 3rem; }

/* CV */
.cv-block { margin-bottom: 1.4rem; }
.cv-block .years { color: var(--ink-soft); font-size: 0.95rem; }

/* Testimonials */
blockquote {
  background: #fff; border-left: 4px solid var(--terracotta);
  padding: 1.3rem 1.5rem; border-radius: 0 6px 6px 0; margin-bottom: 1.3rem;
  box-shadow: 0 3px 14px rgba(43, 38, 32, 0.06);
}
blockquote footer { border: none; padding: 0.7rem 0 0; font-weight: 700; font-size: 0.95rem; color: var(--ink-soft); }

/* Photo gallery */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.gallery figure { margin: 0; }
.gallery img {
  width: 100%; height: auto; border-radius: 6px; display: block;
  box-shadow: 0 8px 26px rgba(43, 38, 32, 0.14);
}
.gallery figcaption { font-size: 0.95rem; color: var(--ink-soft); padding-top: 0.5rem; }

/* Contact form */
form { max-width: 560px; }
label { display: block; font-weight: 600; margin: 1rem 0 0.3rem; }
input, textarea {
  width: 100%; padding: 0.7rem; border: 1px solid var(--line); border-radius: 4px;
  font-family: var(--sans); font-size: 1rem; background: #fff;
}
input:focus, textarea:focus { outline: 2px solid var(--terracotta); border-color: transparent; }

/* Footer */
body > footer {
  border-top: 1px solid var(--line); padding: 1.8rem 1.5rem; margin-top: 2rem;
}
.footer-inner {
  max-width: 1060px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 0.8rem 2rem; justify-content: space-between;
  color: var(--ink-soft); font-size: 0.95rem;
}
.footer-inner a { color: var(--ink-soft); text-decoration: underline; }
.footer-inner a:hover { color: var(--terracotta); }

/* Screen-reader-only / hidden-from-view text */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; }
  .hero img { order: -1; max-width: 420px; }
  .gallery { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
}
