/* Adam Builds Pages — mobile-first one-pager
   Charcoal + clay (warm, approachable — distinct from RMLM gold)
   60% light neutrals · 30% near-black chrome · 10% clay accent */

:root {
  --bg: #f5f4f2;
  --bg-alt: #ebe8e4;
  --surface: #ffffff;
  --ink: #0a0a0a;
  --ink-soft: #222222;
  --muted: #5c5650;
  --line: #d4cfc8;
  /* Chrome */
  --black: #0a0a0a;
  --charcoal: #141414;
  --charcoal-mid: #1c1c1c;
  /* Clay / soft copper (orange family — not gold) */
  --clay: #b4532a;
  --clay-bright: #d4724a;
  --clay-hover: #943f1f;
  --clay-soft: #fdeee6;
  --accent: var(--clay);
  --accent-hover: var(--clay-hover);
  --accent-bright: var(--clay-bright);
  --accent-soft: var(--clay-soft);
  /* legacy aliases used across the sheet */
  --navy: var(--black);
  --navy-mid: var(--charcoal-mid);
  --copper: var(--clay);
  --copper-bright: var(--clay-bright);
  --copper-hover: var(--clay-hover);
  --copper-soft: var(--clay-soft);
  --brass: var(--clay);
  --brass-bright: var(--clay-bright);
  --brass-hover: var(--clay-hover);
  --brass-soft: var(--clay-soft);
  --ok: #1f7a36;
  --ok-bg: #dff3e4;
  --shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  --radius: 14px;
  --max: 1080px;
  --header-h: 72px;
  --sticky-h: 64px;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  --btn-min-h: 3rem;
  --btn-pad-y: 0.75rem;
  --btn-pad-x: 1.1rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--navy);
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  min-height: 100%;
  overscroll-behavior-y: none;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--copper-hover);
}

a:hover {
  color: var(--ink);
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(12, 18, 34, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--copper);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.55rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #fff;
  min-width: 0;
}

.brand-logo {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #f5f4f2;
}

.footer-logo {
  width: 3rem;
  height: 3rem;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #f5f4f2;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.15;
}

.brand-name {
  font-weight: 800;
  font-size: clamp(0.72rem, 2.8vw, 0.95rem);
  letter-spacing: 0.02em;
  color: #fff;
  display: block;
  white-space: normal;
  line-height: 1.2;
}

.brand-area {
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--copper-bright);
  letter-spacing: 0.02em;
}

.header-actions {
  display: flex;
  gap: 0.45rem;
  flex-shrink: 0;
  align-items: center;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  box-sizing: border-box;
  min-height: var(--btn-min-h);
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--clay);
  color: #fff;
  border-color: var(--clay);
}

.btn-primary:hover {
  background: var(--clay-hover);
  border-color: var(--clay-hover);
  color: #fff;
}

.btn-secondary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.btn-secondary:hover {
  background: #1a2438;
  border-color: #1a2438;
  color: #fff;
}

.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
}

.btn-ghost-header {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost-header:hover {
  border-color: var(--copper-bright);
  color: var(--copper-bright);
  background: transparent;
}

.btn-light {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.btn-light:hover {
  background: var(--copper-bright);
  border-color: var(--copper-bright);
  color: var(--ink);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  min-height: 2.4rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.85rem;
}

.header-actions .btn-primary {
  background: var(--clay);
  color: #fff;
  border-color: var(--clay);
}

/* —— Layout —— */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 2.75rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: linear-gradient(165deg, #0a0a0a 0%, #141414 55%, #1a120e 100%);
  color: #f2f2f2;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark .muted {
  color: #b8c0d0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper-hover);
  margin: 0 0 0.5rem;
}

.section-dark .eyebrow {
  color: var(--copper-bright);
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 0.75rem;
  color: var(--ink);
}

h1 {
  font-size: clamp(1.55rem, 5.2vw, 2.35rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.35rem, 4vw, 1.85rem);
}

h3 {
  font-size: 1.1rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 40rem;
}

.muted {
  color: var(--muted);
}

.ink {
  color: var(--ink);
}

/* —— Hero —— */
.hero {
  padding: 1rem 0 1.5rem;
}

.hero-grid {
  display: grid;
  gap: 1rem;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-body {
  padding: 1.35rem 1.15rem 1.5rem;
}

.hero-ctas {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.hero-ctas .btn {
  width: 100%;
  min-height: 3.15rem;
}

/* Hero product visual — phone frame + screenshot */
.hero-visual-card {
  padding: 1.1rem 1rem 1.15rem;
  background: linear-gradient(165deg, #0a0a0a 0%, #1a1a1a 100%);
  border-color: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.phone-mock-link {
  display: block;
  text-decoration: none;
  width: min(100%, 220px);
}

.phone-mock {
  position: relative;
  background: #0a0a0a;
  border-radius: 1.65rem;
  padding: 0.55rem 0.45rem 0.65rem;
  border: 2px solid #2a2a2a;
  box-shadow:
    0 0 0 1px rgba(180, 83, 42, 0.3),
    0 18px 40px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 0.45rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 0.55rem;
  background: #0a0a0a;
  border-radius: 0 0 8px 8px;
  z-index: 2;
}

.phone-screen {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 390 / 780;
  object-fit: cover;
  object-position: top center;
  border-radius: 1.15rem;
  background: #161616;
}

.hero-visual-caption {
  text-align: center;
  width: 100%;
}

.hero-visual-caption .eyebrow {
  color: var(--copper-bright);
  margin-bottom: 0.25rem;
}

.hero-visual-title {
  margin: 0;
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
}

.hero-visual-sub {
  margin: 0.2rem 0 0.75rem;
  font-size: 0.88rem;
  color: #a8b0c0;
}

.hero-visual-caption .btn {
  min-height: 2.4rem;
}

/* —— Cards —— */
.cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--copper);
  border-radius: var(--radius);
  padding: 1.15rem 1.1rem 1.2rem;
  box-shadow: 0 2px 10px rgba(12, 18, 34, 0.04);
}

.card p {
  margin: 0;
  color: var(--ink-soft);
}

/* —— Price band —— */
.price-band {
  margin-top: 1.75rem;
  display: grid;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--copper);
  border-radius: var(--radius);
  padding: 1.25rem 1.15rem;
  box-shadow: var(--shadow);
}

.price-title {
  margin: 0;
  font-size: 1.25rem;
}

.price-note p {
  margin: 0 0 0.65rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* —— Case study —— */
.case-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.case-col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
}

.plain-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plain-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  padding-left: 0;
}

.plain-list li:last-child {
  border-bottom: 0;
}

.case-col-before {
  background: var(--bg-alt);
}

.case-cta {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
  justify-items: start;
}

/* —— Checklist / steps —— */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.7rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.checklist li:last-child {
  border-bottom: 0;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--copper-soft);
  color: var(--copper-hover);
  font-size: 0.75rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.steps li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 1rem 0.9rem 3.1rem;
  position: relative;
  color: var(--ink-soft);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--copper-bright);
  font-weight: 800;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
}

/* —— About —— */
.about-grid {
  display: grid;
  gap: 1.25rem;
}

.about-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.15rem;
  box-shadow: 0 2px 10px rgba(12, 18, 34, 0.04);
}

/* —— FAQ —— */
.faq {
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
}

details.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
}

details.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--copper);
  font-weight: 700;
}

details.faq-item[open] summary::after {
  content: "–";
}

details.faq-item p {
  margin: 0.65rem 0 0.15rem;
  color: var(--ink-soft);
}

/* —— Contact —— */
.contact-objections-card {
  margin: 1.1rem 0 1.35rem;
  max-width: 42rem;
  background: #ffffff;
  color: #222222;
  border: 1px solid rgba(180, 83, 42, 0.4);
  border-top: 3px solid var(--copper);
  border-radius: var(--radius);
  padding: 0.85rem 1rem 0.95rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.contact-objections-card .contact-objections {
  margin: 0;
}

.contact-objections-card .contact-objections li {
  color: #222;
  border-bottom-color: #e0e0e0;
}

.contact-objections-card .contact-objections li strong {
  color: #0c1222;
}

.contact-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.contact-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(180, 83, 42, 0.35);
  border-radius: var(--radius);
  padding: 1.15rem;
}

.contact-panel a:not(.btn) {
  color: var(--copper-bright);
  font-weight: 700;
  text-decoration: none;
}

.contact-panel a:not(.btn):hover {
  text-decoration: underline;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.contact-list li {
  padding: 0.35rem 0;
  color: #e0e0e0;
}

.contact-actions {
  display: grid;
  gap: 0.55rem;
}

.contact-phone-hint {
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
  color: #9aa3b5 !important;
}

.form {
  display: grid;
  gap: 0.75rem;
}

.form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #f0f0f0;
}

.form .opt {
  font-weight: 500;
  opacity: 0.8;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.form textarea {
  min-height: 100px;
  resize: vertical;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid var(--copper-bright);
  outline-offset: 1px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-note {
  font-size: 0.85rem;
  color: #b8c0d0;
  margin: 0;
  text-align: center;
}

.form-note a {
  color: var(--copper-bright);
}

.form-status {
  display: none;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  text-align: center;
}

.form-status.ok {
  display: block;
  background: var(--ok-bg);
  color: var(--ok);
}

.form-status.err {
  display: block;
  background: #f8d9d0;
  color: #8a2e1a;
}

/* —— Footer —— */
.site-footer {
  padding: 2rem 0 calc(1.25rem + var(--sticky-h) + env(safe-area-inset-bottom, 0px));
  border-top: 2px solid var(--copper);
  background: var(--navy);
  color: #c8c8c8;
}

.site-footer p {
  margin: 0 0 0.4rem;
  color: #bdbdbd;
  font-size: 0.92rem;
}

.site-footer strong {
  color: #fff;
}

.site-footer a {
  color: var(--copper-bright);
}

.site-footer a:hover {
  color: #fff;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  margin-top: 0.75rem;
}

.footer-links a {
  font-weight: 600;
  text-decoration: none;
}

/* —— Sticky mobile bar —— */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom));
  background: rgba(12, 18, 34, 0.96);
  backdrop-filter: blur(8px);
  border-top: 2px solid var(--copper);
}

.sticky-cta .btn {
  width: 100%;
  min-height: 2.85rem;
  border-radius: 12px;
}

/* —— Desktop —— */
@media (min-width: 720px) {
  html {
    background: var(--bg);
    overscroll-behavior-y: auto;
  }

  body {
    overscroll-behavior-y: auto;
  }

  .sticky-cta {
    display: none;
  }

  .site-footer {
    padding: 2rem 0 1.5rem;
  }

  .hero {
    padding: 1.5rem 0 2rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 1.5rem;
    align-items: stretch;
  }

  .hero-body {
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-visual-card {
    padding: 1.35rem 1.15rem 1.25rem;
    justify-content: center;
  }

  .phone-mock-link {
    width: min(100%, 240px);
  }

  .hero-ctas {
    grid-template-columns: 1fr;
  }

  .cards-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .price-band {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
    padding: 1.5rem;
  }

  .case-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: 1.2fr 0.9fr;
    align-items: start;
  }

  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .section {
    padding: 3.5rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn {
    transition: none;
  }
}

/* clay-deploy 2026-08-10T17:07:06.8255140-07:00 */
