/* Generated from selected Astro <style> blocks for shared layout and 10DLC evidence pages. */

/* Source: src/layouts/BaseLayout.astro */
:root {
        --cream: #fdfbf7;
        --warm: #f4f0ea;
        --warm-2: #e8e0d4;
        --sand: #d6c8b5;
        --ink: #1c1915;
        --body: #48433d;
        --muted: #6b6460;
        --soft: #fffaf1;
        --navy: #1f232d;
        --navy-2: #262d3e;
        --blue: #3579b8;
        --blue-dark: #2562a0;
        --blue-soft: #e4f0fb;
        --lake: #8eb5dc;
        --green: #687d61;
        --amber: #d97706;
        --border: #ded6ca;
        --white: #ffffff;
        --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
        --sans: "Aptos", "Segoe UI", Roboto, "Helvetica Neue", Arial, system-ui, sans-serif;
        --max: 1180px;
        --r: 8px;
        --shadow: 0 18px 50px rgba(28, 25, 21, 0.11);
        --motion-ease: cubic-bezier(0.16, 1, 0.3, 1);
        --motion-slow: 920ms;
        --motion-medium: 620ms;
        --motion-distance: 46px;
      }

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

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        font-family: var(--sans);
        color: var(--body);
        background: var(--cream);
        line-height: 1.68;
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
      }

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

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

      :where(a, button, input, textarea, select, summary):focus-visible {
        outline: 3px solid rgba(123, 165, 200, 0.92);
        outline-offset: 4px;
      }

      button,
      input,
      textarea,
      select {
        font: inherit;
      }

      h1,
      h2,
      h3,
      h4,
      p,
      ul,
      ol,
      figure,
      blockquote {
        margin: 0;
      }

      ul,
      ol {
        padding: 0;
      }

      li {
        list-style: none;
      }

      h1,
      h2,
      h3 {
        font-family: var(--serif);
        color: var(--ink);
        line-height: 1.08;
        letter-spacing: 0;
        text-wrap: balance;
      }

      p {
        text-wrap: pretty;
      }

      h1 {
        font-size: clamp(2.35rem, 6vw, 5rem);
        font-weight: 800;
      }

      h2 {
        font-size: clamp(2rem, 4vw, 3.35rem);
        font-weight: 760;
      }

      h3 {
        font-size: clamp(1.2rem, 2vw, 1.45rem);
        font-weight: 700;
      }

      .skip-link {
        position: fixed;
        left: 16px;
        top: 12px;
        z-index: 999;
        transform: translateY(-140%);
        background: var(--navy);
        color: var(--white);
        padding: 10px 14px;
        border-radius: var(--r);
      }

      .skip-link:focus {
        transform: translateY(0);
      }

      .btn:focus-visible,
      .brand:focus-visible,
      .nav-utility-link:focus-visible,
      .nav-phone:focus-visible,
      .desktop-nav a:focus-visible,
      .mobile-nav a:focus-visible,
      .breadcrumbs a:focus-visible,
      .footer a:focus-visible,
      .link-arrow:focus-visible {
        outline-color: rgba(62, 122, 168, 0.96);
      }

      .container {
        width: min(var(--max), calc(100% - 40px));
        margin-inline: auto;
      }

      .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
      }

      .section {
        padding: clamp(72px, 9vw, 128px) 0;
      }

      .section-compact {
        padding: clamp(52px, 7vw, 88px) 0;
      }

      .section-muted {
        background: var(--warm);
      }

      .section-dark {
        background: var(--navy);
        color: rgba(255, 255, 255, 0.72);
      }

      .section-dark h1,
      .section-dark h2,
      .section-dark h3 {
        color: var(--white);
      }

      .section-dark .kicker,
      .cta-panel .kicker {
        color: #a9d2ef;
      }

      .section-head {
        display: grid;
        gap: 16px;
        max-width: 760px;
        margin-bottom: 36px;
      }

      .section-head.center {
        margin-inline: auto;
        text-align: center;
      }

      .section-copy {
        font-size: clamp(1rem, 1.5vw, 1.12rem);
        color: var(--muted);
        max-width: 64ch;
        line-height: 1.78;
      }

      .section-dark .section-copy {
        color: rgba(255, 255, 255, 0.68);
      }

      .section-head.center .section-copy {
        margin-inline: auto;
      }

      .kicker {
        display: inline-flex;
        width: fit-content;
        color: var(--blue-dark);
        font-size: 0.76rem;
        font-weight: 800;
        letter-spacing: 0.11em;
        text-transform: uppercase;
      }

      .btn {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        border-radius: var(--r);
        border: 1px solid transparent;
        padding: 0 20px;
        font-weight: 760;
        line-height: 1;
        white-space: nowrap;
        transition:
          background 220ms ease,
          color 220ms ease,
          border-color 220ms ease,
          box-shadow 220ms ease,
          transform 220ms ease;
      }

      .btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 14px 26px rgba(28, 38, 57, 0.13);
      }

      .btn-primary {
        background: var(--blue);
        color: var(--white);
      }

      .btn-primary:hover {
        background: var(--blue-dark);
      }

      .btn-dark {
        background: var(--navy);
        color: var(--white);
      }

      .btn-dark:hover {
        background: var(--navy-2);
      }

      .btn-light {
        background: var(--white);
        color: var(--navy);
      }

      .btn-outline {
        border-color: rgba(255, 255, 255, 0.5);
        color: var(--white);
      }

      .btn-outline-dark {
        border-color: var(--border);
        color: var(--ink);
      }

      .btn svg {
        width: 18px;
        height: 18px;
        flex: 0 0 auto;
      }

      .site-header {
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(253, 251, 247, 0.94);
        border-bottom: 1px solid rgba(222, 214, 202, 0.84);
        backdrop-filter: blur(16px);
      }

      .nav {
        min-height: 76px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
      }

      .brand {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        color: var(--ink);
        min-width: 0;
      }

      .brand-name {
        font-family: var(--serif);
        font-weight: 800;
        font-size: 1.06rem;
        white-space: nowrap;
      }

      .brand-mark {
        width: 40px;
        height: 40px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--lake);
        padding: 7px;
        flex: 0 0 auto;
      }

      .brand-mark svg {
        width: 100%;
        height: auto;
      }

      .desktop-nav {
        display: flex;
        align-items: center;
        gap: 4px;
      }

      .desktop-nav a {
        border-radius: var(--r);
        padding: 8px 8px;
        color: var(--muted);
        font-size: 0.8rem;
        font-weight: 700;
      }

      .desktop-nav a:hover {
        background: var(--warm);
        color: var(--ink);
      }

      .nav-actions {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .nav-quicklinks {
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .nav-utility-link {
        display: inline-flex;
        align-items: center;
        min-height: 42px;
        border: 1px solid var(--border);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.78);
        padding: 0 12px;
        color: var(--body);
        font-size: 0.8rem;
        font-weight: 760;
        line-height: 1;
        white-space: nowrap;
        transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
      }

      .nav-utility-link:hover {
        color: var(--ink);
        background: var(--white);
        border-color: rgba(37, 98, 160, 0.22);
      }

      .nav-location {
        color: var(--blue-dark);
      }

      .nav-location-mobile {
        display: none;
      }

      .nav-phone {
        font-weight: 820;
      }

      .menu-toggle {
        display: none;
        width: 42px;
        height: 42px;
        border: 1px solid var(--border);
        border-radius: var(--r);
        background: var(--white);
        color: var(--ink);
        align-items: center;
        justify-content: center;
        cursor: pointer;
      }

      .menu-toggle span,
      .menu-toggle::before,
      .menu-toggle::after {
        content: "";
        width: 18px;
        height: 2px;
        border-radius: 2px;
        background: currentColor;
        position: absolute;
        transition: transform 180ms ease, opacity 180ms ease;
      }

      .menu-toggle::before {
        transform: translateY(-6px);
      }

      .menu-toggle::after {
        transform: translateY(6px);
      }

      .menu-toggle[aria-expanded="true"] span {
        opacity: 0;
      }

      .menu-toggle[aria-expanded="true"]::before {
        transform: rotate(45deg);
      }

      .menu-toggle[aria-expanded="true"]::after {
        transform: rotate(-45deg);
      }

      .mobile-nav {
        display: none;
        border-top: 1px solid var(--border);
        background: var(--cream);
      }

      .mobile-nav-inner {
        width: min(var(--max), calc(100% - 40px));
        margin-inline: auto;
        display: grid;
        gap: 8px;
        padding: 18px 0 22px;
      }

      .mobile-nav a:not(.btn) {
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
        color: var(--body);
        font-weight: 740;
      }

      .breadcrumb-wrap {
        background: var(--warm);
        border-bottom: 1px solid var(--border);
      }

      .breadcrumbs {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 12px 0;
        font-size: 0.86rem;
        color: var(--muted);
      }

      .breadcrumbs a:hover {
        color: var(--ink);
      }

      .eyebrow-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
      }

      .pill {
        display: inline-flex;
        align-items: center;
        min-height: 32px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.74);
        border: 1px solid rgba(222, 214, 202, 0.86);
        padding: 0 12px;
        color: var(--body);
        font-size: 0.84rem;
        font-weight: 740;
      }

      .section-dark .pill {
        background: rgba(255, 255, 255, 0.09);
        border-color: rgba(255, 255, 255, 0.18);
        color: rgba(255, 255, 255, 0.78);
      }

      .image-frame {
        overflow: hidden;
        border-radius: var(--r);
        background: var(--warm-2);
        box-shadow: var(--shadow);
      }

      .image-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .motion-enabled .motion-reveal {
        opacity: 0;
        transform: translate3d(0, var(--motion-distance), 0) scale(0.985);
        transition:
          opacity var(--motion-slow) var(--motion-ease),
          transform var(--motion-slow) var(--motion-ease);
        transition-delay: var(--motion-delay, 0ms);
        will-change: opacity, transform;
      }

      .motion-enabled .motion-reveal[data-motion="fade"] {
        transform: translate3d(0, 16px, 0) scale(0.995);
      }

      .motion-enabled .motion-reveal[data-motion="down"] {
        transform: translate3d(0, -38px, 0) scale(0.985);
      }

      .motion-enabled .motion-reveal[data-motion="left"] {
        transform: translate3d(-54px, 0, 0) scale(0.985);
      }

      .motion-enabled .motion-reveal[data-motion="right"] {
        transform: translate3d(54px, 0, 0) scale(0.985);
      }

      .motion-enabled .motion-reveal[data-motion="soft-scale"] {
        transform: translate3d(0, 22px, 0) scale(0.945);
      }

      .motion-enabled .motion-reveal.is-visible {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        will-change: auto;
      }

      .motion-enabled .motion-reveal.is-visible:hover {
        transform: var(--motion-hover-transform, translate3d(0, 0, 0) scale(1));
      }

      .motion-enabled .image-frame.motion-reveal img {
        transform: scale(1.075);
        transition: transform 1350ms var(--motion-ease);
      }

      .motion-enabled .image-frame.motion-reveal.is-visible img {
        transform: scale(1);
      }

      [class$="-hero-extra"],
      .service-hero-extra {
        display: block;
        max-width: 60ch;
        padding: 15px 18px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: var(--r);
        background: rgba(255, 255, 255, 0.08);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
      }

      .card-grid {
        display: grid;
        gap: 18px;
      }

      .card {
        display: grid;
        gap: 14px;
        border: 1px solid var(--border);
        border-radius: var(--r);
        background: var(--white);
        padding: 22px;
      }

      .card h3 a:hover {
        color: var(--blue-dark);
      }

      .link-arrow {
        color: var(--blue-dark);
        font-size: 0.9rem;
        font-weight: 820;
      }

      .cta-panel {
        display: grid;
        gap: 20px;
        align-items: center;
        border-radius: var(--r);
        background: var(--navy);
        color: rgba(255, 255, 255, 0.9);
        padding: clamp(28px, 5vw, 48px);
      }

      .cta-panel h2 {
        color: var(--white);
      }

      .cta-panel-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
      }

      .footer {
        background: var(--ink);
        color: rgba(255, 255, 255, 0.66);
      }

      .footer-inner {
        display: grid;
        gap: 28px;
        padding: 48px 0;
      }

      .footer-grid {
        display: grid;
        gap: 24px;
      }

      .footer h2,
      .footer h3,
      .footer-heading {
        color: var(--white);
      }

      .footer h2 {
        font-size: 1.8rem;
      }

      .footer h3,
      .footer-heading {
        font-family: var(--sans);
        font-size: 0.9rem;
        font-weight: 780;
        text-transform: uppercase;
      }

      .footer a:hover {
        color: var(--white);
      }

      .social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 14px;
      }

      .footer-affiliation {
        display: grid;
        margin-top: 16px;
      }

      .footer-affiliation-badge {
        display: inline-flex;
        width: fit-content;
        max-width: min(100%, 240px);
        padding: 8px 12px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(214, 200, 181, 0.22);
      }

      .footer-affiliation-badge img {
        width: 100%;
        height: auto;
        object-fit: contain;
      }

      .social-links a {
        display: inline-flex;
        align-items: center;
        min-height: 34px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 999px;
        padding: 0 12px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.9rem;
        font-weight: 720;
      }

      .footer-list {
        display: grid;
        gap: 6px;
      }

      .fine-print {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        padding-top: 18px;
        color: rgba(255, 255, 255, 0.60);
        font-size: 0.82rem;
      }

      @media (min-width: 720px) {
        .card-grid.two {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .card-grid.three {
          grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .cta-panel {
          grid-template-columns: 1fr auto;
        }

        .footer-grid {
          grid-template-columns: 1.2fr 0.85fr 0.75fr 0.95fr;
        }
      }

      @media (max-width: 1120px) {
        .desktop-nav,
        .nav-phone,
        .nav-actions .btn {
          display: none;
        }

        .nav-quicklinks {
          display: none;
        }

        .nav-location-mobile {
          display: inline-flex;
        }

        .menu-toggle {
          display: inline-flex;
          position: relative;
        }

        .mobile-nav[data-open="true"] {
          display: block;
        }
      }

      @media (max-width: 640px) {
        .container,
        .mobile-nav-inner {
          width: min(var(--max), calc(100% - 28px));
        }

        .nav {
          min-height: 68px;
          gap: 10px;
        }

        .nav-location-mobile {
          display: none;
        }

        .brand {
          min-width: 0;
        }

        .brand-name {
          overflow: hidden;
          text-overflow: ellipsis;
        }

        .nav-actions {
          margin-left: 0;
          flex: 0 0 auto;
        }

        .nav-utility-link {
          min-height: 38px;
          padding: 0 10px;
          font-size: 0.74rem;
        }

        .brand {
          gap: 10px;
        }

        .brand-name {
          font-size: 0.98rem;
        }

        .brand-mark {
          width: 36px;
          height: 36px;
        }

        .section {
          padding: 64px 0;
        }

        .btn {
          width: 100%;
        }

        .cta-panel-actions {
          width: 100%;
        }
      }

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

        .motion-enabled .motion-reveal,
        .motion-enabled .image-frame.motion-reveal img {
          animation: none !important;
          opacity: 1 !important;
          transform: none !important;
          transition: none !important;
        }
      }

/* Source: src/components/PatientServiceForm.astro */
.patient-service-form {
    display: grid;
    gap: 18px;
    border: 1px solid var(--border);
    border-radius: var(--r);
    background: var(--white);
    padding: clamp(22px, 4vw, 32px);
    box-shadow: 0 16px 34px rgba(28, 25, 21, 0.05);
  }

  .hp-field {
    display: none;
  }

  .form-head {
    display: grid;
    gap: 10px;
    max-width: 720px;
  }

  .form-head p:not(.kicker),
  .form-actions p {
    color: var(--muted);
    line-height: 1.68;
  }

  .form-grid {
    display: grid;
    gap: 14px;
  }

  .field {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-weight: 760;
  }

  .field input,
  .field select,
  .field textarea {
    align-self: start;
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--border);
    border-radius: var(--r);
    background: var(--cream);
    color: var(--ink);
    font: inherit;
    font-weight: 520;
    padding: 11px 12px;
  }

  .field-note {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 540;
    line-height: 1.52;
  }

  .service-form-note {
    color: var(--blue-dark);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.62;
  }

  .field textarea {
    min-height: 116px;
    resize: vertical;
  }

  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    border-color: var(--blue);
    outline: 3px solid rgba(53, 121, 184, 0.18);
  }

  .form-actions a {
    color: var(--blue-dark);
    font-weight: 760;
  }

  .form-actions {
    display: grid;
    gap: 12px;
    align-items: center;
  }

  @media (min-width: 760px) {
    .form-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .form-actions {
      grid-template-columns: auto 1fr;
    }
  }

/* Source: src/components/MessagingConsentForm.astro */
.messaging-consent-form {
    display: grid;
    gap: 18px;
    border: 1px solid var(--border);
    border-radius: var(--r);
    background: var(--white);
    padding: clamp(22px, 4vw, 32px);
    box-shadow: 0 16px 34px rgba(28, 25, 21, 0.05);
  }

  .hp-field {
    display: none;
  }

  .form-head {
    display: grid;
    gap: 10px;
    max-width: 760px;
  }

  .form-head p:not(.kicker),
  .form-actions p {
    color: var(--muted);
    line-height: 1.68;
  }

  .form-grid {
    display: grid;
    gap: 14px;
  }

  .field {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-weight: 760;
  }

  .field input {
    align-self: start;
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--border);
    border-radius: var(--r);
    background: var(--cream);
    color: var(--ink);
    font: inherit;
    font-weight: 520;
    padding: 11px 12px;
  }

  .field input:focus {
    border-color: var(--blue);
    outline: 3px solid rgba(53, 121, 184, 0.18);
  }

  .field-note,
  .consent-note {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 540;
    line-height: 1.52;
  }

  .consent-wrap {
    display: grid;
    gap: 10px;
    border: 1px solid var(--border);
    border-radius: var(--r);
    background: var(--soft);
    padding: 16px;
  }

  .consent-summary {
    display: grid;
    gap: 6px;
    color: var(--ink);
    font-size: 0.93rem;
    line-height: 1.58;
  }

  .consent-summary p {
    margin: 0;
  }

  .consent-option {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 12px;
    align-items: start;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .consent-option input {
    width: 18px;
    height: 18px;
    margin: 4px 0 0;
    accent-color: var(--blue);
  }

  .consent-note {
    margin: 0;
    padding-left: 32px;
    color: var(--blue-dark);
    font-weight: 760;
  }

  .consent-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-left: 32px;
    color: var(--muted);
    font-size: 0.92rem;
  }

  .consent-links a,
  .form-actions a {
    color: var(--blue-dark);
    font-weight: 760;
  }

  .form-actions {
    display: grid;
    gap: 12px;
    align-items: center;
  }

  @media (min-width: 760px) {
    .form-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .form-actions {
      grid-template-columns: auto 1fr;
    }
  }

  @media (max-width: 520px) {
    .consent-links {
      display: grid;
      gap: 6px;
    }
  }

/* Source: src/pages/messaging-consent.astro */
.consent-hero {
      padding: clamp(64px, 8vw, 104px) 0;
    }

    .consent-hero-inner {
      display: grid;
      gap: 18px;
      max-width: 840px;
    }

    .consent-hero p:not(.kicker) {
      max-width: 68ch;
      color: rgba(255, 255, 255, 0.76);
      font-size: 1.05rem;
      line-height: 1.72;
    }

    .consent-shell {
      max-width: 960px;
    }

    .consent-proof-grid {
      display: grid;
      gap: 24px;
    }

    .consent-proof-grid article {
      display: grid;
      gap: 12px;
    }

    .consent-proof-grid p:not(.kicker) {
      color: var(--muted);
      line-height: 1.78;
    }

    @media (min-width: 820px) {
      .consent-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

/* Source: src/pages/messaging-consent/received.astro */
.received-shell {
      display: grid;
      gap: 16px;
      max-width: 760px;
      padding: clamp(54px, 8vw, 96px) 0;
    }

    .received-shell p:not(.kicker) {
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.76;
    }

    .received-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 8px;
    }

/* Source: src/pages/contact.astro */
.contact-hero {
      padding: clamp(64px, 8vw, 112px) 0;
    }

    .contact-hero-grid,
    .details-grid {
      display: grid;
      gap: clamp(28px, 5vw, 56px);
      align-items: center;
    }

    .contact-hero p:not(.kicker) {
      max-width: 58ch;
      margin-top: 18px;
      color: rgba(255, 255, 255, 0.74);
      font-size: 1.08rem;
    }

    .contact-hero-extra {
      color: rgba(255, 255, 255, 0.82);
    }

    .contact-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 26px;
    }

    .contact-image {
      aspect-ratio: 4 / 3;
      box-shadow: none;
    }

    .contact-grid {
      display: grid;
      gap: 18px;
    }

    .form-shell {
      max-width: 980px;
    }

    .contact-card,
    .hours-card {
      display: grid;
      gap: 14px;
      border: 1px solid var(--border);
      border-radius: var(--r);
      background: var(--white);
      padding: 24px;
    }

    .contact-card p,
    .hours-card span {
      color: var(--muted);
    }

    .contact-legal-note {
      font-size: 0.92rem;
      line-height: 1.68;
    }

    .contact-legal-note a {
      color: var(--blue-dark);
      font-weight: 760;
    }

    .legal-link-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .hours-card ul {
      display: grid;
      gap: 10px;
    }

    .hours-card li {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      border-bottom: 1px solid var(--border);
      padding-bottom: 10px;
    }

    .hours-value {
      color: var(--ink);
      text-align: right;
      font-weight: 760;
    }

    .section-copy a {
      color: var(--blue-dark);
      font-weight: 760;
    }

    .map-wrap {
      display: grid;
      gap: 18px;
    }

    .map-frame {
      border: 1px solid var(--border);
      border-radius: var(--r);
      overflow: hidden;
      background: var(--white);
      min-height: 420px;
      position: relative;
      box-shadow: 0 16px 32px rgba(28, 25, 21, 0.06);
    }

    .map-placeholder {
      min-height: 420px;
      display: grid;
      place-items: center;
      padding: 24px;
    }

    .map-placeholder[hidden] {
      display: none;
    }

    .map-skeleton {
      width: min(100%, 720px);
      height: min(100%, 320px);
      border-radius: 20px;
      background:
        linear-gradient(rgba(227, 220, 208, 0.92), rgba(227, 220, 208, 0.92)) 0 0 / 36% 14px no-repeat,
        linear-gradient(rgba(237, 231, 223, 0.98), rgba(237, 231, 223, 0.98)) 0 34px / 100% 240px no-repeat,
        linear-gradient(rgba(227, 220, 208, 0.92), rgba(227, 220, 208, 0.92)) 0 calc(100% - 16px) / 42% 14px no-repeat;
      position: relative;
      overflow: hidden;
    }

    .map-skeleton::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.72) 44%, transparent 72%);
      transform: translateX(-100%);
      animation: map-shimmer 2.2s ease-in-out infinite;
    }

    :global(.map-embed) {
      width: 100%;
      min-height: 420px;
      display: block;
      border: 0;
    }

    @keyframes map-shimmer {
      from {
        transform: translateX(-100%);
      }

      to {
        transform: translateX(100%);
      }
    }

    @media (min-width: 780px) {
      .contact-hero-grid,
      .details-grid {
        grid-template-columns: 1fr 1fr;
      }

      .contact-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

    }

/* Source: src/pages/connect.astro */
.connect-hero {
      padding: clamp(64px, 8vw, 112px) 0;
    }

    .connect-hero-grid,
    .connect-form-grid {
      display: grid;
      gap: clamp(28px, 5vw, 56px);
      align-items: center;
    }

    .connect-hero p:not(.kicker) {
      max-width: 62ch;
      margin-top: 18px;
      color: rgba(255, 255, 255, 0.74);
      font-size: 1.08rem;
      line-height: 1.72;
    }

    .connect-hero-note {
      color: rgba(255, 255, 255, 0.84);
    }

    .connect-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 26px;
    }

    .connect-image {
      aspect-ratio: 4 / 3;
      box-shadow: none;
    }

    .connect-form-main {
      min-width: 0;
    }

    .connect-side {
      display: grid;
      gap: 18px;
      align-self: start;
    }

    .connect-side article {
      display: grid;
      gap: 12px;
      border: 1px solid var(--border);
      border-radius: var(--r);
      background: var(--white);
      padding: 22px;
    }

    .connect-side p:not(.kicker),
    .connect-side li {
      color: var(--muted);
      line-height: 1.68;
    }

    .connect-side ul {
      display: grid;
      gap: 8px;
      padding-left: 20px;
    }

    @media (min-width: 820px) {
      .connect-hero-grid {
        grid-template-columns: 1fr 1fr;
      }

      .connect-form-grid {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
      }
    }

/* Source: src/pages/appointments.astro */
.appointment-hero {
      padding: clamp(64px, 8vw, 112px) 0;
    }

    .appointment-grid,
    .prep-grid {
      display: grid;
      gap: clamp(28px, 5vw, 56px);
      align-items: center;
    }

    .appointment-hero p:not(.kicker) {
      max-width: 62ch;
      margin-top: 18px;
      color: rgba(255, 255, 255, 0.74);
      font-size: 1.08rem;
    }

    .appointment-hero-extra {
      color: rgba(255, 255, 255, 0.82);
    }

    .appointment-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 26px;
    }

    .appointment-image {
      aspect-ratio: 16 / 9;
      box-shadow: none;
    }

    .appointment-info {
      display: grid;
      gap: 18px;
    }

    .appointment-help {
      display: grid;
      gap: 18px;
      align-items: center;
    }

    .appointment-help .section-head {
      margin-bottom: 0;
    }

    .appointment-help-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .appointment-info .card p {
      color: var(--muted);
    }

    .prep-list {
      display: grid;
      gap: 12px;
    }

    .prep-list li {
      border: 1px solid var(--border);
      border-radius: var(--r);
      background: var(--white);
      padding: 16px 18px;
      font-weight: 680;
    }

    .section-copy a {
      color: var(--blue-dark);
      font-weight: 760;
    }

    .appointment-faq-block {
      display: grid;
      gap: 22px;
    }

    .appointment-faq-block .section-head {
      margin-bottom: 0;
    }

    .appointment-faq-list {
      display: grid;
      gap: 12px;
      max-width: 880px;
    }

    .appointment-faq-list details {
      border: 1px solid var(--border);
      border-radius: var(--r);
      background: var(--white);
      overflow: hidden;
    }

    .appointment-faq-list summary {
      cursor: pointer;
      color: var(--ink);
      font-weight: 800;
      padding: 18px 20px;
      list-style: none;
    }

    .appointment-faq-list summary::-webkit-details-marker {
      display: none;
    }

    .appointment-faq-list p {
      color: var(--muted);
      padding: 0 20px 20px;
    }

    @media (min-width: 820px) {
      .appointment-grid,
      .prep-grid {
        grid-template-columns: 1fr 1fr;
      }

      .appointment-info {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .appointment-help {
        grid-template-columns: 1fr auto;
      }
    }

/* Source: src/pages/terms-and-conditions.astro */
.legal-hero {
      padding: clamp(64px, 8vw, 104px) 0;
    }

    .legal-hero-inner,
    .legal-shell,
    .legal-section {
      display: grid;
      gap: 16px;
    }

    .legal-hero-inner {
      max-width: 840px;
    }

    .legal-hero p:not(.kicker) {
      max-width: 64ch;
      color: rgba(255, 255, 255, 0.74);
      font-size: 1.05rem;
    }

    .legal-hero-note {
      color: rgba(255, 255, 255, 0.84);
      font-weight: 760;
    }

    .legal-shell {
      max-width: 860px;
    }

    .legal-section {
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: var(--r);
      background: var(--white);
      box-shadow: 0 14px 30px rgba(28, 25, 21, 0.04);
    }

    .legal-section p,
    .legal-section li {
      color: var(--muted);
      line-height: 1.78;
    }

    .legal-section h2 {
      font-size: clamp(1.45rem, 2.2vw, 1.9rem);
    }

    .legal-list {
      display: grid;
      gap: 10px;
      padding-left: 20px;
    }

    .legal-list li {
      list-style: disc;
    }

    .legal-section a {
      color: var(--blue-dark);
      font-weight: 760;
    }

/* Source: src/pages/privacy-policy.astro */
.legal-hero {
      padding: clamp(64px, 8vw, 104px) 0;
    }

    .legal-hero-inner,
    .legal-shell,
    .legal-intro,
    .legal-section {
      display: grid;
      gap: 16px;
    }

    .legal-hero-inner {
      max-width: 840px;
    }

    .legal-hero p:not(.kicker) {
      max-width: 64ch;
      color: rgba(255, 255, 255, 0.74);
      font-size: 1.05rem;
    }

    .legal-hero-note {
      color: rgba(255, 255, 255, 0.84);
      font-weight: 760;
    }

    .legal-shell {
      max-width: 860px;
    }

    .legal-intro,
    .legal-section {
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: var(--r);
      background: var(--white);
      box-shadow: 0 14px 30px rgba(28, 25, 21, 0.04);
    }

    .legal-intro p,
    .legal-section p,
    .legal-section li,
    .legal-section address {
      color: var(--muted);
      line-height: 1.78;
    }

    .legal-section h2 {
      font-size: clamp(1.45rem, 2.2vw, 1.9rem);
    }

    .legal-section h3 {
      font-size: 1rem;
      font-family: var(--sans);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--blue-dark);
    }

    .legal-list {
      display: grid;
      gap: 10px;
      padding-left: 20px;
    }

    .legal-list li {
      list-style: disc;
    }

    .legal-section a,
    .legal-intro a {
      color: var(--blue-dark);
      font-weight: 760;
    }

    .legal-contact address {
      font-style: normal;
    }