:root {
  --green: #0e2a1f;
  --green-mid: #0c2620;
  --green-deep: #0a1f17;
  --black: #111111;
  --gold: #b68a45;
  --gold-bright: #d1a862;
  --gold-soft: rgba(182, 138, 69, 0.14);
  --cream: #f5f2e9;
  --grey: #9a9a94;
  --grey-line: rgba(245, 242, 233, 0.13);
  --radius: 3px;
  --maxw: 1140px;
  --shadow-card: 0 10px 30px -14px rgba(0, 0, 0, 0.55);
  --shadow-lift: 0 16px 36px -16px rgba(0, 0, 0, 0.6);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--green);
  color: var(--cream);
  font-family: "Montserrat", -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- Type system ----------
   Display serif (Cinzel): brand wordmark + h1/h2 headlines only.
   Sans (Montserrat): everything functional — nav, buttons, labels,
   eyebrows, prices, form fields, body copy. Keeps the glamour up top
   while everything you have to *read* stays easy on the eyes. */

h1, h2 {
  font-family: "Cinzel", "Trajan Pro", Georgia, serif;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 0.45em;
}

h1 { font-size: clamp(2rem, 4.2vw, 2.9rem); letter-spacing: 0.09em; line-height: 1.25; }
h2 { font-size: clamp(1.5rem, 3vw, 1.9rem); letter-spacing: 0.06em; line-height: 1.3; }

h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 0 0 0.7em;
}

p { color: rgba(245, 242, 233, 0.86); margin: 0 0 1em; font-size: 1rem; }
p.lead { font-size: 1.06rem; color: rgba(245, 242, 233, 0.8); }

a { color: var(--gold-bright); text-decoration: none; }

.eyebrow {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85em;
}

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

.hairline { border: none; border-top: 1px solid var(--grey-line); margin: 0; }

/* ---------- Header ---------- */
header.site {
  position: sticky; top: 0; z-index: 40;
  background: rgba(10, 31, 23, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--grey-line);
}
header.site .row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
}
.brandmark { display: flex; align-items: center; gap: 12px; }
.brandmark img { height: 38px; width: auto; display: block; }
.brandmark .wordmark {
  font-family: "Cinzel", serif;
  font-size: 1.05rem; font-weight: 600; letter-spacing: 0.2em; color: var(--cream);
}
nav.primary { display: flex; align-items: center; gap: 28px; }
nav.primary a {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase;
  color: rgba(245, 242, 233, 0.78);
  transition: color 0.15s;
}
nav.primary a:hover { color: var(--gold-bright); }

/* ---------- Buttons (unified hierarchy) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  padding: 13px 28px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold-bright);
  background: transparent;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.btn:hover { background: rgba(182, 138, 69, 0.12); }
.btn.solid {
  background: var(--gold); color: var(--green-deep); border-color: var(--gold);
  box-shadow: 0 6px 18px -8px rgba(182, 138, 69, 0.55);
}
.btn.solid:hover { background: var(--gold-bright); transform: translateY(-1px); box-shadow: 0 10px 22px -8px rgba(182, 138, 69, 0.6); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }
header.site .btn.solid { padding: 10px 22px; }

/* ---------- Section shell ---------- */
section { padding: 84px 0; }
section.alt { background: var(--green-deep); }
#standard { background: var(--green-mid); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }

/* ---------- Wizard section ---------- */
.wizard-section {
  position: relative;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(182, 138, 69, 0.12), transparent 55%),
    linear-gradient(180deg, var(--green) 0%, var(--green-deep) 100%);
  border-bottom: 1px solid var(--grey-line);
  padding-top: 68px;
}
.wizard-section .section-head { margin-bottom: 40px; }
.wizard-section .section-head h1 { text-align: center; }

.wizard-form { max-width: 760px; margin: 0 auto; }

/* Progress indicator */
.wizard-progress {
  list-style: none; margin: 0 0 44px; padding: 0;
  display: flex; align-items: center; justify-content: center;
  max-width: 620px; margin-left: auto; margin-right: auto;
}
.wp-step {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  flex: 0 0 auto;
  cursor: default;
}
.wp-step.clickable { cursor: pointer; }
.wp-num {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--grey-line);
  display: flex; align-items: center; justify-content: center;
  font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 0.85rem;
  color: var(--grey);
  transition: all 0.2s;
}
.wp-label {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--grey); white-space: nowrap;
}
.wp-step.active .wp-num { border-color: var(--gold); color: var(--gold-bright); background: var(--gold-soft); }
.wp-step.active .wp-label { color: var(--gold-bright); }
.wp-step.done .wp-num { border-color: var(--gold); background: var(--gold); color: var(--green-deep); }
.wp-step.done .wp-label { color: var(--cream); }
.wp-connector { flex: 1 1 auto; height: 1px; background: var(--grey-line); margin: 0 6px 22px; min-width: 24px; transition: background 0.2s; }
.wp-connector.done { background: var(--gold); }

.wizard-panel-head { text-align: center; margin-bottom: 32px; }
.wizard-panel-head .step-eyebrow {
  display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.7em;
}
.wizard-panel-head h2 { text-align: center; }
.wizard-panel-head p { max-width: 480px; margin: 0 auto; }

.wizard-panel { display: none; }
.wizard-panel.active { display: block; animation: wizard-in 0.3s ease; }
@keyframes wizard-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.wizard-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 36px; gap: 16px;
}

.wizard-mini-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 24px; padding: 14px 20px;
  border: 1px solid var(--grey-line); background: rgba(182, 138, 69, 0.06);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.03em;
}
.wizard-mini-total #miniAmt { color: var(--gold-bright); font-weight: 700; }

/* ---------- Pillars ---------- */
.pillars {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 28px; text-align: center;
}
.pillar { padding: 18px 10px; }
.pillar .glyph {
  width: 46px; height: 46px; margin: 0 auto 14px;
  border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-bright); font-family: "Cinzel", serif; font-weight: 600; font-size: 1.05rem;
}
.pillar .label { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream); }

/* ---------- Services (wizard step 1) ---------- */
.cat-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.cat-tab {
  font-family: "Montserrat", sans-serif;
  padding: 10px 20px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--grey-line); background: transparent; color: rgba(245, 242, 233, 0.68);
  cursor: pointer; border-radius: 999px; transition: all 0.15s;
}
.cat-tab.active, .cat-tab:hover { border-color: var(--gold); color: var(--gold-bright); background: var(--gold-soft); }

.svc-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}
.svc-card {
  background: var(--green-mid);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: var(--shadow-card);
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.svc-card:hover { border-color: rgba(182, 138, 69, 0.45); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.svc-card .top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.svc-card .name { font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: 0.01em; color: var(--cream); }
.svc-card .price { font-family: "Montserrat", sans-serif; color: var(--gold-bright); font-weight: 700; white-space: nowrap; }
.svc-card .blurb { font-size: 0.88rem; color: rgba(245, 242, 233, 0.65); margin: 0; }
.svc-card .meta { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey); }
.svc-card label.pick {
  margin-top: auto; display: flex; align-items: center; gap: 10px;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(245, 242, 233, 0.75);
  cursor: pointer; padding-top: 12px; border-top: 1px solid var(--grey-line);
}
.svc-card.selected { background: var(--gold-soft); border-color: var(--gold); }

/* Custom checkbox */
.svc-card label.pick input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 19px; height: 19px; flex: 0 0 auto;
  border: 1px solid var(--gold); border-radius: 3px;
  background: transparent; position: relative; cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.svc-card label.pick input[type="checkbox"]:checked { background: var(--gold); }
.svc-card label.pick input[type="checkbox"]:checked::after {
  content: ""; position: absolute; left: 6px; top: 2px;
  width: 5px; height: 10px;
  border: solid var(--green-deep); border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ---------- ZIP checker ---------- */
.zip-check {
  max-width: 460px; margin: 0 auto; text-align: center;
  border: 1px solid var(--grey-line); border-radius: var(--radius);
  padding: 36px 32px; background: var(--green-mid); box-shadow: var(--shadow-card);
}
.zip-check .field-row { display: flex; gap: 10px; margin-top: 18px; }
.zip-check input { flex: 1; }
.zip-result { margin-top: 18px; font-size: 0.88rem; min-height: 1.4em; font-weight: 500; }
.zip-result.ok { color: #93c49e; }
.zip-result.no { color: #d19684; }

/* ---------- Form fields ---------- */
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block; font-family: "Montserrat", sans-serif;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 8px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 15px; background: var(--green-mid);
  border: 1px solid var(--grey-line); border-radius: var(--radius); color: var(--cream);
  font-family: "Montserrat", sans-serif; font-size: 0.94rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-field input::placeholder { color: rgba(245, 242, 233, 0.4); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft);
}
.form-field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23d1a862' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row-2 { grid-template-columns: 1fr; } }

.hint { color: var(--grey); font-size: 0.85rem; }

/* ---------- Time slots ---------- */
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); gap: 10px; margin-top: 6px; }
.slot-btn {
  font-family: "Montserrat", sans-serif;
  padding: 11px 6px; font-size: 0.82rem; font-weight: 600; text-align: center;
  border: 1px solid var(--grey-line); border-radius: var(--radius);
  background: var(--green-mid); color: rgba(245, 242, 233, 0.78);
  cursor: pointer; transition: all 0.15s;
}
.slot-btn:hover:not([disabled]) { border-color: var(--gold); }
.slot-btn.selected { border-color: var(--gold); color: var(--green-deep); background: var(--gold); }
.slot-btn[disabled] { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }

/* ---------- Review (wizard step 4) ---------- */
.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 640px) { .review-grid { grid-template-columns: 1fr; } }
.review-block {
  border: 1px solid var(--grey-line); border-radius: var(--radius);
  background: var(--green-mid); padding: 24px; box-shadow: var(--shadow-card);
}
.review-block h3 { margin-bottom: 14px; }
.review-details .row { display: flex; justify-content: space-between; gap: 12px; font-size: 0.86rem; padding: 7px 0; border-bottom: 1px solid var(--grey-line); }
.review-details .row span:first-child { color: var(--grey); }
.review-details .row span:last-child { color: var(--cream); text-align: right; }
.review-details .row:last-child { border-bottom: none; }

.line { display: flex; justify-content: space-between; font-size: 0.88rem; padding: 9px 0; border-bottom: 1px solid var(--grey-line); }
.line.total { font-family: "Montserrat", sans-serif; font-weight: 700; color: var(--gold-bright); font-size: 1.1rem; border-bottom: none; padding-top: 16px; }
.empty { color: var(--grey); font-size: 0.86rem; padding: 6px 0; }

.form-msg { margin-top: 20px; font-size: 0.88rem; padding: 14px 16px; border-left: 2px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; display: none; line-height: 1.6; }
.form-msg.show { display: block; }
.form-msg.err { border-color: #c9635a; color: #e0a89f; background: rgba(201, 99, 90, 0.08); }
.form-msg.ok { border-color: #7fae8a; color: #b6d9bd; background: rgba(127, 174, 138, 0.08); }

/* ---------- Footer ---------- */
footer.site {
  background: var(--black); border-top: 1px solid var(--grey-line);
  padding: 54px 0 30px; text-align: center;
}
footer.site img.crest { height: 52px; margin-bottom: 18px; }
footer.site .tagline { font-family: "Cinzel", serif; font-weight: 600; font-size: 0.72rem; letter-spacing: 0.28em; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; }
footer.site .fine { font-size: 0.8rem; color: var(--grey); line-height: 1.9; }
footer.site .fine a { color: var(--grey); }
footer.site .fine a:hover { color: var(--gold-bright); }

/* ---------- Responsive ---------- */
@media (max-width: 620px) {
  .wp-label { display: none; }
  .wizard-progress { max-width: 100%; }
  section { padding: 60px 0; }
  .wizard-section { padding-top: 48px; }
}
