/* --- DESIGN TOKENS & VARIABLES --- */
    :root {
      --primary: #FDA4AF;       /* Soft Rose */
      --secondary: #6EE7B7;     /* Fresh Mint */
      --accent: #1E293B;        /* Slate Dark */
      --bg-light: #FAFAF9;      /* Warm Off-White */
      --bg-card: #FFFFFF;       /* Pure White */
      --text-muted: #3F4E60;    /* Slate Medium (Optimized for WCAG AA Contrast) */
      
      /* Typography */
      --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      --font-size-h1: clamp(2.5rem, 5vw + 1rem, 4rem);
      --font-size-h2: clamp(2rem, 3.5vw + 0.5rem, 2.75rem);
      --font-size-h3: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
      --font-size-body: 1rem;
      --font-size-small: 0.875rem;
      
      /* Layout & Spacing */
      --container-width: 1200px;
      --section-padding: clamp(4rem, 9vw, 7rem);
      --radius-lg: 1.25rem;
      --radius-md: 0.75rem;
      --transition: 250ms cubic-bezier(0.16, 1, 0.3, 1);
      --header-height: 80px;
      --shadow-sm: 0 2px 8px rgba(30, 41, 59, 0.04);
      --shadow-md: 0 10px 30px rgba(30, 41, 59, 0.08);
    }

    /* --- RESET & BASE STYLES --- */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      scroll-margin-top: var(--header-height);
    }

    body {
      font-family: var(--font-sans);
      font-size: var(--font-size-body);
      line-height: 1.6;
      color: var(--accent);
      background-color: var(--bg-light);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* Skip Link */
    .skip-link {
      position: absolute;
      top: -100px;
      left: 20px;
      background: var(--accent);
      color: var(--bg-card);
      padding: 1rem 1.5rem;
      z-index: 9999;
      border-radius: var(--radius-md);
      transition: top var(--transition);
      text-decoration: none;
      font-weight: 600;
    }
    .skip-link:focus,
    .skip-link:focus-visible {
      top: 20px;
      outline: 3px solid var(--primary);
      outline-offset: 2px;
    }

    /* Typography Elements */
    h1, h2, h3 {
      line-height: 1.15;
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    h1 {
      font-size: var(--font-size-h1);
    }

    h2 {
      font-size: var(--font-size-h2);
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    h3 {
      font-size: var(--font-size-h3);
      font-weight: 700;
      margin-bottom: 1rem;
    }

    p {
      color: var(--text-muted);
      margin-bottom: 1.5rem;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    /* --- LAYOUT UTILITIES --- */
    .container {
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 1.5rem;
      width: 100%;
    }

    section {
      padding: var(--section-padding) 0;
      scroll-margin-top: var(--header-height);
    }

    /* --- SIGNATURE DETAIL: Overlapping Offset Borders --- */
    .img-frame {
      position: relative;
      display: inline-block;
      width: 100%;
    }

    .img-frame::after {
      content: '';
      position: absolute;
      top: 16px;
      left: 16px;
      right: -16px;
      bottom: -16px;
      border: 3px solid var(--primary);
      border-radius: var(--radius-lg);
      z-index: -1;
      transition: var(--transition);
    }

    .img-frame--secondary::after {
      border-color: var(--secondary);
    }

    .img-frame:hover::after {
      transform: translate(-6px, -6px);
    }

    .img-frame img {
      border-radius: var(--radius-lg);
      width: 100%;
      height: 100%;
      box-shadow: var(--shadow-md);
    }

    /* --- BUTTONS --- */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.875rem 1.75rem;
      font-weight: 700;
      border-radius: var(--radius-md);
      transition: var(--transition);
      cursor: pointer;
      border: 2px solid transparent;
      text-align: center;
      gap: 0.5rem;
    }

    .btn--primary {
      background-color: var(--accent);
      color: var(--bg-card);
    }

    .btn--primary:hover {
      background-color: var(--primary);
      color: var(--accent);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(253, 164, 175, 0.3);
    }

    .btn--secondary {
      background-color: var(--secondary);
      color: var(--accent);
    }

    .btn--secondary:hover {
      background-color: var(--accent);
      color: var(--bg-card);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(110, 231, 183, 0.3);
    }

    .btn:active {
      transform: translateY(0);
    }

    .btn:focus-visible {
      outline: 3px solid var(--primary);
      outline-offset: 2px;
    }

    /* --- HEADER & NAVIGATION --- */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: var(--header-height);
      background-color: rgba(250, 250, 249, 0.8);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(30, 41, 59, 0.06);
      z-index: 1000;
      display: flex;
      align-items: center;
    }

    .header__container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-size: 1.25rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: var(--transition);
    }

    .logo:focus-visible {
      outline: 3px solid var(--primary);
      outline-offset: 4px;
      border-radius: var(--radius-md);
    }

    .logo__dot {
      width: 10px;
      height: 10px;
      background-color: var(--primary);
      border-radius: 50%;
      display: inline-block;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .nav__list {
      display: flex;
      list-style: none;
      gap: 2rem;
    }

    .nav__link {
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--accent);
      transition: var(--transition);
      position: relative;
    }

    .nav__link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--secondary);
      transition: var(--transition);
    }

    .nav__link:hover::after {
      width: 100%;
    }

    .nav__link:focus-visible {
      outline: 3px solid var(--primary);
      outline-offset: 4px;
      border-radius: 4px;
    }

    .nav__toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      z-index: 1100;
    }

    .nav__toggle:focus-visible {
      outline: 3px solid var(--primary);
      outline-offset: 2px;
    }

    .nav__toggle-box {
      width: 24px;
      height: 18px;
      position: relative;
      display: block;
    }

    .nav__toggle-inner {
      width: 100%;
      height: 2px;
      background-color: var(--accent);
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      transition: var(--transition);
    }

    .nav__toggle-inner::before,
    .nav__toggle-inner::after {
      content: '';
      width: 100%;
      height: 2px;
      background-color: var(--accent);
      position: absolute;
      left: 0;
      transition: var(--transition);
    }

    .nav__toggle-inner::before { top: -8px; }
    .nav__toggle-inner::after { bottom: -8px; }

    /* Mobile Nav Active States */
    .nav__toggle[aria-expanded="true"] .nav__toggle-inner {
      background-color: transparent;
    }
    .nav__toggle[aria-expanded="true"] .nav__toggle-inner::before {
      transform: rotate(45deg);
      top: 0;
    }
    .nav__toggle[aria-expanded="true"] .nav__toggle-inner::after {
      transform: rotate(-45deg);
      bottom: 0;
    }

    /* --- HERO SECTION --- */
    .hero {
      background: radial-gradient(circle at top right, rgba(253, 164, 175, 0.15), rgba(110, 231, 183, 0.15), var(--bg-light));
      padding-top: calc(var(--header-height) + 3rem);
      display: flex;
      align-items: center;
      min-height: 90vh;
    }

    .hero__grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 4rem;
      align-items: center;
    }

    .hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background-color: rgba(110, 231, 183, 0.2);
      color: var(--accent);
      padding: 0.5rem 1rem;
      border-radius: 100px;
      font-size: var(--font-size-small);
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    .hero__badge-dot {
      width: 8px;
      height: 8px;
      background-color: var(--secondary);
      border-radius: 50%;
    }

    .hero__title {
      margin-bottom: 1.5rem;
    }

    .hero__title span {
      background: linear-gradient(120deg, var(--accent) 60%, var(--text-muted));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero__lead {
      font-size: 1.25rem;
      line-height: 1.6;
      margin-bottom: 2.5rem;
    }

    .hero__actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    /* --- ABOUT SECTION --- */
    .about {
      background-color: var(--bg-light);
    }

    .about__grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 5rem;
      align-items: center;
    }

    .about__content {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .about__tagline {
      color: var(--text-muted);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: var(--font-size-small);
      margin-bottom: 0.75rem;
    }

    .about__cert {
      background-color: var(--bg-card);
      border-left: 4px solid var(--secondary);
      padding: 1.5rem;
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
      margin-top: 2rem;
      box-shadow: var(--shadow-sm);
    }

    .about__cert-title {
      font-weight: 700;
      margin-bottom: 0.25rem;
    }

    /* --- SERVICES SECTION (Dark Band Contrast) --- */
    .services {
      background-color: var(--accent);
      color: var(--bg-card);
    }

    .services__header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 4rem auto;
    }

    .services__title {
      color: var(--bg-card);
    }

    .services__lead {
      color: rgba(250, 250, 249, 0.7);
    }

    .services__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2.5rem;
    }

    .service-card {
      background-color: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }

    .service-card:hover {
      transform: translateY(-6px);
      border-color: var(--primary);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

    .service-card__image-container {
      aspect-ratio: 16 / 10;
      overflow: hidden;
      position: relative;
    }

    .service-card__image {
      width: 100%;
      height: 100%;
      transition: var(--transition);
    }

    .service-card:hover .service-card__image {
      transform: scale(1.03);
    }

    .service-card__content {
      padding: 2.25rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .service-card__title {
      color: var(--bg-card);
      margin-bottom: 0.75rem;
    }

    .service-card__text {
      color: rgba(250, 250, 249, 0.7);
      font-size: 0.975rem;
      margin-bottom: 1.5rem;
      flex-grow: 1;
    }

    .service-card__footer {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 700;
      color: var(--secondary);
      font-size: 0.95rem;
      text-decoration: none;
      margin-top: auto;
      width: fit-content;
      transition: var(--transition);
    }

    .service-card__footer:hover {
      color: var(--primary);
    }

    .service-card__footer:focus-visible {
      outline: 2px solid var(--secondary);
      outline-offset: 4px;
      border-radius: 4px;
    }

    .service-card__footer svg {
      transition: var(--transition);
    }

    .service-card:hover .service-card__footer svg {
      transform: translateX(4px);
    }

    /* --- USP / SHOWCASE BAND (Intermediary Section) --- */
    .showcase {
      background-color: var(--bg-card);
      border-bottom: 1px solid rgba(30, 41, 59, 0.05);
    }

    .showcase__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
    }

    .usp-item {
      text-align: center;
      padding: 1rem;
    }

    .usp-item__icon {
      width: 64px;
      height: 64px;
      background-color: rgba(253, 164, 175, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem auto;
      color: var(--accent);
    }

    .usp-item:nth-child(2) .usp-item__icon {
      background-color: rgba(110, 231, 183, 0.15);
    }

    .usp-item__title {
      margin-bottom: 0.75rem;
    }

    /* --- HOURS SECTION --- */
    .hours {
      background-color: rgba(110, 231, 183, 0.08);
    }

    .hours__grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 4rem;
      align-items: center;
    }

    .hours__card {
      background-color: var(--bg-card);
      border-radius: var(--radius-lg);
      padding: 3rem;
      box-shadow: var(--shadow-md);
    }

    .hours__list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .hours__row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 1rem;
      border-bottom: 1px dashed rgba(30, 41, 59, 0.1);
    }

    .hours__row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .hours__day {
      font-weight: 700;
    }

    .hours__time {
      color: var(--text-muted);
      font-weight: 500;
    }

    .hours__time--highlight {
      color: var(--accent);
      font-weight: 700;
      background-color: rgba(253, 164, 175, 0.2);
      padding: 0.25rem 0.75rem;
      border-radius: 100px;
    }

    /* --- CONTACT SECTION --- */
    .contact {
      background-color: var(--bg-light);
    }

    .contact__grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 5rem;
    }

    .contact__info {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .contact__details {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .contact__item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    .contact__icon-box {
      width: 48px;
      height: 48px;
      background-color: var(--bg-card);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-sm);
      color: var(--accent);
      flex-shrink: 0;
    }

    .contact__label {
      font-size: var(--font-size-small);
      color: var(--text-muted);
      text-transform: uppercase;
      font-weight: 700;
      letter-spacing: 0.05em;
    }

    .contact__value {
      font-weight: 700;
      font-size: 1.1rem;
      transition: var(--transition);
    }

    .contact__value:hover {
      color: var(--primary);
    }

    .contact__value:focus-visible {
      outline: 2px solid var(--primary);
      outline-offset: 4px;
      border-radius: 4px;
    }

    /* Form Styling */
    .contact-form {
      background-color: var(--bg-card);
      padding: 3.5rem;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
    }

    .form-group {
      margin-bottom: 1.5rem;
      position: relative;
    }

    .form-label {
      display: block;
      font-weight: 700;
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
      color: var(--accent);
    }

    .form-input,
    .form-textarea {
      width: 100%;
      padding: 1rem 1.25rem;
      border: 2px solid rgba(30, 41, 59, 0.08);
      border-radius: var(--radius-md);
      background-color: var(--bg-light);
      font-family: var(--font-sans);
      font-size: 1rem;
      color: var(--accent);
      transition: var(--transition);
    }

    .form-input:focus,
    .form-textarea:focus,
    .form-input:focus-visible,
    .form-textarea:focus-visible {
      outline: none;
      border-color: var(--primary);
      background-color: var(--bg-card);
      box-shadow: 0 0 0 4px rgba(253, 164, 175, 0.15);
    }

    /* Honeypot */
    .form-hp {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      border: 0;
    }

    /* Form Status States (Platform Contract) */
    .form-status--error {
      color: #EF4444;
      font-weight: 700;
      margin-top: 1rem;
      font-size: var(--font-size-small);
    }

    .form-success {
      background-color: rgba(110, 231, 183, 0.15);
      border: 2px solid var(--secondary);
      padding: 3rem;
      border-radius: var(--radius-lg);
      text-align: center;
    }

    .form-success__title {
      color: var(--accent);
      margin-bottom: 1rem;
    }

    /* --- FAQ SECTION --- */
    .faq {
      background-color: rgba(253, 164, 175, 0.05);
    }

    .faq__container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq__header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .faq__list {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .faq__item {
      background-color: var(--bg-card);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      transition: var(--transition);
    }

    .faq__item[open] {
      box-shadow: var(--shadow-md);
    }

    .faq__summary {
      padding: 1.5rem 2rem;
      font-weight: 700;
      font-size: 1.1rem;
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
      transition: var(--transition);
    }

    .faq__summary:focus-visible {
      outline: 3px solid var(--primary);
      outline-offset: -2px;
      border-radius: var(--radius-md);
    }

    .faq__summary::-webkit-details-marker {
      display: none;
    }

    .faq__icon {
      width: 24px;
      height: 24px;
      transition: transform var(--transition);
      color: var(--primary);
      flex-shrink: 0;
    }

    .faq__item[open] .faq__icon {
      transform: rotate(45deg);
    }

    .faq__content {
      padding: 0 2rem 2rem 2rem;
      color: var(--text-muted);
      border-top: 1px solid rgba(30, 41, 59, 0.05);
      padding-top: 1.5rem;
    }

    /* --- FOOTER --- */
    .footer {
      background-color: var(--accent);
      color: var(--bg-card);
      padding: 5rem 0 2.5rem 0;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer__grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 4rem;
      margin-bottom: 4rem;
    }

    .footer__brand {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .footer__lead {
      color: rgba(250, 250, 249, 0.7);
      font-size: 0.95rem;
      max-width: 320px;
    }

    .footer__title {
      color: var(--bg-card);
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
    }

    .footer__title::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 30px;
      height: 2px;
      background-color: var(--primary);
    }

    .footer__links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .footer__link {
      color: rgba(250, 250, 249, 0.7);
      transition: var(--transition);
      font-size: 0.95rem;
      display: inline-block;
      width: fit-content;
    }

    .footer__link:hover {
      color: var(--secondary);
      transform: translateX(4px);
    }

    .footer__link:focus-visible {
      outline: 2px solid var(--secondary);
      outline-offset: 4px;
      border-radius: 4px;
      color: var(--secondary);
    }

    .footer__bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1.5rem;
      color: rgba(250, 250, 249, 0.5);
      font-size: var(--font-size-small);
    }

    .footer__legal {
      display: flex;
      gap: 2rem;
    }

    .footer__legal-link {
      transition: var(--transition);
    }

    .footer__legal-link:hover {
      color: var(--secondary);
    }

    .footer__legal-link:focus-visible {
      outline: 2px solid var(--secondary);
      outline-offset: 4px;
      border-radius: 4px;
      color: var(--secondary);
    }

    /* --- RESPONSIVE MEDIA QUERIES --- */
    @media (max-width: 1024px) {
      .hero__grid,
      .about__grid,
      .hours__grid,
      .contact__grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
      }

      .hero {
        padding-top: calc(var(--header-height) + 1.5rem);
        min-height: auto;
      }

      .hero__content {
        text-align: center;
      }

      .hero__actions {
        justify-content: center;
      }

      .img-frame {
        max-width: 550px;
        margin: 0 auto;
      }

      .about__content {
        order: -1;
      }

      .services__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .showcase__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

    @media (max-width: 768px) {
      .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--bg-light);
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), opacity 300ms;
        z-index: 999;
      }

      .nav--active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
      }

      .nav__list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
      }

      .nav__link {
        font-size: 1.5rem;
      }

      .nav__toggle {
        display: block;
      }

      .contact-form {
        padding: 2rem;
      }

      .footer__grid {
        grid-template-columns: 1fr;
      }
    }

    /* --- MOTION REDUCTION --- */
    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }