/* Donefront sales + intake — visual bar locked 2026-08-31 */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("fonts/fraunces-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("fonts/fraunces-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("fonts/outfit-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("fonts/outfit-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #F4EFE6;
  --surface: #FFFbf7;
  --ink: #142018;
  --muted: #4A5C52;
  --pine: #1C3F32;
  --pine-hover: #153328;
  --copper: #A34F24;
  --copper-hover: #8F4519;
  --line: #D9CFC0;
  --banner-bg: #1C3F32;
  --banner-text: #E8E2D4;
  --chip: #E7EEE8;
  --radius: 14px;
  --font-display: "Fraunces", Georgia, "Iowan Old Style", serif;
  --font-body: "Outfit", system-ui, "Segoe UI", sans-serif;
  --shadow: 0 18px 50px rgba(20, 32, 24, 0.12);
  --wrap: min(1120px, calc(100% - 2rem));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--pine); }
a:focus,
a:focus-visible,
button:focus,
button:focus-visible,
input:focus,
input:focus-visible,
select:focus,
select:focus-visible,
textarea:focus,
textarea:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3.5rem;
  background: var(--ink);
  color: var(--surface);
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  z-index: 80;
  text-decoration: none;
}
.skip:focus, .skip:focus-visible { top: 0.75rem; }

.wrap { width: var(--wrap); margin-inline: auto; }
.narrow { width: min(720px, calc(100% - 2rem)); margin-inline: auto; }

h1, h2, h3, .logo {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}
h1 { font-size: clamp(2.05rem, 5.2vw, 3.35rem); margin: 0 0 1rem; font-weight: 650; }
h2 { font-size: clamp(1.65rem, 3vw, 2.15rem); margin: 0 0 0.75rem; }
h3 { font-size: 1.15rem; margin: 0 0 0.45rem; font-weight: 600; }
p { margin: 0 0 1rem; }
.lede { color: var(--muted); max-width: 40rem; font-size: 1.08rem; }
.section-head { margin-bottom: 2rem; }
.section-head .lede { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--copper);
  margin: 0 0 0.85rem;
}
/* Cream sections: copper (~4.95:1 on #F4EFE6). Pine hero keeps #E2B089 (~5.98:1). */
.section .eyebrow { color: var(--copper); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 48px;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--pine);
  color: #FFFbf7;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn:hover { background: var(--pine-hover); color: #FFFbf7; }
.btn-copper { background: var(--copper); color: #FFF8F4; }
.btn-copper:hover { background: var(--copper-hover); color: #FFF8F4; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); background: transparent; color: var(--ink); }
.btn-ghost.on-dark {
  color: #F4EFE6;
  border-color: rgba(244, 239, 230, 0.45);
}
.btn-ghost.on-dark:hover { border-color: #F4EFE6; color: #FFFbf7; }
.btn:disabled, .btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.6rem; }

.site-header {
  background: rgba(255, 251, 247, 0.92);
  backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}
.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 4.25rem;
  flex-wrap: wrap;
  padding: 0.35rem 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--pine);
  font-size: 1.28rem;
  font-weight: 700;
  min-height: 48px;
  letter-spacing: -0.03em;
}
.logo-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  flex: 0 0 48px;
}
.nav-toggle .burger-icon,
.nav-toggle .burger-icon::before,
.nav-toggle .burger-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
  border-radius: 1px;
}
.nav-toggle .burger-icon::before,
.nav-toggle .burger-icon::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle .burger-icon::before { top: -6px; }
.nav-toggle .burger-icon::after { top: 6px; }
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.15rem;
  align-items: center;
}
nav a {
  color: var(--ink);
  text-decoration: none;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.7rem;
  font-weight: 500;
  font-size: 0.95rem;
}
nav a:hover { color: var(--pine); }
nav a.btn { color: #FFFbf7; padding: 0.7rem 1.15rem; }
nav a.btn:hover { color: #FFFbf7; }

.hero {
  background: var(--pine);
  color: #F4EFE6;
  padding: 3.25rem 0;
}
.hero h1 { color: #FFFbf7; }
.hero .lede { color: #C5D0C8; max-width: 36rem; }
.hero .eyebrow { color: #E2B089; }
.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.hero-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  background: #0e1c16;
}
.hero-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.hero-photo figcaption {
  padding: 0.7rem 0.95rem 0.85rem;
  font-size: 0.82rem;
  color: #C5D0C8;
  background: #153328;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.35rem 0 0;
}
.pill {
  background: rgba(255, 251, 247, 0.08);
  border: 1px solid rgba(232, 226, 212, 0.22);
  color: #E8E2D4;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
}

.section { padding: 3.25rem 0; }
.section.alt { background: #EBE4D8; }
.section.surface { background: var(--surface); }

.price-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem 1.5rem;
  box-shadow: var(--shadow);
}
.price-card.featured {
  border-color: var(--copper);
  box-shadow: 0 18px 50px rgba(163, 79, 36, 0.12);
  overflow: hidden;
}
.price-card.featured::before {
  content: "";
  display: block;
  height: 4px;
  background: var(--copper);
  margin: -1.4rem -1.35rem 1.15rem;
}
.price-card .amount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--pine);
  margin: 0.15rem 0 0.55rem;
}
.price-card .amount span {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}
.price-card p { color: var(--muted); margin: 0; }
.kicker {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--copper);
  margin: 0 0 0.2rem;
}

.cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem 1.35rem;
}
.card p, .card li { color: var(--muted); }
.card ul, .card ol { margin: 0.4rem 0 0; padding-left: 1.15rem; }
.card li { margin: 0.35rem 0; }

.photo-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.photo-card {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.photo-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.photo-card figcaption {
  padding: 0.85rem 1rem 1rem;
}
.photo-card h3 { margin: 0 0 0.2rem; }
.photo-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.craft-band {
  margin: 0 0 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--pine);
}
.craft-band img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.craft-band figcaption {
  padding: 0.8rem 1rem 0.95rem;
  color: var(--banner-text);
  font-size: 0.88rem;
  background: var(--pine);
}

.split {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
.split img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid var(--line);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.steps li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.2rem 1.25rem 1.2rem;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.85rem;
  align-items: start;
}
.steps .n {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--copper);
  color: #FFF8F4;
  display: grid;
  place-items: center;
  font-weight: 650;
  font-size: 1rem;
}
.steps h3 { margin: 0.15rem 0 0.3rem; }
.steps p { margin: 0; color: var(--muted); }

.trust-grid {
  display: grid;
  gap: 1rem;
}
.trust {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
}
.trust h3 { font-size: 1.05rem; }
.trust p { margin: 0; color: var(--muted); font-size: 0.98rem; }

.pricing-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem 1.6rem;
  box-shadow: var(--shadow);
}
.pricing-panel dl {
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.85rem;
}
.pricing-panel dt {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 650;
  color: var(--pine);
  letter-spacing: -0.02em;
}
.pricing-panel dd { margin: 0.15rem 0 0; color: var(--muted); }
.note {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem 1.45rem;
  display: grid;
  gap: 0.9rem;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}
.field { display: flex; flex-direction: column; gap: 0.32rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 0.95rem; }
.req { color: var(--copper); }
.field input,
.field select,
.field textarea {
  min-height: 48px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  font: inherit;
  background: var(--bg);
  color: var(--ink);
  width: 100%;
}
.field textarea { min-height: 120px; resize: vertical; }
fieldset {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1rem 1.2rem;
  display: grid;
  gap: 0.85rem;
  margin: 0;
  background: var(--surface);
}
legend {
  font-family: var(--font-display);
  font-weight: 600;
  padding: 0 0.4rem;
}
.check {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.95rem;
}
.check input { width: 1.15rem; height: 1.15rem; margin-top: 0.2rem; flex: 0 0 auto; }
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}
.fine { font-size: 0.88rem; color: var(--muted); margin: 0; }
.status {
  display: none;
  padding: 0.9rem 1rem;
  background: var(--chip);
  border: 1px solid var(--pine);
  color: var(--ink);
  border-radius: 10px;
  font-weight: 600;
}
.status.show, .status:not([hidden]) { display: block; }
.status[hidden] { display: none; }
.checkout-box {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.25rem 0 2.5rem;
  color: var(--muted);
  font-size: 0.92rem;
  background: var(--surface);
}
.footer-grid {
  display: grid;
  gap: 1.1rem;
}
.site-footer strong { color: var(--ink); font-family: var(--font-display); font-size: 1.15rem; }
.draft-note {
  margin-top: 1.1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.page-intro { padding: 2.75rem 0 0.5rem; }
.page-intro h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); }

@media (min-width: 640px) {
  .price-grid { grid-template-columns: repeat(3, 1fr); }
  .photo-cards { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1.05fr 0.95fr; gap: 2.25rem; }
}
@media (min-width: 900px) {
  .section { padding: 5.5rem 0; }
  .hero { padding: 5.5rem 0; }
  .hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 3.25rem; }
  .photo-cards { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .steps li { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .wrap { width: min(1120px, calc(100% - 3rem)); }
}
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 0.25rem 0 0.75rem;
  }
  nav a { width: 100%; }
  nav a.btn { justify-content: center; }
  nav.is-open { display: flex; }
}
@media (max-width: 420px) {
  :root { --wrap: min(1120px, calc(100% - 1.25rem)); }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cards.stack { grid-template-columns: 1fr; margin-top: 1.25rem; }
.split-media { align-self: stretch; }
.checkout-box .btn { margin-top: 0.75rem; }
.how-link { margin: 1.5rem 0 0; }
.pricing-wrap { display: grid; gap: 1.5rem; }
.intake-lead { padding-top: 1.75rem; }
.intake-notes { margin-bottom: 1.5rem; }
@media (min-width: 900px) {
  .hero-grid { min-height: 32rem; }
  .pricing-panel dl {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 2rem;
  }
  .price-card { height: 100%; }
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.25rem;
  margin-top: 0.35rem;
}
.footer-legal a {
  color: var(--pine);
  font-weight: 600;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.legal-copy h2 { margin-top: 1.5rem; }
.legal-copy ul { margin: 0 0 1rem; padding-left: 1.2rem; color: var(--muted); }
.legal-copy li { margin: 0 0 0.4rem; }

.legal-nav { display:flex; flex-wrap:wrap; gap:0.75rem 1rem; margin-top:0.75rem; }
.legal-nav a { color: inherit; }

