
  :root {
    --bg: #f4f1ea;
    --bg-warm: #ebe6dc;
    --ink: #1a1816;
    --ink-soft: #3a3530;
    --ink-light: #6b645c;
    --accent: #2d4a3e;
    --accent-soft: #4a6b5c;
    --rule: #d8d2c4;
    --highlight: #d4a574;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Geist', system-ui, sans-serif;
    font-weight: 400;
    line-height: 1.55;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
  }

  /* Typography */
  .display {
    font-family: 'Newsreader', Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.05;
  }

  .mono {
    font-family: 'Geist Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-light);
  }

  /* Layout */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
  }

  .narrow {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 2.5rem;
  }

  /* Navigation */
  nav.site-nav {
    position: sticky;
    top: 0;
    background: rgba(244, 241, 234, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid var(--rule);
  }

  .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    color: var(--ink);
  }

  .logo-name {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 1.55rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--ink);
    line-height: 1;
  }

  .logo-name em {
    font-style: italic;
    font-weight: 400;
  }

  .logo-rule {
    width: 1px;
    height: 26px;
    background: var(--accent);
  }

  .logo-descriptor {
    font-family: 'Geist Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-light);
    line-height: 1.3;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
  }

  .nav-links a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s;
  }

  .nav-links a:hover {
    color: var(--accent);
  }

  .nav-cta {
    background: var(--ink);
    color: var(--bg) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 2px;
    font-size: 0.88rem !important;
    transition: background 0.2s;
  }

  .nav-cta:hover {
    background: var(--accent) !important;
  }

  /* Page sections */
  section {
    padding: 5rem 0;
    border-bottom: 1px solid var(--rule);
  }

  section.hero {
    padding: 7rem 0 6rem;
    position: relative;
    overflow: hidden;
  }

  section.no-rule {
    border-bottom: none;
  }

  /* Editorial marker */
  .marker {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 3rem;
    color: var(--ink-light);
  }

  .marker-num {
    font-family: 'Geist Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
  }

  .marker-line {
    flex: 1;
    height: 1px;
    background: var(--rule);
  }

  .marker-label {
    font-family: 'Geist Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* Brand mark */
  .brand-mark {
    margin-bottom: 2.5rem;
    color: var(--accent);
    display: inline-block;
    animation: fadeIn 0.8s ease-out;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* HERO */
  .hero-content {
    max-width: 900px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    margin-bottom: 1.8rem;
    color: var(--ink);
  }

  .hero h1 em {
    font-style: italic;
    color: var(--accent);
  }

  .hero .subhead {
    font-size: 1.25rem;
    color: var(--ink-soft);
    max-width: 640px;
    margin-bottom: 2.5rem;
    line-height: 1.5;
  }

  .hero-meta {
    display: flex;
    gap: 3rem;
    margin-top: 4.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--rule);
    color: var(--ink-light);
  }

  .hero-meta-item {
    flex: 1;
  }

  .hero-meta-item span {
    display: block;
    font-family: 'Geist Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
    color: var(--ink-light);
  }

  .hero-meta-item strong {
    color: var(--ink);
    font-weight: 500;
    font-size: 1.35rem;
    font-family: 'Newsreader', Georgia, serif;
    line-height: 1.2;
    display: block;
  }

  /* Buttons */
  .btn {
    display: inline-block;
    background: var(--ink);
    color: var(--bg);
    text-decoration: none;
    padding: 0.95rem 1.8rem;
    border-radius: 2px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s;
    border: 1px solid var(--ink);
  }

  .btn:hover {
    background: var(--accent);
    border-color: var(--accent);
  }

  .btn-secondary {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
  }

  .btn-secondary:hover {
    background: var(--ink);
    color: var(--bg);
  }

  .arrow-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s;
  }

  .arrow-link:hover {
    gap: 0.7rem;
  }

  /* PROBLEM section */
  .problem h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    margin-bottom: 3rem;
    max-width: 720px;
  }

  .problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
  }

  .problem-item {
    border-top: 2px solid var(--ink);
    padding-top: 1.2rem;
  }

  .problem-item-num {
    font-family: 'Geist Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--ink-light);
    margin-bottom: 0.8rem;
  }

  .problem-item p {
    color: var(--ink-soft);
    font-size: 1.02rem;
    line-height: 1.5;
  }

  .problem-close {
    font-family: 'Newsreader', serif;
    font-size: 1.5rem;
    line-height: 1.4;
    max-width: 680px;
    color: var(--ink);
    padding-top: 2rem;
    border-top: 1px solid var(--rule);
  }

  .problem-close em {
    font-style: italic;
    color: var(--accent);
  }

  /* APPROACH section */
  .approach h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    margin-bottom: 3.5rem;
  }

  .principle {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--rule);
  }

  .principle:last-child {
    border-bottom: none;
  }

  .principle-num {
    font-family: 'Newsreader', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    min-width: 80px;
  }

  .principle-content h3 {
    font-family: 'Newsreader', serif;
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--ink);
    line-height: 1.3;
  }

  .principle-content p {
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 680px;
  }

  /* OFFER section */
  .offer-section {
    background: var(--bg-warm);
    border-bottom: 1px solid var(--rule);
  }

  .offer-card {
    max-width: 820px;
    margin: 0 auto;
    background: var(--bg);
    padding: 3.5rem;
    border: 1px solid var(--rule);
  }

  .offer-tag {
    font-family: 'Geist Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--accent);
    display: inline-block;
  }

  .offer-card h2 {
    font-family: 'Newsreader', serif;
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.15;
  }

  .offer-card .lead {
    font-size: 1.1rem;
    color: var(--ink-soft);
    margin-bottom: 2rem;
    line-height: 1.55;
  }

  .offer-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }

  .offer-meta-item .label {
    font-family: 'Geist Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 0.4rem;
    display: block;
  }

  .offer-meta-item .value {
    font-family: 'Newsreader', serif;
    font-size: 1.15rem;
    color: var(--ink);
    font-weight: 500;
  }

  /* CREDIBILITY */
  .credibility {
    background: var(--ink);
    color: var(--bg);
    border-bottom: none;
  }

  .credibility .marker {
    color: rgba(244, 241, 234, 0.6);
  }

  .credibility .marker-line {
    background: rgba(244, 241, 234, 0.2);
  }

  .credibility h2 {
    font-family: 'Newsreader', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 2rem;
    max-width: 720px;
    line-height: 1.2;
  }

  .credibility h2 em {
    font-style: italic;
    color: var(--highlight);
  }

  .credibility p {
    max-width: 720px;
    font-size: 1.1rem;
    color: rgba(244, 241, 234, 0.78);
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .credibility .arrow-link {
    color: var(--highlight);
  }

  /* THE WORK section - styled like editorial features */
  .work-intro h1 {
    font-family: 'Newsreader', serif;
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
  }

  .work-intro .lead {
    font-size: 1.2rem;
    color: var(--ink-soft);
    max-width: 720px;
    line-height: 1.55;
    margin-bottom: 1rem;
  }

  .workflow {
    padding: 5rem 0;
    border-bottom: 1px solid var(--rule);
  }

  .workflow-header {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: start;
  }

  .workflow-num {
    font-family: 'Newsreader', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
  }

  .workflow-title h3 {
    font-family: 'Newsreader', serif;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1.15;
  }

  .workflow-meta {
    font-family: 'Geist Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-light);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .workflow-meta span:not(:last-child)::after {
    content: '·';
    margin-left: 1rem;
    color: var(--rule);
  }

  .workflow-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
  }

  .workflow-section h4 {
    font-family: 'Geist Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--rule);
  }

  .workflow-section p {
    color: var(--ink-soft);
    line-height: 1.6;
    font-size: 1rem;
  }

  /* Chart visualization */
  .chart {
    background: var(--bg-warm);
    padding: 2.5rem;
    margin: 2rem 0;
    border: 1px solid var(--rule);
  }

  .chart-title {
    font-family: 'Geist Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 1.5rem;
  }

  .chart-bars {
    display: grid;
    gap: 1.2rem;
  }

  .chart-row {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    gap: 1rem;
    align-items: center;
  }

  .chart-label {
    font-family: 'Geist Mono', monospace;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-soft);
  }

  .chart-bar {
    height: 36px;
    background: var(--bg);
    border: 1px solid var(--rule);
    position: relative;
    overflow: hidden;
  }

  .chart-bar-fill {
    height: 100%;
    background: var(--accent);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .chart-bar.after .chart-bar-fill {
    background: var(--highlight);
  }

  .chart-value {
    font-family: 'Geist Mono', monospace;
    font-size: 0.85rem;
    color: var(--ink);
    text-align: right;
    font-weight: 500;
  }

  .chart-result {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }

  .chart-result-label {
    font-family: 'Geist Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-light);
  }

  .chart-result-value {
    font-family: 'Newsreader', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--accent);
  }

  /* Translation block */
  .translation {
    background: var(--bg-warm);
    padding: 2rem 2.5rem;
    border-left: 3px solid var(--highlight);
    margin-top: 2rem;
  }

  .translation .label {
    font-family: 'Geist Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 0.8rem;
  }

  .translation p {
    font-family: 'Newsreader', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--ink);
    line-height: 1.5;
  }

  /* Compliance note */
  .compliance-note {
    background: var(--bg-warm);
    padding: 1.5rem 2rem;
    margin-top: 1.5rem;
    font-size: 0.92rem;
    color: var(--ink-light);
    line-height: 1.5;
    border-left: 2px solid var(--rule);
  }

  /* SERVICES section */
  .services-intro h1 {
    font-family: 'Newsreader', serif;
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
  }

  .services-intro .lead {
    font-size: 1.2rem;
    color: var(--ink-soft);
    max-width: 720px;
    margin-bottom: 1rem;
  }

  .service-card {
    background: var(--bg);
    border: 1px solid var(--rule);
    padding: 3rem;
    margin-bottom: 2rem;
  }

  .service-card.featured {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
  }

  .service-card.featured .label,
  .service-card.featured .service-meta-label {
    color: rgba(244, 241, 234, 0.6);
  }

  .service-card.featured .service-meta-value {
    color: var(--highlight);
  }

  .service-card.featured h3 {
    color: var(--bg);
  }

  .service-card.featured .lead {
    color: rgba(244, 241, 234, 0.85);
  }

  .service-card.featured .service-section h4 {
    color: rgba(244, 241, 234, 0.7);
    border-color: rgba(244, 241, 234, 0.2);
  }

  .service-card.featured .service-section p,
  .service-card.featured .service-section li {
    color: rgba(244, 241, 234, 0.85);
  }

  .service-card.featured .service-section li::before {
    color: var(--highlight);
  }

  .service-tag {
    font-family: 'Geist Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    display: inline-block;
  }

  .service-card.featured .service-tag {
    color: var(--highlight);
  }

  .service-card h3 {
    font-family: 'Newsreader', serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.15;
  }

  .service-card .lead {
    font-size: 1.05rem;
    color: var(--ink-soft);
    margin-bottom: 2rem;
    max-width: 620px;
    line-height: 1.55;
  }

  .service-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    margin-bottom: 2rem;
  }

  .service-card.featured .service-meta {
    border-color: rgba(244, 241, 234, 0.2);
  }

  .service-meta-item .service-meta-label {
    font-family: 'Geist Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 0.3rem;
    display: block;
  }

  .service-meta-item .service-meta-value {
    font-family: 'Newsreader', serif;
    font-size: 1.1rem;
    color: var(--ink);
    font-weight: 500;
  }

  .service-card.featured .service-meta-item .service-meta-value {
    color: var(--bg);
  }

  .service-card.featured .service-meta-item.price .service-meta-value {
    color: var(--highlight);
  }

  .service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
  }

  .service-section h4 {
    font-family: 'Geist Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--rule);
  }

  .service-section ul {
    list-style: none;
    padding: 0;
  }

  .service-section li {
    color: var(--ink-soft);
    font-size: 0.98rem;
    line-height: 1.5;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--rule);
    position: relative;
    padding-left: 1.5rem;
  }

  .service-card.featured .service-section li {
    border-color: rgba(244, 241, 234, 0.12);
  }

  .service-section li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 500;
  }

  .service-section li:last-child {
    border-bottom: none;
  }

  .service-section li strong {
    color: var(--ink);
    font-weight: 500;
  }

  .service-card.featured .service-section li strong {
    color: var(--bg);
  }

  .service-section p {
    color: var(--ink-soft);
    line-height: 1.6;
    font-size: 1rem;
  }

  /* Pricing transparency note */
  .pricing-note {
    background: var(--bg-warm);
    padding: 2rem 2.5rem;
    margin-top: 3rem;
    border-left: 3px solid var(--accent);
  }

  .pricing-note p {
    font-family: 'Newsreader', serif;
    font-size: 1.1rem;
    color: var(--ink);
    line-height: 1.5;
    font-style: italic;
    max-width: 680px;
  }

  /* ABOUT section */
  .about-intro h1 {
    font-family: 'Newsreader', serif;
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
  }

  .about-intro .lead {
    font-size: 1.2rem;
    color: var(--ink-soft);
    max-width: 720px;
    line-height: 1.55;
  }

  .founder h2 {
    font-family: 'Newsreader', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--ink);
  }

  .founder-body {
    max-width: 720px;
  }

  .founder-body p {
    font-size: 1.1rem;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .founder-body p:first-of-type {
    font-family: 'Newsreader', serif;
    font-size: 1.4rem;
    color: var(--ink);
    line-height: 1.4;
    font-weight: 400;
  }

  /* Philosophy expanded */
  .philosophy-block {
    margin-top: 3rem;
  }

  /* CONTACT section */
  .contact h1 {
    font-family: 'Newsreader', serif;
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
  }

  .contact .lead {
    font-size: 1.2rem;
    color: var(--ink-soft);
    max-width: 720px;
    margin-bottom: 3rem;
    line-height: 1.55;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
  }

  .contact-block h3 {
    font-family: 'Geist Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--rule);
  }

  .contact-block p {
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .contact-block strong {
    color: var(--ink);
    font-weight: 500;
  }

  .expectations {
    background: var(--bg-warm);
    padding: 2.5rem;
    margin-top: 2rem;
  }

  .expectations h3 {
    font-family: 'Newsreader', serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--ink);
  }

  .expectations ul {
    list-style: none;
  }

  .expectations li {
    padding: 0.8rem 0;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--rule);
    font-style: italic;
    font-family: 'Newsreader', serif;
    font-size: 1.05rem;
  }

  .expectations li:last-child {
    border-bottom: none;
  }

  /* Final CTA */
  .final-cta {
    background: var(--ink);
    color: var(--bg);
    padding: 6rem 0;
    border-bottom: none;
  }

  .final-cta h2 {
    font-family: 'Newsreader', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    max-width: 720px;
  }

  .final-cta h2 em {
    font-style: italic;
    color: var(--highlight);
  }

  .final-cta p {
    font-size: 1.15rem;
    color: rgba(244, 241, 234, 0.78);
    margin-bottom: 2.5rem;
    max-width: 640px;
    line-height: 1.5;
  }

  .final-cta .btn {
    background: var(--highlight);
    color: var(--ink);
    border-color: var(--highlight);
  }

  .final-cta .btn:hover {
    background: var(--bg);
    border-color: var(--bg);
  }

  /* Footer */
  footer {
    background: var(--bg-warm);
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--rule);
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--rule);
  }

  .footer-brand-lockup {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin-bottom: 1.2rem;
  }

  .footer-brand-name {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--ink);
    line-height: 1;
  }

  .footer-brand-name em {
    font-style: italic;
    font-weight: 400;
  }

  .footer-brand-rule {
    width: 1px;
    height: 30px;
    background: var(--accent);
  }

  .footer-brand-descriptor {
    font-family: 'Geist Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-light);
    line-height: 1.35;
  }

  .footer-brand {
    font-family: 'Newsreader', serif;
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }

  .footer-brand em {
    font-style: italic;
  }

  .footer-tagline {
    font-size: 0.95rem;
    color: var(--ink-light);
    max-width: 320px;
  }

  .footer-col h4 {
    font-family: 'Geist Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 1rem;
  }

  .footer-col ul {
    list-style: none;
  }

  .footer-col li {
    padding: 0.3rem 0;
  }

  .footer-col a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }

  .footer-col a:hover {
    color: var(--accent);
  }

  .footer-bottom {
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    color: var(--ink-light);
    font-size: 0.85rem;
  }

  /* Page section separators (visual divider between major pages in preview) */
  .page-divider {
    background: var(--ink);
    color: var(--bg);
    padding: 1rem 2.5rem;
    font-family: 'Geist Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    border: none;
  }

  /* Contact form */
  .contact-form {
    background: var(--bg);
    padding: 2.5rem;
    border: 1px solid var(--rule);
  }

  .contact-form h3 {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--ink);
  }

  .contact-form .form-intro {
    font-size: 0.95rem;
    color: var(--ink-light);
    margin-bottom: 2rem;
    line-height: 1.5;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group label {
    display: block;
    font-family: 'Geist Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 0.5rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--rule);
    background: var(--bg-warm);
    font-family: 'Geist', sans-serif;
    font-size: 1rem;
    color: var(--ink);
    transition: border-color 0.2s, background 0.2s;
    border-radius: 2px;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--bg);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Geist', sans-serif;
    line-height: 1.5;
  }

  .form-group .required {
    color: var(--accent);
  }

  .form-help {
    font-size: 0.85rem;
    color: var(--ink-light);
    margin-top: 0.4rem;
    font-style: italic;
  }

  .form-submit {
    width: 100%;
    margin-top: 0.5rem;
    cursor: pointer;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--bg);
    padding: 1rem 1.8rem;
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s;
    border-radius: 2px;
  }

  .form-submit:hover {
    background: var(--accent);
    border-color: var(--accent);
  }

  .form-note {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--rule);
    font-size: 0.85rem;
    color: var(--ink-light);
    line-height: 1.5;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .container, .narrow { padding: 0 1.5rem; }
    .nav-inner { padding: 1rem 1.5rem; }
    .nav-links { gap: 1.2rem; }
    .nav-links a:not(.nav-cta) { display: none; }
    .nav-links a.nav-cta { display: inline-block; }

    /* On mobile, hide the descriptor and rule — wordmark alone */
    .logo-rule, .logo-descriptor { display: none; }
    .logo-name { font-size: 1.4rem; }

    .problem-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .workflow-body { grid-template-columns: 1fr; gap: 2rem; }
    .service-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
    .offer-meta, .service-meta { grid-template-columns: 1fr; gap: 1rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .principle { grid-template-columns: 1fr; gap: 1rem; }
    .principle-num { font-size: 2.2rem; }
    .offer-card { padding: 2rem; }
    .service-card { padding: 2rem; }
    .workflow-header { grid-template-columns: 1fr; gap: 0.5rem; }
    .workflow-num { font-size: 2.5rem; }
    .hero-meta { flex-direction: column; gap: 1rem; }
  }


  /* Privacy page specific */
  .privacy-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 5rem 2.5rem;
  }

  .privacy-content h1 {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.1;
  }

  .privacy-content .lead {
    font-size: 1.15rem;
    color: var(--ink-soft);
    margin-bottom: 3rem;
    line-height: 1.5;
  }

  .privacy-content h2 {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--ink);
  }

  .privacy-content p {
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 1.2rem;
  }

  .privacy-content ul {
    list-style: none;
    margin-bottom: 1.2rem;
  }

  .privacy-content li {
    color: var(--ink-soft);
    line-height: 1.6;
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
  }

  .privacy-content li::before {
    content: '·';
    position: absolute;
    left: 0.5rem;
    color: var(--accent);
    font-weight: 700;
  }

  .privacy-content .updated {
    font-family: 'Geist Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--rule);
  }
