/* SiteReady. Premium-tier showcase. Cool bone canvas, ink type, deep amber accent. */

:root {
  --bone: #F4F2EC;
  --bone-deep: #E9E6DD;
  --ink: #0F1012;
  --paper: #FFFFFF;
  --border: #DAD6CA;
  --accent: #B86A14;
  --accent-deep: #9E5410;
  --text-muted: #7A776E;
  --text-subdued: #4F4D47;

  --font-sans: 'Manrope', system-ui, sans-serif;
  --font-serif: 'Lora', Georgia, serif;

  --max: 1120px;
  --pad: 24px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bone);
  color: var(--text-subdued);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; }

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

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bone);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 18px; color: var(--ink);
  letter-spacing: -0.015em;
}
.brand .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent); display: inline-block;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: var(--ink); font-size: 12px; font-weight: 500;
  letter-spacing: 0.01em;
}
.nav a:hover { color: var(--accent-deep); }
.nav a.cta-pill { color: var(--bone); }
.nav a.cta-pill:hover { color: var(--bone); }
.nav .cta-pill { margin-left: 4px; }
.nav-toggle {
  display: none; background: none; border: 0; padding: 6px;
  color: var(--ink); cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block; width: 22px; height: 1.5px; background: var(--ink);
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* Buttons */
.cta-pill {
  display: inline-block;
  background: var(--ink); color: var(--bone);
  font-size: 12px; font-weight: 500;
  padding: 11px 18px; border-radius: 7px;
  letter-spacing: 0.01em;
  border: 1px solid var(--ink);
  transition: background 0.15s ease, color 0.15s ease;
}
.cta-pill:hover { background: #000; color: var(--bone); }
.cta-text {
  display: inline-block;
  font-size: 12px; font-weight: 500; color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}
.cta-text:hover { color: var(--accent-deep); border-bottom-color: var(--accent-deep); }

/* Section primitives */
section { padding: 72px 0; border-top: 1px solid var(--border); }
section:first-of-type { border-top: 0; }
section.tinted { background: var(--bone-deep); }

.eyebrow {
  display: block;
  font-size: 11px; font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: lowercase;
  margin: 0 0 14px;
}
h1, h2, h3 { color: var(--ink); margin: 0; font-family: var(--font-sans); }
h2 {
  font-weight: 800; font-size: 22px; line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}
h3 { font-weight: 700; font-size: 15px; line-height: 1.3; }
p { margin: 0 0 14px; }
.lead { color: var(--text-subdued); font-size: 15px; max-width: 640px; }

.section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 16px; margin-bottom: 36px; flex-wrap: wrap;
}
.section-head .right a { font-size: 12px; }

/* Hero */
.hero { padding: 96px 0 96px; border-top: 0; }
.hero .eyebrow { margin-bottom: 24px; }
.hero h1 {
  font-weight: 800;
  font-size: 42px; line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0;
}
.hero h1 .kicker {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 40px; line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 8px;
}
.hero .lead { margin: 28px 0 32px; max-width: 560px; }
.hero .ctas { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }

/* How it works (3 steps) */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.step {
  background: var(--paper);
  border: 0.5px solid var(--border);
  border-radius: 10px;
  padding: 26px 24px;
}
.step .num {
  font-size: 11px; font-weight: 500; color: var(--accent);
  letter-spacing: 0.08em; margin-bottom: 14px;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 13px; margin: 0; color: var(--text-subdued); }

/* Examples grid */
.examples-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.example-card {
  background: var(--paper);
  border: 0.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.example-thumb {
  height: 188px;
  position: relative;
  overflow: hidden;
  border-bottom: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  padding: 22px;
}
.example-thumb.has-screenshot { padding: 0; }
.example-screenshot {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.example-body { padding: 18px 22px 22px; }
.example-body h3 { margin-bottom: 6px; font-size: 14px; }
.example-meta {
  font-size: 11px; color: var(--text-muted);
  margin-bottom: 8px;
}
.example-body p { font-size: 12.5px; margin: 0 0 12px; line-height: 1.5; }
.example-status {
  display: inline-block;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.example-status.live { color: var(--accent-deep); }
.example-link {
  font-size: 12px; font-weight: 500; color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}

/* Mini-mocks. Each card builds a tiny styled hero in the actual palette of the destination site. */
.mock {
  width: 100%; height: 100%;
  border-radius: 6px;
  padding: 18px 18px;
  display: flex; flex-direction: column; justify-content: center;
  text-align: left;
  font-family: var(--font-sans);
}
.mock .mock-eyebrow {
  font-size: 8px; letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px; opacity: 0.85;
}
.mock .mock-h {
  font-size: 17px; line-height: 1.05; font-weight: 800;
  margin: 0 0 6px; letter-spacing: -0.02em;
}
.mock .mock-sub {
  font-size: 9.5px; line-height: 1.4; opacity: 0.75;
  margin: 0 0 10px;
}
.mock .mock-cta {
  display: inline-block; font-size: 8.5px; font-weight: 600;
  padding: 5px 9px; border-radius: 4px;
  align-self: flex-start;
}

/* CCS: charcoal canvas, amber accent */
.mock-ccs { background: #1A1D21; color: #fff; }
.mock-ccs .mock-eyebrow { color: #F5A623; }
.mock-ccs .mock-h { font-family: 'Manrope', sans-serif; }
.mock-ccs .mock-cta { background: #F5A623; color: #1A1D21; }

/* Garcia: black canvas, electric green */
.mock-garcia { background: #0A0A0A; color: #fff; }
.mock-garcia .mock-eyebrow { color: #7FE83E; }
.mock-garcia .mock-cta { background: #7FE83E; color: #0A0A0A; }

/* Mini Stack: cream canvas, caramel, serif */
.mock-mini { background: #F5E5D3; color: #2A1F15; }
.mock-mini .mock-eyebrow { color: #B07738; }
.mock-mini .mock-h { font-family: 'Lora', Georgia, serif; font-style: italic; font-weight: 400; font-size: 19px; }
.mock-mini .mock-cta { background: #B07738; color: #F5E5D3; }

/* Bee Gone: light yellow, near-black */
.mock-bee { background: #FFFBE6; color: #1F1F1F; }
.mock-bee .mock-eyebrow { color: #1F1F1F; }
.mock-bee .mock-cta { background: #1F1F1F; color: #FFFBE6; }

/* Care plan grid */
.care-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.care-item {
  background: var(--paper);
  border: 0.5px solid var(--border);
  border-radius: 10px;
  padding: 22px 22px;
}
.care-item h3 {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; margin-bottom: 6px;
}
.care-item .check {
  color: var(--accent); font-weight: 800; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  border: 1px solid var(--accent); border-radius: 50%;
  flex: 0 0 18px;
}
.care-item p { font-size: 12.5px; margin: 0; line-height: 1.5; }

/* Pricing tiers */
.tiers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  align-items: stretch;
}
.tier {
  position: relative;
  background: var(--paper);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 28px 26px 30px;
  display: flex; flex-direction: column;
}
.tier.featured { border: 1.5px solid var(--accent); }
.tier .badge {
  position: absolute; top: -10px; left: 18px;
  background: var(--accent); color: var(--bone);
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em;
  padding: 4px 10px; border-radius: 4px;
  text-transform: uppercase;
}
.tier .tier-name {
  font-size: 12px; font-weight: 500; color: var(--text-muted);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 12px;
}
.tier .price {
  font-size: 28px; font-weight: 800; color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.tier .care {
  font-size: 11px; color: var(--text-muted);
  margin-top: 8px;
}
.tier .care strong { color: var(--ink); font-weight: 700; }
.tier hr {
  border: 0; border-top: 1px solid var(--border);
  margin: 18px 0;
}
.tier .desc { font-size: 12.5px; line-height: 1.5; margin: 0; color: var(--text-subdued); }
.tier .self-ref {
  font-size: 11px; color: var(--accent);
  margin-top: 12px; font-weight: 500;
}
.tier ul { padding: 0; margin: 14px 0 0; list-style: none; }
.tier ul li {
  font-size: 12.5px; line-height: 1.5;
  padding-left: 18px; position: relative;
  margin-bottom: 6px; color: var(--text-subdued);
}
.tier ul li::before {
  content: '+'; position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 700;
}
.tier .for-whom {
  font-size: 11px; color: var(--text-muted);
  margin-top: 16px; font-style: italic;
}

/* FAQ */
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px;
}
.faq-item {
  border-top: 1px solid var(--border);
  padding: 18px 0;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; margin-bottom: 8px;
}
.faq-q h3 { font-size: 14px; font-weight: 500; color: var(--ink); }
.faq-q .plus { color: var(--accent); font-size: 16px; font-weight: 400; }
.faq-a { font-size: 12.5px; line-height: 1.55; color: var(--text-subdued); margin: 0; }

/* About teaser (split) */
.split {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px;
  align-items: center;
}
.split.flip { grid-template-columns: 1.2fr 1fr; }
.split img {
  border-radius: 10px; border: 0.5px solid var(--border);
  width: 100%; height: 360px; object-fit: cover;
}
.split .text p { font-size: 14px; }

/* Final CTA */
.final-cta { text-align: center; padding: 96px 0; }
.final-cta h2 { font-size: 28px; max-width: 640px; margin: 0 auto 14px; line-height: 1.15; }
.final-cta p { max-width: 540px; margin: 0 auto 26px; }

/* Footer */
.site-footer {
  background: var(--bone-deep);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
  margin-top: 0;
}
.footer-cols {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px;
  margin-bottom: 36px;
}
.footer-cols h4 {
  font-size: 11px; font-weight: 600; color: var(--ink);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin: 0 0 12px;
}
.footer-cols ul { list-style: none; padding: 0; margin: 0; }
.footer-cols li { margin-bottom: 8px; }
.footer-cols a, .footer-cols p {
  font-size: 12.5px; color: var(--text-subdued); margin: 0;
}
.footer-cols a:hover { color: var(--accent-deep); }
.footer-cols .brand { margin-bottom: 8px; }
.footer-cols .tagline { font-size: 12px; color: var(--text-muted); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 11px; color: var(--text-muted);
}
.site-credit a {
  color: var(--text-muted);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}
.site-credit a:hover { color: var(--accent-deep); }
.fine-print { font-size: 10.5px; color: var(--text-muted); margin-top: 8px; flex-basis: 100%; }

/* Page heros (interior) */
.page-hero { padding: 80px 0 60px; }
.page-hero h1 {
  font-size: 38px; font-weight: 800; line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  color: var(--ink);
}
.page-hero .lead { font-size: 15px; max-width: 620px; }

/* Generic two-column rows used on how-it-works and about */
.row-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center;
}
.row-split.flip > .row-text { order: 2; }
.row-split.flip > .row-art  { order: 1; }
.row-art {
  background: var(--paper);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  height: 280px;
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  color: var(--text-muted);
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.row-text h2 { font-size: 24px; margin-bottom: 14px; }
.row-text p { font-size: 14px; }

/* About story */
.about-story {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px;
  align-items: start;
}
.about-story img {
  border-radius: 10px; border: 0.5px solid var(--border);
  height: 420px; object-fit: cover; width: 100%;
}

/* Contact */
.contact-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 11px; font-weight: 600;
  color: var(--ink); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 6px;
}
.field input, .field textarea {
  width: 100%;
  background: var(--paper);
  border: 0.5px solid var(--border);
  border-radius: 7px;
  padding: 12px 14px;
  font-family: var(--font-sans); font-size: 14px;
  color: var(--ink);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
}
.contact-card {
  background: var(--paper);
  border: 0.5px solid var(--border);
  border-radius: 10px;
  padding: 28px;
}
.contact-card h3 { font-size: 14px; margin-bottom: 12px; }
.contact-card .row { font-size: 13px; margin-bottom: 10px; color: var(--text-subdued); }
.contact-card .row strong { color: var(--ink); font-weight: 600; }

.numbered-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.numbered-list .item {
  background: var(--paper); border: 0.5px solid var(--border);
  border-radius: 10px; padding: 22px;
}
.numbered-list .num {
  font-size: 11px; font-weight: 500; color: var(--accent);
  letter-spacing: 0.08em; margin-bottom: 10px;
}
.numbered-list p { font-size: 13px; margin: 0; }

.success-msg { display: none; padding: 14px 18px; background: var(--paper); border: 0.5px solid var(--accent); border-radius: 8px; color: var(--ink); font-size: 13px; }
.success-msg.show { display: block; }

/* Misc helpers */
.dont-list { padding: 0; list-style: none; margin: 0; }
.dont-list li {
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-size: 14px; color: var(--ink);
}
.dont-list li:first-child { border-top: 0; }

.kv-two {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
}

/* Responsive */
@media (max-width: 900px) {
  section { padding: 56px 0; }
  .hero { padding: 64px 0 48px; }
  .hero h1 { font-size: 32px; }
  .hero h1 .kicker { font-size: 30px; }
  .page-hero { padding: 48px 0 36px; }
  .page-hero h1 { font-size: 30px; }
  .steps, .examples-grid, .care-grid, .tiers, .numbered-list { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .split, .split.flip, .row-split, .row-split.flip,
  .about-story, .contact-grid, .kv-two { grid-template-columns: 1fr; gap: 32px; }
  .row-split.flip > .row-text { order: 0; }
  .row-split.flip > .row-art { order: 0; }
  .about-story img, .split img { height: 280px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--bone); border-bottom: 1px solid var(--border); flex-direction: column; align-items: stretch; padding: 16px 24px; gap: 14px; }
  .nav.open { display: flex; }
  .nav .cta-pill { align-self: flex-start; }
  .nav-toggle { display: inline-block; }
  h2 { font-size: 20px; }
  .final-cta h2 { font-size: 24px; }
}
@media (max-width: 480px) {
  :root { --pad: 18px; }
  .hero h1 { font-size: 28px; }
  .hero h1 .kicker { font-size: 26px; }
  .footer-cols { grid-template-columns: 1fr; }
}
