  :root {
    --navy: #1B3A5C;
    --navy-deep: #12283F;
    --cream: #F6F1E4;
    --surface: #FFFDF8;
    --brass: #A9824C;
    --brass-light: #C7A876;
    --text: #22293A;
    --text-muted: #5C6478;
    --border: #DDD3BB;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
    --font-body: 'Karla', -apple-system, sans-serif;

    --radius: 6px;
  }

  * { box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    margin: 0;
    background: var(--cream);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
  }

  a { color: var(--navy); }
  a:focus-visible, button:focus-visible {
    outline: 3px solid var(--brass);
    outline-offset: 2px;
  }

  .wrap {
    max-width: 60rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
  }

  /* --- Hero: signboard image ----------------------------------------- */
  .hero {
    padding-block: 4rem 3rem;
    text-align: center;
  }

  /* Fluid width capped at a comfortable reading size, with intrinsic
     width/height on the <img> itself so the browser reserves the right
     aspect ratio before the file loads (no layout jump). */
  .sign {
    display: block;
    width: 100%;
    max-width: 32rem;
    height: auto;
    margin-inline: auto;
  }

  .tagline {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 32rem;
    margin: 1rem auto 0;
  }

  /* Visually hide content while keeping it available to screen readers —
     used for headings (h1, services h2) that are implied by the artwork
     but aren't meant to duplicate it on screen. */
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* --- Services ---------------------------------------------------- */
  .services {
    padding-block: 1rem 3rem;
  }

  .services h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.9rem;
    color: var(--navy-deep);
    text-align: center;
    margin-bottom: 2rem;
  }

  .service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  @media (min-width: 700px) {
    .service-grid { grid-template-columns: repeat(3, 1fr); }
  }

  .service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    text-align: center;
  }

  .service-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
    color: var(--navy-deep);
  }

  .service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
  }

  /* --- Contact: styled like the actual business card ---------------- */
  .contact {
    padding-block: 1rem 4rem;
  }

  .card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.25rem 2rem;
    max-width: 30rem;
    margin-inline: auto;
    box-shadow: 0 4px 16px rgba(18, 40, 63, 0.08);
  }
  /* The extra left padding below is a deliberate visual offset (site
     owner's call), but on narrow phones it squeezes the dl content
     enough to clip the email address — so it only kicks in once the
     card has room for it. */
  @media (min-width: 440px) {
    .card { padding-left: 6.5rem; }
  }

  .card h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.7rem;
    color: var(--navy-deep);
    text-align: center;
    /* The card's own left/right padding is asymmetric (see .card above),
       which would otherwise pull a centered heading off to one side.
       Canceling it here with matching negative margins lets the heading
       center on the card's full width instead of the lopsided content
       box, then padding-inline adds back a little even breathing room. */
    margin: 0 -2rem 1.25rem -2rem;
    padding-inline: 1rem;
  }
  @media (min-width: 440px) {
    .card h2 { margin-left: -6.5rem; }
  }

  .card dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.6rem 1rem;
    margin: 0;
    font-family: var(--font-mono);
    font-size: 0.92rem;
  }

  .card dt {
    color: var(--brass);
    font-weight: 600;
    white-space: nowrap;
  }

  .card dd {
    margin: 0;
    color: var(--text);
  }

  .card a { text-decoration: none; }
  .card a:hover { text-decoration: underline; }

  .cta-row {
    margin-top: 1.75rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .btn {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 0.65em 1.4em;
    border-radius: 999px;
    display: inline-block;
  }
  .btn--primary {
    background: var(--navy);
    color: var(--cream);
  }
  .btn--primary:hover { background: var(--navy-deep); }
  .btn--outline {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy-deep);
  }
  .btn--outline:hover { background: var(--navy); color: var(--cream); }

  footer {
    text-align: center;
    padding: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-muted);
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
  }
