@font-face{font-family:"Cinzel";font-style:normal;font-weight:400 700;font-display:swap;src:url("/assets/fonts/cinzel-latin.woff2") format("woff2")}@font-face{font-family:"Source Sans 3";font-style:normal;font-weight:300 700;font-display:swap;src:url("/assets/fonts/source-sans-3-latin.woff2") format("woff2")}

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

      /* ─── DESIGN TOKENS ─── */
      :root {
        /* Weber palette — warm slate + deep teal accent */
        --primary: #2b4f7a; /* deep navy blue */
        --primary-dark: #1e3a5f;
        --primary-deep: #122540;
        --primary-light: #e4ecf6;
        --accent: #2b6a52; /* calming green accent */
        --accent-dark: #1d5c45;
        --sage: #8ea7c8;
        --gold: #c5a86a;
        --charcoal: #162a3c;
        --warm-white: #f6f3ea;
        --white: #ffffff;
        --text-dark: #162a3c;
        --text-mid: #4f617b;
        --text-light: #6f8094;
        --border: #d2dae6;
        --bg-light: #eef2f8;
        --max-w: 1040px;

        --grad-primary: linear-gradient(135deg, #2b4f7a 0%, #1e3a5f 100%);
        --grad-accent: linear-gradient(135deg, #2b4f7a 0%, #2b6a52 100%);

        --shadow-sm: 0 1px 6px rgba(22, 42, 60, 0.08);
        --shadow-md: 0 6px 18px rgba(22, 42, 60, 0.11);
        --shadow-lg: 0 10px 34px rgba(22, 42, 60, 0.15);
        --shadow-xl: 0 18px 52px rgba(22, 42, 60, 0.2);

        --r-sm: 8px;
        --r-md: 14px;
        --r-lg: 20px;
        --r-pill: 100px;
        --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
        --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
        --font-serif: "Cinzel", Georgia, serif;
        --font-sans: "Source Sans 3", system-ui, sans-serif;
      }

      body {
        font-family: var(--font-sans);
        color: var(--text-dark);
        background:
          radial-gradient(circle at top right, rgba(43, 79, 122, 0.12), transparent 42%),
          radial-gradient(circle at bottom left, rgba(197, 168, 106, 0.1), transparent 36%), var(--warm-white);
        line-height: 1.7;
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
      }

      /* ─── NAVIGATION ─── */
      header {
        background: rgba(255, 255, 255, 0.87);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(200, 215, 235, 0.5);
        position: sticky;
        top: 0;
        z-index: 1000;
        transition: all 0.3s var(--ease-out);
      }
      header.scrolled {
        padding: 4px 0;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow-md);
      }
      .nav-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 28px;
        gap: 20px;
      }
      .logo {
        display: flex;
        align-items: center;
        gap: 14px;
        text-decoration: none;
        cursor: pointer;
        transition: transform 0.2s var(--ease-out);
      }
      .logo:hover {
        transform: scale(1.02);
      }
      .logo-mark {
        width: 48px;
        height: 48px;
        background: var(--grad-primary);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        box-shadow: 0 4px 14px rgba(43, 79, 122, 0.3);
      }
      .logo-mark svg {
        width: 28px;
        height: 28px;
        fill: none;
        stroke: white;
        stroke-width: 1.8;
      }
      .logo-text {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
      }
      .logo-text strong {
        font-family: var(--font-serif);
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--primary-dark);
        letter-spacing: 0.02em;
      }
      .logo-text span {
        font-size: 0.73rem;
        color: var(--text-light);
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      nav {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-wrap: wrap;
      }
      nav a {
        font-family: var(--font-sans);
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: var(--text-mid);
        text-decoration: none;
        padding: 9px 14px;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.25s var(--ease-out);
      }
      nav a:hover {
        color: var(--primary-dark);
        background: rgba(43, 79, 122, 0.08);
      }
      nav a.active {
        color: var(--white);
        background: var(--grad-primary);
        box-shadow: 0 4px 14px rgba(43, 79, 122, 0.28);
      }
      /* Cross-link partner site */
      nav a.partner-link {
        border: 1.5px solid var(--accent);
        color: var(--accent-dark);
        padding: 8px 14px;
        border-radius: var(--r-pill);
        font-size: 12px;
      }
      nav a.partner-link:hover {
        background: var(--accent-dark);
        color: white;
        border-color: var(--accent-dark);
      }

      .hamburger {
        display: none;
        background: rgba(43, 79, 122, 0.09);
        border: none;
        cursor: pointer;
        padding: 10px;
        border-radius: 10px;
      }
      .hamburger span {
        display: block;
        width: 20px;
        height: 2px;
        background: var(--primary-dark);
        margin: 4px 0;
        transition: all 0.3s var(--ease-out);
      }
      .hamburger.open span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
      }
      .hamburger.open span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
      }
      .hamburger.open span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
      }

      /* ─── PAGES ─── */
      .page {
        display: none;
      }
      .page.active {
        display: block;
        animation: pageFadeUp 0.52s var(--ease-out) both;
      }
      @keyframes pageFadeUp {
        from {
          opacity: 0;
          transform: translateY(18px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* ─── HERO ─── */
      .hero {
        display: grid;
        grid-template-columns: 55% 45%;
        min-height: clamp(580px, 72vh, 720px);
        background: var(--charcoal);
      }
      .hero-left {
        background: linear-gradient(140deg, #0f1f2e 0%, #1a3354 55%, #2b4f7a 100%);
        background-size: 220% 220%;
        animation: heroGradShift 14s ease infinite;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: clamp(40px, 6vw, 88px) clamp(32px, 5vw, 72px);
        position: relative;
        overflow: hidden;
      }
      .hero-left::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
        opacity: 0.038;
        pointer-events: none;
      }
      .hero-left > * {
        position: relative;
        z-index: 1;
      }
      @keyframes heroGradShift {
        0%,
        100% {
          background-position: 0% 50%;
        }
        50% {
          background-position: 100% 50%;
        }
      }
      @keyframes heroReveal {
        from {
          opacity: 0;
          transform: translateY(22px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      .hero-eyebrow {
        font-family: var(--font-sans);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--sage);
        margin-bottom: 20px;
        animation: heroReveal 0.7s var(--ease-out) 0.05s both;
      }
      .hero-left h1 {
        font-family: var(--font-serif);
        font-size: clamp(2rem, 3.4vw, 3.2rem);
        font-weight: 300;
        line-height: 1.15;
        color: var(--white);
        margin-bottom: 18px;
        animation: heroReveal 0.8s var(--ease-out) 0.18s both;
      }
      .hero-left h2 {
        font-family: var(--font-serif);
        font-size: clamp(0.95rem, 1.3vw, 1.1rem);
        font-weight: 300;
        font-style: italic;
        color: rgba(255, 255, 255, 0.68);
        margin-bottom: 22px;
        line-height: 1.5;
        animation: heroReveal 0.8s var(--ease-out) 0.32s both;
      }
      .hero-left p {
        font-size: 0.94rem;
        color: rgba(255, 255, 255, 0.62);
        max-width: 440px;
        line-height: 1.8;
        margin-bottom: 38px;
        animation: heroReveal 0.8s var(--ease-out) 0.46s both;
      }
      .hero-left .cta-group {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        animation: heroReveal 0.8s var(--ease-out) 0.6s both;
      }
      .btn-primary {
        display: inline-block;
        background: var(--grad-primary);
        color: var(--white);
        font-family: var(--font-sans);
        font-size: 13.5px;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        text-decoration: none;
        padding: 14px 32px;
        border-radius: var(--r-pill);
        cursor: pointer;
        border: none;
        position: relative;
        overflow: hidden;
        transition:
          transform 200ms var(--ease-out),
          box-shadow 200ms var(--ease-out);
        align-self: flex-start;
        box-shadow: 0 4px 14px rgba(43, 79, 122, 0.35);
      }
      .btn-primary::after {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 65%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
        transition: left 0.55s var(--ease-out);
        pointer-events: none;
      }
      .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 28px rgba(43, 79, 122, 0.4);
      }
      .btn-primary:hover::after {
        left: 150%;
      }
      .btn-outline {
        display: inline-block;
        background: transparent;
        color: rgba(255, 255, 255, 0.85);
        border: 1.5px solid rgba(255, 255, 255, 0.35);
        font-family: var(--font-sans);
        font-size: 13.5px;
        font-weight: 500;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        text-decoration: none;
        padding: 13px 28px;
        border-radius: var(--r-pill);
        cursor: pointer;
        transition: all 200ms var(--ease-out);
        align-self: flex-start;
      }
      .btn-outline:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.6);
      }

      .hero-right {
        position: relative;
        overflow: hidden;
      }
      .hero-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        display: block;
        opacity: 0.88;
        animation: kenBurns 18s ease-in-out infinite alternate;
      }
      @keyframes kenBurns {
        from {
          transform: scale(1);
        }
        to {
          transform: scale(1.06);
        }
      }
      .hero-right::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(27, 50, 84, 0.25) 0%, transparent 60%);
        pointer-events: none;
      }
      .hero-right-label {
        position: absolute;
        bottom: 32px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: var(--r-md);
        padding: 18px 36px;
        text-align: center;
        white-space: nowrap;
        z-index: 2;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        animation: heroReveal 0.9s var(--ease-out) 0.3s both;
      }
      .hero-right-label span {
        display: block;
        font-family: var(--font-serif);
        font-size: clamp(1.1rem, 1.6vw, 1.45rem);
        font-weight: 300;
        letter-spacing: 0.06em;
        color: #ffffff;
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
      }
      .hero-right-label em {
        display: block;
        font-family: var(--font-sans);
        font-size: 0.72rem;
        font-weight: 500;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.65);
        margin-top: 5px;
        font-style: normal;
      }

      /* ─── TRUST BAR ─── */
      .trust-bar {
        background: var(--white);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 2px 8px rgba(22, 42, 60, 0.05);
      }
      .trust-bar-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 20px 28px;
        display: flex;
        align-items: center;
        gap: 0;
        flex-wrap: wrap;
      }
      .trust-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 28px 10px 0;
        margin-right: 28px;
        position: relative;
      }
      .trust-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: var(--border);
      }
      .trust-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--primary);
        flex-shrink: 0;
        box-shadow:
          0 0 0 3px rgba(43, 79, 122, 0.18),
          0 0 10px rgba(43, 79, 122, 0.35);
        animation: trustGlow 2.8s ease-in-out infinite;
      }
      @keyframes trustGlow {
        0%,
        100% {
          box-shadow:
            0 0 0 3px rgba(43, 79, 122, 0.18),
            0 0 10px rgba(43, 79, 122, 0.35);
        }
        50% {
          box-shadow:
            0 0 0 5px rgba(43, 79, 122, 0.1),
            0 0 18px rgba(43, 79, 122, 0.5);
        }
      }
      .trust-label {
        font-size: 12.5px;
        font-weight: 500;
        color: var(--text-mid);
        line-height: 1.35;
      }
      .trust-label strong {
        display: block;
        font-size: 13.5px;
        color: var(--text-dark);
        font-weight: 600;
      }

      /* ─── CONTENT WRAP ─── */
      .content-wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 64px 28px;
      }
      .section-label {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: var(--primary-light);
        color: var(--primary-dark);
        border: 1px solid rgba(43, 79, 122, 0.22);
        border-radius: var(--r-pill);
        padding: 5px 14px;
        font-family: var(--font-sans);
        font-size: 10.5px;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        margin-bottom: 16px;
      }
      .section-label::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--primary);
        flex-shrink: 0;
      }
      .content-wrap h1 {
        font-family: var(--font-serif);
        font-size: clamp(1.9rem, 2.8vw, 2.7rem);
        font-weight: 400;
        color: var(--text-dark);
        margin-bottom: 8px;
        line-height: 1.15;
      }
      .page-intro {
        font-size: 1rem;
        color: var(--text-mid);
        max-width: 680px;
        margin-bottom: 44px;
        line-height: 1.8;
      }
      .section-divider {
        height: 2px;
        width: 56px;
        background: var(--grad-accent);
        margin: 14px 0 36px;
        border-radius: 2px;
      }

      /* ─── ABOUT SECTION ─── */
      .about-layout {
        display: grid;
        grid-template-columns: 1fr 320px;
        gap: 52px;
        align-items: start;
      }
      .about-photo-col {
        position: sticky;
        top: 100px;
      }
      .about-photo-col img {
        width: 100%;
        height: auto;
        border-radius: var(--r-lg);
        box-shadow: var(--shadow-xl);
        transition: transform 0.5s var(--ease-out);
      }
      .about-photo-col:hover img {
        transform: scale(1.02);
      }
      .about-photo-col figcaption {
        text-align: center;
        margin-top: 16px;
        font-family: var(--font-serif);
        font-size: 0.95rem;
        font-style: italic;
        color: var(--text-light);
        line-height: 1.6;
      }
      .about-photo-col figcaption strong {
        display: block;
        font-style: normal;
        font-size: 1.1rem;
        color: var(--primary-dark);
        font-weight: 600;
        margin-bottom: 4px;
      }
      .about-body p {
        color: var(--text-mid);
        margin-bottom: 16px;
        font-size: 0.96rem;
        line-height: 1.8;
      }
      .about-contact {
        margin-bottom: 28px;
      }
      .about-contact a {
        color: var(--primary-dark);
        text-decoration: none;
        font-size: 0.93rem;
        font-weight: 600;
      }
      .about-contact a:hover {
        text-decoration: underline;
      }
      .about-contact p {
        font-size: 0.93rem;
        color: var(--text-mid);
        margin-top: 4px;
      }

      /* ─── SECTION HEAD ─── */
      .section-head {
        font-family: var(--font-sans);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--primary);
        margin: 28px 0 12px;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .section-head::after {
        content: "";
        flex: 1;
        height: 1px;
        background: var(--border);
      }

      /* ─── LISTS ─── */
      .styled-list {
        padding-left: 0;
        list-style: none;
      }
      .styled-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 10px 0;
        border-bottom: 1px solid var(--border);
        font-size: 0.93rem;
        color: var(--text-mid);
        line-height: 1.6;
      }
      .styled-list li:last-child {
        border-bottom: none;
      }
      .styled-list li::before {
        content: "";
        display: block;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--primary);
        flex-shrink: 0;
        margin-top: 7px;
      }

      /* ─── LOCATIONS BLOCK ─── */
      .locations-block {
        background: var(--primary-light);
        border: 1px solid rgba(43, 79, 122, 0.16);
        border-radius: var(--r-md);
        padding: 24px 28px;
        margin-top: 32px;
        font-size: 0.93rem;
        color: var(--text-mid);
        line-height: 1.7;
      }
      .locations-block strong {
        color: var(--primary-dark);
        display: block;
        margin-bottom: 10px;
        font-weight: 600;
        font-size: 0.95rem;
      }
      .location-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 18px;
        margin-top: 24px;
      }
      .location-card {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 249, 255, 0.98) 100%);
        border: 1px solid rgba(43, 79, 122, 0.14);
        border-top: 3px solid var(--primary);
        border-radius: var(--r-md);
        padding: 22px 20px 20px;
        box-shadow: 0 10px 24px rgba(22, 42, 60, 0.07);
        transition:
          transform 220ms var(--ease-out),
          box-shadow 220ms var(--ease-out);
        min-height: 168px;
      }
      .location-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 30px rgba(22, 42, 60, 0.1);
      }
      .location-card .location-tag {
        font-family: var(--font-sans);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 12px;
        display: inline-flex;
        align-items: center;
        padding: 5px 10px;
        border-radius: 999px;
        background: rgba(43, 79, 122, 0.08);
      }
      .location-card h3 {
        font-family: var(--font-serif);
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 8px;
        line-height: 1.35;
      }
      .location-card p {
        font-size: 0.92rem;
        color: var(--text-mid);
        line-height: 1.7;
      }

      /* ─── SERVICES CARDS ─── */
      .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 8px;
      }
      .service-card {
        background: var(--white);
        border-radius: var(--r-md);
        padding: 28px 24px;
        border: 1px solid var(--border);
        border-top: 3px solid var(--primary);
        box-shadow: var(--shadow-sm);
        transition:
          transform 280ms var(--ease-out),
          box-shadow 280ms var(--ease-out);
      }
      .service-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
      }
      .service-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: var(--primary-light);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 14px;
      }
      .service-icon svg {
        width: 24px;
        height: 24px;
        stroke: var(--primary-dark);
        fill: none;
        stroke-width: 1.8;
      }
      .service-card h3 {
        font-family: var(--font-serif);
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 8px;
      }
      .service-card p {
        font-size: 0.91rem;
        color: var(--text-mid);
        line-height: 1.75;
      }

      /* ─── FORMS PAGE ─── */
      .forms-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 18px;
        margin-top: 8px;
      }
      .form-card {
        background: var(--white);
        border-radius: var(--r-md);
        padding: 24px 22px;
        border: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
        display: flex;
        flex-direction: column;
        gap: 10px;
        transition:
          transform 250ms var(--ease-out),
          box-shadow 250ms var(--ease-out);
      }
      .form-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
      }
      .form-card h3 {
        font-family: var(--font-sans);
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--text-dark);
      }
      .form-card p {
        font-size: 0.87rem;
        color: var(--text-mid);
        line-height: 1.6;
        flex: 1;
      }
      .form-card a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: var(--grad-primary);
        color: var(--white);
        font-size: 12.5px;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        text-decoration: none;
        padding: 10px 20px;
        border-radius: var(--r-pill);
        align-self: flex-start;
        transition:
          transform 200ms var(--ease-out),
          box-shadow 200ms var(--ease-out);
        box-shadow: 0 3px 10px rgba(43, 79, 122, 0.28);
      }
      .form-card a:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(43, 79, 122, 0.38);
      }
      .form-card a.secondary {
        background: transparent;
        color: var(--primary-dark);
        border: 1.5px solid var(--primary);
        box-shadow: none;
      }
      .form-card a.secondary:hover {
        background: var(--primary-light);
        box-shadow: none;
      }
      .intake-cta {
        background: var(--grad-primary);
        border-radius: var(--r-lg);
        padding: 44px 40px;
        text-align: center;
        margin-bottom: 40px;
        box-shadow: var(--shadow-xl);
      }
      .intake-cta h2 {
        font-family: var(--font-serif);
        font-size: 1.8rem;
        font-weight: 400;
        color: white;
        margin-bottom: 12px;
      }
      .intake-cta p {
        color: rgba(255, 255, 255, 0.75);
        font-size: 0.97rem;
        max-width: 560px;
        margin: 0 auto 28px;
        line-height: 1.75;
      }

      /* ─── CONTACT PAGE ─── */
      .contact-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }
      .contact-info h2 {
        font-family: var(--font-serif);
        font-size: 1.5rem;
        font-weight: 400;
        color: var(--text-dark);
        margin-bottom: 28px;
      }
      .contact-detail {
        margin-bottom: 22px;
      }
      .contact-detail .label {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 5px;
      }
      .contact-detail p {
        font-size: 0.93rem;
        color: var(--text-mid);
      }
      .contact-detail a {
        color: var(--primary-dark);
        text-decoration: none;
        font-size: 0.93rem;
        font-weight: 500;
      }
      .contact-detail a:hover {
        text-decoration: underline;
      }
      .contact-emergency {
        background: #fff5f5;
        border: 1px solid #f5c6c6;
        border-radius: var(--r-md);
        padding: 16px 20px;
        margin-top: 20px;
        font-size: 0.88rem;
        color: #7a2020;
        line-height: 1.7;
      }
      .contact-map-wrap {
        border-radius: var(--r-lg);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        background: var(--bg-light);
        min-height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .contact-map-placeholder {
        text-align: center;
        padding: 40px;
        color: var(--text-light);
      }
      .contact-map-placeholder svg {
        width: 52px;
        height: 52px;
        stroke: var(--border);
        fill: none;
        stroke-width: 1.5;
        display: block;
        margin: 0 auto 16px;
      }
      .contact-map-placeholder p {
        font-size: 0.9rem;
        line-height: 1.6;
      }

      /* ─── FOOTER ─── */
      footer {
        background: var(--charcoal);
        margin-top: 64px;
      }
      .footer-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 44px;
        padding: 56px 28px 40px;
      }
      .footer-brand p {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.88rem;
        margin-top: 14px;
        line-height: 1.75;
      }
      .footer-brand .footer-logo-mark {
        width: 52px;
        height: 52px;
        border-radius: 12px;
        background: var(--grad-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 14px rgba(43, 79, 122, 0.4);
      }
      .footer-brand .footer-logo-mark svg {
        width: 30px;
        height: 30px;
        fill: none;
        stroke: white;
        stroke-width: 1.8;
      }
      .footer-brand .footer-site-name {
        font-family: var(--font-serif);
        font-size: 1.05rem;
        font-weight: 600;
        color: white;
        margin-top: 12px;
        letter-spacing: 0.02em;
      }
      .footer-col h4 {
        font-family: var(--font-sans);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.72);
        margin-bottom: 16px;
      }
      .footer-col nav {
        display: flex;
        flex-direction: column;
        gap: 8px;
      }
      .footer-col nav a {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.78);
        text-decoration: none;
        padding: 0;
        text-transform: none;
        letter-spacing: 0;
        border-radius: 0;
        background: none;
        transition: color 0.2s;
      }
      .footer-col nav a:hover {
        color: rgba(255, 255, 255, 0.95);
        background: none;
      }
      .footer-col p {
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.72);
        line-height: 1.7;
        margin-bottom: 8px;
      }
      .footer-col a {
        color: rgba(255, 255, 255, 0.78);
        text-decoration: none;
        font-size: 0.88rem;
      }
      .footer-col a:hover {
        color: rgba(255, 255, 255, 0.95);
      }
      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 18px 28px;
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
      }
      .footer-bottom span {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.7);
      }
      .footer-bottom .crisis {
        color: rgba(255, 255, 255, 0.72);
      }
      .footer-bottom .crisis strong {
        color: rgba(255, 255, 255, 0.85);
      }

      /* ─── PARTNER BANNER ─── */
      .partner-banner {
        background: white;
        border: 1px solid var(--border);
        border-radius: var(--r-lg);
        padding: 28px 32px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        box-shadow: var(--shadow-sm);
        margin-bottom: 40px;
        flex-wrap: wrap;
      }
      .partner-banner-text {
        flex: 1;
        min-width: 200px;
      }
      .partner-banner-text h3 {
        font-family: var(--font-serif);
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 5px;
      }
      .partner-banner-text p {
        font-size: 0.9rem;
        color: var(--text-mid);
        line-height: 1.6;
      }
      .partner-banner a.btn-partner {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: 1.5px solid var(--accent);
        color: var(--accent-dark);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        text-decoration: none;
        padding: 11px 22px;
        border-radius: var(--r-pill);
        transition: all 200ms var(--ease-out);
        white-space: nowrap;
      }
      .partner-banner a.btn-partner:hover {
        background: var(--accent-dark);
        color: white;
        border-color: var(--accent-dark);
      }

      /* ─── MOBILE NAV ─── */
      @media (max-width: 760px) {
        .hamburger {
          display: block;
        }
        nav {
          display: none;
          position: absolute;
          top: 100%;
          left: 0;
          right: 0;
          background: white;
          border-bottom: 1px solid var(--border);
          flex-direction: column;
          align-items: stretch;
          gap: 2px;
          padding: 12px 16px 20px;
          box-shadow: var(--shadow-md);
        }
        nav.open {
          display: flex;
        }
        nav a {
          padding: 12px 16px;
        }
        .hero {
          grid-template-columns: 1fr;
        }
        .hero-right {
          display: none;
        }
        .about-layout {
          grid-template-columns: 1fr;
        }
        .about-photo-col {
          position: static;
          order: -1;
        }
        .services-grid {
          grid-template-columns: 1fr;
        }
        .location-grid {
          grid-template-columns: 1fr;
        }
        .contact-layout {
          grid-template-columns: 1fr;
        }
        .footer-inner {
          grid-template-columns: 1fr;
          gap: 28px;
        }
        .footer-bottom {
          flex-direction: column;
          text-align: center;
        }
        .partner-banner {
          flex-direction: column;
        }
      }
      @media (max-width: 540px) {
        .nav-inner {
          padding: 16px 18px;
        }
        .content-wrap {
          padding: 44px 18px;
        }
        .trust-bar-inner {
          padding: 16px 18px;
        }
      }

      /* Responsive hardening: phones, tablets, zoom, touch, and reduced motion */
      :root {
        --page-gutter: clamp(18px, 4vw, 48px);
      }
      html {
        scroll-behavior: smooth;
        scroll-padding-top: 96px;
      }
      body {
        overflow-x: clip;
      }
      img,
      video,
      iframe {
        max-width: 100%;
      }
      a,
      button,
      input,
      select,
      textarea {
        -webkit-tap-highlight-color: transparent;
      }
      :where(a, button, input, select, textarea, [tabindex]):focus-visible {
        outline: 3px solid var(--gold);
        outline-offset: 3px;
      }
      .nav-inner,
      .content-wrap,
      .trust-bar-inner,
      .footer-inner,
      .footer-bottom {
        width: min(100%, var(--max-w));
        padding-left: var(--page-gutter);
        padding-right: var(--page-gutter);
      }
      .hamburger {
        min-width: 48px;
        min-height: 48px;
        align-items: center;
        justify-content: center;
      }
      nav a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
      }
      .hero-right-label {
        animation: heroLabelReveal 0.9s var(--ease-out) 0.3s both;
        max-width: calc(100% - 32px);
        white-space: normal;
      }
      @keyframes heroLabelReveal {
        from {
          opacity: 0;
          transform: translate(-50%, 22px);
        }
        to {
          opacity: 1;
          transform: translate(-50%, 0);
        }
      }
      .cta-group {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
      }
      input,
      select,
      textarea {
        font-size: max(16px, 1rem);
        min-height: 48px;
        max-width: 100%;
      }
      p,
      a,
      h1,
      h2,
      h3,
      h4,
      span {
        overflow-wrap: anywhere;
      }

      @media (max-width: 1199px) {
        .nav-inner {
          padding-top: 14px;
          padding-bottom: 14px;
        }
        .hamburger {
          display: inline-flex;
          flex-direction: column;
        }
        nav {
          display: none;
          position: absolute;
          inset: 100% 0 auto;
          max-height: calc(100dvh - 88px);
          overflow-y: auto;
          background: rgba(255, 255, 255, 0.98);
          border-bottom: 1px solid var(--border);
          flex-direction: column;
          align-items: stretch;
          gap: 4px;
          padding: 12px var(--page-gutter) max(20px, env(safe-area-inset-bottom));
          box-shadow: var(--shadow-md);
          z-index: 200;
        }
        nav.open {
          display: flex;
        }
        nav a {
          width: 100%;
          padding: 12px 16px;
        }
        .footer-col nav {
          display: flex;
          position: static;
          inset: auto;
          max-height: none;
          overflow: visible;
          background: transparent;
          border: 0;
          padding: 0;
          box-shadow: none;
        }
        .footer-col nav a {
          width: auto;
          min-height: 0;
          padding: 0;
        }
        .hero {
          grid-template-columns: minmax(0, 1.08fr) minmax(240px, 0.92fr);
          min-height: clamp(540px, 70vh, 680px);
        }
        .hero-left {
          padding: clamp(42px, 7vw, 72px) var(--page-gutter);
        }
        .hero-right {
          display: block;
          min-width: 0;
        }
        .hero-right-label {
          bottom: 22px;
          padding: 14px 18px;
          width: calc(100% - 32px);
        }
        .about-layout,
        .services-grid,
        .location-grid,
        .contact-layout,
        .footer-inner {
          grid-template-columns: 1fr;
        }
        .about-photo-col {
          position: static;
          order: -1;
        }
        .partner-banner {
          flex-direction: column;
          align-items: flex-start;
        }
      }
      @media (max-width: 767px) {
        .logo-text span {
          display: none;
        }
        .hero {
          grid-template-columns: 1fr;
          min-height: 0;
        }
        .hero-left {
          padding-top: clamp(42px, 10vw, 64px);
          padding-bottom: clamp(42px, 10vw, 64px);
        }
        .hero-left h1 {
          font-size: clamp(1.9rem, 9vw, 2.8rem);
        }
        .hero-right {
          min-height: clamp(280px, 78vw, 460px);
        }
        .hero-right img {
          position: absolute;
          inset: 0;
        }
        .cta-group {
          flex-direction: column;
          align-items: stretch;
        }
        .cta-group a {
          width: 100%;
          min-height: 48px;
          display: inline-flex;
          align-items: center;
          justify-content: center;
          text-align: center;
        }
        .trust-bar-inner {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 10px 16px;
        }
        .trust-item {
          margin: 0;
          padding: 10px 0;
          min-width: 0;
        }
        .trust-item::after {
          display: none;
        }
        .footer-bottom {
          flex-direction: column;
          text-align: center;
          gap: 12px;
        }
      }
      @media (max-width: 479px) {
        .nav-inner {
          gap: 10px;
        }
        .logo-mark {
          width: 42px;
          height: 42px;
        }
        .logo-text strong {
          font-size: 0.92rem;
        }
        .hero-right {
          min-height: 260px;
        }
        .hero-right-label span {
          font-size: 1rem;
        }
        .hero-right-label em {
          letter-spacing: 0.1em;
        }
        .trust-bar-inner {
          grid-template-columns: 1fr;
        }
        .content-wrap {
          padding-top: 44px;
          padding-bottom: 44px;
        }
        .partner-banner-text {
          min-width: 0;
          width: 100%;
        }
        .partner-banner a.btn-partner {
          width: 100%;
          max-width: 100%;
          white-space: normal;
          justify-content: center;
          text-align: center;
        }
        .footer-bottom {
          padding-bottom: max(24px, env(safe-area-inset-bottom));
        }
      }
      @media (hover: none), (pointer: coarse) {
        .about-photo-col img,
        .service-card,
        .btn-primary,
        .btn-outline {
          transform: none !important;
        }
      }
      @media (prefers-reduced-motion: reduce) {
        html {
          scroll-behavior: auto;
        }
        *,
        *::before,
        *::after {
          animation: none !important;
          transition-duration: 0.01ms !important;
        }
      }
      @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
        header {
          background: rgba(255, 255, 255, 0.98);
        }
        .hero-right-label {
          background: rgba(24, 43, 67, 0.92);
        }
      }
    
.page{display:block;opacity:1}.legal-page{min-height:65vh;padding:clamp(48px,7vw,88px) 0}.legal-page .content-wrap{max-width:820px}.legal-page h1{margin-bottom:8px}.legal-page h2{margin:32px 0 10px;font-size:clamp(1.25rem,2vw,1.65rem)}.legal-page p{margin:0 0 16px;line-height:1.75}.legal-updated{color:var(--text-light);font-size:.95rem}.not-found{text-align:center;min-height:65vh;display:grid;place-items:center;padding:48px 20px}.not-found p{margin:12px 0 24px}.form-review-note{padding:16px 20px;margin:0 0 24px;border-left:4px solid var(--primary,var(--teal));background:var(--bg-soft,var(--teal-light));}.sensitive-notice{font-weight:600;margin-top:16px}.appointment-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:20px}.contact-topic-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 14px;padding:0;margin:4px 0 0;list-style:none}.contact-topic-list label,.contact-consent{display:flex;align-items:flex-start;gap:9px;color:var(--text-mid);font-size:.9rem;letter-spacing:0;text-transform:none;font-weight:400}.contact-topic-list input,.contact-consent input{width:auto;margin-top:4px;accent-color:var(--teal)}.contact-botcheck{display:none}.contact-privacy-notice{padding:14px 16px;border-left:3px solid var(--teal);background:var(--teal-light);font-size:.9rem;line-height:1.55;color:var(--text-mid)}.contact-form-success{padding:14px 16px;margin:0 0 18px;border:1px solid var(--teal);background:var(--teal-light);color:var(--text-dark);font-weight:600}@media(max-width:479px){.appointment-actions a{width:100%;text-align:center}.contact-topic-list{grid-template-columns:1fr}}
.contact-form-card{padding:clamp(20px,4vw,36px);background:var(--bg-soft,#f4f7f5);border:1px solid rgba(45,92,82,.18);border-radius:10px}.contact-form-card h2{margin-top:0}.contact-form-intro{line-height:1.6}.contact-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.contact-field{display:flex;flex-direction:column;gap:7px}.contact-field.full{grid-column:1/-1}.contact-field label{font-weight:600;color:var(--text-dark)}.contact-field input,.contact-field select,.contact-field textarea{width:100%;min-height:48px;padding:12px 13px;border:1px solid rgba(35,61,55,.32);border-radius:6px;background:#fff;color:var(--text-dark);font:inherit;font-size:16px}.contact-field textarea{resize:vertical}.contact-field input:focus-visible,.contact-field select:focus-visible,.contact-field textarea:focus-visible{outline:3px solid rgba(45,92,82,.28);outline-offset:2px}.contact-form-actions{display:flex;justify-content:flex-end;margin-top:20px}.contact-form-error{padding:14px 16px;margin:0 0 18px;border:1px solid #a33;background:#fff4f4;color:#7b2020;font-weight:600}@media(max-width:700px){.contact-form-grid{grid-template-columns:1fr}.contact-form-actions .btn-primary{width:100%}}
.contact-layout{grid-template-columns:minmax(0,1fr);max-width:900px}.contact-layout,.contact-info,.contact-form-card,.content-wrap,.hero-left,.hero-right,.about-layout,.services-grid,.location-grid,.footer-inner{min-width:0}.contact-field label,.contact-field span,.contact-detail,.contact-detail p,.footer-col,.footer-col a{overflow-wrap:anywhere}.contact-form-card{width:100%;box-sizing:border-box}.contact-form-card form{width:100%}.contact-layout>.appointment-actions{order:3;margin-top:0;padding-top:4px}.footer-call-actions{margin:18px 0 0!important;padding:0!important}.footer-call-actions a{display:inline-flex!important;align-items:center;justify-content:center;width:100%;min-height:50px;padding:13px 18px!important;border-radius:6px;background:var(--primary,#2d5c52);color:#fff!important;font-weight:700;letter-spacing:.04em;text-transform:uppercase;text-decoration:none!important;box-shadow:0 4px 12px rgba(0,0,0,.18)}.footer-call-actions a:hover,.footer-call-actions a:focus-visible{background:var(--primary-dark,#23483f);transform:translateY(-1px)}html{overflow-x:hidden}body{overflow-x:hidden}img,svg,video{max-width:100%}@media(max-width:767px){.contact-layout{gap:28px}.contact-info h2{margin-bottom:18px}.contact-detail{margin-bottom:18px}.contact-emergency{padding:14px 16px}.contact-form-card{padding:20px 16px}.contact-form-grid{gap:14px}.contact-form-actions{margin-top:16px}.contact-form-actions button{min-height:48px}.footer-col{max-width:100%}}@media(max-width:380px){.content-wrap{padding-left:16px;padding-right:16px}.site-header .nav-inner{padding-left:14px;padding-right:14px}.logo-text{font-size:.95rem}.contact-form-card{padding:18px 14px}.contact-form-card h2{font-size:1.3rem}.contact-form-intro{font-size:.94rem}}
.service-card-featured{border-color:rgba(45,92,82,.38);background:linear-gradient(145deg,#f3f8f5,#fff)}.service-card-featured .service-icon{color:var(--primary,#2d5c52)}.service-note{font-size:.9rem;color:var(--text-light);font-style:italic}.hero-right img{object-position:center 22%}@media(max-width:767px){.hero-right img{object-position:center 18%;animation:none}.hero-right-label{max-width:calc(100% - 28px);white-space:normal;padding:14px 18px}.hero-right-label span{font-size:clamp(1rem,4vw,1.2rem)}}
.logo-mark{width:84px;height:84px;background:#fff;box-shadow:none;border-radius:0;overflow:hidden}.logo-mark img{display:block;width:100%;height:100%;object-fit:contain;object-position:center}.page-home .hero{grid-template-columns:1fr}.hero-right{background:#dce6ea}.hero-right img{object-fit:cover;object-position:center;animation:none}.hero-right-label{background:rgba(16,47,63,.72)}@media(max-width:767px){.logo-mark{width:68px;height:68px}.page-home .hero-right{min-height:clamp(150px,38vw,250px)}.hero-right img{object-fit:cover;object-position:center}.hero-right-label{bottom:14px;left:14px;right:14px;width:auto;transform:none;max-width:none}}@media(max-width:380px){.logo-mark{width:60px;height:60px}.hero-right-label{display:none}}
.fee-page .content-wrap{max-width:980px}.fee-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;margin:28px 0}.info-card{padding:clamp(22px,3vw,34px);border:1px solid rgba(45,92,82,.18);border-radius:12px;background:linear-gradient(145deg,#f3f8f5,#fff);box-shadow:0 10px 25px rgba(35,61,55,.08)}.info-card h2{margin-top:0;color:var(--text-dark)}.info-card p,.info-card li{line-height:1.7;color:var(--text-mid)}.info-card ul{padding-left:20px;margin-bottom:0}.fee-table-wrap{overflow-x:auto}.fee-table{width:100%;border-collapse:collapse;color:var(--text-mid)}.fee-table th,.fee-table td{padding:13px 10px;text-align:left;border-bottom:1px solid rgba(45,92,82,.16)}.fee-table th:last-child,.fee-table td:last-child{text-align:right;white-space:nowrap}.fee-table th{color:var(--text-dark);font-size:.82rem;letter-spacing:.08em;text-transform:uppercase}.fee-note{margin:0 0 24px;padding:16px 18px;border-left:4px solid var(--primary,#2d5c52);background:var(--bg-soft,#f4f7f5);line-height:1.65;color:var(--text-mid)}@media(max-width:700px){.fee-grid{grid-template-columns:1fr;gap:16px}.info-card{padding:20px 16px}.fee-page .btn-primary{width:100%;text-align:center}}
.u-inline-1{cursor: pointer}
.u-inline-2{font-family: var(--font-serif); font-size: 1.55rem; font-weight: 400; color: var(--text-dark); margin-bottom: 4px;}
.u-inline-3{font-size: 0.88rem; color: var(--text-light); font-style: italic; margin-bottom: 14px; line-height: 1.5;}
.u-inline-4{font-size: 0.83rem; color: var(--text-light); font-style: italic; margin-bottom: 10px}
.u-inline-5{margin-top: 28px}
.u-inline-6{color: var(--primary-dark); font-weight: 600; cursor: pointer}
.u-inline-7{color: rgba(255, 255, 255, 0.7)}
.u-inline-8{display: block; margin-top: 6px}
.u-inline-9{margin-top: 48px}
.u-inline-10{font-size: clamp(1.5rem, 2.2vw, 2rem); margin-bottom: 8px}
.u-inline-11{max-width: 680px}
.u-inline-12{margin-top: 44px}
.u-inline-13{margin: 0 auto}
.u-inline-14{margin-top: 18px}
.u-inline-15{margin-top: 24px}
.u-inline-16{cursor: pointer; display: inline-block}
.u-inline-17{margin-top: 20px; margin-bottom: 0}

/* ─── WEBER PUBLIC SITE V2 ─── */
.skip-link{position:fixed;left:16px;top:12px;z-index:3000;transform:translateY(-160%);background:#fff;color:var(--primary-dark);padding:10px 16px;border-radius:8px;box-shadow:var(--shadow-md);font-weight:700}
.skip-link:focus{transform:translateY(0)}
.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
.site-v2{background:var(--warm-white)}
.site-v2{--teal:var(--accent);--teal-light:#eaf4ef}
.site-v2 .nav-inner{max-width:1200px;padding-block:12px}
.site-v2 .logo-mark{width:68px;height:68px}
.site-v2 .hamburger{position:relative}
.site-v2 .hamburger span{position:absolute;left:50%;top:50%;margin:0;transform:translate(-50%,-7px)}
.site-v2 .hamburger span:nth-child(2){transform:translate(-50%,0)}
.site-v2 .hamburger span:nth-child(3){transform:translate(-50%,7px)}
.site-v2 .hamburger.open span:nth-child(1){transform:translate(-50%,0) rotate(45deg)}
.site-v2 .hamburger.open span:nth-child(2){opacity:0;transform:translate(-50%,0) scale(0)}
.site-v2 .hamburger.open span:nth-child(3){transform:translate(-50%,0) rotate(-45deg)}
.site-v2 #main-nav{flex-wrap:nowrap}
.site-v2 #main-nav a{white-space:nowrap}
.site-v2 main a:not(.btn-primary):not(.btn-outline){color:var(--primary-dark)}
.site-v2 main a:not(.btn-primary):not(.btn-outline):hover{text-decoration-thickness:2px}
.site-v2 .content-wrap{max-width:1120px}
.home-banner{width:100%;background:#dce6ea;overflow:hidden;border-bottom:1px solid rgba(43,79,122,.15)}
.home-banner img{display:block;width:100%;height:auto;max-height:460px;object-fit:cover;object-position:center}
.home-intro{padding-top:clamp(54px,7vw,90px);padding-bottom:clamp(54px,7vw,90px)}
.home-intro-grid{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:clamp(34px,7vw,90px);align-items:start}
.home-intro h1,.page-intro-section h1,.genesight-hero h1{font-family:var(--font-serif);font-weight:400;line-height:1.16;color:var(--text-dark)}
.site-v2 h1,.site-v2 h2,.site-v2 h3{overflow-wrap:normal;word-break:normal;hyphens:none}
.home-intro h1{font-size:clamp(2.2rem,4.5vw,4.15rem);max-width:650px}
.lead{font-size:clamp(1.08rem,1.8vw,1.28rem);line-height:1.75;color:var(--text-mid)}
.home-actions{align-items:center;margin-top:28px}
.home-actions .text-link{padding:12px 4px}
.text-link{display:inline-flex;align-items:center;gap:8px;color:var(--primary-dark);font-weight:700;text-decoration:none}
.text-link:hover{text-decoration:underline}
.service-section{padding:clamp(58px,8vw,96px) 0;background:#fff}
.section-head{display:flex;align-items:end;justify-content:space-between;gap:24px;margin-bottom:32px}
.section-head h2,.content-band h2,.about-services h2,.final-cta h2{font-family:var(--font-serif);font-size:clamp(1.75rem,3vw,2.65rem);font-weight:400;line-height:1.25}
.service-highlights{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.service-highlight-card{display:flex;flex-direction:column;min-width:0;padding:28px 24px;border:1px solid var(--border);border-radius:var(--r-md);background:linear-gradient(150deg,#fff,#f8fafc);box-shadow:var(--shadow-sm);color:var(--text-dark)!important;text-decoration:none!important;transition:transform .2s var(--ease-out),box-shadow .2s var(--ease-out),border-color .2s var(--ease-out)}
.service-highlight-card h3{font-family:var(--font-serif);font-size:1.18rem;line-height:1.35;margin:18px 0 10px}
.service-highlight-card p{color:var(--text-mid);font-size:.95rem;line-height:1.65}
.service-highlight-featured{border-color:rgba(43,106,82,.42);background:linear-gradient(145deg,#f1f8f4,#fff)}
.icon-shell{display:grid;place-items:center;width:48px;height:48px;border-radius:14px;background:var(--primary-light);color:var(--primary-dark)}
.icon-shell svg{width:27px;height:27px;fill:none;stroke:currentColor;stroke-width:1.65;stroke-linecap:round;stroke-linejoin:round}
@media(hover:hover) and (pointer:fine){.service-highlight-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-md);border-color:rgba(43,79,122,.45)}}
.quote-panel{padding:clamp(52px,8vw,88px) 0;background:linear-gradient(135deg,var(--primary-deep),var(--primary-dark));color:#fff;text-align:center}
.quote-panel p{font-family:var(--font-serif);font-size:clamp(1.65rem,4vw,3rem);line-height:1.3;margin-bottom:12px}
.quote-panel span{color:rgba(255,255,255,.75);font-size:clamp(1rem,1.8vw,1.18rem)}
.final-cta{padding:clamp(48px,7vw,78px) 0}
.final-cta .content-wrap{display:flex;align-items:center;justify-content:space-between;gap:36px}
.final-cta p{max-width:700px;margin-top:10px;color:var(--text-mid)}
.page-intro-section{padding:clamp(52px,8vw,88px) 0;background:linear-gradient(145deg,#eef3f8,#f8f5ed);border-bottom:1px solid var(--border)}
.page-intro-section h1{font-size:clamp(2.15rem,5vw,4rem);margin-bottom:14px}
.page-subtitle{font-size:clamp(1rem,2vw,1.25rem);color:var(--primary-dark);font-weight:600;letter-spacing:.025em}
.page-intro{max-width:780px;color:var(--text-mid);font-size:1.08rem;line-height:1.75}
.about-profile{display:grid;grid-template-columns:minmax(260px,.72fr) minmax(0,1.55fr);gap:clamp(38px,7vw,86px);padding-top:clamp(56px,8vw,92px);padding-bottom:clamp(56px,8vw,92px);align-items:start}
.about-portrait{position:sticky;top:118px}
.about-portrait img{display:block;width:100%;aspect-ratio:4/5;object-fit:cover;object-position:center 18%;border-radius:var(--r-lg);box-shadow:var(--shadow-lg)}
.about-portrait figcaption{padding:14px 4px;color:var(--text-light);font-size:.9rem;line-height:1.5}
.about-copy p{margin-bottom:20px;color:var(--text-mid)}
.about-copy h2{font-family:var(--font-serif);font-size:clamp(1.55rem,2.6vw,2.25rem);font-weight:400;margin:40px 0 14px;line-height:1.3}
.profile-quote{margin:40px 0;padding:30px;border-left:5px solid var(--accent);background:#eef5f1;border-radius:0 var(--r-md) var(--r-md) 0}
.profile-quote p{font-family:var(--font-serif);font-size:clamp(1.35rem,2.6vw,2rem);color:var(--primary-dark);margin-bottom:8px}
.profile-quote cite{color:var(--text-mid);font-style:normal}
.content-band{padding:clamp(58px,8vw,92px) 0;background:#fff}
.topic-grid{list-style:none;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px 24px;margin:30px 0 0;padding:0}
.topic-grid li{position:relative;padding:16px 18px 16px 48px;background:#f4f7fa;border:1px solid var(--border);border-radius:10px;color:var(--text-mid);line-height:1.55}
.topic-grid li::before{content:"";position:absolute;left:20px;top:23px;width:10px;height:10px;border-radius:50%;background:var(--accent);box-shadow:0 0 0 4px rgba(43,106,82,.12)}
.about-services{padding-top:clamp(58px,8vw,92px);padding-bottom:clamp(58px,8vw,92px)}
.compact-card-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px;margin:28px 0 30px}
.compact-card{padding:26px;border:1px solid var(--border);background:#fff;border-radius:var(--r-md);box-shadow:var(--shadow-sm)}
.compact-card h3{font-family:var(--font-serif);font-size:1.25rem;margin-bottom:8px}
.compact-card p{color:var(--text-mid)}
.services-page-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px;padding-top:clamp(54px,8vw,88px);padding-bottom:clamp(54px,8vw,88px)}
.site-v2 .service-card{display:block;padding:30px;border-radius:var(--r-md);background:#fff;border:1px solid var(--border);box-shadow:var(--shadow-sm);transform:none}
.site-v2 .service-card h2{font-family:var(--font-serif);font-size:1.35rem;font-weight:400;margin:18px 0 10px}
.site-v2 .service-card p{color:var(--text-mid);line-height:1.7}
.site-v2 .service-card .text-link{margin-top:16px}
.scope-note{margin-top:24px;color:var(--text-light);font-style:italic}
.genesight-hero{padding:clamp(58px,8vw,98px) 0;background:linear-gradient(140deg,var(--primary-deep),#214f61);color:#fff}
.genesight-hero .content-wrap{display:grid;grid-template-columns:minmax(0,1.45fr) minmax(220px,.55fr);align-items:center;gap:52px}
.genesight-hero h1{font-size:clamp(2.2rem,5vw,4.3rem);color:#fff;margin-bottom:18px}
.genesight-hero p{font-family:var(--font-serif);font-size:clamp(1.15rem,2vw,1.55rem);color:rgba(255,255,255,.75);margin-bottom:30px}
.genesight-hero .section-label{color:#b8cbe1}
.genesight-visual{display:grid;place-items:center;aspect-ratio:1;border:1px solid rgba(255,255,255,.18);border-radius:50%;background:rgba(255,255,255,.06)}
.genesight-visual svg{width:78%;height:78%;fill:none;stroke:#b8cbe1;stroke-width:5;stroke-linecap:round}
.genesight-content{max-width:900px;padding-top:clamp(58px,8vw,92px);padding-bottom:clamp(58px,8vw,92px)}
.genesight-content section{margin-bottom:clamp(58px,8vw,88px)}
.genesight-content h2{font-family:var(--font-serif);font-weight:400;font-size:clamp(1.65rem,3vw,2.5rem);line-height:1.3;margin-bottom:18px}
.genesight-content p{margin-bottom:18px;color:var(--text-mid)}
.check-list{list-style:none;margin:22px 0 28px;padding:0;display:grid;gap:12px}
.check-list li{position:relative;padding-left:34px;color:var(--text-mid)}
.check-list li::before{content:"✓";position:absolute;left:0;top:-2px;display:grid;place-items:center;width:23px;height:23px;border-radius:50%;background:#e5f1ea;color:var(--accent-dark);font-weight:800}
.clinical-note{margin:28px 0;padding:20px 22px;border-left:5px solid var(--accent);background:#eef5f1;color:var(--text-mid);border-radius:0 10px 10px 0}
.consideration-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin:24px 0}
.consideration-grid>div{padding:20px;background:#fff;border:1px solid var(--border);border-radius:10px;box-shadow:var(--shadow-sm);color:var(--text-mid)}
.process-list{list-style:none;padding:0;margin:28px 0;display:grid;gap:18px}
.process-list li{display:grid;grid-template-columns:52px minmax(0,1fr);gap:18px;align-items:start;padding:22px;background:#fff;border:1px solid var(--border);border-radius:var(--r-md)}
.process-list li>span{display:grid;place-items:center;width:48px;height:48px;border-radius:50%;background:var(--grad-primary);color:#fff;font-weight:800;font-size:1.1rem}
.process-list h3{font-family:var(--font-serif);font-size:1.2rem;margin-bottom:5px}
.process-list p{margin:0}
.genesight-closing{padding:clamp(28px,5vw,48px);background:linear-gradient(145deg,#eef3f8,#fff);border:1px solid var(--border);border-radius:var(--r-lg)}
.trademark-note{font-size:.82rem;color:var(--text-light)}
.fee-page{padding-top:clamp(52px,8vw,82px);padding-bottom:clamp(52px,8vw,82px)}
.contact-page-layout{display:grid;grid-template-columns:minmax(270px,.78fr) minmax(0,1.35fr);gap:clamp(28px,6vw,68px);padding-top:clamp(52px,8vw,82px);padding-bottom:clamp(52px,8vw,82px);align-items:start}
.contact-sidebar{display:grid;gap:34px}
.contact-sidebar h2,.contact-form-card h2{font-family:var(--font-serif);font-weight:400;font-size:clamp(1.35rem,2.5vw,1.9rem);margin-bottom:16px}
.contact-list{display:grid;gap:14px}
.contact-list>div{display:grid;grid-template-columns:65px minmax(0,1fr);gap:12px;padding-bottom:14px;border-bottom:1px solid var(--border)}
.contact-list dt{font-size:.75rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:var(--text-mid)}
.contact-list dd{color:var(--text-mid)}
.office-list{display:grid;gap:14px}
.office-card{padding:22px;background:#fff;border:1px solid var(--border);border-radius:var(--r-md);box-shadow:var(--shadow-sm)}
.office-card>span{display:inline-flex;padding:5px 10px;border-radius:100px;background:var(--primary-light);color:var(--primary-dark);font-size:.72rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase}
.office-card h3{font-family:var(--font-serif);font-weight:400;font-size:1.15rem;margin:10px 0 6px}
.office-card address{font-style:normal;color:var(--text-mid);margin-bottom:12px}
.contact-emergency{padding:20px;border-left:5px solid #b74848;background:#fff1f1;border-radius:0 10px 10px 0}
.contact-emergency p{margin-top:4px}
.contact-form-card{background:#fff;box-shadow:var(--shadow-md);border-radius:var(--r-lg)}
.contact-form-card .contact-consent{display:grid;grid-template-columns:24px minmax(0,1fr);gap:12px;align-items:start;width:100%;min-width:0;min-height:44px}
.contact-form-card .contact-consent input{box-sizing:border-box;display:block;flex:none;width:22px;min-width:22px;max-width:22px;height:22px;min-height:22px;margin:2px 0 0;padding:0}
.contact-form-card .contact-consent span{display:block;min-width:0;overflow-wrap:normal;word-break:normal;line-height:1.5}
.contact-form-actions button:disabled{opacity:.65;cursor:wait}
.portal-handoff{min-height:60vh;display:grid;align-items:center;padding:70px 0}
.portal-handoff .content-wrap{max-width:760px}
.portal-handoff h1{font-family:var(--font-serif);font-size:clamp(2rem,5vw,3.6rem);margin-bottom:18px}
.portal-handoff p{font-size:1.08rem;color:var(--text-mid);margin-bottom:24px}
.not-found-logo{width:190px;height:auto;margin:0 auto 20px}
.footer-logo{display:block;width:150px;height:auto;margin-bottom:18px;border-radius:6px}
.footer-contact-actions{display:grid;gap:10px;width:min(100%,260px);margin-top:18px}
.footer-contact-button{display:inline-flex!important;align-items:center;justify-content:center;width:100%;min-height:48px;padding:11px 18px!important;border:1px solid rgba(255,255,255,.62);border-radius:8px;font-weight:700;text-align:center;text-transform:uppercase;letter-spacing:.05em;text-decoration:none}
.footer-email-button{background:#fff;color:var(--primary-deep)!important}
.footer-call-button{margin:0;color:#fff!important}
.footer-email-button:hover,.footer-email-button:focus-visible{background:#dfeaf0;color:var(--primary-deep)!important}
.footer-call-button:hover,.footer-call-button:focus-visible{background:#fff;color:var(--primary-deep)!important}
.site-v2 footer a{overflow-wrap:anywhere}
.site-v2 footer{margin-top:0}
.site-v2 .footer-inner{max-width:1120px}
.site-v2 .footer-col h2{font-family:var(--font-sans);font-size:.75rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:rgba(255,255,255,.82);margin-bottom:16px}
.site-v2 .footer-col span{color:rgba(255,255,255,.72);font-size:.88rem}
.site-v2 .footer-bottom{max-width:1120px}
.site-v2 .footer-bottom a{color:#fff}

@media(max-width:1099px){
  .site-v2 .logo-mark{width:60px;height:60px}
  .service-highlights{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:820px){
  .home-intro-grid,.about-profile,.genesight-hero .content-wrap,.contact-page-layout{grid-template-columns:1fr}
  .about-portrait{position:static;max-width:480px;margin:0 auto}
  .services-page-grid{grid-template-columns:1fr}
  .genesight-visual{max-width:280px;margin:0 auto;width:100%}
  .contact-sidebar{grid-template-columns:repeat(2,minmax(0,1fr));align-items:start}
  .contact-emergency{grid-column:1/-1}
}
@media(max-width:767px){
  .site-v2 .nav-inner{padding-block:9px}
  .site-v2 .logo-mark{width:54px;height:54px}
  .home-banner img{min-height:160px;object-fit:cover}
  .section-head,.final-cta .content-wrap{align-items:flex-start;flex-direction:column}
  .topic-grid,.compact-card-grid,.consideration-grid{grid-template-columns:1fr}
  .contact-sidebar{grid-template-columns:1fr}
  .contact-emergency{grid-column:auto}
  .footer-logo{width:125px}
}
@media(max-width:479px){
  .site-v2 .logo-mark{width:48px;height:48px}
  .home-banner img{min-height:138px}
  .service-highlights{grid-template-columns:1fr}
  .service-highlight-card,.site-v2 .service-card{padding:22px 19px}
  .home-intro h1{font-size:clamp(1.95rem,9vw,2.35rem)}
  .page-intro-section h1,.genesight-hero h1{font-size:clamp(2rem,11vw,3rem)}
  .profile-quote{padding:22px 18px}
  .topic-grid li{padding:15px 16px 15px 43px}
  .contact-list>div{grid-template-columns:1fr;gap:3px}
  .process-list li{grid-template-columns:42px minmax(0,1fr);gap:14px;padding:18px 15px}
  .process-list li>span{width:40px;height:40px}
  .genesight-closing{padding:24px 18px}
}

/* Weber navy editorial polish */
.site-v2{
  --navy-950:#0d1d31;
  --navy-900:#122540;
  --navy-800:#1e3a5f;
  --navy-700:#2b4f7a;
  --ink-on-navy:#f4f7fb;
  --muted-on-navy:#c8d5e5;
  --organic-line:rgba(200,213,229,.16);
}
html{overflow-x:clip}
body.site-v2{overflow-x:visible}
.scroll-sentinel{position:absolute;inset:0 auto auto 0;width:1px;height:1px;pointer-events:none}
#site-header{transition:background-color .24s var(--ease-out),border-color .24s var(--ease-out),box-shadow .24s var(--ease-out)}
.is-scrolled #site-header{background:rgba(255,255,255,.97);border-color:rgba(43,79,122,.2);box-shadow:0 8px 24px rgba(13,29,49,.1)}

.home-banner{position:relative;isolation:isolate;background:#dbe5e9}
.home-banner::after{content:"";position:absolute;inset:0;z-index:1;pointer-events:none;background:linear-gradient(90deg,rgba(13,29,49,.05),transparent 42%,rgba(13,29,49,.16))}
.home-banner img{position:relative;z-index:0;width:100%;aspect-ratio:1280/426;min-height:0;object-fit:cover;object-position:center;transform:scale(1.01);transform-origin:center}

.page-intro-section{position:relative;isolation:isolate;overflow:hidden;background:linear-gradient(135deg,var(--navy-950),var(--navy-800));border-bottom-color:rgba(255,255,255,.12)}
.page-intro-section::after,.genesight-hero::after,.profile-quote::after,.service-card-featured::after,.quote-panel::after{content:"";position:absolute;z-index:-1;pointer-events:none;background:url("/images/weber-organic-lines.svg") center/contain no-repeat;color:var(--organic-line);opacity:.9}
.page-intro-section::after{width:min(58vw,720px);height:115%;right:-7%;bottom:-30%}
.page-intro-section .content-wrap{position:relative;z-index:1}
.page-intro-section h1{color:var(--ink-on-navy)}
.page-intro-section .page-intro,.page-intro-section .page-subtitle{color:var(--muted-on-navy)}
.page-intro-section .section-label,.genesight-hero .section-label{color:#b9cce3;border-color:rgba(185,204,227,.34);background:rgba(255,255,255,.06)}

.service-section{position:relative;isolation:isolate;overflow:hidden;background:linear-gradient(160deg,#f9fbfd 0%,#fff 58%,#eef3f8 100%)}
.service-section::before{content:"";position:absolute;right:-9%;top:2%;width:min(38vw,500px);aspect-ratio:1;background:url("/images/weber-logo.webp") center/contain no-repeat;opacity:.035;pointer-events:none}
.service-section .content-wrap{position:relative;z-index:1}
.service-highlights{grid-template-columns:repeat(12,minmax(0,1fr));gap:20px}
.service-highlight-card{grid-column:span 6;position:relative;overflow:hidden;min-height:250px;justify-content:flex-end;background:rgba(255,255,255,.9);box-shadow:0 12px 34px rgba(18,37,64,.08)}
.service-highlight-card:nth-child(1),.service-highlight-card:nth-child(4){grid-column:span 7}
.service-highlight-card:nth-child(2),.service-highlight-card:nth-child(3){grid-column:span 5}
.service-highlight-card .icon-shell,.site-v2 .service-card .icon-shell{place-items:start;width:42px;height:42px;border-radius:0;background:transparent;color:var(--primary-dark)}
.service-highlight-featured{isolation:isolate;border-color:rgba(255,255,255,.18);background:linear-gradient(145deg,var(--navy-900),var(--navy-700));color:var(--ink-on-navy)!important}
.service-highlight-featured::after{content:"";position:absolute;right:-10%;bottom:-16%;z-index:-1;width:65%;aspect-ratio:1;background:url("/images/weber-organic-lines.svg") center/contain no-repeat;color:rgba(200,213,229,.14)}
.service-highlight-featured h3,.service-highlight-featured p,.service-highlight-featured .icon-shell{color:var(--ink-on-navy)}
.service-highlight-featured p{color:var(--muted-on-navy)}
.site-v2 .text-link{min-height:44px}

.quote-panel{position:relative;isolation:isolate;overflow:hidden;background:linear-gradient(135deg,var(--navy-950),var(--navy-800))}
.quote-panel::after{width:min(62vw,720px);height:150%;left:-12%;top:-24%;transform:scaleX(-1)}
.quote-panel .content-wrap{position:relative;z-index:1}

.about-portrait{position:sticky;top:112px}
.about-portrait::before{content:"";position:absolute;inset:18px -18px -18px 18px;z-index:-1;border-radius:var(--r-lg);background:linear-gradient(150deg,var(--navy-900),var(--navy-700));opacity:.95}
.profile-quote{position:relative;isolation:isolate;overflow:hidden;border:0;border-radius:var(--r-md);background:linear-gradient(140deg,var(--navy-900),var(--navy-800));box-shadow:var(--shadow-md)}
.profile-quote::after{width:70%;height:140%;right:-18%;bottom:-38%;opacity:.7}
.profile-quote p{position:relative;color:var(--ink-on-navy)}
.profile-quote cite{position:relative;color:var(--muted-on-navy)}

.services-page-grid{grid-template-columns:repeat(12,minmax(0,1fr));gap:22px}
.site-v2 .service-card{grid-column:span 6;position:relative;overflow:hidden;transition:transform .22s var(--ease-out),box-shadow .22s var(--ease-out),border-color .22s var(--ease-out)}
.site-v2 .service-card:nth-child(3),.site-v2 .service-card:nth-child(5){background:#f2f6fa}
.site-v2 .service-card-featured{grid-column:1/-1;isolation:isolate;padding-right:min(34vw,360px);border-color:rgba(255,255,255,.18);background:linear-gradient(145deg,var(--navy-900),#214f61)}
.service-card-featured::after{width:min(38vw,410px);height:130%;right:-5%;bottom:-20%}
.site-v2 .service-card-featured h2,.site-v2 .service-card-featured .service-note,.site-v2 .service-card-featured .icon-shell,.site-v2 .service-card-featured .text-link{position:relative;color:var(--ink-on-navy)!important}
.site-v2 .service-card-featured p{position:relative;color:var(--muted-on-navy)}
@media(hover:hover) and (pointer:fine){.site-v2 .service-card:not(.service-card-featured):hover{transform:translateY(-4px);border-color:rgba(43,79,122,.38);box-shadow:0 16px 36px rgba(18,37,64,.12)}}

.genesight-hero{position:relative;isolation:isolate;overflow:hidden;background:linear-gradient(135deg,var(--navy-950),#214f61)}
.genesight-hero::after{width:min(50vw,620px);height:130%;right:-8%;bottom:-32%}
.genesight-hero .content-wrap{position:relative;z-index:1}
.genesight-visual{background:rgba(255,255,255,.045);box-shadow:inset 0 0 0 1px rgba(255,255,255,.04)}
.process-list{position:relative}
.process-list::before{content:"";position:absolute;left:45px;top:24px;bottom:24px;width:2px;z-index:0;background:linear-gradient(var(--primary),var(--accent));transform:scaleY(0);transform-origin:top;transition:transform .8s var(--ease-out)}
.process-list.is-visible::before{transform:scaleY(1)}
.process-list li{position:relative;z-index:1}

.motion-ready [data-reveal]{opacity:0;transform:translateY(20px);transition:opacity .54s var(--ease-out),transform .54s var(--ease-out);transition-delay:calc(var(--reveal-order,0) * 60ms)}
.motion-ready [data-reveal="left"]{transform:translateX(-20px)}
.motion-ready [data-reveal="right"]{transform:translateX(20px)}
.motion-ready [data-reveal].is-visible{opacity:1;transform:none}

@supports (animation-timeline:view()){
  @media(prefers-reduced-motion:no-preference){
    .home-banner[data-motion="banner"] img{animation:weberBannerDrift linear both;animation-timeline:view();animation-range:entry 0% exit 100%}
    @keyframes weberBannerDrift{from{transform:scale(1.01) translateY(-1%)}to{transform:scale(1.035) translateY(3%)}}
  }
}

@media(max-width:1099px){
  .service-highlights{grid-template-columns:repeat(2,minmax(0,1fr))}
  .service-highlight-card,.service-highlight-card:nth-child(n){grid-column:auto}
}
@media(max-width:820px){
  .services-page-grid{grid-template-columns:1fr}
  .site-v2 .service-card,.site-v2 .service-card-featured{grid-column:auto;padding-right:30px}
  .about-portrait{position:static;width:calc(100% - 16px);margin-inline:auto}
  .about-portrait::before{inset:14px -12px -12px 12px}
}
@media(max-width:767px){
  .home-banner[data-motion="banner"] img{width:100%;height:auto;min-height:0;object-fit:contain;animation:none;transform:none}
  .page-intro-section::after{width:120vw;right:-54%;opacity:.65}
  .service-highlight-card{min-height:0}
  .process-list::before{left:34px}
}
@media(max-width:479px){
  .service-highlights{grid-template-columns:1fr}
  .page-intro-section{padding-top:48px;padding-bottom:48px}
  .profile-quote{padding:24px 20px}
  .about-portrait::before{inset:10px -8px -8px 8px}
}
@media(prefers-reduced-motion:reduce){
  .motion-ready [data-reveal]{opacity:1;transform:none;transition:none}
  .process-list::before{transform:scaleY(1);transition:none}
  .home-banner img{transform:none!important;animation:none!important}
  #site-header,.service-highlight-card,.site-v2 .service-card{transition:none}
}
.site-v2 footer nav a{display:inline-flex;align-items:center;min-height:44px;padding-block:8px}
.site-v2 footer .footer-col>a:not(.footer-call-button){display:inline-flex;align-items:center;min-height:44px}
