:root {
  --bg: #faf8f4;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --line: #e5e0d8;
  --accent: #c4392b;
  --accent-soft: #f4e6e2;
  --radius: 6px;
  --maxw: 720px;
  font-size: 17px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Karla', 'Helvetica Neue', Helvetica, Arial, system-ui, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); }
a:hover { border-bottom-color: var(--ink); }

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 32px;
  max-width: var(--maxw);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 800;
  letter-spacing: 1.5px;
  font-size: 18px;
}
.brand .dot { color: var(--accent); font-weight: 800; }

nav a {
  margin-left: 22px;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-bottom: none;
}
nav a:hover { color: var(--accent); }
nav a.cta {
  background: var(--ink);
  color: var(--bg);
  padding: 7px 14px;
  border-radius: var(--radius);
}
nav a.cta:hover { background: var(--accent); color: var(--bg); }

main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}
section:last-child { border-bottom: none; }

.hero {
  padding: 90px 0 70px;
  border-bottom: 1px solid var(--line);
}
.hero h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.hero .lede {
  font-size: 19px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 32px;
}
.btn {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  letter-spacing: 0.5px;
  border-bottom: none;
}
.btn:hover { background: var(--accent); }

h2 {
  font-size: 28px;
  margin: 0 0 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.prose p {
  margin: 0 0 16px;
  max-width: 620px;
}

.price {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 22px;
  font-size: 16px;
}
.price th, .price td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.price th {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
.price td:nth-child(2) { font-weight: 700; white-space: nowrap; }
.note {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}

#order .form-intro {
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 620px;
}

form { max-width: 620px; }

fieldset {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 0 0 18px;
  background: #fff;
}
fieldset.radio-group {
  padding: 12px 16px;
  margin: 8px 0 16px;
  background: transparent;
}
legend {
  padding: 0 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
fieldset.radio-group legend {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: none;
  color: var(--ink);
}

label {
  display: block;
  margin: 14px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
label.radio {
  display: inline-block;
  margin: 0 18px 0 0;
  font-weight: 400;
  font-size: 15px;
}
label.radio input { margin-right: 6px; vertical-align: middle; }

input[type="text"], input[type="email"], input[type="number"], textarea {
  display: block;
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--ink);
}
input[type="file"] {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 400;
}
textarea { resize: vertical; min-height: 70px; }
.hint {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}

/* Honeypot. Visually and programmatically removed from the layout but still
   present in the DOM so bots that auto fill fields will trip it. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.advanced-toggle {
  display: block;
  width: 100%;
  background: transparent;
  border: 1px dashed var(--line);
  color: var(--muted);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  margin: 0 0 18px;
  transition: border-color 0.15s, color 0.15s;
}
.advanced-toggle:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.advanced-toggle::after {
  content: ' +';
}
.advanced-toggle[aria-expanded="true"]::after {
  content: ' \2212';
}

.advanced-panel[hidden] { display: none; }

.actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

button[type="submit"] {
  background: var(--ink);
  color: var(--bg);
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.15s;
}
button[type="submit"]:hover { background: var(--accent); }
button[type="submit"]:disabled { background: var(--muted); cursor: wait; }

.status {
  font-size: 14px;
  color: var(--muted);
}
.status.success { color: #2d6a3e; font-weight: 600; }
.status.error { color: var(--accent); font-weight: 600; }

footer {
  text-align: center;
  padding: 40px 0 60px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 1px;
}

@media (max-width: 600px) {
  :root { font-size: 16px; }
  header { padding: 16px 20px; flex-wrap: wrap; }
  nav a { margin-left: 14px; }
  main { padding: 0 20px; }
  .hero { padding: 60px 0 50px; }
  .hero h1 { font-size: 34px; }
  section { padding: 44px 0; }
  fieldset { padding: 14px 16px; }
}
