/* ---------- Palette ----------
   Active: Palette 1 (olive / dark / khaki / brown / off-white).
   To try another, comment this block and uncomment one below.
*/
/*
:root {
  --olive:     #8C884F;
  --dark:      #26261D;
  --khaki:     #A69D85;
  --brown:     #735840;
  --offwhite:  #F2F2F2;

  --bg:        var(--offwhite);
  --fg:        var(--dark);
  --muted:     var(--brown);
  --accent:    var(--olive);
  --panel:     var(--khaki);
  --rule:      var(--khaki);
}
*/
/* Palette 2 (pale-blue / olive / khaki / dark-brown / brown)
:root {
  --bg:     #E4F1F2;
  --fg:     #403B31;
  --muted:  #735943;
  --accent: #8C884F;
  --panel:  #A69D85;
  --rule:   #A69D85;
}
*/


/* Palette 3 (orange / sage / peach / taupe / blue) */
:root {
  --bg:     #f8fdff;
  --fg:     #2A2A24;
  --muted:  #69614E;
  --accent: #BD733E;
  --panel:  #5C725F;
  --rule:   #C8C2B6;
  --link:   #3672AD;
}
*/

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { font-size: 17px; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--fg);
  font-family: "DM Serif Text", Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Playfair Display", "DM Serif Display", Georgia, "Times New Roman", serif;
  font-weight: 400;
}

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
a:hover { color: var(--muted); }

/* ---------- Layout shell ---------- */
.shell {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

main {
  flex: 1;
  padding: 2.5rem 0;
}


/* ---------- Header ---------- */
.site-header {
  padding: 1.75rem 0 1rem;
  text-align: center;
}
.site-header .shell {
  border-bottom: 2px solid var(--rule);
  padding-bottom: 0.75rem;
}
.site-header h1 {
  margin: 0;
  font-size: clamp(1.5rem, 6vw, 4.5rem);
  letter-spacing: 0;
  line-height: 1.1;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.site-header h1 .given  { font-weight: 300; }
.site-header h1 .family { font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
  padding: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.site-footer .shell {
  border-top: 2px solid var(--rule);
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  align-items: baseline;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Home hero (two-panel) ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: start;
}

.photo {
  margin: 0;
  aspect-ratio: 3 / 4;
  background: var(--panel);
  overflow: hidden;
  border-radius: 1.5rem 0 0 0;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 1.5rem 0 0.5rem;
}
.label:first-child { margin-top: 0; }

.intro p:first-of-type { margin-top: 0; }
.intro ul {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}
.intro li { margin: 0.4rem 0; }
.intro li::before {
  content: "— ";
  color: var(--muted);
}

@media (min-width: 720px) {
  .hero {
    grid-template-columns: 5fr 7fr;
    gap: 2.5rem;
  }
}

/* ---------- Inner pages ---------- */
.back {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  border-bottom: none;
}
.back::before { content: "← "; }

.content h2 {
  margin-top: 0;
  font-size: 1.6rem;
}
