/* === BRAND TOKENS === */
:root {
  --ink:         #1A1816;
  --surface:     #242220;
  --amber:       #F5A61D;
  --amber-deep:  #DB920E;
  --parchment:   #E4DECE;
  --cream:       #FCF9F4;
  --cream-deep:  #F5F0E6;
  --taupe:       #8A8070;
  --taupe-deep:  #6E6557;
  --success:     #7CBF8A;
  --error:       #E0654F;
  --error-deep:  #B23A26;
  --border:      rgba(138, 128, 112, 0.25);
  --border-mid:  rgba(138, 128, 112, 0.40);

  --max-w:  1200px;
  --max-prose: 720px;
  --pad-x: clamp(24px, 5vw, 64px);
  --section-y: clamp(64px, 8vw, 96px);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; border-radius: 6px; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.display {
  font-size: clamp(38px, 5vw, 56px);
  letter-spacing: -0.01em;
}
h2 { font-size: clamp(30px, 4vw, 40px); letter-spacing: -0.005em; line-height: 1.15; }
h3 { font-size: clamp(24px, 3vw, 28px); letter-spacing: 0; line-height: 1.2; }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe-deep);
}
.eyebrow-light { color: var(--amber); }
.body-large { font-size: clamp(18px, 2.5vw, 19px); line-height: 1.6; }
.body-small { font-size: 14px; line-height: 1.5; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(44px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.015em;
}
.index-numeral {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1;
  color: var(--ink);
  display: block;
  margin-bottom: 8px;
}
.amber-rule {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 16px;
}

/* === LAYOUT === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.prose { max-width: var(--max-prose); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: var(--section-y) var(--pad-x); }
.section-dark { background: var(--ink); color: var(--parchment); }
.section-light { background: var(--cream); color: var(--ink); }
.section-deep { background: var(--cream-deep); color: var(--ink); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }

/* keyline */
.keyline { display: block; height: 1px; background: var(--border); width: 100%; }

/* === NAV === */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.09em;
  color: var(--ink);
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms ease;
}
.nav-links a:hover { text-decoration: underline; }
.nav-links a.active { font-weight: 600; text-decoration: underline; text-underline-offset: 6px; text-decoration-color: var(--amber); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  color: var(--ink);
}
.hamburger svg { display: block; }

/* Mobile nav overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  flex-direction: column;
  padding: 24px var(--pad-x);
}
.mobile-menu.open { display: flex; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  margin-bottom: 48px;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu nav a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 28px;
  color: var(--ink);
}
.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  color: var(--ink);
}
.mobile-menu-footer {
  margin-top: auto;
  padding-top: 48px;
  color: var(--taupe-deep);
  font-size: 14px;
  line-height: 1.6;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.015em;
  line-height: 1;
  padding: 16px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--amber);
  color: var(--ink);
}
.btn-primary:hover { background: var(--amber-deep); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-secondary:hover { background: rgba(26,24,22,0.06); }
.btn-secondary-light {
  background: transparent;
  color: var(--parchment);
  border: 1.5px solid rgba(228,222,206,0.6);
}
.btn-secondary-light:hover { background: rgba(228,222,206,0.1); }
.btn-compact { padding: 6px 14px; font-size: 13px; letter-spacing: 0; }
.btn-full { width: 100%; text-align: center; display: block; }
.text-link {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
}
.text-link::after { content: " →"; }
.text-link:hover { text-decoration: underline; }
.text-link-light { color: var(--parchment); }

/* === HERO === */
.hero {
  background: var(--ink);
  color: var(--parchment);
  padding: clamp(96px, 12vw, 128px) var(--pad-x) clamp(64px, 8vw, 96px);
}
.hero-inner { max-width: var(--max-w); margin: 0 auto; }
.hero-content { max-width: 800px; }
.hero h1 { color: var(--parchment); margin-bottom: 24px; }
.hero .body-large { color: var(--parchment); max-width: 560px; margin-bottom: 32px; }
.hero .trust-line {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(228,222,206,0.7);
}
.hero-short {
  background: var(--ink);
  color: var(--parchment);
  padding: clamp(64px, 8vw, 96px) var(--pad-x) clamp(48px, 6vw, 64px);
}
.hero-short h1 { color: var(--parchment); margin-bottom: 16px; }
.hero-short .body-large { color: var(--parchment); max-width: 640px; }

/* hero keyline */
.hero-keyline {
  display: block;
  height: 1px;
  background: var(--border);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* === SECTION HEADERS === */
.section-header { margin-bottom: 48px; }
.section-header .eyebrow { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: var(--max-prose); }

/* === SERVICE CARDS (homepage) === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.service-card {
  background: var(--cream-deep);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
  text-decoration: none;
  color: var(--ink);
  display: block;
  transition: border-color 150ms ease;
}
.service-card:hover { border-color: var(--border-mid); }
.service-card:hover .card-arrow { transform: translateX(4px); }
.service-card p { color: var(--taupe-deep); font-size: 16px; line-height: 1.5; margin-bottom: 16px; }
.card-link {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-arrow { display: inline-block; transition: transform 150ms ease; }

/* === STEP ITEMS === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.step-item { }
.step-item h3 { margin-bottom: 8px; font-size: clamp(20px, 2.5vw, 24px); }
.step-item p { font-size: 16px; color: var(--taupe-deep); }
.reassurance {
  margin-top: 48px;
  font-size: 16px;
  color: var(--taupe-deep);
  font-style: italic;
  max-width: 560px;
}

/* === TRACER TEASER === */
.tracer-teaser {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 64px;
  align-items: center;
}
.tracer-teaser .text-col h2 { margin: 16px 0; }
.tracer-teaser .text-col p { max-width: 480px; color: var(--taupe-deep); margin-bottom: 24px; }
.screenshot-frame {
  border-radius: 8px;
  overflow: hidden;
}
.screenshot-frame img {
  display: block;
  width: 100%;
  height: auto;
}

/* === CTA BAND === */
.cta-band {
  background: var(--ink);
  color: var(--parchment);
  padding: var(--section-y) var(--pad-x);
  text-align: center;
}
.cta-band-inner { max-width: 640px; margin: 0 auto; }
.cta-band h2 { color: var(--parchment); margin-bottom: 16px; }
.cta-band p { color: var(--parchment); opacity: 0.8; margin-bottom: 32px; font-size: 16px; }

/* === SERVICE BLOCKS === */
.service-blocks { display: flex; flex-direction: column; gap: 80px; }
.service-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.service-block .block-eyebrow { color: var(--taupe-deep); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; }
.service-block h3 { margin-bottom: 8px; }
.block-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--taupe-deep);
  margin-bottom: 4px;
}
.block-text { margin-bottom: 16px; color: var(--taupe-deep); }
.block-outcome { font-weight: 600; color: var(--ink); }
.pricing-pointer {
  margin-top: 48px;
  padding: 32px;
  background: var(--cream-deep);
  border-radius: 6px;
  border: 1px solid var(--border);
}
.pricing-pointer p { margin-bottom: 24px; color: var(--taupe-deep); }

/* === PRICING TABLE === */
.pricing-table {
  background: var(--cream-deep);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  margin-top: 48px;
}
.pricing-col {
  padding: 32px;
  border-right: 1px solid var(--border);
}
.pricing-col:last-child { border-right: none; }
.pricing-col.featured { position: relative; }
.pricing-col.featured::before {
  content: '';
  display: block;
  height: 2px;
  background: var(--amber);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.pricing-tier-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe-deep);
  margin-bottom: 12px;
}
.pricing-featured-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe-deep);
  margin-bottom: 6px;
  margin-top: 16px;
}
.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 4px;
}
.pricing-price span { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 400; color: var(--taupe-deep); }
.pricing-summary { font-size: 16px; color: var(--taupe-deep); margin: 16px 0; padding-top: 16px; border-top: 1px solid var(--border); }
.pricing-includes {
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
}
.check-icon { color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.pricing-vat { font-size: 13px; color: var(--taupe-deep); margin-top: 16px; text-align: center; }

/* === ALWAYS INCLUDED === */
.always-included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.included-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--cream);
  border-radius: 6px;
  border: 1px solid var(--border);
}
.included-item p { font-size: 15px; }

/* === FAQ ACCORDION === */
.faq-list { max-width: var(--max-prose); margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  gap: 16px;
}
.faq-question:hover { text-decoration: underline; }
.faq-chevron { flex-shrink: 0; transition: transform 200ms ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 200ms ease, padding 200ms ease; }
.faq-item.open .faq-answer { max-height: 1000px; }
.faq-answer-inner { padding-bottom: 24px; color: var(--taupe-deep); line-height: 1.7; font-size: 16px; }
.faq-answer-inner a { color: var(--ink); text-decoration: underline; }

/* === CONTACT FORM === */
.contact-grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 64px;
  align-items: start;
}
.contact-details { }
.contact-details h2 { margin-bottom: 24px; }
.contact-detail-item { margin-bottom: 16px; font-size: 16px; }
.contact-detail-item strong { display: block; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--taupe-deep); margin-bottom: 4px; }
.contact-detail-item a:hover { text-decoration: underline; }
.calendly-placeholder {
  background: var(--cream-deep);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 48px 32px;
  text-align: center;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.calendly-placeholder p { color: var(--taupe-deep); font-size: 15px; max-width: 320px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-field {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border-mid);
  border-radius: 6px;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--ink);
  transition: border-color 150ms ease;
}
.form-field:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(26,24,22,0.1);
}
textarea.form-field { min-height: 120px; resize: vertical; }
.form-success {
  background: rgba(124,191,138,0.12);
  border: 1px solid var(--success);
  border-radius: 6px;
  padding: 32px;
}
.form-success h3 { font-family: 'Cormorant Garamond', serif; margin-bottom: 12px; }
.form-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
}
.form-checkbox-label input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; }

/* === NEWSLETTER FORM === */
.netlify-hidden { display: none; }
.newsletter-form { margin-top: 8px; }
.newsletter-form-row { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter-form-row .form-field { flex: 1 1 220px; }
.newsletter-form-row .btn { flex-shrink: 0; }
.newsletter-trust { font-size: 13px; opacity: 0.65; margin-top: 12px; }
.footer-newsletter { margin-top: 24px; }
.footer-newsletter h4 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--taupe);
  margin-bottom: 12px;
}
.footer-newsletter-copy { font-size: 14px; color: var(--taupe); margin-bottom: 16px; line-height: 1.5; }

/* === ABOUT === */
.founder-block {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 64px;
  align-items: start;
}
.founder-photo {
  aspect-ratio: 4/5;
  background: var(--cream-deep);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--taupe);
  font-size: 14px;
}
.photo-placeholder .numeral {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 600;
  color: rgba(138,128,112,0.4);
  line-height: 1;
}
.founder-text h2 { margin-bottom: 8px; }
.founder-text .role { font-size: 14px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; color: var(--taupe-deep); margin-bottom: 32px; }
.founder-text p { color: var(--taupe-deep); margin-bottom: 16px; font-size: 16px; line-height: 1.7; }
.founder-text p:last-child { margin-bottom: 0; }
.founder-text a { color: var(--ink); text-decoration: underline; }

/* === HOW IT WORKS === */
.steps-vertical { max-width: 640px; margin: 0 auto; }
.step-row {
  display: flex;
  gap: 32px;
  padding-bottom: 48px;
  position: relative;
}
.step-row:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 52px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.step-num-col { flex-shrink: 0; width: 40px; }
.step-text h3 { margin-bottom: 8px; font-size: clamp(20px, 2.5vw, 24px); }
.step-text p { font-size: 16px; color: var(--taupe-deep); }
.delivery-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 720px;
  margin: 0 auto;
}
.delivery-col h3 { margin-bottom: 16px; }
.delivery-col ul { display: flex; flex-direction: column; gap: 8px; }
.delivery-col ul li { font-size: 16px; color: var(--taupe-deep); padding-left: 16px; position: relative; }
.delivery-col ul li::before { content: '—'; position: absolute; left: 0; color: var(--taupe); }

/* === FOOTER === */
.site-footer {
  background: var(--ink);
  color: var(--parchment);
  padding: var(--section-y) var(--pad-x) 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  padding-bottom: var(--section-y);
}
.footer-brand .wordmark { color: var(--amber); font-size: 22px; display: block; margin-bottom: 8px; }
.footer-brand p { font-size: 15px; color: var(--taupe); }
.footer-nav h4, .footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--taupe);
  margin-bottom: 16px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav ul li a { font-size: 15px; color: var(--parchment); }
.footer-nav ul li a:hover { text-decoration: underline; }
.footer-contact p { font-size: 15px; color: var(--parchment); margin-bottom: 8px; }
.footer-contact a:hover { text-decoration: underline; }
.footer-legal {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: rgba(228,222,206,0.7);
  line-height: 1.6;
}
.footer-legal-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal a { color: rgba(228,222,206,0.7); text-decoration: underline; }

/* === MOBILE BOTTOM BAR === */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 8px 16px;
  padding-bottom: calc(8px + env(safe-area-inset-bottom));
}
.mobile-cta-bar .btn { width: 100%; text-align: center; height: 56px; display: flex; align-items: center; justify-content: center; }

/* === STAT CARD === */
.stat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.stat-card {
  background: var(--cream-deep);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
  text-align: center;
}
.stat-card .stat-number { color: var(--ink); display: block; margin-bottom: 8px; }
.stat-card .stat-context { font-size: 16px; color: var(--ink); }
.stat-card .stat-source { font-size: 13px; color: var(--taupe-deep); margin-top: 8px; }

/* === TRACER PAGE === */
.case-study-meta { margin-top: 16px; font-size: 14px; color: rgba(228,222,206,0.7); }
.status-band {
  text-align: center;
  padding: 48px var(--pad-x);
}
.status-band p { font-family: 'Cormorant Garamond', serif; font-size: clamp(24px, 3vw, 32px); font-weight: 600; color: var(--ink); }
.screenshots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

/* === BLOG === */
.blog-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.blog-card {
  background: var(--cream-deep);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
  display: block;
  color: var(--ink);
  transition: border-color 150ms ease;
}
.blog-card:hover { border-color: var(--border-mid); }
.blog-card:hover .blog-card-title { text-decoration: underline; }
.blog-card-date {
  font-size: 13px;
  color: var(--taupe-deep);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.blog-card-title {
  font-size: clamp(22px, 2.5vw, 26px);
  line-height: 1.2;
  margin-bottom: 12px;
}
.blog-card-category {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe-deep);
  border: 1px solid var(--border-mid);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 16px;
}
.blog-card-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: var(--taupe-deep);
}
.blog-post {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.blog-post-meta {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(228,222,206,0.7); /* sits on the dark hero band */
  letter-spacing: 0.03em;
}
.blog-post-content h1 { font-size: clamp(30px, 4vw, 40px); margin: 0 0 24px; }
.blog-post-content h2 { font-size: clamp(24px, 3vw, 28px); margin: 40px 0 16px; }
.blog-post-content h3 { margin: 32px 0 12px; }
.blog-post-content p { line-height: 1.7; margin-bottom: 20px; }
.blog-post-content ul,
.blog-post-content ol { margin: 0 0 20px 4px; display: flex; flex-direction: column; gap: 8px; }
.blog-post-content ol { list-style: decimal; margin-left: 20px; }
.blog-post-content ul li { padding-left: 16px; position: relative; }
.blog-post-content ul li::before { content: '—'; position: absolute; left: 0; color: var(--taupe); }
.blog-post-content blockquote {
  border-left: 3px solid var(--amber);
  padding: 4px 0 4px 20px;
  margin: 0 0 20px;
  color: var(--taupe-deep);
  font-style: italic;
}
.blog-post-content blockquote p:last-child { margin-bottom: 0; }
.blog-post-content strong { font-weight: 600; }
.blog-post-content a { text-decoration: underline; }
.blog-post-content code {
  font-family: 'Courier New', monospace;
  font-size: 15px;
  background: var(--cream-deep);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
}
.blog-cta {
  margin-top: 48px;
  padding: 32px;
  background: var(--cream-deep);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-align: center;
}
.blog-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(20px, 2.5vw, 24px);
  margin-bottom: 20px;
}
.blog-back { font-size: 15px; color: var(--taupe-deep); }
.blog-back:hover { text-decoration: underline; color: var(--ink); }

/* === UTILITY === */
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.text-muted { color: var(--taupe-deep); }
.text-amber { color: var(--amber); }

/* === RESPONSIVE === */
@media (max-width: 1023px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid .service-card:last-child { grid-column: span 2; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .pricing-table { grid-template-columns: 1fr; }
  .pricing-col { border-right: none; border-bottom: 1px solid var(--border); }
  .pricing-col:last-child { border-bottom: none; }
  .founder-block { grid-template-columns: 1fr; }
  .founder-photo { max-width: 280px; }
  .tracer-teaser { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .always-included-grid { grid-template-columns: 1fr; }
  .screenshots-grid { grid-template-columns: 1fr; }
  .delivery-cols { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid .service-card:last-child { grid-column: span 1; }
  .steps-grid { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .mobile-cta-bar { display: block; }
  .footer-legal-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0ms !important; }
}
