:root {
  --bg: #f3efe6;
  --fg: #1c241c;
  --muted: #5e6a5c;
  --faint: #8a9386;
  --surface: #fffdf8;
  --elevated: #e7e1d3;
  --accent: #3f5c45;
  --accent-fg: #f3efe6;
  --brass: #8c6a3f;
  --line: rgb(28 36 28 / 0.12);
  --shadow: 0 0 0 1px rgb(28 36 28 / 0.08);
  --font-display: "Fraunces", "Noto Serif", Georgia, serif;
  --font-body: "Manrope", sans-serif;
  --max: 72rem;
  --pad: 1.25rem;
  --radius: 1.25rem;
  --ease: 180ms ease;
}

html.dark {
  color-scheme: dark;
  --bg: #121512;
  --fg: #ece7dc;
  --muted: #a7b0a4;
  --faint: #7d8779;
  --surface: #1b201b;
  --elevated: #242a24;
  --accent: #c5d4b4;
  --accent-fg: #121512;
  --brass: #c4a36a;
  --line: rgb(236 231 220 / 0.12);
  --shadow: 0 0 0 1px rgb(236 231 220 / 0.08);
}



* { box-sizing: border-box; }
html { color-scheme: light; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.55;
  min-height: 100dvh;
}
img { max-width: 100%; display: block; }
button, [role="button"] { cursor: pointer; font: inherit; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 520; line-height: 1.15; text-wrap: balance; letter-spacing: -0.02em; }
p { text-wrap: pretty; }

.wrap { width: min(var(--max), calc(100% - 2 * var(--pad))); margin-inline: auto; }
.skip { position: absolute; inset-inline-start: -999px; }
.skip:focus { inset: 0.5rem; background: var(--surface); padding: 0.75rem; z-index: 80; }

.top {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.top-inner { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; height: 4.25rem; }
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand svg { width: 2rem; height: 2rem; }
.brand b { display: block; font-size: 0.95rem; }
.brand small { display: block; color: var(--muted); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; }
.nav { display: none; gap: 0.15rem; }
.nav a {
  text-decoration: none; color: var(--muted); font-size: 0.9rem;
  padding: 0.5rem 0.7rem; border-radius: 999px;
}
.nav a:hover, .nav a.active { color: var(--fg); background: var(--elevated); }
.tools { display: flex; align-items: center; gap: 0.2rem; }
.icon-btn {
  width: 2.75rem; height: 2.75rem; border: 0; border-radius: 0.8rem;
  background: transparent; color: var(--fg); display: grid; place-items: center;
}
.icon-btn:hover { background: var(--elevated); }
.menu { display: none; border-top: 1px solid var(--line); padding: 0.5rem var(--pad) 1rem; }
.menu.open { display: block; }
.menu a { display: flex; height: 2.75rem; align-items: center; text-decoration: none; }

.hero { position: relative; min-height: 86dvh; overflow: hidden; display: grid; align-items: end; }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(to top, #121512ee, #12151255 45%, #12151222); }
.hero-copy { position: relative; padding: 5rem 0 3.5rem; color: #ece7dc; max-width: 40rem; }
.kicker { font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass); margin: 0 0 0.8rem; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 5rem); margin: 0; }
.hero p { color: #ece7dcdd; font-size: 1.08rem; max-width: 34rem; }
.row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  min-height: 2.85rem; padding: 0 1.15rem; border-radius: 999px; border: 0;
  text-decoration: none; font-weight: 600; font-size: 0.92rem;
  transition: transform var(--ease), background var(--ease);
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--accent); color: var(--accent-fg); }
.btn-ghost { background: color-mix(in srgb, #fff 14%, transparent); color: #ece7dc; }
.btn-line { background: transparent; color: var(--fg); box-shadow: var(--shadow); }
.page .btn-ghost { background: var(--elevated); color: var(--fg); }

.band { padding: 4.5rem 0; }
.band-alt { background: var(--surface); }
.split { display: grid; gap: 2rem; align-items: center; }
.eyebrow { color: var(--brass); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; margin: 0 0 0.6rem; }
.lead { font-size: 1.08rem; color: var(--muted); }
.cards { display: grid; gap: 1rem; }
.card {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); text-decoration: none; color: inherit; display: flex; flex-direction: column;
  transition: transform var(--ease);
}
.card:hover { transform: translateY(-2px); }
.card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.card .pad { padding: 1.15rem 1.2rem 1.3rem; }
.card h3 { margin: 0.2rem 0 0.45rem; font-size: 1.25rem; }
.meta { color: var(--muted); font-size: 0.86rem; }
.price { font-variant-numeric: tabular-nums; font-weight: 650; margin-top: auto; padding-top: 0.8rem; }

.page { padding: 2.4rem 0 4.5rem; }
.page h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0.2rem 0 0.8rem; }
.prose { max-width: 42rem; }
.prose p { color: var(--muted); }
.notice {
  background: var(--elevated); border-radius: var(--radius); padding: 1rem 1.1rem;
  font-size: 0.92rem; color: var(--muted); margin: 1.2rem 0;
}
.list { display: grid; gap: 0.55rem; padding: 0; margin: 1rem 0; list-style: none; }
.list li { padding-inline-start: 1.2rem; position: relative; color: var(--muted); }
.list li::before { content: ""; width: 0.4rem; height: 0.4rem; border-radius: 99px; background: var(--accent); position: absolute; inset-inline-start: 0; top: 0.55rem; }

.table { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.table th, .table td { text-align: start; padding: 0.95rem 1.1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.table th { color: var(--muted); font-weight: 500; font-size: 0.82rem; }
.faq details { background: var(--surface); border-radius: 1rem; padding: 0.85rem 1rem; box-shadow: var(--shadow); }
.faq { display: grid; gap: 0.65rem; }
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { color: var(--muted); margin: 0.6rem 0 0.2rem; }

form { display: grid; gap: 0.8rem; max-width: 36rem; }
label { display: grid; gap: 0.35rem; font-size: 0.88rem; color: var(--muted); }
input, select, textarea {
  font: inherit; color: var(--fg); background: var(--surface); border: 1px solid var(--line);
  border-radius: 0.85rem; min-height: 2.85rem; padding: 0.55rem 0.8rem;
}
textarea { min-height: 8rem; resize: vertical; }
.ok { background: var(--surface); padding: 1.2rem; border-radius: var(--radius); box-shadow: var(--shadow); }

.foot { border-top: 1px solid var(--line); padding: 2.5rem 0 2rem; color: var(--muted); font-size: 0.92rem; }
.foot-grid { display: grid; gap: 1.2rem; }
.foot a { color: var(--fg); }

@media (min-width: 860px) {
  .nav { display: flex; }
  .burger { display: none; }
  .split { grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; }
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
  .cards-2 { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .hero-copy { padding-bottom: 5rem; }
}
@media (max-width: 859px) {
  .nav { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
