:root {
  --bg: #f6f1e8;
  --ink: #1b1814;
  --muted: #5a544c;
  --line: #e0d6c8;
  --paper: #fbf7f0;
  --cta: #1b1814;
  --cta-text: #f6f1e8;
  --accent: #6e563d;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  background: var(--bg);
}
img { max-width: 100%; display: block; }
a { color: var(--accent); }
.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus { left: 1rem; top: 1rem; background: var(--paper); padding: 0.4rem 0.7rem; z-index: 9; }
.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.15rem 1.4rem;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
}
.nav a { color: var(--muted); text-decoration: none; }
.nav a:hover { color: var(--ink); }
.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.2rem 1.4rem 2.6rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 2.4rem;
  align-items: center;
}
.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 0.85rem;
}
h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--ink);
}
h1 { font-size: clamp(2.05rem, 4.4vw, 3.15rem); margin: 0 0 1rem; max-width: 16ch; }
h2 { font-size: clamp(1.55rem, 3vw, 2rem); margin: 0 0 0.85rem; }
h3 { font-size: 1.2rem; margin: 0 0 0.4rem; }
.lead { font-size: 1.08rem; color: var(--muted); margin: 0 0 1.35rem; max-width: 38rem; }
p { margin: 0 0 1rem; color: var(--muted); }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 0 0 0.85rem; }
.cta {
  display: inline-block;
  padding: 0.92rem 1.35rem;
  background: var(--cta);
  color: var(--cta-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--cta);
}
.cta:hover { background: #2a2621; }
.cta.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.cta.ghost:hover { background: #efe8db; }
.micro { font-size: 0.9rem; color: var(--muted); margin: 0 0 0.55rem; }
.hero-photo {
  width: 100%;
  height: min(78vh, 640px);
  object-fit: cover;
  object-position: 50% 18%;
  background: #e7e0d4;
}
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1.4rem;
}
.trust div {
  border-top: 1px solid var(--line);
  padding-top: 0.7rem;
}
.trust strong { display: block; color: var(--ink); font-size: 0.95rem; }
.trust span { color: var(--muted); font-size: 0.85rem; }
.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.4rem 3.5rem;
}
.wide {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.4rem 3.2rem;
}
section { padding-top: 2.4rem; }
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.25rem 1.2rem;
}
ul, ol { padding-left: 1.15rem; color: var(--muted); margin: 0 0 1rem; }
li { margin-bottom: 0.45rem; }
table { width: 100%; border-collapse: collapse; background: var(--paper); font-size: 0.95rem; }
th, td { text-align: left; padding: 0.7rem 0.75rem; border-bottom: 1px solid var(--line); color: var(--ink); }
th { font-weight: 600; color: var(--muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; }
details { border-top: 1px solid var(--line); padding: 0.9rem 0; }
details:first-of-type { border-top: none; }
summary { cursor: pointer; font-weight: 600; color: var(--ink); list-style: none; }
summary::-webkit-details-marker { display: none; }
details p { margin: 0.55rem 0 0; }
.about {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 1.8rem;
  align-items: start;
}
.portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 12%;
  background: #e7e0d4;
}
.note {
  font-size: 0.88rem;
  border-left: 2px solid var(--accent);
  padding: 0.55rem 0.85rem;
  background: var(--paper);
}
footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 1.4rem 2.4rem;
  max-width: 1120px;
  margin: 0 auto;
  font-size: 0.85rem;
  color: var(--muted);
}
footer a { color: var(--ink); }
.legal { font-size: 0.8rem; max-width: 48rem; }
.sticky {
  position: sticky;
  bottom: 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 0.7rem 1.2rem;
  display: none;
}
@media (max-width: 860px) {
  .hero, .about, .grid-2, .trust { grid-template-columns: 1fr; }
  h1 { max-width: none; }
  .hero-photo { height: min(70vw, 420px); }
  .sticky { display: flex; justify-content: center; }
  .top { flex-direction: column; align-items: flex-start; }
}
