  /* ── Base & Utilities ── */
  html { scroll-behavior: smooth; }

  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  ::selection {
    background: #f8c4b0;
    color: #562a1d;
  }

  /* ── Typography ── */
  .label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #B8613A;
    background: linear-gradient(135deg, #fdf0eb, #fce4d8);
    padding: 0.4em 1em;
    border-radius: 100px;
    border: 1px solid #f8c4b0;
  }

  .heading-xl {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    font-weight: 700;
  }

  /* ── Header ── */
  #site-header {
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  }

  #site-header.scrolled {
    background: rgba(253, 248, 240, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 20px rgba(184, 97, 58, 0.08);
  }

  .nav-link {
    position: relative;
  }

  /* ── Hero ── */
  .hero-bg {
    will-change: transform;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(86, 42, 29, 0.55) 0%, rgba(86, 42, 29, 0.35) 50%, rgba(86, 42, 29, 0.7) 100%),
      linear-gradient(90deg, rgba(86, 42, 29, 0.4) 0%, transparent 60%);
  }

  .scroll-indicator {
    animation: fade-bounce 2s ease-in-out infinite;
  }

  @keyframes fade-bounce {
    0%, 100% { opacity: 0.5; transform: translate(-50%, 0); }
    50% { opacity: 1; transform: translate(-50%, 6px); }
  }

  /* ── Service Cards ── */
  .service-card {
    position: relative;
    overflow: hidden;
  }

  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #B8613A, #ec7a52);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: 3px 3px 0 0;
  }

  .service-card:hover::after {
    transform: scaleX(1);
  }

  /* ── Process Steps ── */
  .process-step {
    position: relative;
  }

  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -2rem;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, #B8613A, transparent);
    opacity: 0.3;
  }

  @media (max-width: 1023px) {
    .process-step:not(:last-child)::after { display: none; }
  }

  /* ── Testimonials ── */
  .testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(184, 97, 58, 0.1);
  }

  /* ── CTA Buttons ── */
  .cta-primary {
    position: relative;
    overflow: hidden;
  }

  .cta-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .cta-primary:hover::before {
    opacity: 1;
  }

  /* ── Scroll Reveals ── */
  .scroll-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── Mobile Menu ── */
  #mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
  }

  /* ── Form ── */
  input:focus, textarea:focus {
    box-shadow: 0 0 0 4px rgba(184, 97, 58, 0.08);
  }

  /* ── Responsive ── */
  @media (max-width: 767px) {
    .heading-xl {
      font-size: clamp(1.75rem, 8vw, 2.5rem);
    }
  }
