  :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: recreates the card's ornate corner-bracket frame --------- */
  .hero {
    padding-block: 4rem 3rem;
    text-align: center;
  }

  .plate {
    position: relative;
    display: inline-block;
    background: var(--navy);
    color: var(--cream);
    padding: 2.5rem 3rem;
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(18, 40, 63, 0.25);
  }

  .plate .corner-tl,
  .plate .corner-tr,
  .plate .corner-bl,
  .plate .corner-br {
    content: "";
    position: absolute;
    width: 28px;
    height: 28px;
    border: 2px solid var(--brass-light);
  }
  .plate .corner-tl { top: 10px; left: 10px; border-right: none; border-bottom: none; }
  .plate .corner-tr { top: 10px; right: 10px; border-left: none; border-bottom: none; }
  .plate .corner-bl { bottom: 10px; left: 10px; border-right: none; border-top: none; }
  .plate .corner-br { bottom: 10px; right: 10px; border-left: none; border-top: none; }

  .shop-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.15;
    margin: 0;
  }

  .platforms {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--brass-light);
    margin-top: 0.5rem;
  }

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

  /* --- Services ---------------------------------------------------- */
  .services {
    padding-block: 2rem 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 .glyph {
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: var(--brass);
    display: block;
    margin-bottom: 0.5rem;
  }

  .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);
  }

  .card h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.7rem;
    color: var(--navy-deep);
    margin: 0 0 1.25rem;
  }

  .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; }
  }
