  :root {
    --white: #ffffff;
    --off-white: #f7f7f5;
    --ink: #1c1c1c;
    --forest: #2f7a45;
    --forest-dark: #235c34;
    --blue: #1f4f8c;
    --red: #7d2b30;
    --stripe-height: 10px;
    --max-width: 1140px;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    line-height: 1.2;
  }

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

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

  .wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
  }

  /* Stripe accent bar: forest green, deep blue, brick red */
  .stripe-bar {
    display: flex;
    height: var(--stripe-height);
    width: 100%;
  }
  .stripe-bar span { flex: 1; }
  .stripe-bar .s-forest { background: var(--forest); }
  .stripe-bar .s-blue { background: var(--blue); }
  .stripe-bar .s-red { background: var(--red); }

  /* Header */
  header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--ink);
  }

  .logo .mark {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    position: relative;
  }
  .logo .mark img { display: block; width: 100%; height: 100%; object-fit: contain; }
  .logo .mark img.dark { display: block; }
  .logo .mark img.light { display: none; }

  footer .logo .mark img.dark { display: none; }
  footer .logo .mark img.light { display: block; }

  .logo .word {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
  }
  .logo .word b {
    font-size: 1.28rem;
    letter-spacing: 0.03em;
  }
  .logo .word b.paint-word {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    color: var(--red);
    margin-top: 1px;
  }

  .logo .sub {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--forest);
    margin-top: 2px;
  }

  nav.links {
    display: flex;
    gap: 32px;
    font-size: 0.95rem;
    font-weight: 600;
  }

  nav.links a {
    color: var(--ink);
    transition: color 0.15s ease;
  }
  nav.links a:hover { color: var(--forest); }

  .nav-cta {
    display: inline-block;
    background: var(--blue);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  .nav-cta:hover { background: var(--forest-dark); }

  .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--ink);
    padding: 4px 8px;
  }

  /* Hero */
  .hero {
    position: relative;
    background:
      linear-gradient(100deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.82) 45%, rgba(255,255,255,0.62) 100%),
      url('stock-hero.jpg') center / cover no-repeat;
    padding: 75px 0 65px;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 56px;
    align-items: center;
  }

  .hero-trust {
    display: flex;
    flex-wrap: wrap;
    column-gap: 28px;
    row-gap: 12px;
    margin-top: 24px;
    list-style: none;
  }
  .hero-trust li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
  }
  .hero-trust .tick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--white);
    font-size: 0.65rem;
    flex-shrink: 0;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--forest);
    background: rgba(30, 77, 58, 0.08);
    padding: 7px 14px;
    border-radius: 100px;
    margin-bottom: 22px;
  }
  .hero .eyebrow { margin-bottom: 20px; }

  .hero h1 {
    font-family: 'Anton', Georgia, sans-serif;
    font-weight: 400;
    font-size: 4rem;
    line-height: 1.05;
    letter-spacing: 0.01em;
    color: var(--ink);
    margin-bottom: 22px;
    text-transform: uppercase;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--forest);
  }

  .hero p.lead {
    font-size: 1.28rem;
    color: #444;
    max-width: 46ch;
    margin-bottom: 28px;
  }

  .btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

  .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.98rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  .btn-primary {
    background: var(--red);
    color: var(--white);
  }
  .btn-primary:hover { background: #b81919; }
  .btn-secondary {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
    padding: 13px 26px;
  }
  .btn-secondary:hover { background: var(--blue); color: var(--white); }

  .hero-quote-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(10, 42, 82, 0.18);
  }
  .hero-quote-card .stripe-bar { height: 7px; }
  .hero-quote-card-body { padding: 28px 30px 24px; }
  .hero-quote-card h2 {
    font-size: 1.4rem;
    margin-bottom: 3px;
  }
  .hero-quote-card .sub-note {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 17px;
  }
  .hero-quote-card .quote-form { gap: 13px; }
  .hero-quote-card .checkbox-group { gap: 8px; }
  .hero-quote-card .quote-form label { margin-bottom: 5px; }
  .hero-quote-card .quote-form input { padding: 10px 13px; }
  .hero-quote-card .quote-form .btn { padding: 13px 29px; }

  /* Section headers */
  .section { padding: 88px 0; }
  .section-off { background: var(--off-white); }
  @media (min-width: 861px) {
    #known-for { padding-bottom: 40px; }
    #services { padding-top: 40px; }
  }
  .section-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 56px;
  }
  .section-head .eyebrow { display: inline-flex; }
  .section-head h2 {
    font-size: 2.1rem;
    margin: 14px 0 12px;
  }
  .section-head p {
    color: #555;
    font-size: 1.05rem;
  }

  /* Known for */
  .section-head h2 sup {
    font-size: 0.4em;
    margin-left: 2px;
  }
  .known-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 980px;
    margin: 0 auto;
  }
  .known-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
  }
  .known-list .check {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 2px;
  }
  .known-list li:nth-child(1) .check { background: var(--forest); }
  .known-list li:nth-child(2) .check { background: var(--blue); }
  .known-list li:nth-child(3) .check { background: var(--red); }
  .known-list h3 { font-size: 1.2rem; margin-bottom: 6px; }
  .known-list p { color: #555; font-size: 0.94rem; }

  /* Process */
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    margin-bottom: 56px;
  }
  .process-step { text-align: center; padding: 0 8px; }
  .process-step .step-num {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Georgia, serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
  }
  .process-step:nth-child(1) .step-num { background: var(--forest); }
  .process-step:nth-child(2) .step-num { background: var(--blue); }
  .process-step:nth-child(3) .step-num { background: var(--red); }
  .process-step:nth-child(4) .step-num { background: var(--forest); }
  .process-step h3 { font-size: 1.08rem; margin-bottom: 8px; }
  .process-step p { color: #555; font-size: 0.92rem; }
  .process-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 720px;
    margin: 0 auto;
  }
  .process-media {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    aspect-ratio: 4 / 5;
  }
  .process-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; }

  /* Services */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }
  .service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 22px 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(20, 30, 50, 0.05);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
  }
  .service-card .top-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
  }
  .service-card.clr-forest .top-bar { background: var(--forest); }
  .service-card.clr-blue .top-bar { background: var(--blue); }
  .service-card.clr-red .top-bar { background: var(--red); }

  .service-card .icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 14px;
  }
  .service-card.clr-forest .icon { background: rgba(47,122,69,0.1); color: var(--forest); }
  .service-card.clr-blue .icon { background: rgba(31,79,140,0.1); color: var(--blue); }
  .service-card.clr-red .icon { background: rgba(125,43,48,0.1); color: var(--red); }

  .service-card h3 {
    font-size: 0.98rem;
    margin-bottom: 8px;
  }
  .service-card p { color: #555; font-size: 0.85rem; }
  .service-card .badge {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(10,42,82,0.08);
    padding: 4px 10px;
    border-radius: 100px;
  }

  /* Why us */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .why-item { text-align: center; padding: 0 10px; }
  .why-item .num {
    font-family: Georgia, serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 10px;
  }
  .why-item:nth-child(2) .num { color: var(--blue); }
  .why-item:nth-child(3) .num { color: var(--red); }
  .why-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
  .why-item p { color: #555; font-size: 0.92rem; }

  /* Service area banner */
  .area-banner {
    background: var(--blue);
    color: var(--white);
    padding: 56px 0;
    text-align: center;
  }
  .area-banner h2 {
    font-size: 1.7rem;
    margin-bottom: 12px;
  }
  .area-banner p {
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin: 0 auto;
  }

  /* Contact */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .contact-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 14px rgba(20, 30, 50, 0.05);
  }
  .contact-card .stripe-bar { height: 6px; margin: -40px -40px 28px; width: calc(100% + 80px); border-radius: 16px 16px 0 0; overflow: hidden; }
  .contact-line {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .contact-line:last-child { border-bottom: none; }
  .contact-line .ic {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--off-white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .contact-line a, .contact-line span.txt { font-weight: 600; font-size: 1.02rem; }
  .contact-line small { display: block; color: #888; font-weight: 400; font-size: 0.82rem; }

  form.quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .quote-form .form-row {
    display: flex;
    gap: 16px;
  }
  .quote-form .form-row > div {
    flex: 1;
    min-width: 0;
  }
  .quote-form label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
    display: block;
  }
  .quote-form input,
  .quote-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--white);
    color: var(--ink);
  }
  .quote-form input:focus,
  .quote-form textarea:focus {
    outline: none;
    border-color: var(--forest);
  }
  .quote-form textarea { resize: vertical; min-height: 100px; }
  .quote-form .btn {
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .quote-form .btn .arrow { transition: transform 0.15s ease; }
  .quote-form .btn:hover .arrow { transform: translateX(4px); }
  .quote-form .hint { font-size: 0.82rem; color: #888; margin-top: -6px; }

  .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .quote-form label.checkbox-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0;
    cursor: pointer;
  }
  .checkbox-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--forest);
    cursor: pointer;
  }

  /* Footer */
  footer {
    background: var(--ink);
    color: rgba(255,255,255,0.75);
    padding: 48px 0 28px;
  }
  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
  }
  footer .logo { color: var(--white); }
  footer .foot-links { display: flex; gap: 24px; font-size: 0.92rem; }
  footer .foot-links a:hover { color: var(--white); }
  .foot-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 22px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }

  @media (max-width: 860px) {
    nav.links, .nav-cta { display: none; }
    .menu-toggle { display: block; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-quote-card { max-width: 460px; margin: 0 auto; }
    .hero h1 { font-size: 2.2rem; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
    .process-gallery { grid-template-columns: 1fr; max-width: 360px; }
    .known-list { grid-template-columns: 1fr; max-width: 420px; }
    .why-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-card .stripe-bar { margin: -32px -32px 24px; width: calc(100% + 64px); }
    .contact-card { padding: 32px; }
  }

  @media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; gap: 28px; }
    .known-list h3 { font-size: 1.15rem; }
    .hero { padding: 56px 0 64px; }
    .section { padding: 64px 0; }
    .hero h1 { font-size: 1.9rem; }
    .quote-form .form-row { flex-direction: column; gap: 16px; }
  }

  #mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid #eee;
    padding: 8px 24px 20px;
  }
  #mobile-menu.open { display: flex; }
  #mobile-menu a {
    padding: 12px 0;
    border-bottom: 1px solid #f2f2f2;
    font-weight: 600;
  }
  #mobile-menu .nav-cta { display: inline-block; margin-top: 14px; text-align: center; }

  /* Simple centered message pages (e.g. thank-you) */
  .simple-hero {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
  }
  .simple-hero .check-badge {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
  }
  .simple-hero h1 { margin-bottom: 20px; }
  .simple-hero .lead { margin: 0 auto 32px; max-width: 52ch; }
  .simple-hero .btn-row { justify-content: center; }
  .simple-hero .contact-line-row {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    font-weight: 600;
  }
