:root {
  --bg: #f6f1eb;
  --surface: #fffdfa;
  --surface-2: #f3ece4;
  --ink: #171313;
  --muted: #5e5252;
  --line: rgba(23, 19, 19, 0.12);
  --brand: #8f1d1d;
  --brand-deep: #5d1010;
  --brand-soft: #f5d7d0;
  --accent: #c88a2a;
  --success: #157347;
  --danger: #9f2d2d;
  --shadow: 0 18px 60px rgba(46, 23, 23, 0.12);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(200, 138, 42, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(143, 29, 29, 0.08), transparent 28%),
    var(--bg);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.eyebrow {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #f7e6e1;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(200, 138, 42, 0.14);
}

.section-label {
  color: var(--brand);
  margin-bottom: 12px;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 14px;
  line-height: 1.05;
  font-family: "Source Serif 4", serif;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.2rem);
}

h2 {
  font-size: clamp(2.2rem, 4.8vw, 4rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(250, 245, 239, 0.9);
  border-bottom: 1px solid rgba(23, 19, 19, 0.06);
  box-shadow: 0 14px 36px rgba(46, 23, 23, 0.06);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 114px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  flex: 1 1 auto;
}

.brand-mark {
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247, 240, 236, 0.96));
  padding: 12px;
  border: 1px solid rgba(143, 29, 29, 0.08);
  box-shadow: 0 18px 38px rgba(46, 23, 23, 0.12);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
  transform-origin: center;
}

.brand-copy strong {
  display: block;
  letter-spacing: 0.01em;
  font-size: 1.65rem;
  font-family: "Source Serif 4", serif;
  line-height: 1.1;
}

.brand-copy span {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.3;
  display: block;
  max-width: 520px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  position: relative;
  font-size: 1rem;
  color: #403434;
  font-weight: 700;
  padding: 10px 0;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), rgba(200, 138, 42, 0.9));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links .nav-active::after {
  transform: scaleX(1);
}

.nav-links .nav-active {
  color: var(--brand);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255,255,255,0.78);
  padding: 5px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.mobile-menu {
  display: none;
}

.menu-btn {
  display: none;
  border: 0;
  background: var(--surface);
  width: 52px;
  height: 46px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: white;
  box-shadow: 0 16px 30px rgba(93, 16, 16, 0.24);
}

.site-header .btn-primary {
  min-height: 58px;
  padding: 0 28px;
  letter-spacing: 0.01em;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  color: white;
  background: rgba(255,255,255,0.06);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255,255,255,0.6);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(116deg, rgba(16, 12, 12, 0.96), rgba(28, 18, 18, 0.76)),
    url("https://images.unsplash.com/photo-1529107386315-e1a2ed48a620?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(200, 138, 42, 0.2), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(143, 29, 29, 0.18), transparent 24%);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 88px;
  background: linear-gradient(180deg, rgba(12, 9, 9, 0) 0%, rgba(12, 9, 9, 0.28) 58%, rgba(12, 9, 9, 0.46) 100%);
  z-index: 0;
}

.hero-grid,
.split,
.services-grid,
.contact-grid,
.strategy-wrap,
.stats,
.process-grid,
.story-grid,
.blog-grid {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: calc(100vh - 102px);
  padding: 56px 0 134px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 980px;
  padding-top: 0;
}

.hero p {
  color: rgba(255,255,255,0.84);
  font-size: 1.14rem;
  line-height: 1.76;
  max-width: 760px;
}

.hero h1 {
  max-width: 860px;
  margin-bottom: 14px;
  font-size: clamp(3.9rem, 7vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero-subtitle {
  margin: 0 0 22px;
  font-family: "Source Serif 4", serif;
  font-size: clamp(2.35rem, 5.4vw, 4.8rem);
  line-height: 0.94;
  color: #fff4ec;
  text-wrap: balance;
}

.hero-lead {
  margin-bottom: 0;
  max-width: 760px;
  font-size: 1.24rem;
}

.hero-highlight {
  color: #f1c989;
  font-style: italic;
  text-shadow: 0 10px 32px rgba(241, 201, 137, 0.12);
}

.hero-proof {
  margin-top: 28px;
}

.hero-proof span::before {
  content: "\2714";
  margin-right: 8px;
  color: #f1c989;
}

.hero-actions,
.hero-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.88);
  font-size: 0.96rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.hero-trust {
  color: rgba(255,255,255,0.74);
  font-size: 0.96rem;
  letter-spacing: 0.01em;
}

.hero-panel,
.card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel-stack,
.faq-grid,
.about-list,
.contact-points {
  display: grid;
  gap: 14px;
}

.signal-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  padding: 17px 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.signal-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 5px;
}

.signal-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.52;
  color: rgba(255,255,255,0.76);
}

.stat-band {
  padding: 0 0 24px;
  margin-top: -44px;
  position: relative;
  z-index: 2;
}

.stats {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat,
.card {
  background: var(--surface);
  border: 1px solid rgba(23, 19, 19, 0.08);
}

.stat {
  border-radius: 24px;
  padding: 26px 24px;
  box-shadow: 0 18px 42px rgba(46, 23, 23, 0.08);
}

.stat strong {
  display: block;
  font-family: "Source Serif 4", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--brand);
}

.stat span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

section {
  padding: 92px 0;
}

.split {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.home-intro-grid {
  gap: 36px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.94fr);
}

.home-intro .container {
  width: min(var(--max), calc(100% - 32px));
}

.home-intro-grid > .reveal:first-child {
  max-width: 680px;
}

.home-intro-title {
  max-width: 100%;
  font-size: clamp(1.95rem, 2.9vw, 2.7rem);
  line-height: 1;
  text-wrap: balance;
}

.about-card,
.service,
.process-step,
.strategy-form,
.strategy-output,
.contact-panel,
.contact-form,
.faq-item,
.legal-card,
.story-card,
.blog-card,
.page-hero-card {
  padding: 30px;
}

.about-list div,
.contact-points div {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(23,19,19,0.06);
}

.about-list div {
  background: var(--surface-2);
  font-weight: 600;
  color: #3e3030;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.services-grid.services-grid-lg {
  grid-template-columns: repeat(3, 1fr);
}

.service-index {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand-soft), #f7ede9);
  color: var(--brand);
  font-weight: 800;
  margin-bottom: 18px;
}

.service p,
.blog-card p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.process-step {
  position: relative;
  overflow: hidden;
}

.process-step::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), transparent);
}

.strategy-wrap {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.split-form {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field label {
  font-weight: 700;
  color: #3e3030;
  font-size: 0.95rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(23, 19, 19, 0.12);
  background: #fff;
  padding: 14px 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(143, 29, 29, 0.48);
  box-shadow: 0 0 0 4px rgba(143, 29, 29, 0.09);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.strategy-output,
.contact-panel,
.page-hero {
  color: white;
}

.strategy-output {
  background:
    radial-gradient(circle at top right, rgba(200, 138, 42, 0.12), transparent 28%),
    linear-gradient(135deg, #1f1515, #2e1b1b);
}

.strategy-output p,
.strategy-output li,
.contact-panel p,
.page-hero p {
  color: rgba(255,255,255,0.78);
}

.strategy-output ul {
  margin: 14px 0 20px 18px;
  padding: 0;
}

.strategy-kicker {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #f3d4c9;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.contact-panel {
  background: linear-gradient(160deg, #241717, #4c1717);
}

.contact-points div {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-points strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f0c2b6;
}

.notice,
.alert {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
}

.notice {
  background: #eef7f0;
  color: var(--success);
  border: 1px solid rgba(21, 115, 71, 0.18);
}

.alert-error {
  background: #fff1f1;
  color: var(--danger);
  border: 1px solid rgba(159, 45, 45, 0.18);
}

.faq-grid {
  margin-top: 28px;
}

.faq-item h3 {
  margin-bottom: 8px;
}

.page-hero {
  padding: 84px 0 40px;
  background:
    radial-gradient(circle at top left, rgba(200, 138, 42, 0.12), transparent 30%),
    linear-gradient(135deg, #241717, #4c1717);
}

.page-hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  max-width: 860px;
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 54px rgba(16, 10, 10, 0.18);
}

.page-eyebrow {
  margin-bottom: 18px;
}

.page-hero-card h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2.5rem, 4.8vw, 4.2rem);
  line-height: 0.98;
  color: #fff8f4;
}

.page-hero-card p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.66;
}

.story-grid,
.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.story-card,
.blog-card,
.legal-card {
  background: var(--surface);
  border: 1px solid rgba(23, 19, 19, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.legal-wrap {
  padding: 56px 0 80px;
}

.legal-card h2 {
  font-size: 1.5rem;
  margin-top: 30px;
}

.site-footer {
  padding: 40px 0 56px;
  color: #695e5e;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(23,19,19,0.08);
  padding-top: 26px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #148a51, #0f6c3f);
  color: white;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(15, 108, 63, 0.28);
}

@media (max-width: 1080px) {
  .hero-grid,
  .split,
  .strategy-wrap,
  .contact-grid,
  .services-grid,
  .process-grid,
  .stats,
  .story-grid,
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid .service:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px 0 86px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid.services-grid-lg,
  .story-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero {
    padding: 72px 0 36px;
  }

  .home-intro-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .home-intro .container {
    width: min(var(--max), calc(100% - 32px));
  }

  .home-intro-grid > .reveal:first-child {
    max-width: none;
  }
}

@media (max-width: 840px) {
  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .mobile-menu {
    display: none;
    padding: 0 0 18px;
  }

  .mobile-menu.open {
    display: block;
  }

  .mobile-menu a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(23,19,19,0.08);
    font-weight: 700;
  }

  .hero-grid,
  .split,
  .strategy-wrap,
  .contact-grid,
  .services-grid,
  .process-grid,
  .stats,
  .story-grid,
  .blog-grid,
  .split-form {
    grid-template-columns: 1fr;
  }

  .services-grid .service:last-child {
    grid-column: auto;
  }

  .services-grid.services-grid-lg {
    grid-template-columns: 1fr;
  }

  .home-intro-grid {
    grid-template-columns: 1fr;
  }

  .home-intro .container {
    width: min(var(--max), calc(100% - 20px));
  }

  section {
    padding: 78px 0;
  }

  .hero-grid {
    min-height: auto;
    padding: 36px 0 74px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .floating-cta {
    left: 16px;
    right: 16px;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 20px));
  }

  .nav-shell {
    min-height: 94px;
  }

  .brand-logo {
    width: 100%;
    height: 100%;
  }

  .brand-mark {
    width: 78px;
    height: 78px;
    flex-basis: 78px;
    padding: 10px;
  }

  .brand-copy strong {
    font-size: 1.18rem;
  }

  .brand-copy span {
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .hero h1 {
    font-size: clamp(3rem, 12vw, 4.2rem);
    line-height: 0.92;
  }

  .hero-subtitle {
    font-size: clamp(2rem, 9.4vw, 3.2rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .home-intro-title {
    max-width: 11ch;
    font-size: clamp(1.85rem, 8.8vw, 2.6rem);
  }

  .hero-panel,
  .about-card,
  .service,
  .process-step,
  .strategy-form,
  .strategy-output,
  .contact-panel,
  .contact-form,
  .faq-item,
  .legal-card,
  .story-card,
  .blog-card,
  .page-hero-card {
    padding: 22px;
  }

  .hero-trust,
  .hero-badges {
    gap: 10px;
  }

  .hero-badges span,
  .hero-trust span {
    font-size: 0.82rem;
  }
}



.about-hero-surface {
  background:
    radial-gradient(circle at top left, rgba(200, 138, 42, 0.12), transparent 30%),
    linear-gradient(135deg, #1f1414, #4d1818);
}

.about-hero-card {
  max-width: 960px;
}

.about-manifesto {
  max-width: 1520px;
  text-align: center;
}

.about-manifesto h2 {
  max-width: 28ch;
  margin: 0 auto 18px;
  font-size: clamp(2.25rem, 4vw, 3.85rem);
  line-height: 1.02;
  font-style: italic;
}

.manifesto-copy {
  max-width: 1080px;
  margin: 0 auto 24px;
  font-size: 1.06rem;
  line-height: 1.66;
}

.manifesto-line {
  max-width: 34ch;
  margin: 0 auto;
  font-family: "Source Serif 4", serif;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  line-height: 1.08;
  color: var(--ink);
}

.about-alt-section {
  background: rgba(255, 255, 255, 0.48);
}

.about-advantage-grid,
.about-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 34px;
  align-items: start;
}

.about-emphasis {
  color: var(--brand);
  font-weight: 800;
}

.about-signal-card,
.about-capability-card,
.about-cta {
  padding: 34px;
}

.advantage-list,
.capability-stack,
.proof-list {
  display: grid;
  gap: 16px;
}

.advantage-list div,
.capability-stack div,
.proof-list div {
  border-radius: 18px;
  border: 1px solid rgba(23, 19, 19, 0.08);
  background: var(--surface-2);
  padding: 18px 20px;
}

.advantage-list strong,
.proof-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.advantage-list p,
.proof-list p {
  margin: 0;
  font-size: 0.98rem;
}

.about-capability-grid {
  align-items: center;
}

.capability-stack small {
  display: block;
  margin-bottom: 6px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.capability-stack span {
  display: block;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.08rem;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.framework-step {
  padding: 34px;
}

.framework-step-dark {
  background: linear-gradient(145deg, #1a1212, #3b1818);
  color: white;
}

.framework-step-dark p,
.framework-step-dark .framework-index {
  color: rgba(255, 255, 255, 0.72);
}

.framework-index {
  display: block;
  margin-bottom: 18px;
  color: rgba(23, 19, 19, 0.14);
  font-family: "Source Serif 4", serif;
  font-size: 3rem;
  font-weight: 800;
}

.about-proof-section {
  background: linear-gradient(135deg, #191212, #351414);
  color: white;
}

.about-proof-section .section-label,
.about-proof-section h2,
.about-proof-section strong {
  color: white;
}

.about-proof-section p {
  color: rgba(255, 255, 255, 0.72);
}

.proof-list div {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.proof-metric {
  border-radius: 24px;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
}

.proof-metric strong {
  display: block;
  font-family: "Source Serif 4", serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.proof-metric span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-cta {
  text-align: center;
}

.about-cta p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta .hero-actions,
.about-cta-badges {
  justify-content: center;
}

.about-cta-badges span {
  background: var(--surface-2);
  color: #3b2d2d;
  border-color: rgba(23, 19, 19, 0.08);
}

@media (max-width: 980px) {
  .about-advantage-grid,
  .about-proof-grid,
  .framework-grid {
    grid-template-columns: 1fr;
  }

  .about-manifesto h2 {
    max-width: 18ch;
    font-size: clamp(2rem, 6.4vw, 3.2rem);
  }

  .manifesto-copy {
    max-width: 760px;
    font-size: 1rem;
  }

  .manifesto-line {
    max-width: 20ch;
    font-size: clamp(1.45rem, 4vw, 2.1rem);
  }
}


/* Services, Contact, Footer, Legal refresh */
.services-hero-surface,
.contact-hero-surface,
.legal-hero-surface {
  background:
    radial-gradient(circle at top left, rgba(200, 138, 42, 0.12), transparent 30%),
    linear-gradient(135deg, #1f1414, #4d1818);
}

.services-hero-card,
.contact-hero-card {
  max-width: 960px;
}

.services-intro-grid,
.contact-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 32px;
  align-items: start;
}

.services-emphasis {
  color: var(--brand);
  font-weight: 800;
}

.services-lead-card,
.contact-panel-strong,
.contact-form-strong,
.services-cta,
.legal-card-strong {
  padding: 34px;
}

.service-rail,
.contact-checklist {
  display: grid;
  gap: 14px;
}

.service-rail div,
.contact-checklist div {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(23, 19, 19, 0.08);
  background: var(--surface-2);
  font-weight: 600;
  color: #3c2f2f;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.engagement-step {
  padding: 32px;
}

.contact-panel-strong {
  background: linear-gradient(160deg, #221616, #4b1717);
}

.contact-checklist {
  margin-top: 24px;
}

.contact-checklist div {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.88);
}

.contact-form-intro {
  margin-bottom: 18px;
}

.contact-form-intro p {
  max-width: 680px;
}

.legal-card-strong h1 {
  margin-bottom: 18px;
}

.legal-note {
  margin-top: 26px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--surface-2);
  color: #433535;
  font-weight: 600;
}

.site-footer-strong {
  padding-top: 48px;
}

.footer-shell-strong {
  align-items: start;
}

.footer-brand-strong {
  max-width: 440px;
  align-items: flex-start;
}

.footer-brand-strong strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.12rem;
}

.footer-brand-strong span,
.footer-contact-group {
  color: #6d6262;
}

.footer-logo-strong {
  width: 62px;
  height: 62px;
  padding: 6px;
}

.footer-links-group,
.footer-contact-group {
  display: grid;
  gap: 10px;
}

.footer-links-group a {
  font-weight: 700;
  color: #3a2d2d;
}

.footer-links-group a:hover {
  color: var(--brand);
}

@media (max-width: 980px) {
  .services-intro-grid,
  .contact-intro-grid,
  .engagement-grid {
    grid-template-columns: 1fr;
  }
}







/* Home section alignment fix */
#case-studies {
  padding-bottom: 52px;
}

#case-studies .story-grid {
  margin-top: 30px;
}

.home-intro {
  padding-top: 40px;
}

.home-intro-grid {
  align-items: center;
}

.home-intro-grid > .card {
  align-self: center;
}


/* Footer alignment refresh */
.footer-shell-strong {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(140px, 0.55fr) minmax(320px, 1.2fr) minmax(150px, 0.5fr);
  gap: 28px;
  align-items: start;
}

.footer-brand-strong {
  max-width: none;
  align-items: flex-start;
}

.footer-brand-strong > div {
  display: grid;
  gap: 8px;
}

.footer-links-group {
  align-content: start;
}

.footer-contact-group {
  gap: 14px;
}

.footer-contact-group div {
  display: grid;
  gap: 4px;
}

.footer-contact-group strong {
  color: #2f2424;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact-group span {
  color: #6d6262;
  line-height: 1.55;
}

.footer-social-group {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(23, 19, 19, 0.08);
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(46, 23, 23, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(46, 23, 23, 0.14);
  border-color: rgba(143, 29, 29, 0.18);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: #711919;
}

.footer-copyright {
  color: #6d6262;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .footer-shell-strong {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 840px) {
  .footer-shell-strong {
    grid-template-columns: 1fr;
  }

  .footer-social-group {
    justify-items: start;
  }
}

/* Page hero image refresh */
.about-hero-card,
.services-hero-card,
.contact-hero-card {
  width: 100%;
  max-width: none;
}

.page-hero-card h1 {
  max-width: 980px;
}

.page-hero-card p {
  max-width: 820px;
}

.about-hero-surface,
.services-hero-surface,
.contact-hero-surface {
  position: relative;
  overflow: hidden;
}

.about-hero-surface::before,
.services-hero-surface::before,
.contact-hero-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(200, 138, 42, 0.18), transparent 26%),
    linear-gradient(115deg, rgba(20, 13, 13, 0.9), rgba(50, 20, 20, 0.72));
  z-index: 0;
}

.about-hero-surface > .container,
.services-hero-surface > .container,
.contact-hero-surface > .container {
  position: relative;
  z-index: 1;
}

.about-hero-surface {
  background: url("https://images.unsplash.com/photo-1529107386315-e1a2ed48a620?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.services-hero-surface {
  background: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.contact-hero-surface {
  background: url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.about-hero-card,
.services-hero-card,
.contact-hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 22px 54px rgba(16, 10, 10, 0.2);
}


/* Contact form refinement */
.contact-form form {
  display: grid;
  gap: 18px;
}

.contact-form .field {
  margin-bottom: 0;
}

.contact-form .split-form {
  align-items: end;
}

.contact-form .field textarea {
  min-height: 148px;
}

.contact-form .consent-row {
  margin-top: 2px;
}

.contact-form .checkbox-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #4f4343;
  font-weight: 600;
  line-height: 1.45;
}

.contact-form .checkbox-row input {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 18px;
}

.contact-form .consent-copy {
  display: inline-block;
}

/* Contact card alignment refinement */
.contact-intro-grid {
  align-items: stretch;
}

.contact-panel,
.contact-form {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-points {
  margin-top: 4px;
}

.contact-form form {
  flex: 1 1 auto;
  align-content: start;
}
