*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --ink:    #1a1e2a;
      --mid:    #4a5068;
      --faint:  #8a90a6;
      --rule:   #d8dae4;
      --accent: #1f4b8e;
      --bg:     #fafaf8;
    }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--ink);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      -webkit-font-smoothing: antialiased;
    }
    header {
      padding: 1.75rem 3rem;
      display: flex;
      align-items: center;
      gap: 1.25rem;
      border-bottom: 1px solid var(--rule);
      position: sticky;
      top: 0;
      background: var(--bg);
      z-index: 100;
    }
    .wordmark {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.45rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      color: var(--ink);
      text-decoration: none;
      white-space: nowrap;
      flex-shrink: 0;
      transition: color 0.15s;
    }
    .wordmark:hover { color: var(--accent); }
    .pipe { color: var(--rule); font-weight: 300; flex-shrink: 0; }
    .tagline-head {
      font-size: 0.73rem;
      font-weight: 400;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      color: var(--faint);
    }
    .header-nav {
      margin-left: auto;
      display: flex;
      gap: 1.75rem;
      align-items: center;
    }
    .header-nav a {
      font-size: 0.73rem;
      font-weight: 500;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--mid);
      text-decoration: none;
      transition: color 0.15s;
    }
    .header-nav a:hover { color: var(--accent); }
    .header-nav a.active { color: var(--accent); }

    /* HERO */
    .hero {
      padding: 6rem 3rem 5rem;
      max-width: 820px;
    }
    .hero-eyebrow {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.5rem;
      opacity: 0.8;
    }
    h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 5.5vw, 4.2rem);
      font-weight: 600;
      line-height: 1.1;
      color: var(--ink);
      margin-bottom: 2rem;
      letter-spacing: -0.01em;
    }
    .hero-body {
      font-size: 1.05rem;
      font-weight: 300;
      line-height: 1.8;
      color: var(--mid);
      max-width: 560px;
      margin-bottom: 3rem;
    }
    .cta-group {
      display: flex;
      gap: 1rem;
      align-items: center;
      flex-wrap: wrap;
    }
    .btn-primary {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--bg);
      background: var(--accent);
      border: none;
      padding: 0.9rem 2.2rem;
      cursor: pointer;
      border-radius: 2px;
      text-decoration: none;
      transition: opacity 0.2s;
      display: inline-block;
    }
    .btn-primary:hover { opacity: 0.85; }
    .btn-secondary {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--accent);
      text-decoration: none;
      border-bottom: 1px solid var(--rule);
      padding-bottom: 0.1rem;
      transition: border-color 0.2s;
    }
    .btn-secondary:hover { border-color: var(--accent); }

    /* DIVIDER */
    .section-rule {
      border: none;
      border-top: 1px solid var(--rule);
      margin: 0 3rem;
    }

    /* SERVICES */
    .services-section {
      padding: 4rem 3rem;
    }
    .section-label {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--faint);
      margin-bottom: 2.5rem;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      max-width: 900px;
    }
    .service-item {
      border-left: 2px solid var(--rule);
      padding-left: 1.25rem;
      transition: border-color 0.2s;
    }
    .service-item:hover { border-color: var(--accent); }

    /* SCROLL ANIMATION */
    .service-item {
      opacity: 0;
      transform: translateY(18px);
      transition: border-color 0.2s, opacity 0.55s ease, transform 0.55s ease;
    }
    .service-item.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .service-item:nth-child(1) { transition-delay: 0s; }
    .service-item:nth-child(2) { transition-delay: 0.1s; }
    .service-item:nth-child(3) { transition-delay: 0.2s; }
    .service-item:nth-child(4) { transition-delay: 0.3s; }
    .service-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 0.5rem;
    }
    .service-desc {
      font-size: 0.83rem;
      font-weight: 300;
      line-height: 1.65;
      color: var(--mid);
    }


    /* CONTACT STRIP */
    .contact-strip {
      padding: 4rem 3rem;
    }
    .contact-strip h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 0.75rem;
    }
    .contact-strip p {
      font-size: 0.92rem;
      font-weight: 300;
      color: var(--mid);
      line-height: 1.7;
      max-width: 480px;
      margin-bottom: 1.75rem;
    }

    /* FOOTER */
    footer {
      padding: 1.5rem 3rem;
      border-top: 1px solid var(--rule);
      margin-top: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .footer-copy {
      font-size: 0.7rem;
      color: var(--faint);
      font-weight: 300;
    }
    .footer-links {
      display: flex;
      gap: 1.25rem;
      flex-wrap: wrap;
    }
    .footer-links a {
      font-size: 0.7rem;
      color: var(--faint);
      text-decoration: none;
      font-weight: 300;
      letter-spacing: 0.03em;
      transition: color 0.15s;
    }
    .footer-links a:hover { color: var(--accent); }

    /* CONTACT INFO */
    .contact-info {
      font-size: 0.82rem;
      font-weight: 300;
      color: var(--mid);
      margin-top: 1.5rem;
      line-height: 1.8;
    }
    .contact-info a {
      color: var(--accent);
      text-decoration: none;
    }
    .contact-info a:hover { text-decoration: underline; }
    .contact-name {
      font-weight: 500;
    }

    @media (max-width: 768px) {
      header { padding: 1.25rem 1.5rem; flex-wrap: wrap; }
      .tagline-head { display: none; }
      .header-nav { gap: 1rem; margin-left: auto; }
      .hero { padding: 4rem 1.5rem 3rem; }
      .section-rule { margin: 0 1.5rem; }
      .services-section, .contact-strip { padding: 3rem 1.5rem; }
      footer { padding: 1.25rem 1.5rem; flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 480px) {
      .header-nav a { font-size: 0.68rem; letter-spacing: 0.06em; }
      .header-nav { gap: 0.75rem; }
    }
