:root {
    --phase1a1-bg: #ffffff;
    --phase1a1-surface: #f7f8fa;
    --phase1a1-surface-strong: #eef1f4;
    --phase1a1-text: #1f2933;
    --phase1a1-muted: #5f6b76;
    --phase1a1-border: #d8dee4;
    --phase1a1-primary: #2f6f5e;
    --phase1a1-primary-hover: #255849;
    --phase1a1-home: #8a4f16;
    --phase1a1-home-hover: #6e3f12;
    --phase1a1-focus: #2563eb;
    --phase1a1-radius-sm: 6px;
    --phase1a1-radius: 10px;
    --phase1a1-radius-lg: 16px;
    --phase1a1-shadow: 0 12px 34px rgba(31, 41, 51, 0.1);
}

.phase1a1-container {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 1200px;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
}

.phase1a1-visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.phase1a1-skip-link {
    background: #fff;
    border: 2px solid var(--phase1a1-focus);
    color: var(--phase1a1-text);
    left: 16px;
    padding: 12px 16px;
    position: fixed;
    top: 12px;
    transform: translateY(-160%);
    z-index: 10000;
}

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

.phase1a1-site-header,
.phase1a1-site-header * {
    box-sizing: border-box;
}

.phase1a1-site-header {
    background: var(--phase1a1-bg);
    border-bottom: 1px solid var(--phase1a1-border);
    color: var(--phase1a1-text);
    position: relative;
    z-index: 100;
}

.phase1a1-utility-bar {
    background: #23352f;
    color: #fff;
}

.phase1a1-utility-inner {
    display: flex;
    justify-content: flex-end;
}

.phase1a1-utility-inner nav {
    display: flex;
    flex-wrap: wrap;
}

.phase1a1-utility-inner a {
    color: #fff;
    display: inline-flex;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    min-height: 40px;
    padding: 10px 12px;
}

.phase1a1-utility-inner a:hover {
    background: #17241f;
    color: #fff;
}

.phase1a1-header-main {
    background: #fff;
}

.phase1a1-header-inner {
    align-items: center;
    display: flex;
    gap: 24px;
    min-height: 92px;
}

.phase1a1-brand {
    display: inline-flex;
    flex: 0 0 auto;
}

.phase1a1-brand img {
    height: auto;
    max-width: 270px;
    width: 100%;
}

.phase1a1-desktop-nav {
    margin-left: auto;
}

.phase1a1-main-nav,
.phase1a1-dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.phase1a1-main-nav {
    align-items: stretch;
    display: flex;
}

.phase1a1-main-nav > li {
    position: relative;
}

.phase1a1-main-nav a,
.phase1a1-nav-button {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--phase1a1-text);
    cursor: pointer;
    display: inline-flex;
    font: 500 15px/1.25 "Roboto", sans-serif;
    gap: 6px;
    min-height: 48px;
    padding: 10px 11px;
    text-align: left;
}

.phase1a1-main-nav > li > a:hover,
.phase1a1-nav-button:hover,
.phase1a1-nav-button[aria-expanded="true"] {
    background: var(--phase1a1-surface-strong);
    color: var(--phase1a1-primary-hover);
}

.phase1a1-dropdown-menu {
    background: #fff;
    border: 1px solid var(--phase1a1-border);
    border-radius: var(--phase1a1-radius-sm);
    box-shadow: var(--phase1a1-shadow);
    left: 0;
    min-width: 230px;
    padding: 6px;
    position: absolute;
    top: calc(100% + 4px);
    z-index: 20;
}

.phase1a1-dropdown-menu--right {
    left: auto;
    right: 0;
}

.phase1a1-dropdown-menu[hidden],
.phase1a1-mobile-menu[hidden] {
    display: none !important;
}

.phase1a1-dropdown-menu a {
    border-radius: 4px;
    display: flex;
    min-height: 44px;
    width: 100%;
}

.phase1a1-dropdown-menu a:hover {
    background: var(--phase1a1-surface);
}

.phase1a1-dropdown-menu--mega {
    display: grid;
    gap: 4px 28px;
    grid-template-columns: repeat(2, minmax(200px, 240px));
    max-width: calc(100vw - 32px);
    padding: 14px;
}

.phase1a1-dropdown-menu__heading {
    color: var(--phase1a1-muted);
    display: block;
    font: 700 12px/1.3 "Roboto", sans-serif;
    letter-spacing: 0.08em;
    padding: 8px 11px 4px;
    text-transform: uppercase;
}

.phase1a1-dropdown-menu--mega ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 1279px) {
    .phase1a1-dropdown-menu--mega {
        grid-template-columns: minmax(200px, 240px);
    }
}

.phase1a1-mobile-nav {
    display: none;
    margin-left: auto;
    position: relative;
}

.phase1a1-mobile-toggle {
    align-items: center;
    background: var(--phase1a1-primary);
    border: 0;
    border-radius: var(--phase1a1-radius-sm);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font: 600 16px/1 "Roboto", sans-serif;
    gap: 9px;
    min-height: 44px;
    padding: 10px 14px;
}

.phase1a1-menu-icon,
.phase1a1-menu-icon::before,
.phase1a1-menu-icon::after {
    background: currentColor;
    content: "";
    display: block;
    height: 2px;
    width: 19px;
}

.phase1a1-menu-icon {
    position: relative;
}

.phase1a1-menu-icon::before {
    left: 0;
    position: absolute;
    top: -6px;
}

.phase1a1-menu-icon::after {
    left: 0;
    position: absolute;
    top: 6px;
}

.phase1a1-mobile-menu {
    background: #fff;
    border: 1px solid var(--phase1a1-border);
    box-shadow: var(--phase1a1-shadow);
    max-height: calc(100vh - 118px);
    overflow-y: auto;
    overscroll-behavior: contain;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: min(340px, calc(100vw - 32px));
}

.phase1a1-mobile-menu a {
    align-items: center;
    border-bottom: 1px solid var(--phase1a1-border);
    color: var(--phase1a1-text);
    display: flex;
    font: 500 16px/1.3 "Roboto", sans-serif;
    min-height: 48px;
    padding: 11px 16px;
}

.phase1a1-mobile-menu a:hover {
    background: var(--phase1a1-surface);
}

.phase1a1-mobile-menu-group > span {
    background: var(--phase1a1-surface-strong);
    color: var(--phase1a1-muted);
    display: block;
    font: 700 12px/1.3 "Roboto", sans-serif;
    letter-spacing: 0.08em;
    padding: 10px 16px 8px;
    text-transform: uppercase;
}

.phase1a1-mobile-menu-group a {
    padding-left: 24px;
}

.phase1a1-mobile-submenu-toggle {
    align-items: center;
    background: var(--phase1a1-surface-strong);
    border: 0;
    color: var(--phase1a1-muted);
    cursor: pointer;
    display: flex;
    font: 700 12px/1.3 "Roboto", sans-serif;
    justify-content: space-between;
    letter-spacing: 0.08em;
    min-height: 44px;
    padding: 10px 16px 8px;
    text-transform: uppercase;
    width: 100%;
}

.phase1a1-mobile-submenu[hidden] {
    display: none !important;
}

.phase1a1-mobile-submenu-heading {
    color: var(--phase1a1-muted);
    display: block;
    font: 700 11px/1.3 "Roboto", sans-serif;
    letter-spacing: 0.06em;
    padding: 10px 16px 6px 24px;
    text-transform: uppercase;
}

.phase1a1-mobile-submenu a {
    padding-left: 32px;
}

.phase1a1-site-header a:focus-visible,
.phase1a1-site-header button:focus-visible,
.phase1a1-site-footer a:focus-visible,
.phase1a1-homepage a:focus-visible,
.phase1a1-homepage button:focus-visible,
.phase1a1-homepage input:focus-visible {
    outline: 3px solid var(--phase1a1-focus);
    outline-offset: 3px;
}

.phase1a1-search-type-option:has(input:focus-visible) {
    outline: 3px solid var(--phase1a1-focus);
    outline-offset: 3px;
}

#main-content:focus {
    outline: none;
}

.phase1a1-homepage,
.phase1a1-homepage * {
    box-sizing: border-box;
}

.phase1a1-homepage {
    color: var(--phase1a1-text);
    font-family: "Roboto", sans-serif;
    overflow: hidden;
}

.phase1a1-homepage h1,
.phase1a1-homepage h2,
.phase1a1-homepage h3 {
    color: var(--phase1a1-text);
    font-family: "Roboto Slab", serif;
    line-height: 1.2;
    margin-top: 0;
}

.phase1a1-homepage h1 {
    font-size: clamp(2.25rem, 5vw, 3.7rem);
    letter-spacing: -0.035em;
    margin-bottom: 18px;
}

.phase1a1-homepage h2 {
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    margin-bottom: 12px;
}

.phase1a1-homepage h3 {
    font-size: 1.15rem;
}

.phase1a1-homepage p {
    line-height: 1.6;
}

.phase1a1-hero {
    background: linear-gradient(135deg, #eaf6f1 0%, #f8fbfa 52%, #fff4e8 100%);
    padding: 60px 0 68px;
}

.phase1a1-hero-layout {
    align-items: center;
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
}

.phase1a1-hero-intro {
    max-width: 560px;
}

.phase1a1-hero-intro > p:last-child {
    color: var(--phase1a1-muted);
    font-size: 19px;
    margin-bottom: 32px;
}

.phase1a1-eyebrow,
.phase1a1-category-label {
    color: var(--phase1a1-primary-hover);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.phase1a1-search-card {
    background: #fff;
    border: 1px solid var(--phase1a1-border);
    border-radius: var(--phase1a1-radius-lg);
    box-shadow: var(--phase1a1-shadow);
    padding: 30px;
    position: relative;
}

.phase1a1-search-card--combined {
    border-top: 5px solid transparent;
    border-image: linear-gradient(90deg, var(--phase1a1-primary), var(--phase1a1-home)) 1;
    width: 100%;
}

.phase1a1-search-type {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.phase1a1-search-type-option {
    align-items: center;
    background: #fff;
    border: 2px solid var(--phase1a1-border);
    border-radius: var(--phase1a1-radius-sm);
    color: var(--phase1a1-text);
    cursor: pointer;
    display: flex;
    flex: 1;
    font-size: 15px;
    font-weight: 700;
    justify-content: center;
    min-height: 46px;
    padding: 10px 12px;
    text-align: center;
}

.phase1a1-search-type-option input {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.phase1a1-search-type-option.is-selected {
    background: var(--phase1a1-primary);
    border-color: var(--phase1a1-primary);
    color: #fff;
}

.phase1a1-search-type-option--home.is-selected {
    background: var(--phase1a1-home);
    border-color: var(--phase1a1-home);
}

.phase1a1-search-fields {
    display: grid;
    gap: 14px;
    grid-template-columns: 2fr 1fr;
    margin-bottom: 16px;
}

.phase1a1-search-card label {
    color: var(--phase1a1-text);
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 7px;
}

.phase1a1-search-card input {
    background: #fff;
    border: 1px solid #86919b;
    border-radius: var(--phase1a1-radius-sm);
    color: var(--phase1a1-text);
    font: 16px/1.4 "Roboto", sans-serif;
    min-height: 46px;
    padding: 10px 12px;
    width: 100%;
}

.phase1a1-button {
    align-items: center;
    border: 0;
    border-radius: var(--phase1a1-radius-sm);
    cursor: pointer;
    display: inline-flex;
    font: 700 16px/1.25 "Roboto", sans-serif;
    justify-content: center;
    min-height: 46px;
    padding: 11px 18px;
}

.phase1a1-button--primary {
    background: var(--phase1a1-primary);
    color: #fff;
}

.phase1a1-button--primary:hover {
    background: var(--phase1a1-primary-hover);
    color: #fff;
}

.phase1a1-button--home {
    background: var(--phase1a1-home);
    color: #fff;
}

.phase1a1-button--home:hover {
    background: var(--phase1a1-home-hover);
    color: #fff;
}

.phase1a1-button--outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #fff;
}

.phase1a1-button--outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
}

.phase1a1-button--outline:active {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    color: #fff;
}

.phase1a1-trust-strip {
    background: #23352f;
    color: #fff;
    padding: 26px 0;
}

.phase1a1-trust-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.phase1a1-trust-grid div {
    align-items: center;
    border-left: 2px solid #73bca8;
    display: flex;
    gap: 13px;
    padding-left: 16px;
}

.phase1a1-trust-grid p {
    margin: 0;
}

.phase1a1-stat-icon {
    fill: #9bd3c3;
    flex: 0 0 30px;
    height: 30px;
    width: 30px;
}

.phase1a1-trust-grid strong,
.phase1a1-trust-grid span {
    display: block;
}

.phase1a1-trust-grid strong {
    color: #fff;
    font: 700 22px/1.2 "Roboto Slab", serif;
    margin-bottom: 4px;
}

.phase1a1-trust-grid span {
    color: #dce7e3;
    font-size: 14px;
    line-height: 1.45;
}

.phase1a1-ad-safe-wrapper {
    clear: both;
    margin: 24px 0;
    min-height: 90px;
    overflow: hidden;
    position: relative;
}

.phase1a1-ad-label {
    color: var(--phase1a1-muted);
    display: block;
    font: 11px/1.4 "Roboto", sans-serif;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
}

.phase1a1-section {
    padding: 64px 0;
}

.phase1a1-section--surface {
    background: var(--phase1a1-surface);
}

.phase1a1-section-heading {
    align-items: end;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 28px;
}

.phase1a1-section-heading p:last-child {
    color: var(--phase1a1-muted);
    margin-bottom: 12px;
    max-width: 450px;
}

.phase1a1-section-link,
.phase1a1-card-link {
    color: var(--phase1a1-primary-hover);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.phase1a1-state-section {
    padding-top: 44px;
}

.phase1a1-state-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.phase1a1-state-card {
    background: #fff;
    border: 1px solid var(--phase1a1-border);
    border-radius: var(--phase1a1-radius);
    padding: 16px;
}

.phase1a1-state-card h3 {
    font-size: 17px;
    margin-bottom: 12px;
}

.phase1a1-state-card div {
    display: grid;
    gap: 8px;
}

.phase1a1-state-card a {
    color: var(--phase1a1-primary-hover);
    font-size: 14px;
    line-height: 1.35;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.phase1a1-state-card a:last-child {
    color: var(--phase1a1-home-hover);
}

.phase1a1-card-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.phase1a1-card-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.phase1a1-resource-card {
    background: #fff;
    border: 1px solid var(--phase1a1-border);
    border-radius: var(--phase1a1-radius);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.phase1a1-resource-card > img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 100%;
}

.phase1a1-resource-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

.phase1a1-resource-card h3 {
    margin-bottom: 12px;
}

.phase1a1-resource-card h3 a {
    color: var(--phase1a1-text);
}

.phase1a1-resource-card__body > p:not(.phase1a1-resource-meta) {
    color: var(--phase1a1-muted);
}

.phase1a1-resource-meta {
    color: var(--phase1a1-muted);
    font-size: 13px;
    margin-bottom: 10px;
}

.phase1a1-card-link {
    margin-top: auto;
}

.phase1a1-location-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.phase1a1-location-grid section {
    border: 1px solid var(--phase1a1-border);
    border-radius: var(--phase1a1-radius);
    display: grid;
    gap: 2px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 22px;
}

.phase1a1-location-grid h3 {
    grid-column: 1 / -1;
    margin-bottom: 12px;
}

.phase1a1-location-grid a {
    border-radius: 4px;
    color: var(--phase1a1-primary-hover);
    min-height: 44px;
    padding: 10px 8px;
}

.phase1a1-location-grid section:last-child a {
    color: var(--phase1a1-home-hover);
}

.phase1a1-location-grid a:hover {
    background: var(--phase1a1-surface);
}

.phase1a1-provider-list,
.phase1a1-review-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.phase1a1-provider-list article,
.phase1a1-review-grid article {
    background: #fff;
    border: 1px solid var(--phase1a1-border);
    border-radius: var(--phase1a1-radius);
    padding: 18px;
}

.phase1a1-provider-list h3,
.phase1a1-review-grid h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.phase1a1-provider-list h3 a,
.phase1a1-review-grid h3 a {
    color: var(--phase1a1-text);
}

.phase1a1-provider-list article > p:last-child,
.phase1a1-review-grid article > p:not(.phase1a1-rating) {
    color: var(--phase1a1-muted);
    font-size: 14px;
    margin-bottom: 0;
}

.phase1a1-rating {
    color: #a75b00;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.phase1a1-site-footer,
.phase1a1-site-footer * {
    box-sizing: border-box;
}

.phase1a1-site-footer {
    background: #fff;
    color: #fff;
    font-family: "Roboto", sans-serif;
}

.phase1a1-footer-content {
    background: #1f302a;
    padding: 52px 0 24px;
}

.phase1a1-footer-grid {
    display: grid;
    gap: 36px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.phase1a1-footer-grid section {
    display: flex;
    flex-direction: column;
}

.phase1a1-footer-grid h2 {
    color: #fff;
    font: 700 17px/1.3 "Roboto Slab", serif;
    margin-bottom: 14px;
}

.phase1a1-footer-grid a {
    color: #e8f0ed;
    display: inline-flex;
    font-size: 15px;
    line-height: 1.4;
    min-height: 36px;
    padding: 7px 0;
}

.phase1a1-footer-grid a:hover,
.phase1a1-footer-meta a:hover {
    color: #fff;
    text-decoration: underline;
}

.phase1a1-disclaimer {
    border-top: 1px solid #587068;
    margin-top: 36px;
    padding-top: 24px;
}

.phase1a1-disclaimer p {
    color: #d6e1dd;
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 18px;
}

.phase1a1-disclaimer strong {
    color: #fff;
}

.phase1a1-footer-meta {
    align-items: center;
    border-top: 1px solid #435a52;
    color: #cbd8d3;
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    gap: 8px 22px;
    padding-top: 20px;
}

.phase1a1-footer-meta a {
    color: #e8f0ed;
    min-height: 36px;
    padding: 9px 0;
}

.phase1a1-provider-page,
.phase1a1-provider-page * {
    box-sizing: border-box;
}

.phase1a1-provider-page {
    background: var(--phase1a1-surface);
    color: var(--phase1a1-text);
    font-family: "Roboto", sans-serif;
    padding: 0 0 64px;
}

.phase1a1-provider-page h1,
.phase1a1-provider-page h2,
.phase1a1-provider-page h3 {
    color: var(--phase1a1-text);
    font-family: "Roboto Slab", serif;
    line-height: 1.25;
    margin-top: 0;
}

.phase1a1-provider-page h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.phase1a1-provider-page h2 {
    font-size: 1.35rem;
}

.phase1a1-provider-page p {
    line-height: 1.65;
}

.phase1a1-provider-page a {
    color: var(--phase1a1-primary-hover);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.phase1a1-provider-page a:focus-visible,
.phase1a1-provider-page button:focus-visible,
.phase1a1-provider-page input:focus-visible {
    outline: 3px solid var(--phase1a1-focus);
    outline-offset: 3px;
}

.phase1a1-provider-breadcrumbs {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    gap: 8px;
    min-height: 52px;
    padding: 12px 0;
}

.phase1a1-claim-layout {
    align-items: start;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) 340px;
}

.phase1a1-claim-search,
.phase1a1-claim-results,
.phase1a1-claim-guidance,
.phase1a1-claim-steps {
    background: #fff;
    border: 1px solid var(--phase1a1-border);
    border-radius: var(--phase1a1-radius);
}

.phase1a1-provider-lead,
.phase1a1-claim-intro > p:last-child {
    color: var(--phase1a1-muted);
    font-size: 18px;
    max-width: 760px;
}

.phase1a1-portal-intro {
    padding: 26px 0 22px;
}

.phase1a1-portal-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 10px;
}

.phase1a1-portal-card {
    background: #fff;
    border: 1px solid var(--phase1a1-border);
    border-radius: var(--phase1a1-radius);
    box-shadow: var(--phase1a1-shadow);
    display: flex;
    flex-direction: column;
    padding: 28px;
}

.phase1a1-portal-card h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.phase1a1-portal-card p {
    color: var(--phase1a1-muted);
    flex-grow: 1;
    margin-bottom: 20px;
}

.phase1a1-portal-card .phase1a1-button {
    align-self: flex-start;
}

.phase1a1-provider-cta-wrap {
    padding-bottom: 68px;
    padding-top: 22px;
}

.phase1a1-provider-cta {
    align-items: center;
    background: #2f463d;
    border-radius: var(--phase1a1-radius-lg);
    color: #fff;
    display: grid;
    gap: 40px;
    grid-template-columns: 1.4fr 1fr;
    padding: 54px 40px;
}

.phase1a1-provider-cta h2,
.phase1a1-provider-cta p {
    color: #fff;
}

.phase1a1-provider-actions {
    display: grid;
    gap: 12px;
}

.phase1a1-provider-actions .phase1a1-button {
    width: 100%;
}

.phase1a1-claim-guidance {
    padding: 26px;
    position: sticky;
    top: 20px;
}

.phase1a1-provider-field {
    margin-bottom: 16px;
}

.phase1a1-provider-field label {
    display: block;
    font-weight: 700;
    margin-bottom: 7px;
}

.phase1a1-provider-field label span {
    color: var(--phase1a1-muted);
    font-weight: 400;
}

.phase1a1-provider-field input {
    background: #fff;
    border: 1px solid #86919b;
    border-radius: var(--phase1a1-radius-sm);
    color: var(--phase1a1-text);
    font: 16px/1.4 "Roboto", sans-serif;
    min-height: 46px;
    padding: 10px 12px;
    width: 100%;
}

.phase1a1-claim-intro {
    padding: 26px 0 22px;
}

.phase1a1-claim-steps {
    margin-bottom: 28px;
    padding: 26px;
}

.phase1a1-claim-steps ol {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
}

.phase1a1-claim-steps li {
    color: var(--phase1a1-muted);
    font-size: 14px;
    line-height: 1.5;
}

.phase1a1-claim-steps li span {
    align-items: center;
    background: var(--phase1a1-primary);
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-weight: 700;
    height: 32px;
    justify-content: center;
    margin-bottom: 10px;
    width: 32px;
}

.phase1a1-claim-main {
    display: grid;
    gap: 22px;
}

.phase1a1-claim-search,
.phase1a1-claim-results {
    padding: 28px;
}

.phase1a1-claim-fields {
    display: grid;
    gap: 16px;
    grid-template-columns: 2fr 1fr 1fr;
}

.phase1a1-form-message {
    background: #fff4e8;
    border-left: 4px solid var(--phase1a1-home);
    color: var(--phase1a1-text);
    margin: 16px 0;
    padding: 12px 14px;
}

.phase1a1-claim-guidance section {
    border-top: 1px solid var(--phase1a1-border);
    margin-top: 22px;
    padding-top: 20px;
}

.phase1a1-claim-guidance h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.phase1a1-claim-table-wrap {
    overflow-x: auto;
}

.phase1a1-link-button {
    background: none;
    border: 0;
    color: var(--phase1a1-primary-hover);
    cursor: pointer;
    font: inherit;
    font-weight: 600;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.phase1a1-claim-results table {
    border-collapse: collapse;
    width: 100%;
}

.phase1a1-claim-results th,
.phase1a1-claim-results td {
    border-bottom: 1px solid var(--phase1a1-border);
    padding: 13px 10px;
    text-align: left;
    vertical-align: top;
}

.phase1a1-claim-results th {
    background: var(--phase1a1-surface);
}

@media (max-width: 1099px) {
    .phase1a1-desktop-nav {
        display: none;
    }

    .phase1a1-mobile-nav {
        display: block;
    }

    .phase1a1-provider-list,
    .phase1a1-review-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .phase1a1-card-grid--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 899px) {
    .phase1a1-utility-bar {
        display: none;
    }

    .phase1a1-header-inner {
        min-height: 76px;
    }

    .phase1a1-brand img {
        max-width: 240px;
    }

    .phase1a1-provider-cta,
    .phase1a1-hero-layout {
        grid-template-columns: 1fr;
    }

    .phase1a1-hero-intro {
        max-width: none;
    }

    .phase1a1-trust-grid,
    .phase1a1-state-grid,
    .phase1a1-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .phase1a1-claim-layout {
        grid-template-columns: 1fr;
    }

    .phase1a1-claim-guidance {
        position: static;
    }

    .phase1a1-portal-grid {
        grid-template-columns: 1fr;
    }

    .phase1a1-claim-steps ol {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .phase1a1-claim-fields {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 639px) {
    .phase1a1-hero {
        padding: 36px 0 44px;
    }

    .phase1a1-hero-intro > p:last-child {
        font-size: 17px;
    }

    .phase1a1-search-card {
        padding: 22px;
    }

    .phase1a1-search-fields,
    .phase1a1-trust-grid,
    .phase1a1-state-grid,
    .phase1a1-card-grid,
    .phase1a1-card-grid--four,
    .phase1a1-location-grid,
    .phase1a1-provider-list,
    .phase1a1-review-grid,
    .phase1a1-footer-grid {
        grid-template-columns: 1fr;
    }

    .phase1a1-trust-grid div {
        min-height: 54px;
    }

    .phase1a1-section {
        padding: 48px 0;
    }

    .phase1a1-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .phase1a1-location-grid section {
        grid-template-columns: 1fr;
    }

    .phase1a1-provider-cta {
        gap: 20px;
        padding: 40px 20px;
    }

    .phase1a1-footer-content {
        padding-top: 40px;
    }

    .phase1a1-provider-page {
        padding-bottom: 48px;
    }

    .phase1a1-claim-search,
    .phase1a1-claim-results,
    .phase1a1-claim-guidance,
    .phase1a1-claim-steps,
    .phase1a1-portal-card {
        padding: 22px 18px;
    }

    .phase1a1-claim-steps ol {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 399px) {
    .phase1a1-brand img {
        max-width: 200px;
    }

    .phase1a1-header-inner {
        gap: 10px;
    }

    .phase1a1-mobile-toggle {
        padding-left: 11px;
        padding-right: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .phase1a1-skip-link,
    .phase1a1-site-header a,
    .phase1a1-homepage a {
        scroll-behavior: auto;
        transition: none;
    }
}

/* =========================================================
   Provider Detail Page (pd-*)
   ========================================================= */

.pd-hero {
    background: linear-gradient(180deg, #f7f0e2 0%, #fbf8f1 60%, #fff 100%);
    padding: 16px 0 28px;
}

.pd-hero-layout {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.pd-hero-main {
    flex: 1;
    min-width: 0;
}

.pd-hero-logo-wrap {
    align-self: flex-start;
    background: #fff;
    border: 1px solid var(--phase1a1-border);
    border-radius: var(--phase1a1-radius);
    flex-shrink: 0;
    padding: 10px;
    width: 120px;
}

.pd-hero-logo {
    display: block;
    height: auto;
    max-height: 100px;
    max-width: 100%;
    object-fit: contain;
    width: 100%;
}

@media (max-width: 639px) {
    .pd-hero-logo-wrap {
        display: none;
    }
}

.pd-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.pd-badge {
    border-radius: 20px;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
}

.pd-badge--type {
    background: #e8f2ec;
    color: var(--phase1a1-primary);
}

.pd-badge--licensed {
    background: #eaf6ee;
    color: var(--phase1a1-primary);
}

.pd-badge--pending {
    background: #fff4e8;
    color: var(--phase1a1-home);
}

.pd-hero-main h1 {
    font-family: "Roboto Slab", serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.15;
    margin: 0 0 4px;
    color: var(--phase1a1-text);
}

.pd-location {
    color: var(--phase1a1-muted);
    font-size: 15px;
    margin-bottom: 6px;
}

.pd-hero-rating-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
}

.pd-stars {
    color: #a75b00;
    font-size: 20px;
    letter-spacing: 2px;
}

.pd-stars--sm {
    font-size: 14px;
    letter-spacing: 1.5px;
}

.pd-rating-number {
    color: var(--phase1a1-text);
    font-size: 17px;
    font-weight: 700;
}

.pd-rating-count {
    color: var(--phase1a1-muted);
    font-size: 14px;
    text-decoration: underline !important;
    text-decoration-style: dotted !important;
    text-underline-offset: 2px;
}

.pd-rating-count:hover {
    color: var(--phase1a1-primary-hover) !important;
}

.pd-address-line {
    color: var(--phase1a1-muted);
    font-size: 14px;
    margin-bottom: 10px;
}

.pd-status-warning {
    background: #fff4e8;
    border-left: 4px solid var(--phase1a1-home);
    color: var(--phase1a1-text);
    font-size: 14px;
    margin-bottom: 16px;
    padding: 12px 14px;
}

.pd-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
    margin-top: 14px;
}

.pd-action-btn {
    align-items: center;
    border-radius: var(--phase1a1-radius-sm);
    cursor: pointer;
    display: inline-flex;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 700;
    gap: 7px;
    padding: 11px 18px;
    text-decoration: none;
}

.pd-action-btn--primary {
    background: var(--phase1a1-primary);
    border: 0;
    color: #fff;
}

.pd-action-btn--primary:hover {
    background: var(--phase1a1-primary-hover);
    color: #fff;
}

.pd-action-btn--outline {
    background: #fff;
    border: 1.5px solid var(--phase1a1-text);
    color: var(--phase1a1-text);
}

.pd-action-btn--outline:hover {
    background: var(--phase1a1-surface);
    color: var(--phase1a1-text);
}

.pd-secondary-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    margin-top: 4px;
}

.pd-secondary-links a,
.pd-link-btn {
    background: none;
    border: 0;
    color: var(--phase1a1-primary-hover);
    cursor: pointer;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pd-rating-sidebar {
    background: #fff;
    border: 1px solid var(--phase1a1-border);
    border-radius: var(--phase1a1-radius);
    flex-shrink: 0;
    padding: 20px;
    text-align: center;
    width: 190px;
}

.pd-rating-sidebar__label {
    color: var(--phase1a1-muted);
    font-size: 12px;
    margin-bottom: 8px;
}

.pd-rating-sidebar__number {
    color: var(--phase1a1-text);
    font-family: "Roboto Slab", serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.pd-rating-sidebar__count {
    color: var(--phase1a1-muted);
    font-size: 12px;
    margin-top: 6px;
}

.pd-logo-sidebar {
    align-items: center;
    background: #fff;
    border: 1px solid var(--phase1a1-border);
    border-radius: var(--phase1a1-radius);
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    padding: 16px;
    width: 180px;
}

.pd-logo-sidebar img {
    height: auto;
    max-width: 100%;
}

/* Mobile sticky bar */
.pd-mobile-bar {
    background: #1f302a;
    bottom: 0;
    box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    z-index: 50;
}

.pd-mobile-bar a {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: block;
    flex: 1;
    font-size: 12.5px;
    font-weight: 700;
    padding: 12px 4px;
    text-align: center;
    text-decoration: none;
}

.pd-mobile-bar a:last-child {
    border-right: 0;
}

/* Sections */
.pd-section {
    padding: 36px 0;
}

.pd-section--surface {
    background: var(--phase1a1-surface);
}

.pd-section h2 {
    color: var(--phase1a1-text);
    font-family: "Roboto Slab", serif;
    font-size: 22px;
    margin: 0 0 18px;
}

/* Quick Facts */
.pd-facts-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
}

.pd-fact-card {
    background: #fff;
    border: 1px solid var(--phase1a1-border);
    border-radius: var(--phase1a1-radius);
    padding: 14px 16px;
}

.pd-fact-label {
    color: var(--phase1a1-muted);
    font-size: 11.5px;
    letter-spacing: 0.04em;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.pd-fact-value {
    color: var(--phase1a1-text);
    font-size: 14.5px;
    font-weight: 600;
}

.pd-facts-missing {
    color: var(--phase1a1-muted);
    font-size: 13px;
    margin-bottom: 0;
    margin-top: 14px;
}

.pd-facts-missing a {
    color: var(--phase1a1-primary-hover);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Photo grid */
.pd-photo-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.pd-photo-grid a {
    aspect-ratio: 4 / 3;
    border: 1px solid var(--phase1a1-border);
    border-radius: var(--phase1a1-radius-sm);
    display: block;
    overflow: hidden;
}

.pd-photo-grid img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
    width: 100%;
}

.pd-photo-grid a:hover img {
    transform: scale(1.04);
}

/* Document tiles (uploaded PDFs). Sits in the same grid as the photo tiles and inherits their
   aspect-ratio/border from .pd-photo-grid a, but lays out as a centred icon + label instead of a
   cover-cropped image -- these are business cards and flyers, not photographs, and a visitor
   deserves to know what the tile opens before clicking it. */
.pd-photo-grid a.pd-photo-doc {
    align-items: center;
    background: var(--phase1a1-surface);
    color: var(--phase1a1-muted);
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.pd-photo-grid a.pd-photo-doc:hover,
.pd-photo-grid a.pd-photo-doc:focus-visible {
    background: var(--phase1a1-surface-strong);
    color: var(--phase1a1-text);
}

.pd-photo-doc__icon {
    height: 52px;
    width: auto;
}

.pd-photo-doc__label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* Lightbox */
#pd-lightbox {
    align-items: center;
    background: rgba(0, 0, 0, 0.92);
    bottom: 0;
    display: none;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
}

#pd-lightbox.is-open {
    display: flex;
}

.pd-lightbox__img-wrap {
    max-height: 90vh;
    max-width: 90vw;
}

.pd-lightbox__img-wrap img {
    display: block;
    max-height: 90vh;
    max-width: 90vw;
    object-fit: contain;
    border-radius: 4px;
}

.pd-lightbox__close {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 36px;
    line-height: 1;
    opacity: 0.8;
    padding: 8px 14px;
    position: absolute;
    right: 12px;
    top: 12px;
}

.pd-lightbox__close:hover { opacity: 1; }

.pd-lightbox__nav {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 56px;
    line-height: 1;
    opacity: 0.7;
    padding: 0 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    user-select: none;
}

.pd-lightbox__nav:hover { opacity: 1; }
.pd-lightbox__nav--prev { left: 0; }
.pd-lightbox__nav--next { right: 0; }

.pd-lightbox__counter {
    bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}

/* Trust card (licensing) */
.pd-trust-card {
    background: #fff;
    border: 1px solid var(--phase1a1-border);
    border-left: 4px solid var(--phase1a1-primary);
    border-radius: var(--phase1a1-radius);
    padding: 24px 28px;
}

.pd-trust-card--pending {
    border-left-color: var(--phase1a1-home);
}

.pd-trust-card--inactive {
    border-left-color: #c0392b;
}

.pd-trust-card--stale {
    border-left-color: #b8952e;
}

.pd-trust-card__head {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--phase1a1-border);
}

.pd-trust-card__title {
    align-items: center;
    color: var(--phase1a1-text);
    display: flex;
    font-family: "Roboto Slab", serif;
    font-size: 19px;
    font-weight: 700;
    gap: 8px;
}

.pd-trust-icon {
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

.pd-trust-icon--ok  { color: var(--phase1a1-primary); }
.pd-trust-icon--pending { color: var(--phase1a1-home); }
.pd-trust-icon--bad { color: #c0392b; }
.pd-trust-icon--stale { color: #b8952e; }

.pd-trust-status {
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    white-space: nowrap;
}

.pd-trust-status--active  { background: #eaf6ee; color: var(--phase1a1-primary); }
.pd-trust-status--pending { background: #fff4e8; color: var(--phase1a1-home); }
.pd-trust-status--inactive { background: #fdecea; color: #c0392b; }

.pd-trust-card__source-warning {
    background: #fdf6e3;
    border: 1px solid #e8d9a0;
    border-radius: 8px;
    color: #7a6212;
    margin-bottom: 18px;
    padding: 12px 16px;
}

.pd-trust-card__source-warning strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.pd-trust-card__source-warning p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.pd-trust-facts {
    display: grid;
    gap: 18px 16px;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--phase1a1-border);
}

.pd-trust-facts__heading {
    color: var(--phase1a1-muted);
    font-size: 11px;
    font-weight: 600;
    grid-column: 1 / -1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pd-trust-fact__label {
    color: var(--phase1a1-muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.pd-trust-fact__value {
    color: var(--phase1a1-text);
    font-size: 15px;
    font-weight: 700;
}

.pd-trust-fact__value--warn {
    color: #c0392b;
}

.pd-trust-card__footer {
    align-items: center;
    color: var(--phase1a1-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 12.5px;
    gap: 12px;
}

.pd-trust-card__verified {
    margin-left: auto;
    font-style: italic;
}

.pd-program-list li {
    border-bottom: 1px solid #d1e8da;
    display: flex;
    font-size: 14px;
    gap: 12px;
    padding: 10px 0;
}

.pd-program-list li span:first-child {
    color: var(--phase1a1-muted);
    flex-shrink: 0;
    min-width: 160px;
}

.pd-program-list li span:last-child {
    color: var(--phase1a1-text);
    font-weight: 600;
}

/* Contact + Map */
.pd-contact-layout {
    align-items: start;
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr 280px;
}

.pd-contact-phone {
    display: block;
    font-family: "Roboto Slab", serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--phase1a1-primary);
    margin-bottom: 16px;
    text-decoration: none;
}

.pd-contact-phone:hover {
    color: var(--phase1a1-primary-hover);
}

.pd-contact-phone--masked {
    color: var(--phase1a1-muted);
}

.pd-contact-address {
    color: var(--phase1a1-text);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.pd-contact-directions {
    display: inline-block;
    color: var(--phase1a1-primary-hover);
    font-size: 13px;
    font-weight: 600;
    margin-top: 6px;
    text-decoration: none;
}

.pd-contact-directions:hover {
    text-decoration: underline;
}

.pd-contact-extras {
    border-top: 1px solid var(--phase1a1-border);
    display: flex;
    flex-direction: column;
    font-size: 14px;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 14px 0 0;
}

.pd-contact-extras li {
    align-items: baseline;
    display: flex;
    gap: 8px;
}

.pd-contact-extras a {
    color: var(--phase1a1-primary-hover);
    font-weight: 600;
}

.pd-contact-list {
    display: flex;
    flex-direction: column;
    font-size: 14.5px;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pd-contact-list li {
    align-items: baseline;
    color: var(--phase1a1-text);
    display: flex;
    gap: 10px;
}

.pd-map {
    background: #e9e5d8;
    border: 1px solid var(--phase1a1-border);
    border-radius: var(--phase1a1-radius);
    overflow: hidden;
    align-self: start;
}

.pd-map iframe {
    border: 0;
    display: block;
    height: 200px;
    width: 100%;
}

/* Hours */
.pd-hours-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 360px));
    gap: 0 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pd-hours-list li {
    border-bottom: 1px solid var(--phase1a1-border);
    display: flex;
    font-size: 13.5px;
    justify-content: space-between;
    padding: 5px 0;
}

.pd-hours-list li:last-child,
.pd-hours-list li:nth-last-child(2):nth-child(odd) {
    border-bottom: 0;
}

@media (max-width: 500px) {
    .pd-hours-list {
        grid-template-columns: 1fr;
    }
    .pd-hours-list li:nth-last-child(2):nth-child(odd) {
        border-bottom: 1px solid var(--phase1a1-border);
    }
}

/* Inspections */
.pd-inspections-wrap {
    overflow-x: auto;
}

/* Reviews */
.pd-rating-summary {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 28px;
}

.pd-rating-big__number {
    color: var(--phase1a1-text);
    font-family: "Roboto Slab", serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
}

.pd-rating-big__stars {
    color: #a75b00;
    font-size: 20px;
    letter-spacing: 2px;
    margin: 6px 0;
}

.pd-rating-big__count {
    color: var(--phase1a1-muted);
    font-size: 13px;
}

.pd-rating-bars {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 7px;
    min-width: 200px;
}

.pd-rating-bar {
    align-items: center;
    color: var(--phase1a1-muted);
    display: flex;
    font-size: 12.5px;
    gap: 8px;
}

.pd-rating-bar__label {
    width: 28px;
}

.pd-rating-bar__track {
    background: var(--phase1a1-surface-strong);
    border-radius: 6px;
    flex: 1;
    height: 8px;
    overflow: hidden;
}

.pd-rating-bar__fill {
    background: #a75b00;
    border-radius: 6px;
    height: 100%;
}

.pd-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    margin-top: 24px;
}

.pd-review-card {
    border: 1px solid var(--phase1a1-border);
    border-radius: var(--phase1a1-radius);
    padding: 20px 22px;
}

.pd-review-card__header {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: space-between;
    margin-bottom: 6px;
}

.pd-review-card__name {
    color: var(--phase1a1-text);
    font-weight: 700;
}

.pd-review-card__date {
    color: var(--phase1a1-muted);
    font-size: 12.5px;
}

.pd-review-card__experience {
    color: var(--phase1a1-muted);
    font-size: 12px;
    font-style: italic;
    margin-bottom: 8px;
}

.pd-review-card__text {
    color: var(--phase1a1-text);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 0 12px;
}

.pd-review-card__vote {
    color: var(--phase1a1-muted);
    font-size: 12.5px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.pd-review-owner-response {
    background: var(--phase1a1-surface);
    border-radius: var(--phase1a1-radius-sm);
    color: var(--phase1a1-muted);
    font-size: 13.5px;
    margin: 10px 0;
    padding: 12px 14px;
}

/* Nearby providers */
.pd-nearby-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}

.pd-nearby-card {
    background: #fff;
    border: 1px solid var(--phase1a1-border);
    border-radius: var(--phase1a1-radius);
    padding: 16px;
}

.pd-nearby-card__type {
    color: var(--phase1a1-primary-hover);
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.pd-nearby-card__name {
    color: var(--phase1a1-text);
    display: block;
    font-weight: 700;
    margin-bottom: 4px;
    text-decoration: none;
}

.pd-nearby-card__name:hover {
    color: var(--phase1a1-primary-hover);
    text-decoration: underline;
}

.pd-nearby-card__location {
    color: var(--phase1a1-muted);
    font-size: 13px;
}

/* Claim banner */
.pd-claim-banner {
    align-items: center;
    background: #1f302a;
    border-radius: var(--phase1a1-radius);
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    font-size: 14.5px;
    gap: 16px;
    justify-content: space-between;
    padding: 24px 28px;
}

.pd-claim-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Quick links */
.pd-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pd-quick-links a {
    background: var(--phase1a1-surface);
    border: 1px solid var(--phase1a1-border);
    border-radius: var(--phase1a1-radius-sm);
    color: var(--phase1a1-primary-hover);
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    text-decoration: none;
}

.pd-quick-links a:hover {
    background: var(--phase1a1-surface-strong);
}

/* Notes */
.pd-notes-list {
    color: var(--phase1a1-muted);
    font-size: 13.5px;
    line-height: 1.65;
    padding-left: 20px;
}

.pd-notes-list li {
    margin-bottom: 10px;
}

/* Resource cards */
.pd-resource-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pd-resource-card {
    background: #fff;
    border: 1px solid var(--phase1a1-border);
    border-radius: var(--phase1a1-radius);
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 22px;
}

.pd-resource-card__title {
    color: var(--phase1a1-text);
    font-family: "Roboto Slab", serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.pd-resource-card__link {
    color: var(--phase1a1-primary-hover) !important;
    font-size: 13px;
    font-weight: 600 !important;
    text-decoration: none !important;
    margin-top: auto;
}

.pd-resource-card__link:hover {
    text-decoration: underline !important;
}

@media (max-width: 639px) {
    .pd-resource-grid {
        grid-template-columns: 1fr;
    }
}

/* Review form */
.pd-review-form {
    background: #fff;
    border: 1px solid var(--phase1a1-border);
    border-radius: var(--phase1a1-radius);
    padding: 26px 28px;
}

.pd-review-form h3 {
    color: var(--phase1a1-text);
    font-family: "Roboto Slab", serif;
    font-size: 18px;
    margin: 0 0 18px;
}

.pd-form-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 16px;
}

.pd-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pd-form-group--full {
    grid-column: 1 / -1;
}

.pd-form-group label {
    color: var(--phase1a1-text);
    font-size: 14px;
    font-weight: 700;
}

.pd-form-group input,
.pd-form-group select,
.pd-form-group textarea {
    background: #fff;
    border: 1px solid #86919b;
    border-radius: var(--phase1a1-radius-sm);
    color: var(--phase1a1-text);
    font: 15px/1.4 "Roboto", sans-serif;
    min-height: 44px;
    padding: 10px 12px;
    width: 100%;
}

.pd-form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.pd-review-policy {
    background: var(--phase1a1-surface);
    border-radius: var(--phase1a1-radius-sm);
    color: var(--phase1a1-muted);
    font-size: 13px;
    line-height: 1.6;
    margin-top: 20px;
    padding: 14px 16px;
}

/* Responsive */
@media (max-width: 819px) {
    .pd-mobile-bar {
        display: flex;
    }

    .pd-hero {
        padding-bottom: 72px;
    }

    .pd-rating-sidebar,
    .pd-logo-sidebar {
        display: none;
    }

    .pd-contact-layout {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 639px) {
    .pd-facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pd-nearby-grid {
        grid-template-columns: 1fr;
    }

    .pd-claim-banner {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .pd-review-form {
        padding: 20px 18px;
    }
}
