/*
 * THE BRAND LAYER, AND THE RULE IT EXISTS TO ENFORCE.
 *
 * A theme is a REASSIGNMENT of the names below. It is never a parallel set of
 * new names beside them. contractor-standard.css used to break that rule - it
 * declared --standard-deep/mid/accent/soft/paper scoped to `.standard-site` and
 * then tried to reach shared chrome with three override rules - and the result
 * was that a second tenant rendered with the first tenant's brand everywhere the
 * overrides could not reach: the focus ring, the nav underline, the button
 * border and hover glow, the form focus ring, and the footer. public/assets/css/
 * platform.css already states this rule for --gx-*; this is the same rule for
 * the public site.
 *
 * :root against :root at equal specificity, with the later sheet winning on
 * source order, has no competing selector at all, which structurally removes
 * that entire class of bug. There are no per-tenant RULES, only per-tenant
 * VALUES - and the values arrive from /tenant-brand.css.php, linked last.
 *
 * The --brand-* block is the canonical declaration. The block after it keeps the
 * historical names alive as aliases so the ~90 existing `var(--signal)`-style
 * use sites keep working unchanged; migrating those call sites is mechanical and
 * deliberately not bundled with a schema change. The alias direction matters:
 * `--signal: var(--brand-accent)` resolves at computed-value time, so a tenant
 * value that lands on --brand-accent flows through to every legacy use site.
 * Reversing it would mean tenant colours applied to the new names and stale
 * defaults to the old ones.
 *
 * Some of these names are Enders CONTENT rather than semantics - --water,
 * --grass, --signal describe sprinklers and lawns, and cannot honestly be
 * reassigned for a roofing tenant. That is why the canonical set is renamed
 * here rather than themed in place.
 */
:root {
    --brand-ink: #102b3a;
    --brand-ink-rgb: 16, 43, 58;
    --brand-ink-soft: #315060;
    --brand-surface: #f4f8f7;
    /* Was hardcoded on .site-footer. This is the reported navy footer: it had no
       token, so a teal tenant had no way to change it. */
    --brand-footer: #071f2a;
    --brand-line: #d8e4e4;
    --brand-accent: #f28a1b;
    /* Channels, not a colour: the button glow needs the accent at 0.2 and 0.3
       alpha, and rgba() cannot take a hex. Derived from --brand-accent server
       side so a tenant enters one value, not the same colour in two syntaxes. */
    --brand-accent-rgb: 242, 138, 27;
    /* Was hardcoded on .button:hover. Without a token the hover reverted to
       Enders orange over any other tenant's button. */
    --brand-accent-hover: #ff9a2d;
    --brand-accent-wash: #fff0dc;
    --brand-primary: #075d8c;
    --brand-primary-bright: #078cc4;
    --brand-primary-bright-rgb: 7, 140, 196;
    --brand-primary-wash: #ddf3fa;
    /* Was a hardcoded gradient on .tenant-mark, until a real logo asset replaces
       the monogram. */
    --brand-mark-from: #1298c4;
    --brand-mark-to: #0b607e;
    --brand-shadow-sm: 0 12px 30px rgba(16, 43, 58, 0.08);
    --brand-shadow-lg: 0 28px 80px rgba(4, 32, 48, 0.22);
    --brand-font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Legacy aliases. Delete once the use sites move to the --brand-* names. */
    --ink: var(--brand-ink);
    --ink-soft: var(--brand-ink-soft);
    --water-deep: var(--brand-primary);
    --water: var(--brand-primary-bright);
    --water-bright: #16a6d8;
    --water-light: var(--brand-primary-wash);
    --signal: var(--brand-accent);
    --signal-light: var(--brand-accent-wash);
    --grass: #2f6e4f;
    --mist: var(--brand-surface);
    --line: var(--brand-line);
    --white: #ffffff;
    --shadow-sm: var(--brand-shadow-sm);
    --shadow-lg: var(--brand-shadow-lg);
    --font: var(--brand-font);

    /* Not brand: geometry is shared chrome and stays global. */
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --shell: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--mist);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.nav-is-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--signal);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    left: 18px;
    top: -80px;
    z-index: 200;
    padding: 12px 18px;
    border-radius: 10px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow-sm);
    font-weight: 800;
    transition: top 160ms ease;
}

.skip-link:focus {
    top: 18px;
}

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

.concept-ribbon {
    position: relative;
    z-index: 60;
    color: #422500;
    background: var(--signal);
    font-size: 0.84rem;
}

.concept-ribbon__inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.concept-ribbon a {
    font-weight: 800;
    text-decoration: none;
}

.concept-ribbon a:hover {
    text-decoration: underline;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(216, 228, 228, 0.8);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 38px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    text-decoration: none;
}

.brand img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 14px;
}

.tenant-mark {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, 0.82);
    border-radius: 16px;
    color: var(--white);
    background: linear-gradient(145deg, var(--brand-mark-from), var(--brand-mark-to));
    box-shadow: 0 8px 20px rgba(8, 66, 88, 0.2);
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.brand--footer .tenant-mark {
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: none;
}

.brand__name {
    display: grid;
    line-height: 1.04;
}

.brand__name strong {
    font-size: 1.03rem;
    letter-spacing: -0.025em;
}

.brand__name span {
    margin-top: 3px;
    font-size: 0.82rem;
    color: var(--ink-soft);
    letter-spacing: 0.02em;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.primary-nav a {
    position: relative;
    padding: 12px 0;
    color: var(--ink-soft);
    font-size: 0.91rem;
    font-weight: 750;
    text-decoration: none;
}

.primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 2px;
    background: var(--signal);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 170ms ease;
}

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

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: grid;
    text-decoration: none;
    line-height: 1.25;
}

.header-phone span {
    color: var(--ink-soft);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.header-phone strong {
    font-size: 0.94rem;
}

.nav-toggle {
    display: none;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 21px;
    border: 1px solid var(--signal);
    border-radius: 999px;
    color: #372000;
    background: var(--signal);
    box-shadow: 0 8px 22px rgba(var(--brand-accent-rgb), 0.2);
    font-size: 0.91rem;
    font-weight: 850;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

.button:hover {
    background: var(--brand-accent-hover);
    box-shadow: 0 12px 28px rgba(var(--brand-accent-rgb), 0.3);
    transform: translateY(-2px);
}

.button--compact {
    min-height: 44px;
    padding-inline: 19px;
}

.button--large {
    min-height: 56px;
    padding: 15px 25px;
}

.button--ghost {
    border-color: rgba(255, 255, 255, 0.42);
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
}

.button--ghost:hover {
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.button--full {
    width: 100%;
}

.hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 12% 8%, rgba(22, 166, 216, 0.2), transparent 35%),
        linear-gradient(135deg, #0b3448 0%, var(--ink) 54%, #072331 100%);
}

.hero__wash {
    position: absolute;
    width: 620px;
    height: 620px;
    top: -320px;
    left: 41%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.hero__wash::before,
.hero__wash::after {
    position: absolute;
    inset: 80px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: inherit;
    content: "";
}

.hero__wash::after {
    inset: 170px;
}

.hero__grid {
    position: relative;
    min-height: 720px;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.82fr);
    align-items: center;
    gap: 72px;
    padding-block: 72px;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 19px;
    color: var(--water-deep);
    font-size: 0.73rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 26px;
    height: 3px;
    border-radius: 99px;
    background: var(--signal);
}

.eyebrow--light {
    color: #a8dced;
}

.hero h1,
.section-heading h2,
.proof h2,
.about h2,
.request h2 {
    margin: 0;
    font-size: clamp(2.65rem, 5vw, 5.15rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero h1 em {
    color: #9bdcf1;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.96em;
    font-weight: 400;
}

.hero__lead {
    max-width: 630px;
    margin: 28px 0 0;
    color: #c7d8df;
    font-size: clamp(1.04rem, 1.6vw, 1.22rem);
    line-height: 1.68;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 36px;
}

.hero__promise {
    max-width: 600px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 33px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.hero__promise-mark {
    width: 28px;
    height: 28px;
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--ink);
    background: var(--signal);
    font-size: 0.83rem;
    font-weight: 900;
}

.hero__promise p {
    margin: 1px 0 0;
    color: #b9cdd5;
    font-size: 0.9rem;
    line-height: 1.55;
}

.hero__promise strong {
    color: var(--white);
}

.hero__media {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg) var(--radius-lg) 110px var(--radius-lg);
    background: #244;
    box-shadow: var(--shadow-lg);
}

.hero__media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 35, 48, 0.06) 30%, rgba(7, 35, 48, 0.74) 100%);
    content: "";
}

.hero__media > img {
    width: 100%;
    height: 100%;
    min-height: 570px;
    object-fit: cover;
}

.hero__rating {
    position: absolute;
    z-index: 2;
    top: 24px;
    right: 24px;
    display: grid;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 16px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
    line-height: 1.32;
}

.stars {
    color: var(--signal);
    font-size: 0.86rem;
    letter-spacing: 0.06em;
}

.hero__rating strong {
    font-size: 0.96rem;
}

.hero__rating span:last-child {
    color: var(--ink-soft);
    font-size: 0.72rem;
}

.hero__caption {
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: 31px;
    left: 31px;
    display: grid;
    gap: 5px;
}

.hero__caption span {
    color: #bfe5f1;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero__caption strong {
    max-width: 350px;
    font-size: 1.5rem;
    line-height: 1.2;
}

.trust-strip {
    color: var(--ink);
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-strip__grid > div {
    min-height: 116px;
    display: grid;
    align-content: center;
    padding: 20px 28px;
    border-left: 1px solid var(--line);
}

.trust-strip__grid > div:last-child {
    border-right: 1px solid var(--line);
}

.trust-strip strong {
    font-size: 0.97rem;
}

.trust-strip span {
    margin-top: 3px;
    color: var(--ink-soft);
    font-size: 0.77rem;
}

.section {
    padding-block: 110px;
}

.section-heading {
    margin-bottom: 54px;
}

.section-heading h2,
.proof h2,
.about h2,
.request h2 {
    max-width: 800px;
    font-size: clamp(2.35rem, 4vw, 4.25rem);
    line-height: 1.02;
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    align-items: end;
    gap: 70px;
}

.section-heading--split > p {
    margin: 0 0 4px;
    color: var(--ink-soft);
    line-height: 1.72;
}

.services {
    background:
        linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)),
        radial-gradient(circle at 80% 15%, var(--water-light), transparent 36%);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.service-card {
    min-height: 346px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
    transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
    position: relative;
    z-index: 2;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.service-card--open {
    color: var(--white);
    background:
        radial-gradient(circle at 90% 10%, rgba(22, 166, 216, 0.24), transparent 45%),
        var(--ink);
}

.service-card--open:hover {
    background:
        radial-gradient(circle at 90% 10%, rgba(22, 166, 216, 0.3), transparent 45%),
        #0d3244;
}

.service-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.service-card__number {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--water-deep);
    background: var(--water-light);
    font-size: 0.74rem;
    font-weight: 900;
}

.service-card--open .service-card__number {
    color: var(--ink);
    background: var(--signal);
    font-size: 1.2rem;
}

.service-card__label {
    color: var(--ink-soft);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-align: right;
    text-transform: uppercase;
}

.service-card--open .service-card__label {
    color: #a8dced;
}

.service-card h3 {
    margin: 44px 0 13px;
    font-size: 1.33rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.service-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.89rem;
    line-height: 1.65;
}

.service-card--open p {
    color: #c1d4dc;
}

.service-card__toggle,
.service-card--open a {
    width: fit-content;
    margin-top: auto;
    padding: 20px 0 2px;
    border: 0;
    color: var(--water-deep);
    background: none;
    font-size: 0.78rem;
    font-weight: 850;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.service-card__toggle span {
    margin-left: 6px;
    color: var(--signal);
    font-size: 1rem;
}

.service-card--open a {
    color: var(--white);
}

.service-card--open a:hover {
    text-decoration: underline;
}

.service-card__detail {
    margin-top: 14px !important;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    font-size: 0.78rem !important;
}

.proof {
    background: var(--water-light);
}

.proof__grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
    align-items: center;
    gap: 86px;
}

.proof__media {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    border-radius: 110px var(--radius-lg) var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.proof__media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(6, 35, 47, 0.72));
    content: "";
}

.proof__media img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.proof__stat {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 29px;
    left: 28px;
    display: grid;
    gap: 3px;
    color: var(--white);
}

.proof__stat strong {
    font-size: 1.26rem;
}

.proof__stat span {
    color: #d9e8ec;
    font-size: 0.82rem;
}

.proof__lead,
.about__lead {
    margin: 28px 0 0;
    color: var(--ink);
    font-size: 1.13rem;
    line-height: 1.75;
}

.proof__content > p:not(.eyebrow):not(.proof__lead) {
    color: var(--ink-soft);
}

.text-link {
    display: inline-flex;
    gap: 8px;
    margin-top: 14px;
    color: var(--water-deep);
    font-weight: 850;
    text-underline-offset: 4px;
}

.proof__note {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 17px;
    margin-top: 38px;
    padding-top: 28px;
    border-top: 1px solid rgba(7, 93, 140, 0.22);
}

.proof__note > span {
    color: var(--signal);
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 0.85;
}

.proof__note p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
    line-height: 1.65;
}

.process {
    color: var(--white);
    background:
        radial-gradient(circle at 10% 100%, rgba(7, 140, 196, 0.24), transparent 35%),
        var(--ink);
}

.section-heading--light h2 {
    color: var(--white);
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    list-style: none;
}

.process__steps li {
    min-height: 290px;
    padding: 30px 28px 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.process__steps li:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.process__steps li > span {
    width: 41px;
    height: 41px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--ink);
    background: var(--signal);
    font-size: 0.79rem;
    font-weight: 900;
}

.process__steps h3 {
    margin: 73px 0 11px;
    font-size: 1.13rem;
}

.process__steps p {
    margin: 0;
    color: #aec4ce;
    font-size: 0.84rem;
    line-height: 1.65;
}

.reviews {
    background: var(--white);
}

.reviews__score {
    display: flex;
    align-items: center;
    gap: 18px;
}

.reviews__score > strong {
    font-size: 3.9rem;
    line-height: 1;
    letter-spacing: -0.06em;
}

.reviews__score p {
    margin: 4px 0 0;
    color: var(--ink-soft);
    font-size: 0.78rem;
    line-height: 1.35;
}

.reviews__score small {
    color: #6b838f;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.review-card {
    position: relative;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 34px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--mist);
}

.review-card__quote {
    position: absolute;
    top: -16px;
    right: 20px;
    color: rgba(7, 140, 196, 0.09);
    font-family: Georgia, serif;
    font-size: 9rem;
    line-height: 1;
}

.review-card blockquote {
    position: relative;
    margin: 39px 0 0;
    font-size: 1.28rem;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -0.03em;
}

.review-card figcaption {
    display: grid;
    margin-top: auto;
    padding-top: 25px;
}

.review-card figcaption strong {
    font-size: 0.84rem;
}

.review-card figcaption span {
    color: var(--ink-soft);
    font-size: 0.75rem;
}

.reviews__disclaimer {
    margin: 22px 0 0;
    color: #6b838f;
    font-size: 0.74rem;
    text-align: center;
}

.about {
    background:
        radial-gradient(circle at 0 0, var(--signal-light), transparent 28%),
        var(--mist);
}

.about__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    align-items: center;
    gap: 90px;
}

.check-list {
    display: grid;
    gap: 14px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 13px;
    font-weight: 750;
}

.check-list span {
    width: 27px;
    height: 27px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--grass);
    font-size: 0.75rem;
}

.about__media {
    margin: 0;
}

.about__media img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    object-position: 50% 24%;
    border-radius: var(--radius-lg) var(--radius-lg) 120px var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about__media figcaption {
    max-width: 420px;
    margin: 15px auto 0;
    color: var(--ink-soft);
    font-size: 0.72rem;
    line-height: 1.5;
}

.request {
    color: var(--white);
    background:
        linear-gradient(115deg, rgba(7, 140, 196, 0.13), transparent 45%),
        #0b3042;
}

.request__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(500px, 0.78fr);
    align-items: start;
    gap: 90px;
}

.request__intro {
    position: sticky;
    top: 130px;
}

.request__intro > p:not(.eyebrow) {
    max-width: 550px;
    margin-top: 26px;
    color: #b9ced7;
    font-size: 1.02rem;
}

.request__contact {
    display: grid;
    gap: 6px;
    margin-top: 36px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.request__contact span {
    color: #8fb1bf;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.request__contact a {
    width: fit-content;
    color: var(--white);
    font-weight: 760;
    text-underline-offset: 4px;
}

.request-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.concept-note {
    grid-column: 1 / -1;
    display: grid;
    margin: -12px -12px 6px;
    padding: 14px 16px;
    border-radius: 15px;
    color: #5f3a09;
    background: var(--signal-light);
    font-size: 0.76rem;
}

.field {
    display: grid;
    gap: 8px;
}

.field--full {
    grid-column: 1 / -1;
}

.field label {
    font-size: 0.77rem;
    font-weight: 850;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 15px;
    border: 1px solid #c9d9dc;
    border-radius: 12px;
    color: var(--ink);
    background: #fbfdfc;
    transition: border 150ms ease, box-shadow 150ms ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--water);
    outline: none;
    box-shadow: 0 0 0 4px rgba(var(--brand-primary-bright-rgb), 0.12);
}

.request-form__result {
    grid-column: 1 / -1;
    padding: 18px;
    border: 1px solid #b8d8c9;
    border-radius: 14px;
    background: #edf8f2;
}

.request-form__result p {
    margin: 4px 0 0;
    color: var(--ink-soft);
    font-size: 0.82rem;
}

.site-footer {
    padding: 78px 0 20px;
    color: #d4e0e5;
    background: var(--brand-footer);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.45fr repeat(3, 0.65fr);
    gap: 65px;
}

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

.brand--footer .brand__name span {
    color: #9db5bf;
}

.site-footer__grid > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.site-footer__grid > div:first-child p {
    max-width: 360px;
    color: #8fa8b3;
    font-size: 0.85rem;
}

.site-footer__grid > div > strong {
    margin-bottom: 12px;
    color: var(--white);
    font-size: 0.75rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.site-footer__grid > div > a,
.site-footer__grid > div > span {
    color: #9db5bf;
    font-size: 0.78rem;
    text-decoration: none;
}

.site-footer__grid > div > a:hover {
    color: var(--white);
    text-decoration: underline;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 56px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #6f8b96;
    font-size: 0.68rem;
}

/* Staff sign-in in the footer bar. Quiet by design: it is a door for the
   business, not a call to action for visitors, so it reads at the same weight
   as the copyright line until focused or hovered. */
.site-footer__staff-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
    white-space: nowrap;
}

.site-footer__staff-link:hover,
.site-footer__staff-link:focus-visible {
    color: #ffffff;
}

.mobile-contact {
    display: none;
}

@media (max-width: 1120px) {
    .site-header__inner {
        gap: 22px;
    }

    .primary-nav {
        gap: 20px;
    }

    .header-phone {
        display: none;
    }

    .hero__grid {
        gap: 42px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proof__grid,
    .about__grid,
    .request__grid {
        gap: 54px;
    }
}

@media (max-width: 860px) {
    .shell {
        width: min(calc(100% - 32px), var(--shell));
    }

    .concept-ribbon__inner {
        justify-content: center;
        text-align: center;
    }

    .concept-ribbon a {
        display: none;
    }

    .site-header__inner {
        min-height: 74px;
    }

    .site-header__actions {
        margin-left: auto;
    }

    .site-header__actions .button {
        display: none;
    }

    .nav-toggle {
        width: 46px;
        height: 46px;
        display: grid;
        grid-template-columns: 1fr;
        align-content: center;
        gap: 5px;
        margin-left: auto;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 12px;
        color: var(--ink);
        background: var(--white);
    }

    .nav-toggle__line {
        width: 100%;
        height: 2px;
        background: var(--ink);
    }

    .nav-toggle__label {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }

    .primary-nav {
        position: fixed;
        z-index: 45;
        top: 110px;
        right: 0;
        bottom: 0;
        left: 0;
        display: none;
        align-items: stretch;
        align-content: start;
        gap: 0;
        padding: 38px 24px;
        background: var(--white);
    }

    .primary-nav.is-open {
        display: grid;
    }

    .primary-nav a {
        padding: 18px 4px;
        border-bottom: 1px solid var(--line);
        font-size: 1.2rem;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        padding-block: 72px 58px;
    }

    .hero__content {
        max-width: 680px;
    }

    .hero__media {
        min-height: 480px;
    }

    .hero__media > img {
        min-height: 480px;
    }

    .trust-strip__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-strip__grid > div {
        min-height: 102px;
        border-bottom: 1px solid var(--line);
    }

    .section {
        padding-block: 82px;
    }

    .section-heading--split {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .proof__grid,
    .about__grid,
    .request__grid {
        grid-template-columns: 1fr;
    }

    .proof__media {
        min-height: 520px;
        order: 2;
    }

    .proof__media img {
        height: 520px;
    }

    .process__steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process__steps li {
        min-height: 245px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .process__steps h3 {
        margin-top: 45px;
    }

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

    .review-card {
        min-height: 220px;
    }

    .about__media {
        max-width: 570px;
    }

    .request__intro {
        position: static;
    }

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

@media (max-width: 560px) {
    body {
        padding-bottom: 66px;
    }

    .concept-ribbon {
        font-size: 0.72rem;
    }

    .concept-ribbon__inner {
        min-height: 34px;
    }

    .brand img {
        width: 45px;
        height: 45px;
        border-radius: 11px;
    }

    .tenant-mark {
        width: 45px;
        height: 45px;
        flex-basis: 45px;
        border-radius: 12px;
        font-size: 0.78rem;
    }

    .brand__name strong {
        font-size: 0.88rem;
    }

    .brand__name span {
        font-size: 0.7rem;
    }

    .primary-nav {
        top: 108px;
    }

    .hero__grid {
        min-height: auto;
        gap: 48px;
        padding-block: 57px 48px;
    }

    .hero h1 {
        font-size: clamp(2.7rem, 13.5vw, 4rem);
    }

    .hero__lead {
        margin-top: 23px;
        font-size: 1rem;
    }

    .hero__actions {
        display: grid;
        margin-top: 29px;
    }

    .button--large {
        width: 100%;
    }

    .hero__media {
        min-height: 390px;
        border-radius: 26px 26px 74px 26px;
    }

    .hero__media > img {
        min-height: 390px;
    }

    .hero__rating {
        top: 15px;
        right: 15px;
        padding: 11px 13px;
    }

    .hero__caption {
        right: 22px;
        bottom: 24px;
        left: 22px;
    }

    .hero__caption strong {
        font-size: 1.22rem;
    }

    .trust-strip__grid {
        grid-template-columns: 1fr;
    }

    .trust-strip__grid > div {
        min-height: 90px;
        padding-inline: 20px;
        border-right: 1px solid var(--line);
    }

    .section {
        padding-block: 68px;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2,
    .proof h2,
    .about h2,
    .request h2 {
        font-size: 2.38rem;
    }

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

    .service-card {
        min-height: 310px;
        padding: 26px;
    }

    .proof__grid {
        gap: 42px;
    }

    .proof__media {
        min-height: 430px;
        border-radius: 72px 24px 24px 24px;
    }

    .proof__media img {
        height: 430px;
    }

    .proof__note {
        grid-template-columns: 39px 1fr;
    }

    .proof__note > span {
        font-size: 4rem;
    }

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

    .process__steps li {
        min-height: 210px;
        border-left: 1px solid rgba(255, 255, 255, 0.14);
    }

    .reviews__score {
        margin-top: 6px;
    }

    .reviews__score > strong {
        font-size: 3.2rem;
    }

    .review-card {
        padding: 28px;
    }

    .about__media img {
        height: 480px;
        border-radius: 24px 24px 80px 24px;
    }

    .request-form {
        grid-template-columns: 1fr;
        padding: 25px 20px;
        border-radius: 24px;
    }

    .field,
    .field--full,
    .concept-note,
    .request-form__result {
        grid-column: 1;
    }

    .concept-note {
        margin-inline: -5px;
    }

    .site-footer {
        padding-top: 62px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .site-footer__bottom {
        flex-direction: column;
    }

    .mobile-contact {
        position: fixed;
        z-index: 70;
        right: 0;
        bottom: 0;
        left: 0;
        height: 66px;
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
        padding: 8px;
        border-top: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 -12px 32px rgba(16, 43, 58, 0.13);
        backdrop-filter: blur(15px);
    }

    .mobile-contact a {
        display: grid;
        place-items: center;
        border-radius: 999px;
        font-size: 0.82rem;
        font-weight: 850;
        text-decoration: none;
    }

    .mobile-contact a:last-child {
        color: #372000;
        background: var(--signal);
    }
}

.field-honeypot {
    position: absolute !important;
    inline-size: 1px !important;
    block-size: 1px !important;
    overflow: hidden !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

.form-alert {
    grid-column: 1 / -1;
    display: grid;
    gap: 0.2rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
}

.form-alert--error {
    border-color: rgba(255, 197, 122, 0.6);
    background: rgba(112, 42, 20, 0.22);
}

.form-privacy {
    grid-column: 1 / -1;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    line-height: 1.55;
}

.request-reference {
    display: inline-grid;
    gap: 0.25rem;
    margin-block: 1rem 0.25rem;
    padding: 0.85rem 1rem;
    border-left: 3px solid var(--brand-accent);
    background: rgba(255, 255, 255, 0.1);
}

.request-reference span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.request-reference strong {
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.04em;
}

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

/* Tenant-managed public pages */

.managed-page {
    background:
        linear-gradient(rgba(244, 248, 247, 0.96), rgba(244, 248, 247, 0.98)),
        repeating-linear-gradient(90deg, transparent 0 79px, rgba(16, 43, 58, 0.035) 79px 80px);
}

.managed-page__hero {
    position: relative;
    overflow: hidden;
    padding: clamp(86px, 11vw, 150px) 0 clamp(72px, 9vw, 118px);
    color: #fff;
    background:
        radial-gradient(circle at 83% 18%, rgba(22, 166, 216, 0.33), transparent 26rem),
        linear-gradient(135deg, #0b354a, #102b3a 62%, #071f2a);
}

.managed-page__hero::after {
    position: absolute;
    right: -7rem;
    bottom: -12rem;
    width: 32rem;
    height: 32rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 4rem rgba(255, 255, 255, 0.025),
        0 0 0 8rem rgba(255, 255, 255, 0.018);
    content: "";
}

.managed-page__hero .shell {
    position: relative;
    z-index: 1;
}

.managed-page__hero .eyebrow {
    color: #b9dce8;
}

.managed-page__hero h1 {
    max-width: 900px;
    margin: 22px 0 0;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.managed-page__hero .shell > p:last-child:not(.eyebrow) {
    max-width: 760px;
    margin: 28px 0 0;
    color: #c5d9e1;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
}

.managed-page__content {
    width: min(calc(100% - 40px), 880px);
    min-height: 420px;
    padding-block: clamp(68px, 9vw, 120px);
    color: #294956;
    font-size: 1.02rem;
    line-height: 1.85;
}

.managed-page__content h2,
.managed-page__content h3,
.managed-page__content h4 {
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.managed-page__content h2 {
    margin: 1.5em 0 0.55em;
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.managed-page__content h3 {
    margin: 1.7em 0 0.55em;
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.managed-page__content h4 {
    margin: 1.6em 0 0.45em;
    font-size: 1.16rem;
}

.managed-page__content > :first-child {
    margin-top: 0;
}

.managed-page__content p,
.managed-page__content ul,
.managed-page__content ol,
.managed-page__content blockquote,
.managed-page__content pre {
    margin-block: 0 1.35em;
}

.managed-page__content ul,
.managed-page__content ol {
    padding-left: 1.4em;
}

.managed-page__content li {
    margin-bottom: 0.5em;
}

.managed-page__content a {
    color: var(--water-deep);
    font-weight: 800;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.managed-page__content blockquote {
    margin-inline: 0;
    padding: 24px 28px;
    border-left: 4px solid var(--signal);
    border-radius: 0 16px 16px 0;
    color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow-sm);
    font-size: 1.14rem;
    font-weight: 700;
}

.managed-page__content pre {
    overflow-x: auto;
    padding: 22px;
    border-radius: 14px;
    color: #e5f0f3;
    background: var(--ink);
}

.managed-page__content code {
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 0.9em;
}

.managed-page .site-footer__bottom a {
    color: #d4e0e5;
    font-weight: 800;
}

@media (max-width: 560px) {
    .managed-page__hero {
        padding-block: 64px 72px;
    }

    .managed-page__content {
        width: min(calc(100% - 32px), 880px);
        padding-block: 62px;
        font-size: 0.96rem;
    }

    .managed-page__content blockquote {
        padding: 20px;
    }
}
