/* WRM Digital — Light editorial, Denver-inspired structure
   DM Serif Display × DM Sans × IBM Plex Mono */

:root {
  --bg: #FAFAF7;
  --white: #ffffff;
  --ink: #1a1a1a;
  --ink-mid: #3d3d3d;
  --ink-light: #6b6b6b;
  --green: #1B7A5E;
  --green-dark: #145C47;
  --green-light: #e8f5f0;
  --green-border: rgba(27, 122, 94, 0.2);
  --orange: #E8733A;
  --border: #e5e3df;
  --border-light: #f0eeea;

  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', monospace;

  --max-w: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px var(--gutter);
  background: var(--green);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
}
.topbar a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  background: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
}
.nav-logo img { height: 38px; width: auto; }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-light);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 32px;
}
.nav-phone {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-mid);
}
.nav-phone:hover { color: var(--green); }
.nav-cta {
  padding: 9px 18px;
  background: var(--green);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 6px;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--green-dark); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero-wrap {
  position: relative;
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: clamp(32px, 4vw, 60px);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(48px, 8vh, 80px) var(--gutter);
  min-height: 520px;
  align-items: center;
  z-index: 3;
}

/* Map background — full bleed */
.hero-map-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-map-bg iframe {
  position: absolute;
  top: -15%;
  left: -5%;
  width: 110%;
  height: 130%;
  border: 0;
}

/* Green checkmarks scattered on map */
.map-checks {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.map-check {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(27, 122, 94, 0.5);
}

/* Dark gradient overlay on left side */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(20, 20, 18, 0.88) 0%,
    rgba(20, 20, 18, 0.78) 35%,
    rgba(20, 20, 18, 0.45) 60%,
    rgba(20, 20, 18, 0.15) 80%,
    rgba(20, 20, 18, 0.05) 100%
  );
}

.hero-content,
.hero-form {
  position: relative;
  z-index: 3;
}

/* Stars badge */
.hero-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.hero-stars .stars {
  color: #F5A623;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.hero-stars > span:last-child {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

/* Hero heading — white text on dark overlay */
.hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  color: #fff;
}
.highlight {
  color: var(--orange);
}

.hero-body {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  max-width: 50ch;
}

/* Bullet checks */
.hero-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}
.hero-checks li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 0.6875rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Hero Form */
.hero-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.hero-form h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.hero-form > p {
  font-size: 0.875rem;
  color: var(--ink-light);
  margin-bottom: 20px;
  line-height: 1.5;
}
.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-form input {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 0.875rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.hero-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(27, 122, 94, 0.1);
}
.hero-form input::placeholder { color: #999; }
.hero-form button {
  padding: 14px 24px;
  background: var(--green);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  margin-top: 4px;
  transition: background 0.15s;
}
.hero-form button:hover { background: var(--green-dark); }
.form-note {
  font-size: 0.75rem;
  color: var(--ink-light);
  margin-top: 10px;
  text-align: center;
}

/* ==========================================================================
   TRUST BAR — dark band, big serif numbers
   ========================================================================== */
.trust-bar-wrap {
  background: var(--ink);
}
.trust-bar {
  display: flex;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px var(--gutter);
}
.trust-item {
  flex: 1;
  text-align: center;
}
.trust-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.trust-num .per { font-size: 0.5em; color: rgba(255,255,255,0.5); }
.trust-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}
.trust-sep {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ==========================================================================
   WORK — alternating full-width case studies
   ========================================================================== */
.work {
  padding: clamp(64px, 10vh, 120px) 0;
}
.work-inner {
  max-width: var(--max-w);
  margin: 0 auto clamp(40px, 6vh, 64px);
  padding: 0 var(--gutter);
}
.work-h {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 8px;
}
.work-sub {
  font-size: 0.9375rem;
  color: var(--ink-light);
  max-width: 56ch;
}

.work-case {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  max-width: var(--max-w);
  margin: 0 auto 48px;
  padding: 0 var(--gutter);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}
.work-case:last-of-type { margin-bottom: 0; }
.work-case--flip { grid-template-columns: 1fr 1.4fr; }
.work-case--flip .work-case-img { order: 2; }
.work-case--flip .work-case-info { order: 1; }

.work-case-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border: 1px solid var(--border);
}
.work-case-img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.work-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  border: 1px solid var(--green-border);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}
.work-case-info h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.work-case-info p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--ink-light);
  margin-bottom: 16px;
}
.work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.work-meta span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
}

/* ==========================================================================
   HOW IT WORKS — horizontal steps with connecting line
   ========================================================================== */
.how-wrap {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(64px, 10vh, 120px) var(--gutter);
}
.how-top {
  margin-bottom: clamp(40px, 6vh, 64px);
}
.how-top h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 8px;
}
.how-top p {
  font-size: 0.9375rem;
  color: var(--ink-light);
  max-width: 52ch;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.how-step {
  padding-right: clamp(20px, 3vw, 40px);
}
.step-head {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
}
.step-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--green), var(--border));
  margin-left: 12px;
}
.how-step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.how-step p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--ink-light);
}

/* ==========================================================================
   WHAT'S INCLUDED — split: image left, checklist right
   ========================================================================== */
.included {
  padding: clamp(64px, 10vh, 120px) var(--gutter);
}
.included-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 5vw, 80px);
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: start;
}

.included-visual {
  position: sticky;
  top: 120px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
  border: 1px solid var(--border);
  background: var(--white);
}
.included-visual img {
  width: 100%;
  display: block;
}
.included-visual-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--green-light);
  border-top: 1px solid var(--green-border);
}
.included-visual-badge .stars { color: #F5A623; font-size: 1rem; letter-spacing: 2px; }
.included-visual-badge span:last-child { font-size: 0.75rem; font-weight: 600; color: var(--green-dark); }

.included-list h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 28px;
}

.inc-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.inc-item:first-of-type { border-top: 1px solid var(--border-light); }
.inc-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 0.6875rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.inc-item h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.inc-item p {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--ink-light);
}

/* ==========================================================================
   ABOUT — dark section, big italic serif heading
   ========================================================================== */
.about-wrap {
  background: var(--ink);
  color: #fff;
}
.about {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(64px, 10vh, 120px) var(--gutter);
}
.about-headline {
  margin-bottom: clamp(40px, 6vh, 64px);
}
.about-headline h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 16px;
}
.about-headline h2 em { font-style: italic; color: var(--orange); }
.about-headline p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 60ch;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.abt-card {
  padding: 28px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  transition: border-color 0.2s;
}
.abt-card:hover { border-color: rgba(232, 115, 58, 0.4); }
.abt-card h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.abt-card p {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}

/* ==========================================================================
   FAQ — side by side
   ========================================================================== */
.faq {
  padding: clamp(64px, 10vh, 120px) var(--gutter);
  border-bottom: 1px solid var(--border);
}
.faq-inner {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: start;
}
.faq-left h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 12px;
}
.faq-left p {
  font-size: 0.875rem;
  color: var(--ink-light);
  line-height: 1.6;
  margin-bottom: 20px;
}
.faq-cta {
  display: inline-flex;
  padding: 10px 20px;
  background: var(--green);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 6px;
  transition: background 0.15s;
}
.faq-cta:hover { background: var(--green-dark); }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-item summary {
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary:hover { color: var(--green); }
.faq-item summary::after {
  content: '+';
  font-family: var(--mono);
  font-size: 1.25rem;
  color: var(--ink-light);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--green); }
.faq-item p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--ink-light);
  margin-top: 10px;
}

/* ==========================================================================
   BOTTOM CTA — green band
   ========================================================================== */
.bottom-cta-wrap {
  background: var(--green);
}
.bottom-cta {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(56px, 8vh, 80px) var(--gutter);
  text-align: center;
  color: #fff;
}
.bottom-cta h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  margin-bottom: 12px;
  color: #fff;
}
.bottom-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  max-width: 48ch;
  margin-inline: auto;
}
.btn-big {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 16px 36px;
  background: #fff;
  color: var(--green-dark);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 6px;
  transition: opacity 0.15s, transform 0.15s;
}
.btn-big:hover { opacity: 0.9; transform: translateY(-1px); }
.bottom-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.bottom-or { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.bottom-or a { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--ink);
  color: #fff;
  padding: clamp(48px, 8vh, 80px) var(--gutter);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 28px; width: auto; filter: brightness(0) invert(1); margin-bottom: 12px; }
.footer-brand p { font-size: 0.8125rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col h5 {
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}
.footer-col a, .footer-col span { font-size: 0.8125rem; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 24px auto 0;
}
.footer-bottom span { font-family: var(--mono); font-size: 0.6875rem; color: rgba(255,255,255,0.25); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-form { max-width: 480px; }
  .trust-bar { flex-wrap: wrap; }
  .trust-item { flex: 1 1 45%; }
  .trust-sep:nth-child(4) { display: none; }
  .work-case, .work-case--flip { grid-template-columns: 1fr; }
  .work-case--flip .work-case-img { order: 0; }
  .work-case--flip .work-case-info { order: 0; }
  .how-steps { grid-template-columns: 1fr; gap: 24px; }
  .step-line { display: none; }
  .included-inner { grid-template-columns: 1fr; }
  .included-visual { position: static; max-width: 400px; }
  .about-grid { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; }
  .faq-left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .topbar { font-size: 0.75rem; }
  .nav-right .nav-phone { display: none; }
  .hero-content h1 { font-size: 1.75rem; }
  .trust-bar { flex-direction: column; }
  .trust-sep { width: 80%; height: 1px; }
  .trust-item { padding: 16px 0; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
}
