:root {
  --ink: #14161a;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #fbfbfc;
  --panel: #ffffff;
  --accent: #8a5a2b;
  --accent-dark: #6b4520;
  --wrap: 1140px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
}

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

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

header.site { border-bottom: 1px solid var(--line); background: var(--panel); }
header.site .wrap {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 20px; min-height: 84px; flex-wrap: wrap;
}
.brand {
  font-size: 23px; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; color: var(--ink); font-weight: 400;
}
.brand span { color: var(--accent); }

nav.main a {
  text-decoration: none; color: var(--muted); margin-left: 22px;
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 14px; letter-spacing: .06em; text-transform: uppercase;
}
nav.main a:hover, nav.main a[aria-current="page"] { color: var(--accent); }

.hero { padding: 64px 0 48px; }
.hero h1 { font-size: 42px; line-height: 1.15; margin: 0 0 18px; font-weight: 400; }
.hero p { font-size: 19px; color: var(--muted); max-width: 62ch; margin: 0 0 26px; }

.btn {
  display: inline-block; background: var(--accent); color: #fff;
  padding: 13px 26px; text-decoration: none;
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 14px; letter-spacing: .08em; text-transform: uppercase;
}
.btn:hover { background: var(--accent-dark); }
.btn.ghost { background: transparent; color: var(--accent-dark); border: 1px solid var(--line); }

section { padding: 44px 0; }
section.alt { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
h2 { font-size: 30px; font-weight: 400; margin: 0 0 10px; }
p.sub { color: var(--muted); margin: 0 0 30px; font-family: -apple-system, "Segoe UI", Roboto, sans-serif; font-size: 15px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

figure.shot { margin: 0; }
figure.shot img { width: 100%; height: auto; display: block; background: #eee; }
figure.shot figcaption {
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 13px; color: var(--muted); padding-top: 8px; letter-spacing: .03em;
}

table.price { width: 100%; border-collapse: collapse; font-family: -apple-system, "Segoe UI", Roboto, sans-serif; font-size: 15px; }
table.price th, table.price td { text-align: left; padding: 14px 10px; border-bottom: 1px solid var(--line); }
table.price th { color: var(--muted); font-weight: 600; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
table.price td.num { text-align: right; white-space: nowrap; }

dl.faq dt { font-weight: 700; margin-top: 20px; }
dl.faq dd { margin: 6px 0 0; color: var(--muted); }

footer.site {
  border-top: 1px solid var(--line); padding: 36px 0; background: var(--panel);
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif; font-size: 14px; color: var(--muted);
}
footer.site .cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
footer.site a { color: var(--muted); }

@media (max-width: 860px) {
  .grid-3, .grid-2, footer.site .cols { grid-template-columns: 1fr; }
  .hero h1 { font-size: 31px; }
  nav.main a { margin: 0 18px 0 0; }
}
