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

    :root {
      --background: 30 50% 98%;
      --foreground: 200 25% 20%;
      --card: 0 0% 100%;
      --card-foreground: 200 25% 20%;
      --primary: 12 76% 61%;
      --primary-foreground: 0 0% 100%;
      --secondary: 174 42% 41%;
      --secondary-foreground: 0 0% 100%;
      --muted: 30 30% 94%;
      --muted-foreground: 200 15% 45%;
      --accent: 174 35% 92%;
      --accent-foreground: 174 42% 30%;
      --border: 30 20% 88%;
      --coral: 12 76% 61%;
      --coral-light: 12 76% 92%;
      --coral-dark: 12 60% 45%;
      --teal: 174 42% 41%;
      --teal-light: 174 35% 92%;
      --teal-dark: 174 45% 28%;
      --cream: 30 50% 98%;
      --warm-gray: 30 10% 55%;
      --radius: 0.75rem;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
      background-color: hsl(var(--background));
      color: hsl(var(--foreground));
      line-height: 1.6;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', Georgia, serif;
      line-height: 1.2;
    }

    .container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; height: auto; }

    @keyframes fade-in {
      0% { opacity: 0; transform: translateY(10px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    .animate-fade-in { animation: fade-in 0.5s ease-out forwards; }

    .shadow-soft { box-shadow: 0 4px 20px -4px hsla(200, 25%, 20%, 0.08); }
    .shadow-medium { box-shadow: 0 8px 30px -6px hsla(200, 25%, 20%, 0.12); }
    .shadow-coral { box-shadow: 0 8px 30px -6px hsla(12, 76%, 61%, 0.25); }
    .shadow-teal { box-shadow: 0 8px 30px -6px hsla(174, 42%, 41%, 0.25); }

    /* Buttons */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
      padding: 0.75rem 2rem; border-radius: var(--radius); font-weight: 600; font-size: 1rem;
      cursor: pointer; border: none; transition: all 0.2s ease; font-family: inherit;
    }
    .btn-primary {
      background-color: hsl(var(--primary)); color: hsl(var(--primary-foreground));
      box-shadow: 0 8px 30px -6px hsla(12, 76%, 61%, 0.25);
    }
    .btn-primary:hover { background-color: hsl(var(--coral-dark)); transform: translateY(-2px); }
    .btn-secondary {
      background-color: hsl(var(--secondary)); color: hsl(var(--secondary-foreground));
      box-shadow: 0 8px 30px -6px hsla(174, 42%, 41%, 0.25);
    }
    .btn-secondary:hover { background-color: hsl(var(--teal-dark)); transform: translateY(-2px); }
    .btn-full { width: 100%; }

    /* Header */
    .header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 50;
      background-color: hsla(30, 50%, 98%, 0.95); backdrop-filter: blur(12px);
      border-bottom: 1px solid hsl(var(--border));
    }
    .header-inner { display: flex; align-items: center; justify-content: space-between; height: 5rem; }
    .logo img { height: 3.5rem; width: auto; }
    .nav-desktop { display: none; align-items: center; gap: 2rem; }
    @media (min-width: 1024px) { .nav-desktop { display: flex; } }
    .nav-link {
      color: hsla(200, 25%, 20%, 0.8); font-weight: 500; transition: color 0.2s;
      background: none; border: none; cursor: pointer; font-size: 1rem; font-family: inherit;
    }
    .nav-link:hover { color: hsl(var(--primary)); }
    .header-cta { display: none; align-items: center; gap: 1rem; }
    @media (min-width: 1024px) { .header-cta { display: flex; } }
    .phone-link { display: flex; align-items: center; gap: 0.5rem; color: hsl(var(--secondary)); font-weight: 600; }
    .mobile-menu-btn { display: block; padding: 0.5rem; background: none; border: none; cursor: pointer; color: hsl(var(--foreground)); }
    @media (min-width: 1024px) { .mobile-menu-btn { display: none; } }
    .mobile-nav { display: none; padding: 1.5rem 0; border-top: 1px solid hsl(var(--border)); animation: fade-in 0.3s ease-out; }
    .mobile-nav.active { display: block; }
    .mobile-nav-links { display: flex; flex-direction: column; gap: 1rem; }
    .mobile-nav-links .nav-link { padding: 0.5rem 0; text-align: left; }
    .mobile-nav-cta { padding-top: 1rem; margin-top: 1rem; border-top: 1px solid hsl(var(--border)); display: flex; flex-direction: column; gap: 0.75rem; }

    /* Dropdown */
    .nav-dropdown { position: relative; }
    .nav-dropdown-trigger { display: flex; align-items: center; gap: 0.25rem; font-family: inherit; }
    .nav-dropdown-content {
      display: none; position: absolute; top: 100%; left: 0; margin-top: 0.5rem;
      background-color: hsl(var(--background)); border: 1px solid hsl(var(--border));
      border-radius: var(--radius); min-width: 10rem; z-index: 60;
      box-shadow: 0 8px 30px -6px hsla(200, 25%, 20%, 0.12);
    }
    .nav-dropdown-content.active { display: block; }
    .nav-dropdown-item {
      display: block; padding: 0.5rem 1rem; color: hsl(var(--foreground));
      font-weight: 500; font-size: 0.875rem; transition: background-color 0.2s;
    }
    .nav-dropdown-item:hover { background-color: hsl(var(--muted)); }
    .mobile-services-toggle { display: flex; align-items: center; gap: 0.25rem; width: 100%; font-family: inherit; }

    /* Hero */
    .hero-gradient {
      padding: 8rem 0 5rem;
      background: linear-gradient(135deg, hsl(30 50% 98%) 0%, hsl(174 35% 95%) 50%, hsl(12 76% 96%) 100%);
      position: relative; overflow: hidden; text-align: center;
    }
    .hero-gradient .blob1 {
      position: absolute; top: 0; right: 0; width: 24rem; height: 24rem;
      background-color: hsl(var(--coral-light)); border-radius: 50%;
      filter: blur(80px); opacity: 0.3;
    }
    .hero-gradient .blob2 {
      position: absolute; bottom: 0; left: 0; width: 20rem; height: 20rem;
      background-color: hsl(var(--teal-light)); border-radius: 50%;
      filter: blur(80px); opacity: 0.3;
    }
    .hero-gradient .content { position: relative; z-index: 10; }
    .badge { display: inline-block; padding: 0.25rem 1rem; border-radius: 9999px; font-weight: 500; font-size: 0.875rem; margin-bottom: 1rem; }
    .badge-teal { background-color: hsl(var(--teal-light)); color: hsl(var(--secondary)); }
    .hero-gradient h1 { font-size: 2.5rem; font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 1.5rem; }
    @media (min-width: 640px) { .hero-gradient h1 { font-size: 3rem; } }
    @media (min-width: 768px) { .hero-gradient h1 { font-size: 3.75rem; } }
    .hero-gradient p { font-size: 1.125rem; color: hsl(var(--muted-foreground)); max-width: 42rem; margin: 0 auto; }

    /* Contact Bar */
    .contact-bar {
      padding: 2rem 0; background-color: hsl(var(--card));
      border-bottom: 1px solid hsl(var(--border));
    }
    .contact-bar-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
    .contact-bar-item { display: flex; align-items: center; gap: 0.75rem; }
    .contact-bar-icon {
      width: 2.5rem; height: 2.5rem; border-radius: 0.5rem;
      display: flex; align-items: center; justify-content: center;
      transition: transform 0.2s;
    }
    .contact-bar-icon:hover { transform: scale(1.05); }
    .contact-bar-icon.coral { background-color: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
    .contact-bar-icon.teal { background-color: hsl(var(--secondary)); color: hsl(var(--secondary-foreground)); }
    .contact-bar-item span { font-weight: 600; color: hsl(var(--foreground)); }

    /* Section */
    .section { padding: 5rem 0; }
    .section-muted { background-color: hsla(30, 30%, 94%, 0.3); }
    .section-bg { background-color: hsl(var(--background)); }

    /* Form Card */
    .form-card {
      background-color: hsl(var(--card)); border-radius: 1.5rem;
      padding: 2rem; max-width: 48rem; margin: 0 auto;
      box-shadow: 0 8px 30px -6px hsla(200, 25%, 20%, 0.12);
    }
    @media (min-width: 640px) { .form-card { padding: 2.5rem; } }

    .section-icon-title {
      display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem;
      max-width: 48rem; margin-left: auto; margin-right: auto; margin-bottom: 2rem;
    }
    .section-icon {
      width: 3rem; height: 3rem; border-radius: 0.75rem;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .section-icon.teal { background-color: hsl(var(--secondary)); color: hsl(var(--secondary-foreground)); }
    .section-icon.coral { background-color: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
    .section-icon-title h2 { font-size: 1.875rem; font-weight: 700; color: hsl(var(--foreground)); }

    /* Form elements */
    .form-group { margin-bottom: 1.5rem; }
    .form-label {
      display: block; font-size: 0.875rem; font-weight: 600;
      color: hsl(var(--foreground)); margin-bottom: 0.5rem;
    }
    .form-input, .form-textarea {
      width: 100%; padding: 0.75rem 1rem; border: 1px solid hsl(var(--border));
      border-radius: var(--radius); background-color: hsl(var(--background));
      font-family: inherit; font-size: 1rem; color: hsl(var(--foreground));
      transition: border-color 0.2s, box-shadow 0.2s; outline: none;
    }
    .form-input:focus, .form-textarea:focus {
      border-color: hsl(var(--primary));
      box-shadow: 0 0 0 3px hsla(12, 76%, 61%, 0.15);
    }
    .form-input::placeholder, .form-textarea::placeholder { color: hsl(var(--muted-foreground)); }
    .form-input { height: 3rem; }
    .form-textarea { min-height: 8rem; resize: vertical; }
    .form-row { display: grid; gap: 1rem; }
    @media (min-width: 640px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }

    /* Radio */
    .radio-group { display: flex; gap: 1.5rem; flex-wrap: wrap; }
    .radio-label {
      display: flex; align-items: center; gap: 0.5rem; cursor: pointer;
      font-size: 0.9375rem; color: hsl(var(--foreground));
    }
    .radio-label input[type="radio"] {
      width: 1.125rem; height: 1.125rem; accent-color: hsl(var(--primary));
    }

    /* Checkbox */
    .checkbox-label {
      display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer;
      font-size: 0.875rem; color: hsl(var(--foreground));
    }
    .checkbox-label input[type="checkbox"] {
      width: 1rem; height: 1rem; margin-top: 0.125rem; accent-color: hsl(var(--primary)); flex-shrink: 0;
    }

    /* Divider */
    .form-divider { border: none; border-top: 1px solid hsl(var(--border)); margin: 1.5rem 0; }
    .form-sub-heading {
      font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem;
      font-weight: 700; color: hsl(var(--foreground));
      border-bottom: 1px solid hsl(var(--border)); padding-bottom: 0.75rem;
      margin-bottom: 1.5rem;
    }

    /* Privacy box */
    .privacy-box {
      background-color: hsla(30, 30%, 94%, 0.5); border-radius: 1rem;
      padding: 1.5rem;
    }
    .privacy-box h3 {
      font-size: 1.125rem; font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 0.75rem;
    }
    .privacy-box p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-bottom: 1rem; line-height: 1.7; }

    /* Commitment bar */
    .commitment-bar { padding: 3rem 0; background-color: hsl(var(--teal-light)); }
    .commitment-inner { display: flex; align-items: flex-start; gap: 1rem; max-width: 48rem; margin: 0 auto; }
    .commitment-inner svg { flex-shrink: 0; margin-top: 0.25rem; color: hsl(var(--secondary)); }
    .commitment-inner h3 { font-size: 1.25rem; font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 0.5rem; }
    .commitment-inner p { color: hsl(var(--muted-foreground)); }
    .commitment-inner a { color: hsl(var(--secondary)); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
    .commitment-inner a:hover { opacity: 0.8; }

    /* Contact fields animation */
    .contact-fields { display: none; }
    .contact-fields.visible { display: block; animation: fade-in 0.4s ease-out; }

    /* Toast notification */
    .toast {
      position: fixed; bottom: 2rem; right: 2rem; z-index: 100;
      background-color: hsl(var(--card)); border: 1px solid hsl(var(--border));
      border-radius: var(--radius); padding: 1rem 1.5rem;
      box-shadow: 0 8px 30px -6px hsla(200, 25%, 20%, 0.2);
      transform: translateY(100px); opacity: 0; transition: all 0.3s ease;
    }
    .toast.visible { transform: translateY(0); opacity: 1; }
    .toast h4 { font-family: 'Source Sans 3', sans-serif; font-weight: 700; font-size: 0.9375rem; color: hsl(var(--foreground)); }
    .toast p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-top: 0.25rem; }

    /* Footer */
    .footer { background-color: hsl(var(--foreground)); color: hsl(var(--background)); padding: 4rem 0 2rem; }
    .footer-grid { display: grid; gap: 2rem; margin-bottom: 3rem; }
    @media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
    .footer-brand img { height: 2.5rem; margin-bottom: 1rem; filter: brightness(0) invert(1); }
    .footer-brand p { color: hsla(30, 50%, 98%, 0.7); margin-bottom: 0.5rem; }
    .footer-tagline { font-style: italic; color: hsl(var(--primary)); }
    .footer h4 { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; font-family: 'Source Sans 3', sans-serif; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 0.5rem; }
    .footer-links a { color: hsla(30, 50%, 98%, 0.7); transition: color 0.2s; }
    .footer-links a:hover { color: hsl(var(--background)); }
    .footer-contact a { display: flex; align-items: center; gap: 0.5rem; color: hsla(30, 50%, 98%, 0.7); margin-bottom: 0.75rem; transition: color 0.2s; }
    .footer-contact a:hover { color: hsl(var(--background)); }
    .footer-bottom { border-top: 1px solid hsla(30, 50%, 98%, 0.1); padding-top: 2rem; display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between; }
    @media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
    .footer-bottom p { color: hsla(30, 50%, 98%, 0.7); font-size: 0.875rem; }
    .made-with { display: flex; align-items: center; gap: 0.25rem; }
    .heart-icon { color: hsl(var(--primary)); }

    /* Scroll to Top */
    .scroll-to-top {
      position: fixed; bottom: 2rem; right: 2rem;
      width: 3rem; height: 3rem; border-radius: 50%;
      background-color: hsl(var(--secondary)); color: hsl(var(--secondary-foreground));
      border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; visibility: hidden; transition: all 0.3s ease;
      box-shadow: 0 4px 20px -4px hsla(174, 42%, 41%, 0.3); z-index: 40;
    }
    .scroll-to-top.visible { opacity: 1; visibility: visible; }
    .scroll-to-top:hover { transform: translateY(-4px); }