/* --------------------------------------------------------------------------
       DESIGN TOKENS & VARIABLES
       -------------------------------------------------------------------------- */
    :root {
      --primary-accent: #C4B5FD; /* Lavender */
      --secondary-accent: #FDA4AF; /* Rose */
      --dark-neutral: #111827; /* Off-Black */
      --light-neutral: #F9FAFB; /* Soft Off-White */
      --card-bg: #FFFFFF;
      
      --border-width: 3px;
      --radius: 12px;
      --shadow: 5px 5px 0px 0px var(--dark-neutral);
      --shadow-hover: 8px 8px 0px 0px var(--dark-neutral);
      
      --font-stack: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      --container-width: 1200px;
      --header-height: 80px;
    }

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

    html {
      scroll-behavior: smooth;
      font-family: var(--font-stack);
      background-color: var(--light-neutral);
      color: var(--dark-neutral);
    }

    body {
      font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem); /* Fluid body text */
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Skip Link for Accessibility */
    .skip-link {
      position: absolute;
      top: -100px;
      left: 1.5rem;
      background: var(--secondary-accent);
      color: var(--dark-neutral);
      padding: 1rem 1.5rem;
      border: var(--border-width) solid var(--dark-neutral);
      font-weight: 700;
      z-index: 9999;
      text-decoration: none;
      box-shadow: var(--shadow);
      transition: top 0.2s ease;
    }
    .skip-link:focus-visible {
      top: 1.5rem;
      outline: 3px solid var(--dark-neutral);
      outline-offset: 4px;
    }

    /* Typography Scale */
    h1, h2, h3, h4 {
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -0.03em;
      text-transform: uppercase;
    }

    h1 {
      font-size: clamp(2.5rem, 5vw + 1rem, 4.25rem);
    }

    h2 {
      font-size: clamp(2rem, 4vw + 0.5rem, 3rem);
      margin-bottom: 2.5rem;
      position: relative;
      display: inline-block;
    }

    h2::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 60px;
      height: 6px;
      background-color: var(--secondary-accent);
      border: 2px solid var(--dark-neutral);
    }

    h3 {
      font-size: clamp(1.35rem, 2vw + 0.5rem, 1.75rem);
      margin-bottom: 1rem;
    }

    p {
      margin-bottom: 1.5rem;
    }

    p:last-child {
      margin-bottom: 0;
    }

    a {
      color: inherit;
      transition: color 0.2s ease, outline 0.1s ease;
    }

    /* Focus styling */
    *:focus-visible {
      outline: 3px solid var(--dark-neutral);
      outline-offset: 4px;
    }

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

    section {
      padding: clamp(4rem, 8vw, 8rem) 0;
      scroll-margin-top: var(--header-height);
    }

    /* Section Background Alternation */
    .section--white {
      background-color: var(--card-bg);
    }

    .section--tinted {
      background-color: var(--light-neutral);
    }

    /* --------------------------------------------------------------------------
       COMPONENTS
       -------------------------------------------------------------------------- */
    
    /* Buttons (Neo-Brutalist) */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1rem 2rem;
      font-weight: 800;
      text-transform: uppercase;
      text-decoration: none;
      border: var(--border-width) solid var(--dark-neutral);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      background-color: var(--secondary-accent);
      color: var(--dark-neutral);
      cursor: pointer;
      transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
      font-size: 1rem;
      letter-spacing: -0.01em;
    }

    .btn:hover, .btn:focus-visible {
      transform: translate(-3px, -3px);
      box-shadow: var(--shadow-hover);
    }

    .btn:focus-visible {
      outline: 3px solid var(--dark-neutral);
      outline-offset: 4px;
    }

    .btn:active {
      transform: translate(1px, 1px);
      box-shadow: 2px 2px 0px 0px var(--dark-neutral);
    }

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

    .btn--secondary {
      background-color: transparent;
    }

    .btn--secondary:hover, .btn--secondary:focus-visible {
      background-color: var(--primary-accent);
    }

    /* Cards (Neo-Brutalist) */
    .card {
      background-color: var(--card-bg);
      border: var(--border-width) solid var(--dark-neutral);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 2.5rem;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .card:hover, .card:focus-within {
      transform: translate(-4px, -4px);
      box-shadow: var(--shadow-hover);
    }

    /* Badges */
    .badge {
      display: inline-block;
      padding: 0.35rem 0.85rem;
      background-color: var(--primary-accent);
      border: 2px solid var(--dark-neutral);
      border-radius: 6px;
      font-weight: 800;
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 1.25rem;
    }

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

    /* Image Wrapper with Offset Shadow (Signature Detail) */
    .image-frame {
      position: relative;
      display: inline-block;
      width: 100%;
    }

    .image-frame img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      border: var(--border-width) solid var(--dark-neutral);
      border-radius: var(--radius);
    }

    .image-frame::after {
      content: '';
      position: absolute;
      top: 12px;
      left: 12px;
      width: 100%;
      height: 100%;
      border: var(--border-width) solid var(--dark-neutral);
      border-radius: var(--radius);
      z-index: -1;
      background-color: var(--primary-accent);
      transition: transform 0.2s ease;
    }

    .image-frame--rose::after {
      background-color: var(--secondary-accent);
    }

    .image-frame:hover::after {
      transform: translate(4px, 4px);
    }

    /* --------------------------------------------------------------------------
       HEADER & NAVIGATION
       -------------------------------------------------------------------------- */
    .header {
      position: sticky;
      top: 0;
      z-index: 1000;
      height: var(--header-height);
      background-color: rgba(249, 250, 251, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: var(--border-width) solid var(--dark-neutral);
      display: flex;
      align-items: center;
    }

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

    .logo {
      font-family: var(--font-stack);
      font-weight: 900;
      font-size: 1.5rem;
      text-decoration: none;
      color: var(--dark-neutral);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

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

    .logo__badge {
      background-color: var(--secondary-accent);
      border: 2px solid var(--dark-neutral);
      padding: 0.15rem 0.4rem;
      font-size: 0.75rem;
      font-weight: 900;
      border-radius: 4px;
    }

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

    .nav__link {
      text-decoration: none;
      font-weight: 700;
      color: var(--dark-neutral);
      font-size: 1rem;
      position: relative;
      padding: 0.25rem 0;
    }

    .nav__link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background-color: var(--primary-accent);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.2s ease;
    }

    .nav__link:hover::after, .nav__link:focus-visible::after {
      transform: scaleX(1);
      transform-origin: left;
    }

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

    /* Mobile Nav Toggle */
    .nav-toggle {
      display: none;
      background: none;
      border: var(--border-width) solid var(--dark-neutral);
      border-radius: 8px;
      padding: 0.5rem;
      cursor: pointer;
      box-shadow: 3px 3px 0px var(--dark-neutral);
      transition: transform 0.1s ease, box-shadow 0.1s ease;
    }

    .nav-toggle:hover, .nav-toggle:focus-visible {
      background-color: var(--primary-accent);
    }

    .nav-toggle:focus-visible {
      outline: 3px solid var(--dark-neutral);
      outline-offset: 4px;
    }

    .nav-toggle:active {
      transform: translate(1px, 1px);
      box-shadow: 1px 1px 0px var(--dark-neutral);
    }

    .nav-toggle svg {
      display: block;
      width: 24px;
      height: 24px;
      fill: var(--dark-neutral);
    }

    /* --------------------------------------------------------------------------
       HERO SECTION
       -------------------------------------------------------------------------- */
    .hero {
      background-color: var(--primary-accent);
      border-bottom: var(--border-width) solid var(--dark-neutral);
      padding: clamp(3rem, 6vw, 6rem) 0;
    }

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

    .hero__content {
      max-width: 650px;
    }

    .hero__title {
      margin-bottom: 1.5rem;
    }

    .hero__subline {
      font-size: clamp(1.125rem, 1.5vw, 1.35rem);
      font-weight: 600;
      margin-bottom: 2.5rem;
      line-height: 1.5;
    }

    .hero__ctas {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .hero__image-container {
      position: relative;
    }

    /* --------------------------------------------------------------------------
       ABOUT SECTION
       -------------------------------------------------------------------------- */
    .about__grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 4rem;
      align-items: center;
    }

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

    .about__quote {
      margin-top: 2rem;
      padding-left: 1.5rem;
      border-left: 4px solid var(--secondary-accent);
      font-style: italic;
      font-weight: 600;
    }

    /* --------------------------------------------------------------------------
       SERVICES SECTION
       -------------------------------------------------------------------------- */
    .services__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
      margin-top: 3rem;
    }

    .services__card {
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .services__img-wrapper {
      margin-bottom: 2rem;
    }

    .services__img-wrapper img {
      aspect-ratio: 16/10;
    }

    .services__features {
      list-style: none;
      margin: 1.5rem 0 2rem 0;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .services__features li {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-weight: 600;
    }

    .services__features svg {
      flex-shrink: 0;
      color: var(--dark-neutral);
    }

    .services__card .btn {
      margin-top: auto;
      align-self: flex-start;
    }

    /* --------------------------------------------------------------------------
       PROCESS / WORKFLOW SECTION
       -------------------------------------------------------------------------- */
    .process {
      background-color: var(--dark-neutral);
      color: var(--light-neutral);
      border-top: var(--border-width) solid var(--dark-neutral);
      border-bottom: var(--border-width) solid var(--dark-neutral);
    }

    .process h2 {
      color: var(--light-neutral);
    }

    .process h2::after {
      background-color: var(--primary-accent);
      border-color: var(--light-neutral);
    }

    .process__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
      margin-top: 4rem;
    }

    .process__step {
      position: relative;
      background-color: rgba(255, 255, 255, 0.05);
      border: 2px solid rgba(255, 255, 255, 0.2);
      border-radius: var(--radius);
      padding: 2.5rem;
      transition: border-color 0.2s ease;
    }

    .process__step:hover {
      border-color: var(--primary-accent);
    }

    .process__number {
      position: absolute;
      top: -25px;
      left: 25px;
      background-color: var(--primary-accent);
      color: var(--dark-neutral);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: var(--border-width) solid var(--light-neutral);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 1.5rem;
    }

    .process__step h3 {
      margin-top: 0.5rem;
      color: var(--light-neutral);
    }

    /* --------------------------------------------------------------------------
       HOURS SECTION
       -------------------------------------------------------------------------- */
    .hours__container {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    .hours__table-wrapper {
      margin-top: 3rem;
      border: var(--border-width) solid var(--dark-neutral);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
      background-color: var(--card-bg);
    }

    .hours__table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }

    .hours__table th, .hours__table td {
      padding: 1.25rem 2rem;
      border-bottom: 2px solid var(--dark-neutral);
    }

    .hours__table tr:last-child th, .hours__table tr:last-child td {
      border-bottom: none;
    }

    .hours__table th {
      background-color: var(--primary-accent);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .hours__table td {
      font-weight: 600;
    }

    .hours__note {
      margin-top: 2rem;
      font-weight: 700;
      display: inline-block;
      padding: 0.5rem 1rem;
      background-color: var(--secondary-accent);
      border: 2px solid var(--dark-neutral);
      border-radius: 6px;
    }

    /* --------------------------------------------------------------------------
       FAQ SECTION
       -------------------------------------------------------------------------- */
    .faq__container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq__list {
      margin-top: 3rem;
    }

    details {
      border: var(--border-width) solid var(--dark-neutral);
      border-radius: var(--radius);
      background-color: var(--card-bg);
      box-shadow: var(--shadow);
      margin-bottom: 1.5rem;
      overflow: hidden;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    details:hover, details:focus-within {
      transform: translate(-2px, -2px);
      box-shadow: var(--shadow-hover);
    }

    details[open] {
      transform: translate(-2px, -2px);
      box-shadow: var(--shadow-hover);
    }

    summary {
      padding: 1.5rem;
      font-weight: 800;
      font-size: 1.2rem;
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
      transition: background-color 0.2s ease;
    }

    summary:hover, summary:focus-visible {
      background-color: rgba(196, 181, 253, 0.15);
    }

    summary:focus-visible {
      outline: 3px solid var(--dark-neutral);
      outline-offset: -4px;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary::after {
      content: '+';
      font-size: 1.75rem;
      font-weight: 900;
      transition: transform 0.2s ease;
      line-height: 1;
    }

    details[open] summary::after {
      transform: rotate(45deg);
    }

    .faq__answer {
      padding: 1.5rem;
      border-top: 2px solid var(--dark-neutral);
      background-color: var(--light-neutral);
      line-height: 1.6;
    }

    /* --------------------------------------------------------------------------
       CONTACT SECTION
       -------------------------------------------------------------------------- */
    .contact {
      background-color: var(--secondary-accent);
      border-top: var(--border-width) solid var(--dark-neutral);
      border-bottom: var(--border-width) solid var(--dark-neutral);
    }

    .contact h2::after {
      background-color: var(--primary-accent);
    }

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

    .contact__info {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

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

    .contact__icon {
      background-color: var(--primary-accent);
      border: 2px solid var(--dark-neutral);
      padding: 0.75rem;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .contact__icon svg {
      width: 24px;
      height: 24px;
      stroke: var(--dark-neutral);
    }

    .contact__method-details h3 {
      margin-bottom: 0.25rem;
    }

    .contact__method-details p {
      font-weight: 600;
    }

    /* Contact Form Contract */
    .contact__form-container {
      background-color: var(--card-bg);
      border: var(--border-width) solid var(--dark-neutral);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 3rem;
    }

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

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .form-group label {
      font-weight: 800;
      text-transform: uppercase;
      font-size: 0.875rem;
      letter-spacing: 0.05em;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 1rem;
      border: var(--border-width) solid var(--dark-neutral);
      border-radius: 8px;
      font-family: var(--font-stack);
      font-size: 1rem;
      font-weight: 600;
      background-color: var(--light-neutral);
      transition: border-color 0.15s ease, box-shadow 0.15s ease;
    }

    .form-group input:hover,
    .form-group textarea:hover {
      border-color: var(--primary-accent);
    }

    .form-group input:focus-visible,
    .form-group textarea:focus-visible {
      outline: 3px solid var(--dark-neutral);
      outline-offset: 2px;
      border-color: var(--dark-neutral);
    }

    /* Honeypot hidden field */
    .hidden-honeypot {
      position: absolute;
      overflow: hidden;
      width: 0;
      height: 0;
      pointer-events: none;
    }

    /* Form Status and Success states */
    .form-status--error {
      color: #DC2626;
      font-weight: 700;
      margin-top: 1rem;
      padding: 1rem;
      border: 2px solid var(--dark-neutral);
      background-color: #FEE2E2;
      border-radius: var(--radius);
    }

    .form-success {
      background-color: var(--primary-accent);
      border: var(--border-width) solid var(--dark-neutral);
      padding: 3rem;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      text-align: center;
    }

    .form-success h3 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    /* --------------------------------------------------------------------------
       FOOTER
       -------------------------------------------------------------------------- */
    .footer {
      background-color: var(--dark-neutral);
      color: var(--light-neutral);
      padding: 5rem 0 3rem 0;
    }

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

    .footer__brand h2 {
      color: var(--light-neutral);
      margin-bottom: 1.5rem;
    }

    .footer__brand h2::after {
      background-color: var(--primary-accent);
      border-color: var(--light-neutral);
    }

    .footer__col h3 {
      color: var(--light-neutral);
      margin-bottom: 1.5rem;
      font-size: 1.2rem;
    }

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

    .footer__links a {
      color: rgba(255, 255, 255, 0.75);
      text-decoration: none;
      font-weight: 600;
      transition: color 0.2s ease;
    }

    .footer__links a:hover {
      color: var(--primary-accent);
    }

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

    .footer__bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1.5rem;
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.6);
    }

    /* --------------------------------------------------------------------------
       RESPONSIVE DESIGN (MEDIA QUERIES)
       -------------------------------------------------------------------------- */
    @media (max-width: 1024px) {
      .hero__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
      }

      .hero__content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .hero__ctas {
        justify-content: center;
      }

      .hero__image-container {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
      }

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

      .about__image-container {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
        order: 2;
      }

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

      .process__grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
      }

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

    @media (max-width: 768px) {
      .nav {
        display: none; /* Mobile menu hidden by default */
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--light-neutral);
        border-bottom: var(--border-width) solid var(--dark-neutral);
        padding: 2rem 1.5rem;
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      }

      .nav--open {
        display: flex;
      }

      .nav-toggle {
        display: block;
      }

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

    /* Motion preferences */
    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }