  /* ── Base & Reset ── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; scroll-padding-top: 80px; }
  body { min-height: 100vh; }
  img { max-width: 100%; display: block; }
  select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239e9e9e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem !important; }

  /* ── Typography ── */
  .section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #F4845F;
    margin-bottom: 1rem;
  }
  .section-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: #2D2D2D;
    letter-spacing: -0.02em;
  }

  /* ── Buttons ── */
  .btn-coral {
    background: linear-gradient(135deg, #F4845F 0%, #e8633d 100%);
    color: #fff;
    border: none;
    border-radius: 9999px;
    padding: 0.875rem 2rem;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
  }
  .btn-coral:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -12px rgba(244, 132, 95, 0.4);
  }
  .btn-coral:active { transform: translateY(0); }

  /* ── Cards ── */
  .card-elevate {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .card-elevate:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px -15px rgba(45, 45, 45, 0.12);
  }

  /* ── Tags ── */
  .tag {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: #fff5f0;
    color: #d44a24;
    border: 1px solid #ffd2b8;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  /* ── Pills ── */
  .pill {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #f6f6f6;
    color: #525252;
    border: 1px solid #e3e3e3;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  .pill:hover {
    background: #fff5f0;
    border-color: #ffd2b8;
    color: #d44a24;
  }

  /* ── Inputs ── */
  .input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e3e3e3;
    border-radius: 0.75rem;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.9rem;
    color: #2D2D2D;
    background: #FAF6EE;
    transition: all 0.3s ease;
    outline: none;
  }
  .input-field::placeholder { color: #c4c4c4; }
  .input-field:focus {
    border-color: #F4845F;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(244, 132, 95, 0.1);
  }

  /* ── Nav ── */
  .nav-link { position: relative; }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F4845F;
    border-radius: 2px;
    transition: width 0.3s ease;
  }
  .nav-link:hover::after { width: 100%; }

  /* ── Navbar scroll state ── */
  #navbar.scrolled {
    background: rgba(253, 251, 247, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(45, 45, 45, 0.06), 0 8px 32px rgba(45, 45, 45, 0.06);
  }

  /* ── Mobile menu ── */
  #mobile-menu.open { opacity: 1 !important; pointer-events: all !important; }
  .menu-line.active:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .menu-line.active:nth-child(2) { opacity: 0; }
  .menu-line.active:nth-child(3) { transform: translateY(-5px) rotate(-45deg); width: 1.25rem; }

  /* ── Reveal animations ── */
  .reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .reveal-up.visible { opacity: 1; transform: translateY(0); }

  .reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }

  /* ── Mobile link ── */
  .mobile-link { opacity: 0; transform: translateY(20px); transition: all 0.4s ease; }
  #mobile-menu.open .mobile-link { opacity: 1; transform: translateY(0); }
  #mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.05s; }
  #mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.1s; }
  #mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.15s; }
  #mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.2s; }
  #mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.25s; }

  /* ── Responsive ── */
  @media (max-width: 768px) {
    .section-title { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  }
