  :root {
    --plum-50: #F9F5FA;
    --plum-700: #5D3A6B;
    --plum-800: #3D2548;
    --plum-900: #2A1A32;
    --amber-400: #FFB040;
    --amber-500: #E8A838;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }

  body {
    overflow-x: hidden;
  }

  /* Section Labels */
  .section-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber-500);
  }

  /* Section Titles */
  .section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--plum-900);
    letter-spacing: -0.01em;
  }

  /* Navbar */
  #navbar {
    background: transparent;
    transition: background 0.5s ease, box-shadow 0.5s ease;
  }

  #navbar.scrolled {
    background: rgba(249, 245, 250, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(93, 58, 107, 0.08);
  }

  /* Nav Links */
  .nav-link {
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--amber-500);
    transition: width 0.3s ease;
  }

  .nav-link:hover::after {
    width: 100%;
  }

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

  .menu-line {
    display: block;
  }

  body.menu-open .menu-line:nth-child(1) {
    top: 50%;
    transform: rotate(45deg);
  }

  body.menu-open .menu-line:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .menu-line:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg);
  }

  /* Hero Animations */
  .hero-badge {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
  }

  .hero-badge > span:first-child {
    animation: pulse-dot 2s ease-in-out infinite;
  }

  @keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  h1 {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.4s;
  }

  #hero p {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.6s;
  }

  #hero .flex-col {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.8s;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(24px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Scroll Reveal (below the fold only) */
  .reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      opacity: 0;
      transform: translateY(32px);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
  }

  /* Menu List Items */
  #menu ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 5px;
  }

  #menu ul li:last-child {
    border-bottom: none;
  }

  /* Form Inputs */
  input:focus,
  textarea:focus {
    border-color: var(--amber-500) !important;
  }

  /* Custom Scrollbar */
  ::-webkit-scrollbar {
    width: 6px;
  }

  ::-webkit-scrollbar-track {
    background: var(--plum-50);
  }

  ::-webkit-scrollbar-thumb {
    background: var(--plum-300);
    border-radius: 3px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: var(--plum-400);
  }

  /* Selection */
  ::selection {
    background: rgba(232, 168, 56, 0.2);
    color: var(--plum-900);
  }
