  :root {
    --navy: #1A2332;
    --coral: #E76F51;
    --coral-light: #FF6B6B;
    --white: #FFFFFF;
    --off-white: #F8F8F6;
    --grey-light: #8A9BB0;
    --grey-mid: #4A5568;
    --navy-muted: #2D3F55;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--white);
    color: var(--navy);
    overflow-x: hidden;
  }

  /* Service cards as links (multi-page site) */
  a.service-card {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid rgba(26,35,50,0.08);
    padding: 0 48px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    text-decoration: none;
  }

  /* Inline SVG logo mark */
  .logo-mark {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-shrink: 0;
    padding: 6px;
  }

  .logo-mark-dial {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 7px;
    letter-spacing: 2px;
    color: var(--grey-light);
    text-align: center;
    line-height: 1;
    margin-bottom: 1px;
  }

  .logo-mark-m {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--coral);
    line-height: 1;
  }

  .logo-text-block { line-height: 1.1; }

  .logo-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: var(--navy);
    letter-spacing: 1px;
  }

  .logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--grey-light);
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey-mid);
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
  }

  .nav-links a:hover,
  .nav-links a.active { color: var(--coral); }

  .nav-cta {
    background: var(--coral) !important;
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
  }

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

  /* ─── SHARED ─── */
  .section-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
  }

  .divider-line {
    width: 48px;
    height: 3px;
    background: var(--coral);
    margin: 24px 0;
  }

  /* ─── HOME PAGE ─── */
  .home-hero {
    padding-top: 72px;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    padding: 100px 64px 80px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
  }

  .hero-right {
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .hero-right::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(231,111,81,0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /* Large hero logo */
  .hero-logo-large {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeUp 0.9s ease both;
  }

  .hero-logo-dial {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 12px;
    color: var(--grey-light);
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .hero-logo-mfor {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 88px;
    color: var(--coral);
    line-height: 0.9;
    letter-spacing: -2px;
  }

  .hero-logo-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 20px 0;
  }

  .hero-logo-moulsdale {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 10px;
    color: var(--grey-light);
    text-transform: uppercase;
  }

  .hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 52px;
    line-height: 1.0;
    color: var(--navy);
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    animation: fadeUp 0.7s ease both;
  }

  .hero-tagline span { color: var(--coral); }

  .hero-body {
    font-size: 17px;
    line-height: 1.7;
    color: var(--grey-mid);
    font-weight: 300;
    max-width: 460px;
    margin-bottom: 48px;
    animation: fadeUp 0.8s 0.1s ease both;
  }

  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: fadeUp 0.8s 0.2s ease both;
  }

  .btn-primary {
    background: var(--navy);
    color: var(--white);
    padding: 16px 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.25s;
    text-decoration: none;
  }

  .btn-primary:hover {
    background: var(--coral);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(231,111,81,0.3);
  }

  .btn-secondary {
    background: transparent;
    color: var(--navy);
    padding: 16px 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: 2px solid var(--navy);
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.25s;
    text-decoration: none;
  }

  .btn-secondary:hover {
    border-color: var(--coral);
    color: var(--coral);
    transform: translateY(-2px);
  }

  /* Services strip */
  .services-strip {
    background: var(--off-white);
    border-top: 1px solid rgba(26,35,50,0.06);
    border-bottom: 1px solid rgba(26,35,50,0.06);
    padding: 20px 72px;
    display: flex;
    align-items: center;
    gap: 0;
  }

  .strip-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--grey-light);
    margin-right: 40px;
    white-space: nowrap;
  }

  .strip-items {
    display: flex;
    gap: 0;
    flex: 1;
  }

  .strip-item {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy);
    padding: 0 28px;
    border-left: 1px solid rgba(26,35,50,0.12);
  }

  .strip-item:first-child { border-left: 1px solid rgba(26,35,50,0.12); }

  /* Offer cards section */
  .offers-section {
    padding: 100px 72px;
    background: var(--white);
  }

  .offers-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
    align-items: end;
  }

  .offers-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--navy);
  }

  .offers-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-mid);
    font-weight: 300;
    padding-bottom: 4px;
  }

  .cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(26,35,50,0.08);
  }

  .service-card {
    background: var(--white);
    padding: 40px 32px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--coral);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }

  .service-card:hover { background: var(--off-white); }
  .service-card:hover::before { transform: scaleX(1); }

  .card-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--coral);
    margin-bottom: 24px;
    opacity: 0.6;
  }

  .card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
  }

  .card-body {
    font-size: 14px;
    line-height: 1.7;
    color: var(--grey-mid);
    font-weight: 300;
    margin-bottom: 28px;
  }

  .card-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--coral);
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
  }

  .card-link:hover { gap: 12px; }

  /* How I work section */
  .how-section {
    background: var(--navy);
    padding: 100px 72px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
  }

  .how-left .section-label { color: var(--coral); }

  .how-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 40px;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1px;
  }

  .how-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .how-item { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 28px; }

  .how-item-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: rgba(231,111,81,0.25);
    line-height: 1;
    margin-bottom: 12px;
  }

  .how-item-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.2px;
  }

  .how-item-body {
    font-size: 14px;
    line-height: 1.7;
    color: var(--grey-light);
    font-weight: 300;
  }

  /* CTA band */
  .cta-band {
    padding: 80px 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border-top: 1px solid rgba(26,35,50,0.06);
  }

  .cta-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: var(--navy);
    letter-spacing: -1px;
    max-width: 500px;
  }

  .cta-text span { color: var(--coral); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--navy);
    padding: 48px 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: var(--white);
    letter-spacing: 1px;
  }

  .footer-sub {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--grey-light);
    text-transform: uppercase;
    margin-top: 4px;
  }

  .footer-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }

  .footer-links a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--grey-light);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
  }

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

  .footer-copy {
    font-size: 11px;
    color: var(--grey-light);
    font-weight: 300;
  }

  /* ─── INNER PAGE HERO ─── */
  .inner-hero {
    padding-top: 72px;
    background: var(--navy);
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
  }

  .inner-hero::after {
    content: '';
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(231,111,81,0.12) 0%, transparent 65%);
    pointer-events: none;
  }

  .inner-hero-content {
    padding: 80px 72px 0;
    position: relative;
    z-index: 2;
    max-width: 760px;
  }

  .inner-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
  }

  .inner-hero-tag-line {
    width: 32px;
    height: 2px;
    background: var(--coral);
  }

  .inner-hero-tag-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--coral);
  }

  .inner-hero-dial {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 8px;
    color: var(--grey-light);
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .inner-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 72px;
    line-height: 0.95;
    color: var(--white);
    letter-spacing: -2px;
    margin-bottom: 8px;
  }

  .inner-hero-title .coral { color: var(--coral); }

  .inner-hero-sub {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 72px;
    line-height: 0.95;
    color: rgba(255,255,255,0.12);
    letter-spacing: -2px;
    margin-bottom: 32px;
  }

  .inner-hero-desc {
    font-size: 18px;
    line-height: 1.7;
    color: var(--grey-light);
    font-weight: 300;
    max-width: 560px;
    margin-bottom: 48px;
  }

  .inner-hero-wave {
    height: 64px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
    margin-top: 24px;
  }

  /* ─── CONTENT SECTIONS ─── */
  .content-section {
    padding: 80px 72px;
    background: var(--white);
  }

  .content-section.alt-bg { background: var(--off-white); }
  .content-section.navy-bg {
    background: var(--navy);
    color: var(--white);
  }

  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
  }

  .three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
  }

  .section-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--grey-mid);
    font-weight: 300;
    margin-bottom: 20px;
  }

  .navy-bg .section-body { color: var(--grey-light); }
  .navy-bg .section-title { color: var(--white); }

  /* Pillar cards */
  .pillar {
    padding: 32px;
    border: 1px solid rgba(26,35,50,0.09);
    border-radius: 4px;
    transition: all 0.3s;
    background: var(--white);
  }

  .pillar:hover {
    border-color: var(--coral);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26,35,50,0.08);
  }

  .pillar-icon {
    width: 44px;
    height: 44px;
    background: rgba(231,111,81,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .pillar-icon svg { width: 22px; height: 22px; }

  .pillar-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: -0.2px;
  }

  .pillar-body {
    font-size: 14px;
    line-height: 1.7;
    color: var(--grey-mid);
    font-weight: 300;
  }

  /* Engagement types */
  .engagement-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(26,35,50,0.08);
    margin-top: 40px;
  }

  .engagement-item {
    background: var(--white);
    padding: 36px 28px;
  }

  .eng-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 10px;
  }

  .eng-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
  }

  .eng-body {
    font-size: 13px;
    line-height: 1.7;
    color: var(--grey-mid);
    font-weight: 300;
  }

  /* Quote block */
  .quote-block {
    border-left: 4px solid var(--coral);
    padding: 24px 32px;
    background: var(--off-white);
    margin: 32px 0;
  }

  .quote-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    color: var(--navy);
    letter-spacing: -0.3px;
  }

  .quote-text span { color: var(--coral); }

  /* Challenge/solution list */
  .challenge-list {
    list-style: none;
    margin: 24px 0;
  }

  .challenge-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(26,35,50,0.06);
    font-size: 15px;
    color: var(--grey-mid);
    font-weight: 300;
    line-height: 1.6;
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }

  .challenge-list li::before {
    content: '→';
    color: var(--coral);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }

  /* Stats row */
  .stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(26,35,50,0.08);
    margin: 56px 0;
  }

  .stat-item {
    background: var(--navy);
    padding: 40px 28px;
    text-align: center;
  }

  .stat-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 40px;
    color: var(--coral);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 8px;
  }

  .stat-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--grey-light);
    text-transform: uppercase;
  }

  /* ─── BACK BUTTON ─── */
  .back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey-light);
    cursor: pointer;
    transition: color 0.2s;
    border: none;
    background: none;
    padding: 0;
    margin-bottom: 28px;
  }

  .back-btn:hover { color: var(--coral); }

  a.back-btn {
    text-decoration: none;
    color: inherit;
  }

  /* Animations */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ─── RESPONSIVE BASICS ─── */
  @media (max-width: 900px) {
    nav { padding: 0 24px; }
    .home-hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { padding: 60px 24px 48px; }
    .hero-tagline { font-size: 36px; }
    .offers-section, .how-section, .content-section { padding: 60px 24px; }
    .cards-grid { grid-template-columns: 1fr 1fr; }
    .how-section { grid-template-columns: 1fr; gap: 40px; }
    .cta-band { flex-direction: column; gap: 32px; padding: 60px 24px; }
    footer { flex-direction: column; gap: 24px; padding: 40px 24px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .inner-hero-content { padding: 60px 24px 0; }
    .inner-hero-title, .inner-hero-sub { font-size: 44px; }
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .three-col { grid-template-columns: 1fr; }
    .engagement-row { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .offers-header { grid-template-columns: 1fr; }
    .services-strip { padding: 20px 24px; }
  }

/* ─── contact.html — page-specific styles (Formspree form) ─── */
  /* ─── CONTACT FORM (Formspree) ─── */
  .contact-form {
    max-width: 640px;
  }

  .contact-form .form-field {
    margin-bottom: 24px;
  }

  .contact-form label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 10px;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    border: 1px solid rgba(26,35,50,0.15);
    border-radius: 4px;
    color: var(--navy);
    background: var(--white);
    transition: border-color 0.2s;
  }

  .contact-form textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.6;
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: var(--coral);
  }

  .contact-form .form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  .contact-form button[type="submit"] {
    margin-top: 8px;
  }
