/* ===========================================================
   Kerington Design & Marketing — DARK THEME
   Black + brass, to match the shopping-cart advertising assets.
   =========================================================== */

:root {
  --ink: #0c0b0a;
  --ink-2: #141210;       /* alternate section */
  --surface: #1b1916;     /* cards */
  --surface-2: #211e1a;   /* inputs / raised */
  --brass: #c39a4e;
  --brass-bright: #e0c084;
  --brass-faint: rgba(195, 154, 78, 0.30);
  --cream: #f3eee3;
  --text: #e7e0d2;
  --text-muted: #a79c87;
  --line: rgba(227, 214, 188, 0.13);
  --line-strong: rgba(227, 214, 188, 0.22);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --maxw: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brass);
  margin: 0 0 14px;
}
.eyebrow.on-light { color: var(--brass); }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.08; margin: 0; color: var(--cream); }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12, 11, 10, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-brand {
  font-family: var(--serif); color: var(--cream); text-decoration: none;
  font-size: 1.35rem; letter-spacing: 0.18em; text-transform: uppercase;
}
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  color: var(--text-muted); text-decoration: none; font-size: 0.82rem;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--brass-bright); }
.nav-toggle { display: none; }

/* ---------- HERO ---------- */
.hero {
  background:
    radial-gradient(circle at 50% 0%, rgba(195,154,78,0.10), transparent 55%),
    var(--ink);
  color: var(--text); padding: 92px 0 100px; position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 30px;
  border: 1px solid var(--brass-faint); pointer-events: none;
}
.hero-logo {
  width: min(440px, 76%); margin: 0 auto 34px;
  filter: drop-shadow(0 6px 22px rgba(0,0,0,0.5));
}
.hero-tag { text-align: center; max-width: 660px; margin: 0 auto; }
.hero-tag h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); margin-bottom: 18px; }
.hero-tag h1 em { color: var(--brass-bright); font-style: italic; }
.hero-tag p { color: var(--text-muted); font-size: 1.06rem; margin: 0 auto 30px; max-width: 540px; }
.hero-cta { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block; font-family: var(--sans); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 15px 30px;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: all 0.2s ease; border-radius: 2px;
}
.btn-primary { background: var(--brass); color: var(--ink); }
.btn-primary:hover { background: var(--brass-bright); }
.btn-ghost { background: transparent; color: var(--cream); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--brass); color: var(--brass-bright); }
.btn-block { width: 100%; text-align: center; padding: 18px; font-size: 0.9rem; }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; }

/* ---------- SECTIONS ---------- */
.section { padding: 84px 0; background: var(--ink); }
.section.section-alt { background: var(--ink-2); }
.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 14px; }
.section-head p { color: var(--text-muted); font-size: 1.04rem; margin: 0; }
.section-dark { background: var(--ink-2); }

/* ---------- SERVICES ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--surface); border: 1px solid var(--line);
  border-top: 3px solid var(--brass); padding: 32px 28px;
}
.service-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); margin: 0; font-size: 0.97rem; }
.service-num { font-family: var(--serif); font-size: 0.95rem; color: var(--brass); letter-spacing: 0.1em; margin-bottom: 14px; }

/* ---------- FEATURE STRIP ---------- */
.feature { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.feature-media img { border: 1px solid var(--line); border-radius: 2px; }
.feature ul { list-style: none; padding: 0; margin: 22px 0 0; }
.feature li { padding: 12px 0 12px 26px; position: relative; border-bottom: 1px solid var(--line); color: var(--text-muted); }
.feature li::before { content: ""; position: absolute; left: 0; top: 20px; width: 9px; height: 9px; background: var(--brass); transform: rotate(45deg); }
.feature li strong { color: var(--cream); font-weight: 600; }

/* ---------- GRAPHIC PANELS ---------- */
.graphic-panel { margin-top: 36px; text-align: center; }
.graphic-panel img {
  margin: 0 auto; border: 1px solid var(--line-strong);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5); max-width: 760px; width: 100%; border-radius: 2px;
}
.graphic-caption { font-size: 0.85rem; color: var(--text-muted); margin-top: 14px; letter-spacing: 0.04em; }

/* ---------- ORDER FORM ---------- */
.order { background: var(--ink-2); }
.order-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 44px; align-items: start; }
.form-card { background: var(--surface); border: 1px solid var(--line); padding: 38px 36px; border-radius: 2px; }
.field { margin-bottom: 24px; }
.field > label.field-label {
  display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.16em;
  font-weight: 600; color: var(--text-muted); margin-bottom: 10px;
}
.field input[type="text"], .field input[type="email"], .field input[type="tel"],
.field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; padding: 13px 14px;
  border: 1px solid var(--line-strong); background: var(--surface-2); color: var(--cream); border-radius: 2px;
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--brass) 50%), linear-gradient(135deg, var(--brass) 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 14px) center; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.field select option { color: #111; }
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--brass); outline-offset: 1px; border-color: var(--brass); }
.field input::placeholder, .field textarea::placeholder { color: #6f6555; }

.option-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.option-grid.terms { grid-template-columns: repeat(3, 1fr); }
.opt {
  position: relative; border: 1px solid var(--line-strong); background: var(--surface-2);
  padding: 14px 16px; cursor: pointer; border-radius: 2px; transition: all 0.15s ease; display: block;
}
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt .opt-name { font-weight: 600; font-size: 0.95rem; display: block; color: var(--cream); }
.opt .opt-sub { font-size: 0.82rem; color: var(--text-muted); }
.opt:hover { border-color: var(--brass); }
.opt:has(input:checked) { border-color: var(--brass); background: rgba(195,154,78,0.10); box-shadow: inset 0 0 0 1px var(--brass); }
.opt .opt-badge {
  position: absolute; top: -9px; right: 10px; background: var(--brass); color: var(--ink);
  font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; padding: 3px 8px; border-radius: 2px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.summary {
  position: sticky; top: 92px;
  background: linear-gradient(160deg, #15130f, #0c0b0a);
  border: 1px solid var(--brass-faint);
  color: var(--text); padding: 34px 32px; border-radius: 2px;
}
.summary h3 { font-size: 1.6rem; margin-bottom: 6px; }
.summary .summary-sub { color: var(--text-muted); font-size: 0.88rem; margin: 0 0 22px; }
.summary-line { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.summary-line span:first-child { color: var(--text-muted); }
.summary-line span:last-child { color: var(--cream); font-weight: 600; text-align: right; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--brass-faint); }
.summary-total .lbl { color: var(--text-muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em; }
.summary-total .val { font-family: var(--serif); color: var(--brass-bright); font-size: 2rem; }
.summary-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 20px; line-height: 1.5; }

.form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 18px; text-align: center; }
.helper { font-size: 0.82rem; color: var(--text-muted); margin: 6px 0 0; }

/* ---------- FOOTER ---------- */
.footer { background: var(--ink); color: var(--text-muted); padding: 54px 0 40px; border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: flex-start; }
.footer-brand { font-family: var(--serif); color: var(--cream); font-size: 1.3rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 10px; }
.footer p { margin: 4px 0; font-size: 0.9rem; }
.footer a { color: var(--brass-bright); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-bottom { margin-top: 38px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 0.8rem; color: #7c7464; }

/* ---------- LEGAL ---------- */
.legal { padding: 64px 0 84px; max-width: 800px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 8px; }
.legal .updated { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 40px; }
.legal h2 { font-size: 1.5rem; margin: 36px 0 12px; }
.legal p, .legal li { color: var(--text); font-size: 1rem; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal strong { color: var(--cream); }
.legal .callout { background: var(--surface); border-left: 3px solid var(--brass); padding: 16px 20px; font-size: 0.92rem; margin: 24px 0; color: var(--text); }
.legal a { color: var(--brass-bright); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .feature { grid-template-columns: 1fr; gap: 32px; }
  .order-grid { grid-template-columns: 1fr; }
  .summary { position: static; }
}
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .hero { padding: 60px 0 70px; }
  .hero::after { inset: 16px; }
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column;
    gap: 0; background: var(--ink); border-bottom: 1px solid var(--line); padding: 8px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; }
  .nav-toggle {
    display: block; background: none; border: 1px solid var(--line-strong); color: var(--cream);
    font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 8px 14px; cursor: pointer; border-radius: 2px;
  }
  .option-grid, .option-grid.terms, .field-row { grid-template-columns: 1fr; }
  .form-card { padding: 26px 22px; }
}

/* phone link in nav */
.nav-call { color: var(--brass-bright) !important; }
.nav-call:hover { color: var(--cream) !important; }
/* under-10-carts note */
.pricing-note { margin-top: 16px; font-size: 0.92rem; color: var(--text-muted); }
.pricing-note a { color: var(--brass-bright); text-decoration: none; }
.pricing-note a:hover { text-decoration: underline; }

/* form submit states */
.form-error { color: #e0a3a3; font-size: 0.9rem; margin: 14px 0 0; text-align: center; }
.form-error:empty { display: none; }
.form-success {
  background: var(--surface);
  border: 1px solid var(--brass-faint);
  border-radius: 2px;
  padding: 48px 40px;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.form-success-mark {
  width: 56px; height: 56px; line-height: 56px; margin: 0 auto 18px;
  border-radius: 50%; background: var(--brass); color: var(--ink);
  font-size: 1.6rem; font-weight: 700;
}
.form-success h3 { font-size: 1.8rem; margin-bottom: 12px; }
.form-success p { color: var(--text-muted); margin: 0 auto 10px; max-width: 460px; }
.form-success-sub { font-size: 0.9rem; }
.form-success a { color: var(--brass-bright); text-decoration: none; }
.form-success a:hover { text-decoration: underline; }
